Merge pull request #16059 from eska014/html5-notls

Disable OpenSSL module in HTML5 platform by default
This commit is contained in:
Rémi Verschelde 2018-01-25 09:14:50 +01:00 committed by GitHub
commit 8afe5b4d9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -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),
] ]