commit: cece5b154234aa8c9982feae05f67df8db39e270 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Nov 23 01:12:30 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Nov 23 01:12:30 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cece5b15
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 <AT> gentoo.org> eclass/autotools.eclass | 4 ++-- 1 file 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
