X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=bootstrap;h=76b98f3b45993438dce5160bcf203d46c4541953;hb=715cb9c1eb1398d49e07d5108c349bbe0307f4cc;hp=62610eef1a71de5684de043af95f63b6276d339f;hpb=dd07aea71f86aa97f05db188c49e0a3c035ee41c;p=netatalk.git diff --git a/bootstrap b/bootstrap index 62610eef..76b98f3b 100755 --- a/bootstrap +++ b/bootstrap @@ -4,14 +4,26 @@ set -x rm -rf autom4te*.cache +LIBTOOLIZE=libtoolize +SYSNAME=`uname` +if [ "x$SYSNAME" = "xDarwin" ] ; then + LIBTOOLIZE=glibtoolize +fi + # build it all. aclocal -I macros $ACLOCAL_FLAGS || exit 1 autoheader || exit 1 -libtoolize --force --copy +$LIBTOOLIZE --force --copy automake --include-deps --add-missing --foreign --copy || exit 1 autoconf || exit 1 -cd libevent && ./autogen.sh +# libevent +cd libevent +aclocal -I m4 && \ + autoheader && \ + $LIBTOOLIZE --force --copy && \ + autoconf && \ + automake --include-deps --add-missing --force-missing --copy || exit 1 # Let's not fall off the end... exit 0