This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 1.3.x
in repository https://gitbox.apache.org/repos/asf/tomcat-native.git

commit 32397de1f1546c6eb59dab75ca4fe05d4998fd17
Author: Rainer Jung <[email protected]>
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 | 7 +++++++
 2 files changed, 11 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 968415df6..9ab398cc1 100644
--- a/xdocs/miscellaneous/changelog.xml
+++ b/xdocs/miscellaneous/changelog.xml
@@ -31,6 +31,13 @@
   started from the 1.2.39 tag.
   </p>
 </section>
+<section name="Changes in 1.3.2">
+  <changelog>
+    <update>
+      Update the minimum version of autoconf for releasing to 2.68. (rjung)
+    </update>
+  </changelog>
+</section>
 <section name="Changes in 1.3.1">
   <changelog>
     <fix>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to