diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-11-23 07:51:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-23 07:51:30 (GMT) |
commit | 758a23d1c4db97b578bc16e0ea110074d65c4c52 (patch) | |
tree | 2e7755ca0bf2e98fd790e9409041303a636d4d61 /configure.ac | |
parent | 457e6a6e96b5afad403a0bc892508a77beef4d33 (diff) | |
download | cpython-758a23d1c4db97b578bc16e0ea110074d65c4c52.zip cpython-758a23d1c4db97b578bc16e0ea110074d65c4c52.tar.gz cpython-758a23d1c4db97b578bc16e0ea110074d65c4c52.tar.bz2 |
bpo-45847: Fix xxlimited and xxlimited_35 build conditions (GH-29715)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index ec7d1a4..e63d8af 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]) |