Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
# tools and you shouldn't use this script. Just call ./configure
# directly.

ACLOCAL=${ACLOCAL-aclocal-1.17}
ACLOCAL=${ACLOCAL-aclocal-1.18}
AUTOCONF=${AUTOCONF-autoconf}
AUTOHEADER=${AUTOHEADER-autoheader}
AUTOMAKE=${AUTOMAKE-automake-1.17}
AUTOMAKE=${AUTOMAKE-automake-1.18}
LIBTOOLIZE=${LIBTOOLIZE-libtoolize}
PYTHON=${PYTHON-python}

Expand Down Expand Up @@ -128,6 +128,9 @@ printf "checking for automake >= $AUTOMAKE_REQUIRED_VERSION ... "
if ($AUTOMAKE --version) < /dev/null > /dev/null 2>&1; then
AUTOMAKE=$AUTOMAKE
ACLOCAL=$ACLOCAL
elif (automake-1.18 --version) < /dev/null > /dev/null 2>&1; then
AUTOMAKE=automake-1.18
ACLOCAL=aclocal-1.18
elif (automake-1.17 --version) < /dev/null > /dev/null 2>&1; then
AUTOMAKE=automake-1.17
ACLOCAL=aclocal-1.17
Expand Down