mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-21 11:11:37 +00:00
check for sid's autoconf2.50 as the wrapper always reports 2.13
don't rely on the wording of the version string make the cross compile message always print for ac < 2.50 delete configure.in for ac >= 2.50
This commit is contained in:
parent
5dc827ccf8
commit
6b93ec0076
1 changed files with 30 additions and 23 deletions
53
bootstrap
53
bootstrap
|
@ -1,29 +1,36 @@
|
|||
#! /bin/sh
|
||||
# Check Autoconf version
|
||||
if [ -x `which autoconf` ]; then
|
||||
AC_VER=`autoconf --version | head -1 | sed s/\(GNU\ Autoconf\)\ //i | sed s/Autoconf\ //i`
|
||||
AC_VER_MAJOR=`echo $AC_VER | cut -f1 -d'.'`
|
||||
AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.'`
|
||||
|
||||
if [ "$AC_VER_MAJOR" -lt "2" ]; then
|
||||
echo "Autoconf 2.13 or greater needed to build configure."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ "$AC_VER_MINOR" -lt "13" ]; then
|
||||
echo "Autoconf 2.13 or greater needed to build configure."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ "$AC_VER_MINOR" -lt "50" ]; then
|
||||
if [ ! -e configure.in ]; then
|
||||
ln -s configure.ac configure.in
|
||||
echo "If you see some warnings about cross-compiling, don't worry; this is normal."
|
||||
fi
|
||||
fi
|
||||
v250=`which autoconf2.50 2> /dev/null`
|
||||
if [ -x "$v250" ]; then
|
||||
rm -f configure.in
|
||||
else
|
||||
echo Autoconf not found. QuakeForge CVS requires autoconf to bootstrap itself.
|
||||
exit 1
|
||||
if [ -x `which autoconf` ]; then
|
||||
AC_VER=`autoconf --version | head -1 | sed 's/^[^0-9]*//i'`
|
||||
AC_VER_MAJOR=`echo $AC_VER | cut -f1 -d'.'`
|
||||
AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.'`
|
||||
|
||||
if [ "$AC_VER_MAJOR" -lt "2" ]; then
|
||||
echo "Autoconf 2.13 or greater needed to build configure."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ "$AC_VER_MINOR" -lt "13" ]; then
|
||||
echo "Autoconf 2.13 or greater needed to build configure."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ "$AC_VER_MINOR" -lt "50" ]; then
|
||||
if [ ! -e configure.in ]; then
|
||||
ln -s configure.ac configure.in
|
||||
fi
|
||||
echo "If you see some warnings about cross-compiling, don't worry; this is normal."
|
||||
else
|
||||
rm -f configure.in
|
||||
fi
|
||||
else
|
||||
echo Autoconf not found. QuakeForge CVS requires autoconf to bootstrap itself.
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
aclocal && autoheader && libtoolize --automake && automake --add-missing && autoconf
|
||||
|
|
Loading…
Reference in a new issue