[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:
Bill Currie 2021-11-22 07:35:54 +09:00
parent 4391b87d04
commit f5b8fb0220
2 changed files with 4 additions and 4 deletions

View File

@ -71,11 +71,11 @@ if test -n "$ac" ; then
AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.' | sed 's/[^0-9]*$//'`
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
if test "$AC_VER_MAJOR" -eq "2" -a "$AC_VER_MINOR" -lt "71" ; then
errors="Autoconf 2.71 or greater needed to build configure.\n$errors"
if test "$AC_VER_MAJOR" -eq "2" -a "$AC_VER_MINOR" -lt "69" ; then
errors="Autoconf 2.69 or greater needed to build configure.\n$errors"
fi
fi
else

View File

@ -1,5 +1,5 @@
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
AC_INIT([QuakeForge],m4_esyscmd(config.d/git-version-gen --prefix '' .tarball-version))