diff options
author | Jörg Mayer <jmayer@loplof.de> | 2004-03-05 00:02:43 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2004-03-05 00:02:43 +0000 |
commit | 4dbf16fbe17f77a92aa34f8ea9a98c2fa69c9741 (patch) | |
tree | c7d4901625ad7f23669632b22129360a910921df /autogen.sh | |
parent | b90bc92dfcdc4d513dcd806e5b673455097a3e27 (diff) | |
download | wireshark-4dbf16fbe17f77a92aa34f8ea9a98c2fa69c9741.tar.gz wireshark-4dbf16fbe17f77a92aa34f8ea9a98c2fa69c9741.tar.bz2 wireshark-4dbf16fbe17f77a92aa34f8ea9a98c2fa69c9741.zip |
Libtool requires version 1.4
svn path=/trunk/; revision=10309
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh index b6b7455e34..a5b698d39c 100755 --- a/autogen.sh +++ b/autogen.sh @@ -2,7 +2,7 @@ # # Run this to generate all the initial makefiles. # -# $Id: autogen.sh,v 1.29 2004/03/04 08:25:22 jmayer Exp $ +# $Id: autogen.sh,v 1.30 2004/03/05 00:02:43 jmayer Exp $ DIE=true PROJECT="Ethereal" @@ -69,12 +69,11 @@ else LIBTOOLIZE=glibtoolize fi case "$LTVER" in -0* | 1\.[0-2] | 1\.[0-2][a-z]* | \ -1\.3\.[0-2] | 1\.3\.[0-2][a-z]* ) +0* | 1\.[0-3]* ) cat >&2 <<_EOF_ - You must have libtool 1.3.3 or later installed to compile $PROJECT. + You must have libtool 1.4 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/libtool/ _EOF_ |