1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-06-02 06:01:10 +00:00
ezstream/autogen.sh
2020-01-19 00:26:46 +01:00

40 lines
1010 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.69"
_am_version="1.15"
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