* configure.ac: Require autoconf-2.61 and automake-1.10.
authorJim Meyering <jim@meyering.net>
Wed, 27 Dec 2006 10:27:54 +0000 (11:27 +0100)
committerJim Meyering <jim@meyering.net>
Wed, 27 Dec 2006 10:27:54 +0000 (11:27 +0100)
Without the former (even with autoconf-2.60), "make distcheck"
would fail (without the 2006-09-26 autoconf AC_CHECK_DECL fix),
due to an inttypes.h generated with CFLAGS including -pedantic.
With the old decl check, @HAVE_DECL_STRTOUMAX@ would be 0.

ChangeLog
configure.ac

index 1f1e634..5120963 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2006-12-26  Jim Meyering  <jim@meyering.net>
 
+       * configure.ac: Require autoconf-2.61 and automake-1.10.
+       Without the former (even with autoconf-2.60), "make distcheck"
+       would fail (without the 2006-09-26 autoconf AC_CHECK_DECL fix),
+       due to an inttypes.h generated with CFLAGS including -pedantic.
+       With the old decl check, @HAVE_DECL_STRTOUMAX@ would be 0.
+
        * Makefile.maint (VC-tag): Define, so as to gpg-sign each release
        tag, using the release version number as the message.
        (vc-dist): Use $(VC-tag), rather than "$(VC) tag".
index 9617901..25b23b5 100644 (file)
@@ -19,7 +19,7 @@
 
 dnl Written by Jim Meyering.
 
-AC_PREREQ(2.60)
+AC_PREREQ(2.61)
 AC_INIT([GNU coreutils],[6.7-dirty],[bug-coreutils@gnu.org])
 AC_CONFIG_SRCDIR(src/ls.c)
 
@@ -27,7 +27,7 @@ AC_CONFIG_AUX_DIR(build-aux)
 AC_CONFIG_HEADERS([lib/config.h:lib/config.hin])
 
 AB_INIT()
-AM_INIT_AUTOMAKE([1.9.6 gnits dist-bzip2])
+AM_INIT_AUTOMAKE([1.10 gnits dist-bzip2])
 
 AC_PROG_CC_STDC
 AM_PROG_CC_C_O