diff options
author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2023-07-12 16:15:57 +0200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-07-21 16:46:59 +1200 |
commit | bedec42b53b89377e2375786596608f75f4e48fe (patch) | |
tree | f2bcd31d4bba07cff00641968e0f0e2081f7adc5 /configure.ac | |
parent | dac4403390e5fb6afe4b4267506e4c68633fa620 (diff) | |
download | crosstool-ng-bedec42b53b89377e2375786596608f75f4e48fe.tar.gz crosstool-ng-bedec42b53b89377e2375786596608f75f4e48fe.tar.bz2 crosstool-ng-bedec42b53b89377e2375786596608f75f4e48fe.zip |
Revert "Update requirements: autoconf==2.71 and automake>=1.16"
This reverts commit 658f5e574f4025655da318fb0b688a394b6ff43f, which
was made without any justification, and prevents using crosstool-ng
even in decently recent distributions like Ubuntu 20.04 (which has
autoconf 2.69).
We have tested that ./bootstrap && ./configure --enable-local works
fine on Ubuntu 18.04, which uses autoconf 2.69 and automake 1.15, so
the existing requirements were enough.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index 4a33c9ac..9469d217 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -AC_PREREQ([2.71]) +AC_PREREQ([2.69]) AC_INIT( [crosstool-NG], @@ -226,25 +226,25 @@ CTNG_PROG_VERSION_REQ_ANY([LIBTOOLIZE], [libtoolize_2_4_or_newer]) CTNG_PROG_VERSION([AUTOCONF], - [GNU autoconf >= 2.71], + [GNU autoconf >= 2.65], [autoconf], [autoconf], [\(GNU Autoconf\) ([3-9]\.|2\.[7-9][0-9]|2\.6[5-9])], - [autoconf_2_71_or_newer]) + [autoconf_2_65_or_newer]) CTNG_PROG_VERSION([AUTORECONF], - [GNU autoreconf >= 2.71], + [GNU autoreconf >= 2.63], [autoreconf], [autoreconf], [\(GNU Autoconf\) ([3-9]\.|2\.[7-9][0-9]|2\.6[5-9])], - [autoreconf_2_71_or_newer]) + [autoreconf_2_65_or_newer]) CTNG_PROG_VERSION([AUTOMAKE], - [GNU automake >= 1.16], + [GNU automake >= 1.15], [automake], [automake], [\(GNU automake\) ([2-9]\.|1\.[2-9][0-9]|1\.1[5-9])], - [automake_1_16_or_newer]) + [automake_1_15_or_newer]) CTNG_PROG_VERSION([M4], [GNU m4 >= 1.4.12], |