summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-09-18 15:16:24 +0200
committerwm4 <wm4@nowhere>2020-09-18 15:17:07 +0200
commit7831e52238790bf1742b194e0469cf3db5f59bdd (patch)
tree3b4b865889d44830e6cc3553389e7bdfb9692517
parenta7afc79d8f74e87eaf577a50ad362297683080b9 (diff)
downloadmpv-7831e52238790bf1742b194e0469cf3db5f59bdd.tar.bz2
mpv-7831e52238790bf1742b194e0469cf3db5f59bdd.tar.xz
build: disable GLX
Nobody needs this anymore. If not too many people complain, we'll remove this completely. Many already consider X11 and OpenGL legacy, so we don't need TWO X11/OpenGL backends.
-rw-r--r--wscript5
1 files changed, 3 insertions, 2 deletions
diff --git a/wscript b/wscript
index a54a1191dd..6daf92e60b 100644
--- a/wscript
+++ b/wscript
@@ -526,12 +526,13 @@ video_output_features = [
cflags=['-DGL_SILENCE_DEPRECATION'])
} , {
'name': '--gl-x11',
- 'desc': 'OpenGL X11 Backend',
+ 'desc': 'OpenGL X11/GLX (deprecated/legacy)',
'deps': 'x11',
'groups': [ 'gl' ],
'func': check_libs(['GL', 'GL Xdamage'],
check_cc(fragment=load_fragment('gl_x11.c'),
- use=['x11', 'libdl', 'pthreads']))
+ use=['x11', 'libdl', 'pthreads'])),
+ 'default': 'disable',
}, {
'name': '--rpi',
'desc': 'Raspberry Pi support',