diff options
| author | Rémi Verschelde | 2016-10-12 23:06:17 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-10-15 11:50:41 +0200 |
| commit | 422196759f93df249db38619f136cabd5dcf42cd (patch) | |
| tree | 1e5846507af0f8f1bc7ca294ccfb0d4ac3392d17 /platform | |
| parent | d9a291f6411f2e571c181da0ac89f550ba73f681 (diff) | |
| download | godot-422196759f93df249db38619f136cabd5dcf42cd.tar.gz godot-422196759f93df249db38619f136cabd5dcf42cd.tar.zst godot-422196759f93df249db38619f136cabd5dcf42cd.zip | |
openssl: Move to a module and split thirdparty lib
Same rationale as the previous commits.
Diffstat (limited to 'platform')
| -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 8a156a6bc..98c2d1e8f 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"): |
