Skip to content

Commit

Permalink
pythongh-116303: Don't build xxlimited and xxlimited_35 if --disable-…
Browse files Browse the repository at this point in the history
…test-modules is given
  • Loading branch information
erlend-aasland committed Apr 4, 2024
1 parent 434bc59 commit 2b48f3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions configure.ac
Expand Up @@ -7661,8 +7661,8 @@ PY_STDLIB_MOD([_ctypes_test],

dnl Limited API template modules.
dnl Emscripten does not support shared libraries yet.
PY_STDLIB_MOD([xxlimited], [], [test "$ac_cv_func_dlopen" = yes])
PY_STDLIB_MOD([xxlimited_35], [], [test "$ac_cv_func_dlopen" = yes])
PY_STDLIB_MOD([xxlimited], [test "$TEST_MODULES" = yes], [test "$ac_cv_func_dlopen" = yes])
PY_STDLIB_MOD([xxlimited_35], [test "$TEST_MODULES" = yes], [test "$ac_cv_func_dlopen" = yes])

# substitute multiline block, must come after last PY_STDLIB_MOD()
AC_SUBST([MODULE_BLOCK])
Expand Down

0 comments on commit 2b48f3f

Please sign in to comment.