diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-06-02 13:16:42 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-06-03 11:00:10 +0200 |
commit | 7c743122172e7f32f184081f743346ad6ac5b332 (patch) | |
tree | 4f1b527a24b213ea5be40471b8e6f8db1d97a462 /modules/theora | |
parent | 030a26206ff70b1050c885270afce89b0430af70 (diff) |
SCons: Validate dependencies for linked multimedia modules
This is still a bit hacky and eventually we should rework the way we handle
optional dependencies (especially with regard to builtin/system libs), but
it's a simple first step.
Fixes #39219.
Diffstat (limited to 'modules/theora')
-rw-r--r-- | modules/theora/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/theora/config.py b/modules/theora/config.py index 413acce2df..b063ed51f9 100644 --- a/modules/theora/config.py +++ b/modules/theora/config.py @@ -1,5 +1,5 @@ def can_build(env, platform): - return True + return env.module_check_dependencies("theora", ["ogg", "vorbis"]) def configure(env): |