michael@0: #!/bin/sh michael@0: if [ -x "`which autoreconf 2>/dev/null`" ] ; then michael@0: exec autoreconf -ivf michael@0: fi michael@0: michael@0: LIBTOOLIZE=libtoolize michael@0: SYSNAME=`uname` michael@0: if [ "x$SYSNAME" = "xDarwin" ] ; then michael@0: LIBTOOLIZE=glibtoolize michael@0: fi michael@0: aclocal -I m4 && \ michael@0: autoheader && \ michael@0: $LIBTOOLIZE && \ michael@0: autoconf && \ michael@0: automake --add-missing --force-missing --copy