diff options
| author | Rémi Verschelde | 2016-10-12 23:06:17 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-10-30 14:51:32 +0100 |
| commit | 4cd640f6846aff0925bc0680988f0c5ef5919c3a (patch) | |
| tree | 18377e6d59a8d028cd3d4a3c7e648d67bb64ba7e /platform/x11/detect.py | |
| parent | 995dcb610cd5c28bfa0007fd566a619ad512abf2 (diff) | |
| download | godot-4cd640f6846aff0925bc0680988f0c5ef5919c3a.tar.gz godot-4cd640f6846aff0925bc0680988f0c5ef5919c3a.tar.zst godot-4cd640f6846aff0925bc0680988f0c5ef5919c3a.zip | |
openssl: Move to a module and split thirdparty lib
Same rationale as the previous commits.
(cherry picked from commit 422196759f93df249db38619f136cabd5dcf42cd)
Removed the winrt-specific parts.
Diffstat (limited to 'platform/x11/detect.py')
| -rw-r--r-- | platform/x11/detect.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/x11/detect.py b/platform/x11/detect.py index 2e646feda..527ae5d99 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -70,7 +70,7 @@ def get_flags(): return [ ('builtin_zlib', 'no'), ('glew', 'yes'), - ("openssl", "yes"), + ("openssl", "system"), ('freetype','yes'), # use system freetype ('libpng', 'system'), #("theora","no"), @@ -140,7 +140,7 @@ def configure(env): env.ParseConfig('pkg-config xcursor --cflags --libs') env.ParseConfig('pkg-config xrandr --cflags --libs') - if (env["openssl"]=="yes"): + if (env["openssl"] == "system"): env.ParseConfig('pkg-config openssl --cflags --libs') if (env["libpng"] == "system"): |
