2013-11-27 17:21:40 -08:00
|
|
|
#!/bin/sh
|
2013-11-27 17:24:26 -08:00
|
|
|
set -e
|
2013-11-27 17:25:58 -08:00
|
|
|
srcdir="$(dirname $0)"
|
|
|
|
cd "$srcdir"
|
2014-06-06 07:23:34 -07:00
|
|
|
if [ -z ${LIBTOOLIZE} ] && GLIBTOOLIZE="`which glibtoolize 2>/dev/null`"; then
|
2014-10-03 11:58:59 -07:00
|
|
|
LIBTOOLIZE="${GLIBTOOLIZE}"
|
|
|
|
export LIBTOOLIZE
|
2014-06-06 07:23:34 -07:00
|
|
|
fi
|
2016-02-12 12:44:42 -08:00
|
|
|
which autoreconf >/dev/null || \
|
|
|
|
(echo "configuration failed, please install autoconf first" && exit 1)
|
2014-08-26 02:39:32 -07:00
|
|
|
autoreconf --install --force --warnings=all
|