[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.
This commit is contained in:
Chris Wilson 2008-01-11 14:04:56 +00:00
parent 2574cc35b3
commit c26784dbb6

View file

@ -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 ===========================================================================