[cairo-commit] configure.ac
Behdad Esfahbod
behdad at kemper.freedesktop.org
Tue Sep 30 12:22:24 PDT 2008
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 32a158528884562f4b22a81da3fa352ee1061835
Author: Behdad Esfahbod <behdad at behdad.org>
Date: Tue Sep 30 15:20:36 2008 -0400
[configure.ac] Require autoconf >= 2.59 and automake >= 1.9.6
These are the versions available on RHEL5 (two years old now), and
we know cairo works with them. There's evidence that our build system
does not work with older automake, and we've been requiring autoconf 2.58
but no one ever tested 2.58 with the new build system. It's very likely
that 2.58 doesn't work and needs some macro backporting. In any case,
no one reported that they have 2.58 when I asked on the list.
diff --git a/configure.ac b/configure.ac
index 7caaec7..2c5c4df 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_PREREQ(2.58)
+AC_PREREQ(2.59)
CAIRO_PARSE_VERSION
AC_INIT([cairo],
[cairo_version_major.cairo_version_minor.cairo_version_micro],
@@ -7,7 +7,7 @@ AC_CONFIG_SRCDIR(src/cairo.h)
AC_CONFIG_HEADERS(config.h)
AC_CONFIG_AUX_DIR(build)
AC_CONFIG_MACRO_DIR(build)
-AM_INIT_AUTOMAKE([1.8 gnu -Wall no-define])
+AM_INIT_AUTOMAKE([1.9.6 gnu -Wall no-define])
AC_LIBTOOL_WIN32_DLL dnl Must be called before AC_PROG_LIBTOOL
AC_PROG_LIBTOOL dnl ([1.4]) Don't remove!
GTK_DOC_CHECK([1.6])
More information about the cairo-commit
mailing list