summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-06-30 01:00:17 +0200
committerwm4 <wm4@nowhere>2019-09-19 20:37:05 +0200
commit83d7123dc32e7fb8b1e05ed21af845707d115295 (patch)
treecd9df87968d48507dea631ba00f84bee3686d84f /wscript
parentba31c15c72e080735ef8451fe9a4728f0bceb1d7 (diff)
downloadmpv-83d7123dc32e7fb8b1e05ed21af845707d115295.tar.bz2
mpv-83d7123dc32e7fb8b1e05ed21af845707d115295.tar.xz
vo_gpu: remove mali-fbdev
Useless at this point, I don't even know if it still works, or how to test it.
Diffstat (limited to 'wscript')
-rw-r--r--wscript13
1 files changed, 2 insertions, 11 deletions
diff --git a/wscript b/wscript
index a979b33ac5..f19ba6565a 100644
--- a/wscript
+++ b/wscript
@@ -794,19 +794,10 @@ video_output_features = [
'deps': 'libmpv-shared || libmpv-static',
'func': check_true,
}, {
- 'name': '--mali-fbdev',
- 'desc': 'MALI via Linux fbdev',
- 'deps': 'libdl',
- 'func': compose_checks(
- check_cc(lib="EGL"),
- check_statement('EGL/fbdev_window.h', 'struct fbdev_window test'),
- check_statement('linux/fb.h', 'struct fb_var_screeninfo test'),
- ),
- }, {
'name': '--gl',
'desc': 'OpenGL context support',
'deps': 'gl-cocoa || gl-x11 || egl-x11 || egl-drm || '
- + 'gl-win32 || gl-wayland || rpi || mali-fbdev || '
+ + 'gl-win32 || gl-wayland || rpi || '
+ 'plain-gl',
'func': check_true,
'req': True,
@@ -830,7 +821,7 @@ video_output_features = [
}, {
'name': 'egl-helpers',
'desc': 'EGL helper functions',
- 'deps': 'egl-x11 || mali-fbdev || rpi || gl-wayland || egl-drm || ' +
+ 'deps': 'egl-x11 || rpi || gl-wayland || egl-drm || ' +
'egl-angle-win32 || egl-android',
'func': check_true
}