mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-27 07:00:12 +01:00
[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:
parent
2574cc35b3
commit
c26784dbb6
1 changed files with 4 additions and 2 deletions
|
|
@ -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 ===========================================================================
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue