diff options
author | Christian Heimes <christian@python.org> | 2022-07-31 16:19:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-31 16:19:32 (GMT) |
commit | 06b5f78d64763dfd05aa0cc8b3419de9e9c2ab50 (patch) | |
tree | 0960b96f1829b2d87267616dafc19f77223e9a32 /Tools | |
parent | 147a9a8be79fb5666e264175e3047d6d67b50254 (diff) | |
download | cpython-06b5f78d64763dfd05aa0cc8b3419de9e9c2ab50.zip cpython-06b5f78d64763dfd05aa0cc8b3419de9e9c2ab50.tar.gz cpython-06b5f78d64763dfd05aa0cc8b3419de9e9c2ab50.tar.bz2 |
[3.11] gh-95174: WASI: skip missing sockets functions (GH-95179) (GH-95308)
Co-authored-by: Christian Heimes <christian@python.org>
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/wasm/config.site-wasm32-wasi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tools/wasm/config.site-wasm32-wasi b/Tools/wasm/config.site-wasm32-wasi index f151b7b..237fa8b 100644 --- a/Tools/wasm/config.site-wasm32-wasi +++ b/Tools/wasm/config.site-wasm32-wasi @@ -44,3 +44,7 @@ ac_cv_func_fchmod=no # Disable AF_UNIX and AF_PACKET support, see socketmodule.h. ac_cv_header_sys_un_h=no ac_cv_header_netpacket_packet_h=no + +# disable accept for WASM runtimes without sock_accept +#ac_cv_func_accept=no +#ac_cv_func_accept4=no |