[cairo-commit] configure.in

Chris Wilson ickle at kemper.freedesktop.org
Fri Jan 11 06:06:43 PST 2008


 configure.in |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit c26784dbb6d3c90f9e3fa722efa0f9f4fd59bd4c
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Fri Jan 11 14:04:56 2008 +0000

    [configure] Version bump for $(EXEEXT)
    
    Adrian Johnson found that adding $(EXEEXT) to TESTS broke the build
    under mingw. After a bit of investigation, the issue was tracked down
    to being caused by automake-1.7. Bump the autotools version
    requirements to avoid the breakage.

diff --git a/configure.in b/configure.in
index 024b675..28efab0 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-AC_PREREQ(2.54)
+AC_PREREQ(2.58)
 
 dnl cairo package version number, (as distinct from shared library version)
 dnl For the minor number: odd => unstable series
@@ -17,7 +17,9 @@ AC_CONFIG_HEADERS(config.h)
 
 dnl automake 1.8 requires autoconf 2.58
 dnl automake 1.7 requires autoconf 2.54
-AM_INIT_AUTOMAKE([1.7])
+dnl automake < 1.8 does not handle TESTS=some-test$(EXEXT) as used
+dnl in test/Makefile.am and perf/Makefile.am
+AM_INIT_AUTOMAKE([1.8])
 
 dnl ===========================================================================
 


More information about the cairo-commit mailing list