Run glibtoolize on darwin

master
Yevgen Muntyan 2007-12-13 13:36:06 -06:00
parent 6db4ec824e
commit 3b3b0cacce
1 changed files with 10 additions and 1 deletions

View File

@ -21,7 +21,16 @@ ACLOCAL=${ACLOCAL:-aclocal-1.10}
ACLOCAL_FLAGS="$aclocal_extra $ACLOCAL_FLAGS"
AUTOMAKE=${AUTOMAKE:-automake-1.10}
LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
if test -z "$LIBTOOLIZE"; then
case "`uname`" in
Darwin)
LIBTOOLIZE=glibtoolize
;;
*)
LIBTOOLIZE=libtoolize
;;
esac
fi
AUTOHEADER=${AUTOHEADER:-autoheader}
AUTOCONF=${AUTOCONF:-autoconf}