aboutsummaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-04-07 08:59:39 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-04-07 08:59:39 +0000
commitc6ea59781720e902f74962e02b94f7d1bd0f1043 (patch)
treea29f6152a530e12aca454b5edab84e2a3e1da3e6 /buildconf
parent175b00c0a29382e51f240dfcb57fd37e4c066f09 (diff)
downloadgnurl-c6ea59781720e902f74962e02b94f7d1bd0f1043.tar.gz
gnurl-c6ea59781720e902f74962e02b94f7d1bd0f1043.tar.bz2
gnurl-c6ea59781720e902f74962e02b94f7d1bd0f1043.zip
check for libtoolize and aclocal to doublecheck the installations better
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf15
1 files changed, 15 insertions, 0 deletions
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
#