diff options
author | Sam James <sam@gentoo.org> | 2022-11-23 01:12:30 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-11-23 01:12:30 +0000 |
commit | cece5b154234aa8c9982feae05f67df8db39e270 (patch) | |
tree | 1130928c0f398f7ab6de7eae2ffa5c46e295d33d /eclass/autotools.eclass | |
parent | sys-devel/autoconf: Stabilize 2.13-r7 x86, #882429 (diff) | |
download | gentoo-cece5b154234aa8c9982feae05f67df8db39e270.tar.gz gentoo-cece5b154234aa8c9982feae05f67df8db39e270.tar.bz2 gentoo-cece5b154234aa8c9982feae05f67df8db39e270.zip |
autotools.eclass: crank up autoconf minimum versions
This ensures we have versions which have Clang 16 / GCC 14 / stricter
compiler fixes, so 'eautoreconf' will Do The Right Thing.
Closes: https://bugs.gentoo.org/870412
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass/autotools.eclass')
-rw-r--r-- | eclass/autotools.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index ab9040d99c73..650ef17f66d7 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -93,9 +93,9 @@ fi if [[ -n ${WANT_AUTOCONF} ]] ; then case ${WANT_AUTOCONF} in none) _autoconf_atom="" ;; # some packages don't require autoconf at all - 2.1) _autoconf_atom="~sys-devel/autoconf-2.13" ;; + 2.1) _autoconf_atom="~sys-devel/autoconf-2.13-r7" ;; # if you change the "latest" version here, change also autotools_env_setup - latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.71" ;; + latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.71-r5" ;; *) die "Invalid WANT_AUTOCONF value '${WANT_AUTOCONF}'" ;; esac export WANT_AUTOCONF |