autogen: fix and improve automake/aclocal detection.

Forgot to edit the first test in commit 6cf2641. If automake/aclocal
1.11 was installed, autogen.sh breaks, even though other higher versions
are installed too, because it is the first test.
Actually I'm not sure I understand this first test. Is it like the
"preferred" automake version?
Also add a test for generic `automake` binary in order to handle newer
versions. Thanks to Éric Hoffman for this proposition.
This commit is contained in:
Jehan 2017-03-24 15:47:35 +01:00
parent 8322ffdac4
commit 8df8cd03f3
1 changed files with 5 additions and 2 deletions

View File

@ -9,10 +9,10 @@
# tools and you shouldn't use this script. Just call ./configure # tools and you shouldn't use this script. Just call ./configure
# directly. # directly.
ACLOCAL=${ACLOCAL-aclocal-1.11} ACLOCAL=${ACLOCAL-aclocal-1.13}
AUTOCONF=${AUTOCONF-autoconf} AUTOCONF=${AUTOCONF-autoconf}
AUTOHEADER=${AUTOHEADER-autoheader} AUTOHEADER=${AUTOHEADER-autoheader}
AUTOMAKE=${AUTOMAKE-automake-1.11} AUTOMAKE=${AUTOMAKE-automake-1.13}
LIBTOOLIZE=${LIBTOOLIZE-libtoolize} LIBTOOLIZE=${LIBTOOLIZE-libtoolize}
AUTOCONF_REQUIRED_VERSION=2.54 AUTOCONF_REQUIRED_VERSION=2.54
@ -166,6 +166,9 @@ elif (automake-1.14 --version) < /dev/null > /dev/null 2>&1; then
elif (automake-1.13 --version) < /dev/null > /dev/null 2>&1; then elif (automake-1.13 --version) < /dev/null > /dev/null 2>&1; then
AUTOMAKE=automake-1.13 AUTOMAKE=automake-1.13
ACLOCAL=aclocal-1.13 ACLOCAL=aclocal-1.13
elif (automake --version) < /dev/null > /dev/null 2>&1; then
AUTOMAKE=automake
ACLOCAL=aclocal
else else
echo echo
echo " You must have automake $AUTOMAKE_REQUIRED_VERSION or newer installed to compile $PROJECT." echo " You must have automake $AUTOMAKE_REQUIRED_VERSION or newer installed to compile $PROJECT."