diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-06-20 12:08:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-20 12:08:14 (GMT) |
commit | 81686e701cda58fc155f9bbd2fe07c523185914b (patch) | |
tree | 67a4c1555afd5ede2e9c74cf09127b9ce8547039 /configure | |
parent | 5abe4cbe88ecae2f52aa2b320dfbc7b9d1572a10 (diff) | |
download | cpython-81686e701cda58fc155f9bbd2fe07c523185914b.zip cpython-81686e701cda58fc155f9bbd2fe07c523185914b.tar.gz cpython-81686e701cda58fc155f9bbd2fe07c523185914b.tar.bz2 |
gh-84461: Silence some compiler warnings on WASM (GH-93978)
(cherry picked from commit 774ef28814d0d9d57ec813cb31b0a7af6c476127)
Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24763,7 +24763,7 @@ $as_echo_n "checking for stdlib extension module _ctypes_test... " >&6; } if test "$py_cv_module__ctypes_test" != "n/a"; then : if test "$TEST_MODULES" = yes; then : - if true; then : + if test "$ac_cv_func_dlopen" = yes; then : py_cv_module__ctypes_test=yes else py_cv_module__ctypes_test=missing |