1#! /bin/sh
2AC_VERSION=
3
4AUTOMAKE=${AUTOMAKE:-automake}
5AM_INSTALLED_VERSION=$($AUTOMAKE --version | sed -e '2,$ d' -e 's/.* \([0-9]*\.[0-9]*\).*/\1/')
6
7# FIXME: we need a better way for version check later.
8case "$AM_INSTALLED_VERSION" in
9    1.1[1-9])
10	;;
11    *)
12	echo
13	echo "You must have automake >= 1.11 installed."
14	echo "Install the appropriate package for your distribution,"
15	echo "or get the source tarball at http://ftp.gnu.org/gnu/automake/"
16	exit 1
17	;;
18esac
19
20
21if [ "x${ACLOCAL_DIR}" != "x" ]; then
22    ACLOCAL_ARG=-I ${ACLOCAL_DIR}
23fi
24
25set -x
26
27${ACLOCAL:-aclocal$AM_VERSION} ${ACLOCAL_ARG}
28${AUTOHEADER:-autoheader$AC_VERSION} --force
29AUTOMAKE=$AUTOMAKE libtoolize -c --automake --force
30AUTOMAKE=$AUTOMAKE intltoolize -c --automake --force
31$AUTOMAKE --add-missing --copy --include-deps
32${AUTOCONF:-autoconf$AC_VERSION}
33
34rm -rf autom4te.cache
35