aboutsummaryrefslogtreecommitdiff
path: root/platform/x11/detect.py
diff options
context:
space:
mode:
authorJuan Linietsky2014-05-01 09:53:37 -0300
committerJuan Linietsky2014-05-01 09:53:37 -0300
commit4dc4e96c8a4fb7e34ecae3a39ef0f3f3fb275e97 (patch)
tree73da4d4d6d0fa1b4c6761a63ac3674aead8b12e3 /platform/x11/detect.py
parent5ab65f0eadec6a67eda622787206a01c8af2cf7e (diff)
downloadgodot-4dc4e96c8a4fb7e34ecae3a39ef0f3f3fb275e97.tar.gz
godot-4dc4e96c8a4fb7e34ecae3a39ef0f3f3fb275e97.tar.zst
godot-4dc4e96c8a4fb7e34ecae3a39ef0f3f3fb275e97.zip
-OpenSSL Fixes
Diffstat (limited to '')
-rw-r--r--platform/x11/detect.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/x11/detect.py b/platform/x11/detect.py
index 8f848aeb9..82aab95e2 100644
--- a/platform/x11/detect.py
+++ b/platform/x11/detect.py
@@ -121,7 +121,8 @@ def configure(env):
env.ParseConfig('pkg-config x11 --cflags --libs')
env.ParseConfig('pkg-config xcursor --cflags --libs')
- env.ParseConfig('pkg-config openssl --cflags --libs')
+ if (env["openssl"]=='yes'):
+ env.ParseConfig('pkg-config openssl --cflags --libs')
env.ParseConfig('pkg-config freetype2 --cflags --libs')