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
|
2002-04-07 03:22:46 +00:00
|
|
|
lt=`which libtoolize`
|
2002-04-07 03:43:33 +00:00
|
|
|
if test -n "$lt" ; then
|
|
|
|
if test -x "$lt" ; then
|
2002-04-07 03:31:20 +00:00
|
|
|
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'.'`
|
2001-10-05 21:34:12 +00:00
|
|
|
|
2002-04-07 03:43:33 +00:00
|
|
|
if test "$LTIZE_VER_MAJOR" -lt "2" -a "$LTIZE_VER_MINOR" -lt "4" ; then
|
2002-04-07 03:31:20 +00:00
|
|
|
WOODY_FIX="yes";
|
|
|
|
fi
|
2001-10-05 21:34:12 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2001-08-15 01:17:56 +00:00
|
|
|
# Check Autoconf version
|
2002-04-07 03:22:46 +00:00
|
|
|
ac=`which autoconf`
|
2002-04-07 03:43:33 +00:00
|
|
|
if test -n "$ac" ; then
|
|
|
|
if test -x "$ac" ; then
|
2002-04-07 03:31:20 +00:00
|
|
|
AC_VER=`autoconf --version | head -1 | sed 's/^[^0-9]*//'`
|
|
|
|
AC_VER_MAJOR=`echo $AC_VER | cut -f1 -d'.'`
|
|
|
|
AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.' | sed 's/[^0-9]*$//'`
|
2001-08-15 01:17:56 +00:00
|
|
|
|
2002-04-07 03:43:33 +00:00
|
|
|
if test "$AC_VER_MAJOR" -lt "2" ; then
|
2002-04-07 03:31:20 +00:00
|
|
|
echo "Autoconf 2.13 or greater needed to build configure."
|
|
|
|
exit 1
|
|
|
|
fi
|
2001-08-15 01:17:56 +00:00
|
|
|
|
2002-04-07 03:43:33 +00:00
|
|
|
if test "$AC_VER_MINOR" -lt "13" ; then
|
2002-04-07 03:31:20 +00:00
|
|
|
echo "Autoconf 2.13 or greater needed to build configure."
|
|
|
|
exit 1
|
2001-08-15 01:17:56 +00:00
|
|
|
fi
|
2002-04-07 03:31:20 +00:00
|
|
|
|
2002-04-07 03:43:33 +00:00
|
|
|
if test "$AC_VER_MINOR" -lt "50" ; then
|
2002-04-07 04:16:30 +00:00
|
|
|
if test ! -f configure.in ; then
|
2002-04-07 03:31:20 +00:00
|
|
|
ln -s configure.ac configure.in
|
|
|
|
fi
|
|
|
|
echo "If you see some warnings about cross-compiling, don't worry; this is normal."
|
2002-04-07 03:43:33 +00:00
|
|
|
elif test "$WOODY_FIX" = "yes" ; then
|
2002-04-07 04:16:30 +00:00
|
|
|
if test ! -f configure.in ; then
|
2002-04-07 03:31:20 +00:00
|
|
|
ln -s configure.ac configure.in
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
rm -f configure.in
|
2001-10-05 21:34:12 +00:00
|
|
|
fi
|
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
|