1#! /bin/sh
2
3LIBTOOLIZE=libtoolize
4
5SYSNAME="`uname -s 2>/dev/null`"
6
7case x"$SYSNAME" in
8  x"Darwin")
9    LIBTOOLIZE=glibtoolize
10    ;;
11esac
12
13test -d build-aux || mkdir build-aux
14
15# autoreconf seems to be missing the fact that libtool is used if
16# the macros are not defined first.  So help it.
17test -f ltmain.sh || $LIBTOOLIZE --install --force
18
19autoreconf --force --verbose --install
20