From c26784dbb6d3c90f9e3fa722efa0f9f4fd59bd4c Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Fri, 11 Jan 2008 14:04:56 +0000 Subject: [PATCH] [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. --- configure.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 024b67584..28efab038 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 ===========================================================================