From: Harri Porten Date: Sun, 15 Dec 2002 13:02:44 +0000 (+0000) Subject: check for libtoolize before attempting to use it X-Git-Tag: dbus-0.1~42 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dd1fcce2286844719bffd300a0267cfb2d1d4a36;p=thirdparty%2Fdbus.git check for libtoolize before attempting to use it --- diff --git a/ChangeLog b/ChangeLog index a373a6c9b..6209e0837 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-12-15 Harri Porten + + * autogen.sh: check for libtoolize before attempting to use it + 2002-12-15 Havoc Pennington * dbus/dbus-threads.c: add thread stubs that a higher library diff --git a/autogen.sh b/autogen.sh index a3923bbc2..0b374df97 100755 --- a/autogen.sh +++ b/autogen.sh @@ -37,6 +37,13 @@ ACLOCAL=aclocal-1.6 DIE=1 } +(libtoolize --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "You must have libtoolize installed to compile $PROJECT." + echo "Install the libtool package from ftp.gnu.org or a mirror." + DIE=1 +} + if test "$DIE" -eq 1; then exit 1 fi