check for libtoolize and aclocal to doublecheck the installations better

This commit is contained in:
Daniel Stenberg 2005-04-07 08:59:39 +00:00
parent 175b00c0a2
commit c6ea597817
1 changed files with 15 additions and 0 deletions

View File

@ -85,6 +85,14 @@ fi
echo "buildconf: automake version $am_version (ok)"
ac=`findtool aclocal`
if test -z "$ac"; then
echo "buildconf: aclocal not found. Weird automake installation!"
exit 1
else
echo "buildconf: aclocal found"
fi
#--------------------------------------------------------------------------
# libtool check
@ -142,6 +150,13 @@ fi
echo "buildconf: libtool version $lt_version (ok)"
if test -f "$LIBTOOLIZE"; then
echo "buildconf: libtoolize found"
else
echo "buildconf: libtoolize not found. Weird libtool installation!"
exit 1
fi
#--------------------------------------------------------------------------
# m4 check
#