summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Takata <kentkt@csc.jp>2024-08-24 16:27:50 +0200
committerChristian Brabandt <cb@256bit.org>2024-08-24 16:27:50 +0200
commitdc2c75c6b58ed1532c906ddf6b9ce70ad0804079 (patch)
tree05b28230e5e2c4166f29b8680d999454fe8e545a
parentd1c8d2de4b9fa44b3d2b39b7ed8b92846c5502b7 (diff)
patch 9.1.0693: Configure doesn't show result when not using python3 stable abiv9.1.0693
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>
-rwxr-xr-xsrc/auto/configure3
-rw-r--r--src/configure.ac3
-rw-r--r--src/version.c2
3 files changed, 7 insertions, 1 deletions
diff --git a/src/auto/configure b/src/auto/configure
index 7059554821..4a99071c84 100755
--- 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
diff --git a/src/configure.ac b/src/configure.ac
index abd0c44e73..233e9077fc 100644
--- a/src/configure.ac
+++ b/src/configure.ac
@@ -1549,7 +1549,8 @@ if test "$enable_python3interp" = "yes" -o "$enable_python3interp" = "dynamic";
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,
[
diff --git a/src/version.c b/src/version.c
index 79c81c1071..9522cc8093 100644
--- 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,