From: Ken Takata Date: Sat, 24 Aug 2024 14:27:50 +0000 (+0200) Subject: patch 9.1.0693: Configure doesn't show result when not using python3 stable abi X-Git-Tag: v9.1.0693^0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dc2c75c6b58ed1532c906ddf6b9ce70ad0804079;p=thirdparty%2Fvim.git 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 Signed-off-by: Christian Brabandt --- 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 @@ -704,6 +704,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 693, /**/ 692, /**/