diff options
| author | Juan Linietsky | 2014-05-01 09:53:37 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2014-05-01 09:53:37 -0300 |
| commit | 4dc4e96c8a4fb7e34ecae3a39ef0f3f3fb275e97 (patch) | |
| tree | 73da4d4d6d0fa1b4c6761a63ac3674aead8b12e3 /platform/x11/detect.py | |
| parent | 5ab65f0eadec6a67eda622787206a01c8af2cf7e (diff) | |
| download | godot-4dc4e96c8a4fb7e34ecae3a39ef0f3f3fb275e97.tar.gz godot-4dc4e96c8a4fb7e34ecae3a39ef0f3f3fb275e97.tar.zst godot-4dc4e96c8a4fb7e34ecae3a39ef0f3f3fb275e97.zip | |
-OpenSSL Fixes
Diffstat (limited to '')
| -rw-r--r-- | platform/x11/detect.py | 3 |
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') |
