spice/configure.ac
Uri Lublin e2dd219f6b configure.ac: use AC_CONFIG_SUBDIRS to run configure in subdirs (subdir config)
That's about all the work configure.ac does.
Moved config.pc.in to server, and updated Makefile.am and
server/Makefile.am accordingly

Signed-off-by: Uri Lublin <uril@redhat.com>
2010-01-10 19:45:34 +02:00

29 lines
613 B
Plaintext

AC_PREREQ([2.57])
m4_define([SPICE_MAJOR], 0)
m4_define([SPICE_MINOR], 4)
m4_define([SPICE_MICRO], 1)
AC_INIT(spice, [SPICE_MAJOR.SPICE_MINOR.SPICE_MICRO], [], spice)
AC_CONFIG_MACRO_DIR([m4])
m4_include(configure.ac.shared)
AC_CONFIG_SUBDIRS([common server client])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
dnl ==========================================================================
echo "
Spice $VERSION
==============
prefix: ${prefix}
c compiler: ${CC}
c++ compiler: ${CXX}
Now type 'make' to build $PACKAGE
"