2001-08-15 01:17:56 +00:00
|
|
|
#! /bin/sh
|
2001-10-01 20:49:38 +00:00
|
|
|
cd `dirname $0`
|
2001-10-05 21:34:12 +00:00
|
|
|
# Check libtoolize version, fix for Debian/Woody
|
|
|
|
if [ -x `which libtoolize` ]; then
|
|
|
|
LTIZE_VER=`libtoolize --version | head -1 | sed 's/^[^0-9]*//'`
|
|
|
|
LTIZE_VER_MAJOR=`echo $LTIZE_VER | cut -f1 -d'.'`
|
|
|
|
LTIZE_VER_MINOR=`echo $LTIZE_VER | cut -f2 -d'.'`
|
|
|
|
|
|
|
|
if [ "$LTIZE_VER_MAJOR" -lt "2" -a "$LTIZE_VER_MINOR" -lt "4" ]; then
|
|
|
|
WOODY_FIX="yes";
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2001-08-15 01:17:56 +00:00
|
|
|
# Check Autoconf version
|
2001-08-20 16:36:48 +00:00
|
|
|
if [ -x `which autoconf` ]; then
|
2001-08-23 05:52:51 +00:00
|
|
|
AC_VER=`autoconf --version | head -1 | sed 's/^[^0-9]*//'`
|
2001-08-20 16:36:48 +00:00
|
|
|
AC_VER_MAJOR=`echo $AC_VER | cut -f1 -d'.'`
|
2001-08-23 05:52:51 +00:00
|
|
|
AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.' | sed 's/[^0-9]*$//'`
|
2001-08-15 01:17:56 +00:00
|
|
|
|
2001-08-20 16:36:48 +00:00
|
|
|
if [ "$AC_VER_MAJOR" -lt "2" ]; then
|
|
|
|
echo "Autoconf 2.13 or greater needed to build configure."
|
|
|
|
exit 1
|
|
|
|
fi
|
2001-08-15 01:17:56 +00:00
|
|
|
|
2001-08-20 16:36:48 +00:00
|
|
|
if [ "$AC_VER_MINOR" -lt "13" ]; then
|
|
|
|
echo "Autoconf 2.13 or greater needed to build configure."
|
|
|
|
exit 1
|
|
|
|
fi
|
2001-08-15 01:17:56 +00:00
|
|
|
|
2001-08-20 16:36:48 +00:00
|
|
|
if [ "$AC_VER_MINOR" -lt "50" ]; then
|
|
|
|
if [ ! -e configure.in ]; then
|
|
|
|
ln -s configure.ac configure.in
|
2001-08-15 01:17:56 +00:00
|
|
|
fi
|
2001-08-20 16:36:48 +00:00
|
|
|
echo "If you see some warnings about cross-compiling, don't worry; this is normal."
|
2001-10-05 21:34:12 +00:00
|
|
|
elif [ "$WOODY_FIX" = "yes" ]; then
|
|
|
|
if [ ! -e configure.in ]; then
|
|
|
|
ln -s configure.ac configure.in
|
|
|
|
fi
|
2001-08-15 15:31:02 +00:00
|
|
|
else
|
2001-08-20 16:36:48 +00:00
|
|
|
rm -f configure.in
|
2001-08-15 01:17:56 +00:00
|
|
|
fi
|
2001-08-20 16:36:48 +00:00
|
|
|
else
|
|
|
|
echo Autoconf not found. QuakeForge CVS requires autoconf to bootstrap itself.
|
|
|
|
exit 1
|
2001-08-15 01:17:56 +00:00
|
|
|
fi
|
2001-05-17 16:30:44 +00:00
|
|
|
|
2001-10-08 03:41:23 +00:00
|
|
|
aclocal && autoheader && libtoolize --automake && automake --add-missing && autoconf
|