This is an automated email from the ASF dual-hosted git repository. rjung pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat-native.git
The following commit(s) were added to refs/heads/main by this push: new 52728c62b Update the minimum version of autoconf for releasing to 2.68. 52728c62b is described below commit 52728c62ba64a7f42e1e112b3f4f68ee9e1eb065 Author: Rainer Jung <rainer.j...@kippdata.de> AuthorDate: Sun Jun 18 13:51:55 2023 +0200 Update the minimum version of autoconf for releasing to 2.68. --- native/build/buildcheck.sh | 8 ++++---- xdocs/miscellaneous/changelog.xml | 3 +++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/native/build/buildcheck.sh b/native/build/buildcheck.sh index d6a1faff4..e9c3a5616 100755 --- a/native/build/buildcheck.sh +++ b/native/build/buildcheck.sh @@ -30,18 +30,18 @@ py_version=`$python -c 'import sys; print sys.version' 2>&1|sed 's/ .*//;q'` echo "buildconf: python version $py_version (ok)" fi -# autoconf 2.50 or newer +# autoconf 2.68 or newer ac_version=`${AUTOCONF:-autoconf} --version 2>/dev/null|sed -e 's/^[^0-9]*//;s/[a-z]* *$//;q'` if test -z "$ac_version"; then echo "buildconf: autoconf not found." -echo " You need autoconf version 2.50 or newer installed" +echo " You need autoconf version 2.68 or newer installed" echo " to build Tomcat Native from SVN." exit 1 fi IFS=.; set $ac_version; IFS=' ' -if test "$1" = "2" -a "$2" -lt "50" || test "$1" -lt "2"; then +if test "$1" = "2" -a "$2" -lt "68" || test "$1" -lt "2"; then echo "buildconf: autoconf version $ac_version found." -echo " You need autoconf version 2.50 or newer installed" +echo " You need autoconf version 2.68 or newer installed" echo " to build Tomcat Native from SVN." exit 1 else diff --git a/xdocs/miscellaneous/changelog.xml b/xdocs/miscellaneous/changelog.xml index 60aefcbb2..74e92d221 100644 --- a/xdocs/miscellaneous/changelog.xml +++ b/xdocs/miscellaneous/changelog.xml @@ -33,6 +33,9 @@ </section> <section name="Changes in 2.0.5"> <changelog> + <update> + Update the minimum version of autoconf for releasing to 2.68. (rjung) + </update> </changelog> </section> <section name="Changes in 2.0.4"> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org