Skip to content

Commit

Permalink
gh-116303: Don't build xxlimited and xxlimited_35 if --disable-test-m…
Browse files Browse the repository at this point in the history
…odules is given (#117554)
  • Loading branch information
erlend-aasland committed Apr 5, 2024
1 parent 0edde64 commit 9c1dfe2
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 9c1dfe2

Please sign in to comment.