Boost the automake version required to 1.9.
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 5 May 2008 22:01:34 +0000 (22:01 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 5 May 2008 22:01:34 +0000 (22:01 +0000)
(Currently, configure.in also specifies the minimum autoconf and
automake versions, but the check for the automake version doesn't
produce an immediate failure - instead, you might get a flood of

configure.in:16: option `tar-ustar' not recognized

errors *after*

configure.in:16: require version 1.9, but have 1.x.x

and the diagnostic isn't as clear.)

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25242 f5534014-38df-0310-8fa8-9805f1628bb7

autogen.sh

index 90b5e94f1fab0d608e208bcb190bdad96fbe20d3..d86cca928fb9652a57d2f33cde3f589e93026568 100755 (executable)
@@ -47,14 +47,14 @@ esac
 
 AMVER=`$AUTOMAKE --version | grep '^automake' | sed 's/.*) *//'`
 case "$AMVER" in
-1.[6-9]* | 1.[1][0-9]*)
+1.9* | 1.[1][0-9]*)
   ;;
 
 *)
 
   cat >&2 <<_EOF_
 
-       You must have automake 1.6 or later installed to compile $PROJECT.
+       You must have automake 1.9 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_