summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2006-07-15 19:25:11 +0000
committerMark Wielaard <mark@klomp.org>2006-07-15 19:25:11 +0000
commita2ff98d1322c65c0f01317d623c4ee38005a0afb (patch)
tree5dc05f0fdb274b4506c0aacb8a0aca12a83a49c8
parent213b253ae705e1a4c7e5c24580901813e8c31301 (diff)
downloadclasspath-a2ff98d1322c65c0f01317d623c4ee38005a0afb.tar.gz
* autogen.sh: Recognize autoconf 2.60.
-rw-r--r--ChangeLog4
-rwxr-xr-xautogen.sh5
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 51901bca8..07cbe08d6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-07-15 Mark Wielaard <mark@klomp.org>
+
+ * autogen.sh: Recognize autoconf 2.60.
+
2006-07-15 Keith Seitz <keiths@redhat.com>
* NEWS: Update for JVMTI and jvmti.h.
diff --git a/autogen.sh b/autogen.sh
index babfa4e5d..9919d15b4 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -41,11 +41,14 @@ if autoconf --version < /dev/null > /dev/null 2>&1 ; then
2.59*)
have_autoconf=true
;;
+ 2.60*)
+ have_autoconf=true
+ ;;
esac
fi
if $have_autoconf ; then : ; else
echo
- echo "You must have autoconf 2.59 installed to compile $PROJECT."
+ echo "You must have autoconf 2.59 or 2.60 installed for $PROJECT."
echo "Install the appropriate package for your distribution,"
echo "or get the source tarball at http://ftp.gnu.org/gnu/autoconf/"
DIE=1