#! /bin/sh echo "$0 - for initialization of swish-e build environemnt" echo " not needed for user building" #add --include-deps if you want to bootstrap with any other compiler than gcc #automake --add-missing --copy --include-deps set -x # Mac OS X 10.6 no longer has libtoolize but glibtoolize instead LIBTOOLIZE=`which libtoolize` if [ ! $LIBTOOLIZE ]; then LIBTOOLIZE=`which glibtoolize` fi aclocal -I config \ && $LIBTOOLIZE --force --copy \ && autoheader \ && automake --add-missing --include-deps --copy --foreign \ && autoconf \ && rm -f config.cache