[Spice-commits] configure.ac

Christophe Fergau teuf at kemper.freedesktop.org
Fri Jun 26 07:01:56 PDT 2015


 configure.ac |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 878d81dae494fab6b67ba34254d389e7f42d7d9d
Author: Christophe Fergeau <cfergeau at redhat.com>
Date:   Tue Jun 23 18:32:30 2015 +0200

    build-sys: Fix build with automake < 1.13
    
    AC_CONFIG_MACRO_DIRS is not available with older automake versions,
    which causes autogen.sh failures on RHEL6. m4_include() can be used
    instead.

diff --git a/configure.ac b/configure.ac
index a8b610b..9c92cc6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -28,7 +28,8 @@ fi
 SPICE_SERVER_VERSION=`printf "0x%02x%02x%02x" $major $minor $micro`
 AC_SUBST(SPICE_SERVER_VERSION)
 
-AC_CONFIG_MACRO_DIRS([m4 spice-common/m4])
+AC_CONFIG_MACRO_DIR([m4])
+m4_include([spice-common/m4/spice-deps.m4])
 AM_CONFIG_HEADER([config.h])
 AC_CONFIG_AUX_DIR(.)
 


More information about the Spice-commits mailing list