diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-11-08 12:38:16 +0100 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-11-13 10:28:08 +0100 |
commit | 9383610ad15c7163f731e21c0922600c37e0634a (patch) | |
tree | 3cde84b67bb7d544c778f9f3ca3cfdad2d1d0420 /platform/web | |
parent | fc52821cfb950d8b585a663dee734fc476c48116 (diff) | |
download | redot-engine-9383610ad15c7163f731e21c0922600c37e0634a.tar.gz |
[Web] Disable UNIX sockets
They are not supported anyway, emscripten has an emulation layer that
implements them over WebSocket/WebRTC, which is really surprising for
users, and also not very useful since we have proper WebSocket and
WebRTC support.
This can make the build smaller, if we also disable the UPNP module
(which will otherwise include a third party library referencing "socket"
thus forcing emscripten to include the compatibility layer)
Diffstat (limited to 'platform/web')
-rw-r--r-- | platform/web/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/web/detect.py b/platform/web/detect.py index 26bbbccffa..25a5bbe5a5 100644 --- a/platform/web/detect.py +++ b/platform/web/detect.py @@ -201,7 +201,7 @@ def configure(env: "SConsEnvironment"): sys.exit(255) env.Prepend(CPPPATH=["#platform/web"]) - env.Append(CPPDEFINES=["WEB_ENABLED", "UNIX_ENABLED"]) + env.Append(CPPDEFINES=["WEB_ENABLED", "UNIX_ENABLED", "UNIX_SOCKET_UNAVAILABLE"]) if env["opengl3"]: env.AppendUnique(CPPDEFINES=["GLES3_ENABLED"]) |