Commit c6ea5978 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

check for libtoolize and aclocal to doublecheck the installations better

parent 175b00c0
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -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
#