aboutsummaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2004-03-03 21:35:57 +0000
committerJörg Mayer <jmayer@loplof.de>2004-03-03 21:35:57 +0000
commitc4884cab89abc280be0d01d3167a016b8477b130 (patch)
treef423eb0a84652b54756c4182c0f17eae5a69b0d0 /autogen.sh
parent10273f038f968be7ac68db9740bcc9146f42f2c4 (diff)
Require autoconf 2.53 and automake 1.6
svn path=/trunk/; revision=10287
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/autogen.sh b/autogen.sh
index 6ada74cd08..ee479bfe8a 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -2,7 +2,7 @@
#
# Run this to generate all the initial makefiles.
#
-# $Id: autogen.sh,v 1.26 2003/06/22 22:50:40 jmayer Exp $
+# $Id: autogen.sh,v 1.27 2004/03/03 21:35:55 jmayer Exp $
DIE=true
PROJECT="Ethereal"
@@ -23,11 +23,11 @@ fi
ACVER=`autoconf --version | grep '^autoconf' | sed 's/.*)//'`
case "$ACVER" in
-0* | 1\.* | 2\.[0-9] | 2\.[0-9][a-z]* | \
-2\.1[0-2] | 2\.1[0-2][a-z]* )
+0* | 1\.* | 2\.[0-4]* | \
+2\.5[0-2] | 2\.5[0-2][a-z]* )
cat >&2 <<_EOF_
- You must have autoconf 2.13 or later installed to compile $PROJECT.
+ You must have autoconf 2.53 or later installed to compile $PROJECT.
Download the appropriate package for your distribution/OS,
or get the source tarball at ftp://ftp.gnu.org/pub/gnu/autoconf/
_EOF_
@@ -38,11 +38,11 @@ esac
AMVER=`automake --version | grep '^automake' | sed 's/.*)//'`
case "$AMVER" in
-0* | 1\.[0-3] | 1\.[0-3][a-z]* )
+0* | 1\.[0-5] | 1\.[0-5][a-z]* )
cat >&2 <<_EOF_
- You must have automake 1.4 or later installed to compile $PROJECT.
+ You must have automake 1.6 or later installed to compile $PROJECT.
Download the appropriate package for your distribution/OS,
or get the source tarball at ftp://ftp.gnu.org/pub/gnu/automake/
_EOF_