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 <ken...@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 <ken...@csc.jp> Signed-off-by: Christian Brabandt <c...@256bit.org> diff --git a/src/auto/configure b/src/auto/configure index 705955482..4a99071c8 100755 --- a/src/auto/configure +++ b/src/auto/configure @@ -7099,6 +7099,9 @@ then : fi { printf "%s " "$as_me:${as_lineno-$LINENO}: result: $vi_cv_var_python3_stable_abi" >&5 printf "%s " "$vi_cv_var_python3_stable_abi" >&6; } +else $as_nop + { printf "%s " "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s " "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 abd0c44e7..233e9077f 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 79c81c107..9522cc809 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, /**/ -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/E1shs0l-005Exc-Rd%40256bit.org.