]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.1.0669: if_python: stable python ABI not used by default v9.1.0669
authorKen Takata <kentkt@csc.jp>
Sun, 11 Aug 2024 16:41:41 +0000 (18:41 +0200)
committerChristian Brabandt <cb@256bit.org>
Sun, 11 Aug 2024 16:41:41 +0000 (18:41 +0200)
Problem:  stable python ABI not used by default
Solution: Enable stable python ABI v3.8 when building with python3/dyn
          by default, update the default Python3 version to 3.8 for
          MS-Windows (Ken Takata)

closes: #15470
related: #15457

Signed-off-by: Ken Takata <kentkt@csc.jp>
Signed-off-by: Christian Brabandt <cb@256bit.org>
src/Make_cyg_ming.mak
src/Make_mvc.mak
src/auto/configure
src/configure.ac
src/version.c

index d3b04e813a0b5a16a42cf1c5d597730c2b4a0ce4..8aeba67cd9342145ce5fc09c3c14462dca61e1d8 100644 (file)
@@ -391,14 +391,19 @@ endif
 #      Python3 interface:
 #        PYTHON3=[Path to Python3 directory] (Set inside Make_cyg.mak or Make_ming.mak)
 #        DYNAMIC_PYTHON3=yes (to load the Python3 DLL dynamically)
-#        PYTHON3_VER=[Python3 version, eg 31, 32] (default is 36)
+#        PYTHON3_VER=[Python3 version, eg 31, 32] (default is 38)
 ifdef PYTHON3
  ifndef DYNAMIC_PYTHON3
 DYNAMIC_PYTHON3=yes
  endif
+ ifndef DYNAMIC_PYTHON3_STABLE_ABI
+  ifeq (yes,$(DYNAMIC_PYTHON3))
+DYNAMIC_PYTHON3_STABLE_ABI=yes
+  endif
+ endif
 
  ifndef PYTHON3_VER
-PYTHON3_VER=36
+PYTHON3_VER=38
  endif
  ifeq ($(DYNAMIC_PYTHON3_STABLE_ABI),yes)
 PYTHON3_NAME=python3
index 296d49e8d3a53eff52028b22efe14bf9b9029cc7..49d8a337325d74bda163ddb1ba3dbcd796b61e58 100644 (file)
@@ -80,7 +80,7 @@
 #      Python3 interface:
 #        PYTHON3=[Path to Python3 directory]
 #        DYNAMIC_PYTHON3=yes (to load the Python3 DLL dynamically)
-#        PYTHON3_VER=[Python3 version, eg 30, 31]  (default is 36)
+#        PYTHON3_VER=[Python3 version, eg 30, 31]  (default is 38)
 #
 #      Ruby interface:
 #        RUBY=[Path to Ruby directory]
@@ -994,8 +994,13 @@ PYTHON_LIB = "$(PYTHON)\libs\python$(PYTHON_VER).lib"
 
 # PYTHON3 interface
 !ifdef PYTHON3
+! ifndef DYNAMIC_PYTHON3_STABLE_ABI
+!  if "$(DYNAMIC_PYTHON3)" == "yes"
+DYNAMIC_PYTHON3_STABLE_ABI = yes
+!  endif
+! endif
 ! ifndef PYTHON3_VER
-PYTHON3_VER = 36
+PYTHON3_VER = 38
 ! endif
 ! if "$(DYNAMIC_PYTHON3_STABLE_ABI)" == "yes"
 PYTHON3_NAME = python3
index 26ac458262f70ff8d557d8ac7a50712e4acd3c61..f094827bbeddc3feafb9eefa19f6d43b0db2a85f 100755 (executable)
@@ -1575,7 +1575,7 @@ Optional Packages:
   --with-python-command=NAME  name of the Python 2 command (default: python2 or python)
   --with-python-config-dir=PATH  Python's config directory (deprecated)
   --with-python3-command=NAME  name of the Python 3 command (default: python3 or python)
-  --with-python3-stable-abi=VERSION  stable ABI version to target (e.g. 3.8)
+  --with-python3-stable-abi=VERSION  stable ABI version to target (default: 3.8)
   --with-python3-config-dir=PATH  Python's config directory (deprecated)
   --with-tclsh=PATH       which tclsh to use (default: tclsh8.0)
   --with-ruby-command=RUBY  name of the Ruby command (default: ruby)
@@ -7083,21 +7083,30 @@ printf %s "checking Python is 3.0 or better... " >&6; }
       { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yep" >&5
 printf "%s\n" "yep" >&6; }
 
-            { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking --with-python3-stable-abi argument" >&5
+            python3_stable_abi_default=3.8
+      { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking --with-python3-stable-abi argument" >&5
 printf %s "checking --with-python3-stable-abi argument... " >&6; }
 
 
 # Check whether --with-python3-stable-abi was given.
 if test ${with_python3_stable_abi+y}
 then :
-  withval=$with_python3_stable_abi; vi_cv_var_python3_stable_abi="$withval"; { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $vi_cv_var_python3_stable_abi" >&5
+  withval=$with_python3_stable_abi;
+        if test "X$withval" = "Xyes"; then
+          vi_cv_var_python3_stable_abi=$python3_stable_abi_default
+        else
+          vi_cv_var_python3_stable_abi="$withval"
+        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; }
+
+        vi_cv_var_python3_stable_abi=$python3_stable_abi_default
+        { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no. defaults to $python3_stable_abi_default." >&5
+printf "%s\n" "no. defaults to $python3_stable_abi_default." >&6; }
 fi
 
-      if test "X$vi_cv_var_python3_stable_abi" != "X"; then
+      if test "X$vi_cv_var_python3_stable_abi" != "Xno"; then
         if test ${vi_cv_var_python3_stable_abi_hex+y}
 then :
   printf %s "(cached) " >&6
index 29cd926b56a78a8cbdae0dea553da016cbeb7c0f..43832dcc630046834cc41ce9cb4c605a5a7b8107 100644 (file)
@@ -1539,12 +1539,21 @@ if test "$enable_python3interp" = "yes" -o "$enable_python3interp" = "dynamic";
       AC_MSG_RESULT(yep)
 
       dnl -- get the stable ABI version if passed in
+      python3_stable_abi_default=3.8
       AC_MSG_CHECKING(--with-python3-stable-abi argument)
       AC_SUBST(vi_cv_var_python3_stable_abi)
-      AC_ARG_WITH(python3-stable-abi, [  --with-python3-stable-abi=VERSION  stable ABI version to target (e.g. 3.8)],
-        vi_cv_var_python3_stable_abi="$withval"; 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_ARG_WITH(python3-stable-abi, [  --with-python3-stable-abi=VERSION  stable ABI version to target (default: 3.8)],
+        [
+        if test "X$withval" = "Xyes"; then
+          vi_cv_var_python3_stable_abi=$python3_stable_abi_default
+        else
+          vi_cv_var_python3_stable_abi="$withval"
+        fi
+        AC_MSG_RESULT($vi_cv_var_python3_stable_abi)],
+        [
+        vi_cv_var_python3_stable_abi=$python3_stable_abi_default
+        AC_MSG_RESULT(no. defaults to $python3_stable_abi_default.)])
+      if test "X$vi_cv_var_python3_stable_abi" != "Xno"; then
         AC_CACHE_VAL(vi_cv_var_python3_stable_abi_hex,
         [
          vi_cv_var_python3_stable_abi_hex=`
index 965a20dc8c3f21031e9f312f04a1529c2886268c..c58e82eae2a1719b5535ceae4f42aff47654d113 100644 (file)
@@ -704,6 +704,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    669,
 /**/
     668,
 /**/