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