[Python-checkins] bpo-45847: Fix xxlimited and xxlimited_35 build conditions (GH-29715)

tiran webhook-mailer at python.org
Tue Nov 23 02:51:36 EST 2021


https://github.com/python/cpython/commit/758a23d1c4db97b578bc16e0ea110074d65c4c52
commit: 758a23d1c4db97b578bc16e0ea110074d65c4c52
branch: main
author: Erlend Egeberg Aasland <erlend.aasland at innova.no>
committer: tiran <christian at python.org>
date: 2021-11-23T08:51:30+01:00
summary:

bpo-45847: Fix xxlimited and xxlimited_35 build conditions (GH-29715)

files:
M configure
M configure.ac

diff --git a/configure b/configure
index dafcce61d132d..7c0d866cb92a2 100755
--- a/configure
+++ b/configure
@@ -21849,7 +21849,7 @@ $as_echo_n "checking for stdlib extension module xxlimited... " >&6; }
   *xxlimited*) :
     py_cv_module_xxlimited=n/a ;; #(
   *) :
-    if test "$Py_TRACE_REFS" = no; then :
+    if test "$with_trace_refs" = "no"; then :
   if true; then :
   py_cv_module_xxlimited=yes
 else
@@ -21885,7 +21885,7 @@ $as_echo_n "checking for stdlib extension module xxlimited_35... " >&6; }
   *xxlimited_35*) :
     py_cv_module_xxlimited_35=n/a ;; #(
   *) :
-    if test "$Py_TRACE_REFS" = no; then :
+    if test "$with_trace_refs" = "no"; then :
   if true; then :
   py_cv_module_xxlimited_35=yes
 else
diff --git a/configure.ac b/configure.ac
index ec7d1a48a0bee..e63d8af807b78 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6221,8 +6221,8 @@ PY_STDLIB_MOD([_ctypes_test], [test "$TEST_MODULES" = yes], [], [], [-lm])
 
 dnl Limited API template modules.
 dnl The limited C API is not compatible with the Py_TRACE_REFS macro.
-PY_STDLIB_MOD([xxlimited], [test "$Py_TRACE_REFS" = no])
-PY_STDLIB_MOD([xxlimited_35], [test "$Py_TRACE_REFS" = no])
+PY_STDLIB_MOD([xxlimited], [test "$with_trace_refs" = "no"])
+PY_STDLIB_MOD([xxlimited_35], [test "$with_trace_refs" = "no"])
 
 # substitute multiline block, must come after last PY_STDLIB_MOD()
 AC_SUBST([MODULE_BLOCK])



More information about the Python-checkins mailing list