summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-08-05 18:14:32 +0200
committerwm4 <wm4@nowhere>2015-08-05 18:14:32 +0200
commit0cd70b2d629828d55879031d615d1abf65e1c7b1 (patch)
tree5d4b3c74bbcf6068ba56d9a29266158f4b7e40fb
parent31b5a211f4421cd593ef7eacda9efb9ee57a59d6 (diff)
downloadmpv-0cd70b2d629828d55879031d615d1abf65e1c7b1.tar.bz2
mpv-0cd70b2d629828d55879031d615d1abf65e1c7b1.tar.xz
build: fix conditions for building gl_hwdec_vda.c
This contains code for the VT and VDA case, thus must be build if at least 1 of them is enabled.
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 687e2bfff3..5e4ff59442 100644
--- a/wscript
+++ b/wscript
@@ -744,7 +744,7 @@ hwaccel_features = [
} , {
'name': 'videotoolbox-vda-gl',
'desc': 'Videotoolbox or VDA with OpenGL',
- 'deps': [ 'videotoolbox-gl', 'vda-gl' ],
+ 'deps_any': [ 'videotoolbox-gl', 'vda-gl' ],
'func': check_true
}, {
'name': '--vdpau-hwaccel',