Boost the automake version required to 1.9.

(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.)

svn path=/trunk/; revision=25242
This commit is contained in:
Guy Harris 2008-05-05 22:01:34 +00:00
parent f7c4c23945
commit 773e6321d8
1 changed files with 2 additions and 2 deletions

View File

@ -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_