diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-06-23 11:21:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-23 11:21:05 +0200 |
commit | 4d6ad16ac4e07ab0e65a75262b2d7ccd1913c844 (patch) | |
tree | 81352995baea990855bcf23ab46e4d4b83cfa845 | |
parent | 05a0a68c72cc16c443301398ab93e8d838401ac0 (diff) | |
parent | 1769cbc0e24c13f4d31d7e0857275653ec9281e0 (diff) |
Merge pull request #29998 from akien-mga/x11-builtin-libpng
SCons: Default to builtin libpng/freetype on Linux
-rw-r--r-- | platform/x11/detect.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/platform/x11/detect.py b/platform/x11/detect.py index 9365b7eabc..9614104750 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -75,11 +75,7 @@ def get_opts(): def get_flags(): - return [ - ('builtin_freetype', False), - ('builtin_libpng', False), - ('builtin_zlib', False), - ] + return [] def configure(env): |