[Python-checkins] bpo-40280: Disable epoll_create in Emscripten config.site (GH-30494)

tiran webhook-mailer at python.org
Sun Jan 9 05:59:08 EST 2022


https://github.com/python/cpython/commit/5c66414b5561c54e7a0f4bde8cc3271908ea525e
commit: 5c66414b5561c54e7a0f4bde8cc3271908ea525e
branch: main
author: Ethan Smith <ethan at ethanhs.me>
committer: tiran <christian at python.org>
date: 2022-01-09T11:58:59+01:00
summary:

bpo-40280: Disable epoll_create in Emscripten config.site (GH-30494)

Co-authored-by: nick.pope at infogrid.io

files:
M Tools/wasm/config.site-wasm32-emscripten

diff --git a/Tools/wasm/config.site-wasm32-emscripten b/Tools/wasm/config.site-wasm32-emscripten
index 67304be060b52..b291c802e1e4d 100644
--- a/Tools/wasm/config.site-wasm32-emscripten
+++ b/Tools/wasm/config.site-wasm32-emscripten
@@ -33,7 +33,7 @@ ac_cv_lib_bz2_BZ2_bzCompress=no
 # The rest is based on pyodide
 # https://github.com/pyodide/pyodide/blob/main/cpython/pyconfig.undefs.h
 
-ac_cv_func_epoll=no
+ac_cv_func_epoll_create=no
 ac_cv_func_epoll_create1=no
 ac_cv_header_linux_vm_sockets_h=no
 ac_cv_func_socketpair=no



More information about the Python-checkins mailing list