changeset in /hg/icedtea6: * autogen.sh: Check for autoconf > 2.61.

Mark Wielaard mark at klomp.org
Fri Nov 28 03:10:07 PST 2008


changeset 87340a659b5a in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=87340a659b5a
description:
	* autogen.sh: Check for autoconf > 2.61.
		* configure.ac: Remove AC_PREREQ([2.61]).

diffstat:

3 files changed, 7 insertions(+), 3 deletions(-)
ChangeLog    |    5 +++++
autogen.sh   |    4 ++--
configure.ac |    1 -

diffs (41 lines):

diff -r c7a7e41ec581 -r 87340a659b5a ChangeLog
--- a/ChangeLog	Wed Nov 26 10:57:55 2008 +0100
+++ b/ChangeLog	Fri Nov 28 12:09:58 2008 +0100
@@ -1,3 +1,8 @@ 2008-11-26  Mark Wielaard  <mark at klomp.o
+2008-11-28  Mark Wielaard  <mark at klomp.org>
+
+	* autogen.sh: Check for autoconf > 2.61.
+	* configure.ac: Remove AC_PREREQ([2.61]).
+
 2008-11-26  Mark Wielaard  <mark at klomp.org>
 
 	* .hgignore: Add test/jtreg-summary.log.
diff -r c7a7e41ec581 -r 87340a659b5a autogen.sh
--- a/autogen.sh	Wed Nov 26 10:57:55 2008 +0100
+++ b/autogen.sh	Fri Nov 28 12:09:58 2008 +0100
@@ -11,7 +11,7 @@ for AUTOCONF in autoconf autoconf259; do
         AUTOCONF_VERSION=`${AUTOCONF} --version | sed 's/^[^0-9]*\([0-9.][0-9.]*\).*/\1/'`
 #        echo ${AUTOCONF_VERSION}
         case ${AUTOCONF_VERSION} in
-            2.59* | 2.6[0-9]* )
+            2.6[1-9]* )
                 HAVE_AUTOCONF=true
                 break;
                 ;;
@@ -55,7 +55,7 @@ done
 
 if test ${HAVE_AUTOCONF} = false; then
     echo "No proper autoconf was found."
-    echo "You must have autoconf 2.59 or later installed."
+    echo "You must have autoconf 2.61 or later installed."
     exit 1
 fi
 
diff -r c7a7e41ec581 -r 87340a659b5a configure.ac
--- a/configure.ac	Wed Nov 26 10:57:55 2008 +0100
+++ b/configure.ac	Fri Nov 28 12:09:58 2008 +0100
@@ -1,4 +1,3 @@ AC_PREREQ([2.61])
-AC_PREREQ([2.61])
 AC_INIT([icedtea6], [1.4], [distro-pkg-dev at openjdk.java.net])
 AM_INIT_AUTOMAKE([1.10 tar-pax foreign])
 AC_CONFIG_FILES([Makefile])



More information about the distro-pkg-dev mailing list