summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'wscript')
-rw-r--r--wscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/wscript b/wscript
index ff946900da..b7fc0b474d 100644
--- a/wscript
+++ b/wscript
@@ -647,17 +647,17 @@ video_output_features = [
check_cc(fragment=load_fragment('gl_x11.c'),
use=['x11', 'libdl', 'pthreads']))
} , {
- 'name': '--egl15',
- 'desc': 'EGL 1.5',
+ 'name': '--egl',
+ 'desc': 'EGL 1.4',
'groups': [ 'gl' ],
'func': compose_checks(
check_pkg_config('egl'),
- check_statement(['EGL/egl.h'], 'int x[EGL_VERSION_1_5]')
+ check_statement(['EGL/egl.h'], 'int x[EGL_VERSION_1_4]')
),
} , {
'name': '--egl-x11',
'desc': 'OpenGL X11 EGL Backend',
- 'deps': 'x11 && egl15',
+ 'deps': 'x11 && egl',
'groups': [ 'gl' ],
'func': check_true,
} , {