From e497ee26dd9fe1db9f2da8e6c751cee40ca28b0d Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Tue, 12 Jan 2021 09:20:14 +0100 Subject: [PATCH] require Autoconf 2.69 for building from git Part of issue #447. Autoconf 2.69 was released in 2012, so it now widely available. The recent release of 2.70 is obsoleting some constructs, so it will be easier on us if we do not have too many versions to support. * HACKING, configure.ac: Require Autoconf 2.69. --- HACKING | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HACKING b/HACKING index d2dec1f5f..46285fa37 100644 --- a/HACKING +++ b/HACKING @@ -21,7 +21,7 @@ generally if you plan to regenerate some of the generated files. (None of these tools are required by end users installing a tarball since the generated files they produce are distributed.) - GNU Autoconf >= 2.61 + GNU Autoconf >= 2.69 GNU Automake >= 1.11 GNU Libtool >= 2.4 GNU Flex >= 2.6 diff --git a/configure.ac b/configure.ac index ee32bd21b..9d83f6600 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -AC_PREREQ([2.63]) +AC_PREREQ([2.69]) AC_INIT([spot], [2.9.5.dev], [spot@lrde.epita.fr]) AC_CONFIG_AUX_DIR([tools]) AC_CONFIG_MACRO_DIR([m4])