mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 17:41:19 +00:00
Disable OpenSSL module in HTML5 platform by default
This commit is contained in:
parent
59e83af201
commit
4a3aaaf276
1 changed files with 5 additions and 0 deletions
|
|
@ -28,6 +28,11 @@ def get_flags():
|
||||||
return [
|
return [
|
||||||
('tools', False),
|
('tools', False),
|
||||||
('module_theora_enabled', False),
|
('module_theora_enabled', False),
|
||||||
|
# Disabling the OpenSSL module noticeably reduces file size.
|
||||||
|
# The module has little use due to the limited networking functionality
|
||||||
|
# in this platform. For the available networking methods, the browser
|
||||||
|
# manages TLS.
|
||||||
|
('module_openssl_enabled', False),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue