mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
68 lines
1.9 KiB
Bash
Executable file
68 lines
1.9 KiB
Bash
Executable file
#! /bin/sh
|
|
cd `dirname $0`
|
|
# Check libtoolize version, fix for Debian/Woody
|
|
lt=`which libtoolize`
|
|
if test -n "$lt" ; then
|
|
if test -x "$lt" ; 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 test "$LTIZE_VER_MAJOR" -lt "1"; then
|
|
echo "Libtool 1.4 or greater needed to build configure."
|
|
exit 1
|
|
fi
|
|
if test "$LTIZE_VER_MAJOR" -eq "1" -a "$LTIZE_VER_MINOR" -lt "4" ; then
|
|
echo "Libtool 1.4 or greater needed to build configure."
|
|
exit 1
|
|
fi
|
|
fi
|
|
else
|
|
echo Libtool not found. QuakeForge CVS requires libtool to bootstrap itself.
|
|
exit 1
|
|
fi
|
|
|
|
# Check Autoconf version
|
|
ac=`which autoconf`
|
|
if test -n "$ac" ; then
|
|
if test -x "$ac" ; then
|
|
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]*$//'`
|
|
|
|
if test "$AC_VER_MAJOR" -lt "2" ; then
|
|
echo "Autoconf 2.52 or greater needed to build configure."
|
|
exit 1
|
|
fi
|
|
|
|
if test "$AC_VER_MAJOR" -eq "2" -a "$AC_VER_MINOR" -lt "52" ; then
|
|
echo "Autoconf 2.52 or greater needed to build configure."
|
|
exit 1
|
|
fi
|
|
fi
|
|
else
|
|
echo Autoconf not found. QuakeForge CVS requires autoconf to bootstrap itself.
|
|
exit 1
|
|
fi
|
|
|
|
am=`which automake`
|
|
if test -n "$am" ; then
|
|
if test -x "$am" ; then
|
|
AM_VER=`automake --version | head -1 | sed 's/automake (GNU automake) //'`
|
|
AM_VER_MAJOR=`echo $AM_VER | cut -f1 -d.`
|
|
AM_VER_MINOR=`echo $AM_VER | cut -f2 -d.`
|
|
if test "$AM_VER_MAJOR" -lt "1"; then
|
|
echo "Need automake version 1.6 or higher"
|
|
exit 1
|
|
fi
|
|
if test "$AM_VER_MAJOR" -eq "1" -a "$AM_VER_MINOR" -lt "6"; then
|
|
echo "Need automake version 1.6 or higher"
|
|
exit 1
|
|
fi
|
|
fi
|
|
else
|
|
echo Automake not found. QuakeForge CVS requires automake to bootstrap itself.
|
|
exit 1
|
|
fi
|
|
|
|
aclocal && autoheader && libtoolize --automake && automake --add-missing && autoconf
|