1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 07:38:49 -05:00

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

View File

@ -85,6 +85,14 @@ fi
echo "buildconf: automake version $am_version (ok)" 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 # libtool check
@ -142,6 +150,13 @@ fi
echo "buildconf: libtool version $lt_version (ok)" 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 # m4 check
# #