Skip to content

Commit dc2c75c

Browse files
k-takatachrisbra
authored andcommitted
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 <[email protected]> Signed-off-by: Christian Brabandt <[email protected]>
1 parent d1c8d2d commit dc2c75c

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

src/auto/configure

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7099,6 +7099,9 @@ then :
70997099
fi
71007100
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $vi_cv_var_python3_stable_abi" >&5
71017101
printf "%s\n" "$vi_cv_var_python3_stable_abi" >&6; }
7102+
else $as_nop
7103+
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
7104+
printf "%s\n" "no" >&6; }
71027105
fi
71037106

71047107
if test "X$vi_cv_var_python3_stable_abi" != "X"; then

src/configure.ac

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1549,7 +1549,8 @@ if test "$enable_python3interp" = "yes" -o "$enable_python3interp" = "dynamic";
15491549
else
15501550
vi_cv_var_python3_stable_abi="$withval"
15511551
fi
1552-
AC_MSG_RESULT($vi_cv_var_python3_stable_abi)])
1552+
AC_MSG_RESULT($vi_cv_var_python3_stable_abi)],
1553+
AC_MSG_RESULT(no))
15531554
if test "X$vi_cv_var_python3_stable_abi" != "X"; then
15541555
AC_CACHE_VAL(vi_cv_var_python3_stable_abi_hex,
15551556
[

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,8 @@ static char *(features[]) =
704704

705705
static int included_patches[] =
706706
{ /* Add new patch number below this line */
707+
/**/
708+
693,
707709
/**/
708710
692,
709711
/**/

0 commit comments

Comments
 (0)