X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=autogen.sh;h=ce0c26c87ac5999e2cd4ae0993bbefee669b41ab;hb=ae203fc7854384e6bcbc9bc65a803059b82227fa;hp=82cf19e90f141c466f56de403b70ac945975a2be;hpb=5e2afe9a5f155785617c4f4119f578a8d83331d4;p=mono.git diff --git a/autogen.sh b/autogen.sh index 82cf19e90f1..ce0c26c87ac 100755 --- a/autogen.sh +++ b/autogen.sh @@ -30,8 +30,15 @@ fi DIE=1 } +if [ -z "$LIBTOOL" ]; then + LIBTOOL=`which glibtool 2>/dev/null` + if [ ! -x "$LIBTOOL" ]; then + LIBTOOL=`which libtool` + fi +fi + (grep "^AM_PROG_LIBTOOL" $srcdir/configure.in >/dev/null) && { - (libtool --version) < /dev/null > /dev/null 2>&1 || { + ($LIBTOOL --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`libtool' installed to compile Mono." echo "Get ftp://ftp.gnu.org/pub/gnu/libtool-1.2d.tar.gz" @@ -91,7 +98,7 @@ esac if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then if test -z "$NO_LIBTOOLIZE" ; then echo "Running libtoolize..." - libtoolize --force --copy + ${LIBTOOL}ize --force --copy fi fi