diff options
| author | Rémi Verschelde | 2016-10-30 18:12:00 +0100 |
|---|---|---|
| committer | GitHub | 2016-10-30 18:12:00 +0100 |
| commit | c6c13eb8fc7d4ad631a92edcf360f38210129d39 (patch) | |
| tree | 12e82cb0ab3e2c3953d92ffd2aca5500685b87d7 /platform/x11/detect.py | |
| parent | 1944635ac4f3e9f12b176c2f38d43205195c35c5 (diff) | |
| parent | d710b265f8c9c94f3315d2d2ae2267c7437eb179 (diff) | |
| download | godot-c6c13eb8fc7d4ad631a92edcf360f38210129d39.tar.gz godot-c6c13eb8fc7d4ad631a92edcf360f38210129d39.tar.zst godot-c6c13eb8fc7d4ad631a92edcf360f38210129d39.zip | |
Merge pull request #6490 from zaps166/webm-pr
Add WebM support
Diffstat (limited to 'platform/x11/detect.py')
| -rw-r--r-- | platform/x11/detect.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/x11/detect.py b/platform/x11/detect.py index 917a8a27d..e90af2c69 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -160,6 +160,9 @@ def configure(env): env["libvorbis"] = "system" # Needed to link against system libtheora env.ParseConfig('pkg-config theora theoradec --cflags --libs') + if (env["libvpx"] == "system"): + env.ParseConfig('pkg-config vpx --cflags --libs') + if (env["libvorbis"] == "system"): env["libogg"] = "system" # Needed to link against system libvorbis env.ParseConfig('pkg-config vorbis vorbisfile --cflags --libs') |
