mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
[build] Relax autoconf version requirement
It seems 2.71 only made things we use deprecated, and the new stuff was at least in 2.69.
This commit is contained in:
parent
4391b87d04
commit
f5b8fb0220
2 changed files with 4 additions and 4 deletions
|
@ -71,11 +71,11 @@ if test -n "$ac" ; then
|
||||||
AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.' | sed 's/[^0-9]*$//'`
|
AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.' | sed 's/[^0-9]*$//'`
|
||||||
|
|
||||||
if test "$AC_VER_MAJOR" -lt "2" ; then
|
if test "$AC_VER_MAJOR" -lt "2" ; then
|
||||||
errors="Autoconf 2.71 or greater needed to build configure.\n$errors"
|
errors="Autoconf 2.69 or greater needed to build configure.\n$errors"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$AC_VER_MAJOR" -eq "2" -a "$AC_VER_MINOR" -lt "71" ; then
|
if test "$AC_VER_MAJOR" -eq "2" -a "$AC_VER_MINOR" -lt "69" ; then
|
||||||
errors="Autoconf 2.71 or greater needed to build configure.\n$errors"
|
errors="Autoconf 2.69 or greater needed to build configure.\n$errors"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
dnl Process this file with autoconf to produce a configure script.
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
AC_PREREQ([2.71])
|
AC_PREREQ([2.69])
|
||||||
|
|
||||||
dnl This is the only place where the package name and version appear
|
dnl This is the only place where the package name and version appear
|
||||||
AC_INIT([QuakeForge],m4_esyscmd(config.d/git-version-gen --prefix '' .tarball-version))
|
AC_INIT([QuakeForge],m4_esyscmd(config.d/git-version-gen --prefix '' .tarball-version))
|
||||||
|
|
Loading…
Reference in a new issue