summaryrefslogtreecommitdiffstats
path: root/wscript_build.py
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-09-22 05:35:26 +0200
committerwm4 <wm4@nowhere>2017-09-22 05:35:26 +0200
commit2b5da4804cbd54ee780d5abddd17d83fbd2cddec (patch)
treed2215162aeb97570998a548a56c9e7d55c237d97 /wscript_build.py
parent2b855739d50ff924a8124bc61f72a375a88af06f (diff)
downloadmpv-2b5da4804cbd54ee780d5abddd17d83fbd2cddec.tar.bz2
mpv-2b5da4804cbd54ee780d5abddd17d83fbd2cddec.tar.xz
build: make vo_gpu + infrastructure non-optional
Also readd the the error message for when no GL backends are found (why was this removed?).
Diffstat (limited to 'wscript_build.py')
-rw-r--r--wscript_build.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/wscript_build.py b/wscript_build.py
index 1e7a6ee357..a43b1507d1 100644
--- a/wscript_build.py
+++ b/wscript_build.py
@@ -385,16 +385,16 @@ def build(ctx):
( "video/out/dither.c" ),
( "video/out/filter_kernels.c" ),
( "video/out/opengl/angle_dynamic.c", "egl-angle" ),
- ( "video/out/gpu/context.c", "gpu" ),
- ( "video/out/gpu/hwdec.c", "gpu" ),
- ( "video/out/gpu/lcms.c", "gpu" ),
- ( "video/out/gpu/osd.c", "gpu" ),
- ( "video/out/gpu/ra.c", "gpu" ),
- ( "video/out/gpu/shader_cache.c", "gpu" ),
- ( "video/out/gpu/user_shaders.c", "gpu" ),
- ( "video/out/gpu/utils.c", "gpu" ),
- ( "video/out/gpu/video.c", "gpu" ),
- ( "video/out/gpu/video_shaders.c", "gpu" ),
+ ( "video/out/gpu/context.c" ),
+ ( "video/out/gpu/hwdec.c" ),
+ ( "video/out/gpu/lcms.c" ),
+ ( "video/out/gpu/osd.c" ),
+ ( "video/out/gpu/ra.c" ),
+ ( "video/out/gpu/shader_cache.c" ),
+ ( "video/out/gpu/user_shaders.c" ),
+ ( "video/out/gpu/utils.c" ),
+ ( "video/out/gpu/video.c" ),
+ ( "video/out/gpu/video_shaders.c" ),
( "video/out/opengl/common.c", "gl" ),
( "video/out/opengl/formats.c", "gl" ),
( "video/out/opengl/utils.c", "gl" ),
@@ -433,7 +433,7 @@ def build(ctx):
( "video/out/vo_lavc.c", "encoding" ),
( "video/out/vo_rpi.c", "rpi" ),
( "video/out/vo_null.c" ),
- ( "video/out/vo_gpu.c", "gpu" ),
+ ( "video/out/vo_gpu.c" ),
( "video/out/vo_opengl_cb.c", "gl" ),
( "video/out/vo_sdl.c", "sdl2" ),
( "video/out/vo_tct.c" ),