diff options
| author | Fabio Alessandrelli | 2018-02-10 14:06:38 +0100 |
|---|---|---|
| committer | Fabio Alessandrelli | 2018-02-14 01:34:25 +0100 |
| commit | bd3c27ba7862d50b1bf54733e9f890f7084a9ea5 (patch) | |
| tree | 0ccca56f5fbc3fde1bc00ee72e272b842329c62f /platform/x11 | |
| parent | 9e2b1b3b009f26fc24bbf02b4b66218f00133907 (diff) | |
| download | godot-bd3c27ba7862d50b1bf54733e9f890f7084a9ea5.tar.gz godot-bd3c27ba7862d50b1bf54733e9f890f7084a9ea5.tar.zst godot-bd3c27ba7862d50b1bf54733e9f890f7084a9ea5.zip | |
Diffstat (limited to 'platform/x11')
| -rw-r--r-- | platform/x11/detect.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/x11/detect.py b/platform/x11/detect.py index 72265c84a..c5ef82150 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -152,6 +152,10 @@ def configure(env): # FIXME: Check for existence of the libs before parsing their flags with pkg-config + if not env['builtin_mbedtls']: + # mbedTLS does not provide a pkgconfig config yet. See https://github.com/ARMmbed/mbedtls/issues/228 + env.Append(LIBS=['mbedtls', 'mbedcrypto', 'mbedx509']) + if not env['builtin_libwebp']: env.ParseConfig('pkg-config libwebp --cflags --libs') |
