X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=netatalk.git;a=blobdiff_plain;f=bootstrap;h=76b98f3b45993438dce5160bcf203d46c4541953;hp=1cd523f23a9a372920f744dbca39027a4601dd2c;hb=d2da4b77412a33dc2d62c7877e7b331285dadab6;hpb=34d623c2a366fe23e6e460f2c0e659c29c7080ad diff --git a/bootstrap b/bootstrap index 1cd523f2..76b98f3b 100755 --- a/bootstrap +++ b/bootstrap @@ -4,22 +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 -# Original configure call was: -#./configure --enable-maintainer-mode "$@" -# However, according to: -# http://sources.redhat.com/autobook/autobook/autobook_43.html#SEC43 -# we need to have AM_MAINTAINER_MODE in configure.in in order to use -# this feature. It's not there at the moment, so I'm changing the -# configure call. -# And sometimes I don't want this to run. -# [ -z "$NOEXECCONFIGURE" ] && ./configure "$@" +# 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