Enables running ./configure in server/ (as well as autoreconf or autogen.sh)
Signed-off-by: Uri Lublin <u...@redhat.com> --- server/configure.ac | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 50 insertions(+), 0 deletions(-) create mode 100644 server/configure.ac diff --git a/server/configure.ac b/server/configure.ac new file mode 100644 index 0000000..254341e --- /dev/null +++ b/server/configure.ac @@ -0,0 +1,50 @@ +AC_PREREQ([2.57]) + +m4_define([SPICE_MAJOR], 0) +m4_define([SPICE_MINOR], 4) +m4_define([SPICE_MICRO], 1) + +AC_INIT(spice-server, [SPICE_MAJOR.SPICE_MINOR.SPICE_MICRO], [], spice-server) + +AC_CONFIG_MACRO_DIR([m4]) + +# Define default SPICE_COMMON_SRCDIR +# Maybe overwritten by ../configure.ac.shared +SPICE_COMMON_SRCDIR='$(top_srcdir)'/../common + +m4_include(../configure.ac.shared) + +AC_PROG_LIBTOOL + +SPICE_LT_VERSION=m4_format("%d:%d:%d", SPICE_MAJOR, SPICE_MINOR, SPICE_MICRO) +AC_SUBST(SPICE_LT_VERSION) + +# Support only x86_64 arch +echo " ************** host cpu is $host_cpu " +if test $host_cpu != x86_64; then + echo "Only x86_64 arch is supported" + exit 1 +fi + + +AC_SUBST(SPICE_COMMON_SRCDIR) +AC_SUBST(SPICE_REQUIRES) +AC_SUBST(SPICE_NONPKGCONFIG_CFLAGS) +AC_SUBST(SPICE_NONPKGCONFIG_LIBS) + +AC_CONFIG_FILES([Makefile]) +#AC_CONFIG_FILES([Makefile spice.pc]) +AC_OUTPUT + +dnl ========================================================================== +echo " + + Spice Server $VERSION + ============== + + prefix: ${prefix} + c compiler: ${CC} + c++ compiler: ${CXX} + + Now type 'make' to build $PACKAGE +" -- 1.6.5.2 ------------------------------------------------------------------------------ This SF.Net email is sponsored by the Verizon Developer Community Take advantage of Verizon's best-in-class app development support A streamlined, 14 day to market process makes app distribution fast and easy Join now and get one step closer to millions of Verizon customers http://p.sf.net/sfu/verizon-dev2dev _______________________________________________ Spice-space-devel mailing list Spice-space-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/spice-space-devel