diff options
Diffstat (limited to 'platform')
-rw-r--r-- | platform/server/detect.py | 3 | ||||
-rw-r--r-- | platform/x11/detect.py | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/platform/server/detect.py b/platform/server/detect.py index 0a3158e7e8..5c13297bc6 100644 --- a/platform/server/detect.py +++ b/platform/server/detect.py @@ -89,6 +89,9 @@ def configure(env): if (env['builtin_squish'] == 'no' and env["tools"] == "yes"): env.ParseConfig('pkg-config libsquish --cflags --libs') + if env['builtin_zstd'] == 'no': + env.ParseConfig('pkg-config libzstd --cflags --libs') + # Sound and video libraries # Keep the order as it triggers chained dependencies (ogg needed by others, etc.) diff --git a/platform/x11/detect.py b/platform/x11/detect.py index f0503e8bfa..591398dd6d 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -158,6 +158,9 @@ def configure(env): if (env['builtin_squish'] == 'no' and env["tools"] == "yes"): env.ParseConfig('pkg-config libsquish --cflags --libs') + if env['builtin_zstd'] == 'no': + env.ParseConfig('pkg-config libzstd --cflags --libs') + # Sound and video libraries # Keep the order as it triggers chained dependencies (ogg needed by others, etc.) |