summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-09-27 21:20:46 +0200
committerwm4 <wm4@nowhere>2015-09-27 21:34:11 +0200
commit1fa674c109c05e082bf0fb43be064cbdabea3327 (patch)
tree9a4c109856a68c2795680f156aa394db5ba3ca2b /wscript
parent710872bc22c772d1ea8eb9a0383f5755dae08698 (diff)
downloadmpv-1fa674c109c05e082bf0fb43be064cbdabea3327.tar.bz2
mpv-1fa674c109c05e082bf0fb43be064cbdabea3327.tar.xz
vo_opengl: refactor EGL context information callback
Move the ugliness from x11egl.c to common.c, so that the ugliness doesn't have to be duplicated in wayland.c.
Diffstat (limited to 'wscript')
-rw-r--r--wscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/wscript b/wscript
index abccafdf36..f7cc62e211 100644
--- a/wscript
+++ b/wscript
@@ -609,7 +609,7 @@ video_output_features = [
} , {
'name': '--egl-x11',
'desc': 'OpenGL X11 EGL Backend',
- 'deps': [ 'x11', 'c11-tls' ],
+ 'deps': [ 'x11' ],
'groups': [ 'gl' ],
'func': check_pkg_config('egl', 'gl'),
} , {
@@ -665,6 +665,7 @@ video_output_features = [
}, {
'name': 'vaapi-egl',
'desc': 'VAAPI EGL',
+ 'deps': [ 'c11-tls' ], # indirectly
'deps_any': [ 'vaapi-x-egl' ],
'func': check_true,
}, {