changeset 36037:d72773f310a4 v9.1.0693

patch 9.1.0693: Configure doesn't show result when not using python3 stable abi Commit: https://github.com/vim/vim/commit/dc2c75c6b58ed1532c906ddf6b9ce70ad0804079 Author: Ken Takata <kentkt@csc.jp> Date: Sat Aug 24 16:27:50 2024 +0200 patch 9.1.0693: Configure doesn't show result when not using python3 stable abi Problem: Configure doesn't show result when not using python3 stable abi (after v9.1.0691) Solution: Add back AC_MSG_RESULT() (Ken Takata) related: #15555 Signed-off-by: Ken Takata <kentkt@csc.jp> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sat, 24 Aug 2024 16:45:03 +0200
parents 9b510ddbbc36
children 970c54e8534c
files src/auto/configure src/configure.ac src/version.c
diffstat 3 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/auto/configure
+++ b/src/auto/configure
@@ -7099,6 +7099,9 @@ then :
      fi
      { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $vi_cv_var_python3_stable_abi" >&5
 printf "%s\n" "$vi_cv_var_python3_stable_abi" >&6; }
+else $as_nop
+  { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
 fi
 
       if test "X$vi_cv_var_python3_stable_abi" != "X"; then
--- a/src/configure.ac
+++ b/src/configure.ac
@@ -1549,7 +1549,8 @@ if test "$enable_python3interp" = "yes" 
      else
        vi_cv_var_python3_stable_abi="$withval"
      fi
-     AC_MSG_RESULT($vi_cv_var_python3_stable_abi)])
+     AC_MSG_RESULT($vi_cv_var_python3_stable_abi)],
+     AC_MSG_RESULT(no))
       if test "X$vi_cv_var_python3_stable_abi" != "X"; then
         AC_CACHE_VAL(vi_cv_var_python3_stable_abi_hex,
         [
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    693,
+/**/
     692,
 /**/
     691,