summaryrefslogtreecommitdiff
path: root/modules/webm/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/webm/config.py')
-rw-r--r--modules/webm/config.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/webm/config.py b/modules/webm/config.py
index 93b49d177a..99f8ace114 100644
--- a/modules/webm/config.py
+++ b/modules/webm/config.py
@@ -1,5 +1,8 @@
def can_build(env, platform):
- return platform not in ["iphone"]
+ if platform in ["iphone"]:
+ return False
+
+ return env.module_check_dependencies("webm", ["ogg", "opus", "vorbis"])
def configure(env):