1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-06-02 06:01:10 +00:00
ezstream/autogen.sh
moritz 22e82f0cb6 Fix for non-libtool project.
git-svn-id: https://svn.xiph.org/trunk/ezstream@16376 0101bb08-14d6-0310-b084-bc0e0c8e3800
2009-08-01 15:26:28 +00:00

40 lines
1008 B
Bash
Executable File

#!/bin/sh
PATH="/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/pkg/bin:/usr/pkg/sbin"
_ac_version="2.61"
_am_version="1.10"
if [ ! -f "./`basename $0`" ]; then
echo "Please chdir into `basename $0`'s directory first."
exit 1
fi
USE_LIBTOOL="$(grep AC_PROG_LIBTOOL ./configure.* 2> /dev/null)"
EXTRA=
if [ -d m4 ]; then
EXTRA="-I m4"
fi
if [ -d /usr/local/share/aclocal ]; then
EXTRA="${EXTRA} -I /usr/local/share/aclocal"
fi
AUTOCONF_VERSION="${_ac_version}" AUTOMAKE_VERSION="${_am_version}" \
aclocal ${EXTRA} || exit 1
AUTOCONF_VERSION="${_ac_version}" AUTOMAKE_VERSION="${_am_version}" \
autoconf || exit 1
AUTOCONF_VERSION="${_ac_version}" AUTOMAKE_VERSION="${_am_version}" \
autoheader || exit 1
if [ -n "${USE_LIBTOOL}" ]; then
AUTOCONF_VERSION="${_ac_version}" AUTOMAKE_VERSION="${_am_version}" \
libtoolize --automake -c -f || exit 1
fi
AUTOCONF_VERSION="${_ac_version}" AUTOMAKE_VERSION="${_am_version}" \
automake -a -c || exit 1
rm -r autom4te.cache
exit 0