From c6ea59781720e902f74962e02b94f7d1bd0f1043 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 7 Apr 2005 08:59:39 +0000 Subject: [PATCH] check for libtoolize and aclocal to doublecheck the installations better --- buildconf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/buildconf b/buildconf index 84cd8e505..8b6e4256b 100755 --- a/buildconf +++ b/buildconf @@ -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 #