summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'wscript')
-rw-r--r--wscript27
1 files changed, 21 insertions, 6 deletions
diff --git a/wscript b/wscript
index 470c046b01..572be4b176 100644
--- a/wscript
+++ b/wscript
@@ -244,6 +244,10 @@ iconv support use --disable-iconv.",
'func': check_statement(['sys/vt.h', 'sys/ioctl.h'],
'int m; ioctl(0, VT_GETMODE, &m)'),
}, {
+ 'name': 'gbm.h',
+ 'desc': 'gbm.h',
+ 'func': check_cc(header_name=['stdio.h', 'gbm.h']),
+ }, {
'name': 'glibc-thread-name',
'desc': 'GLIBC API for setting thread name',
'func': check_statement('pthread.h',
@@ -569,6 +573,16 @@ video_output_features = [
'name': '--cocoa',
'desc': 'Cocoa',
'func': check_cocoa
+ }, {
+ 'name': '--drm',
+ 'desc': 'DRM',
+ 'deps': [ 'vt.h' ],
+ 'func': check_pkg_config('libdrm'),
+ }, {
+ 'name': '--gbm',
+ 'desc': 'GBM',
+ 'deps': [ 'gbm.h' ],
+ 'func': check_pkg_config('gbm'),
} , {
'name': '--wayland',
'desc': 'Wayland',
@@ -625,6 +639,12 @@ video_output_features = [
'groups': [ 'gl' ],
'func': check_pkg_config('egl', 'gl'),
} , {
+ 'name': '--egl-drm',
+ 'desc': 'OpenGL DRM EGL Backend',
+ 'deps': [ 'drm', 'gbm' ],
+ 'groups': [ 'gl' ],
+ 'func': check_pkg_config('egl', 'gl'),
+ } , {
'name': '--gl-wayland',
'desc': 'OpenGL Wayland Backend',
'deps': [ 'wayland' ],
@@ -686,11 +706,6 @@ video_output_features = [
'desc': 'CACA',
'func': check_pkg_config('caca', '>= 0.99.beta18'),
}, {
- 'name': '--drm',
- 'desc': 'DRM',
- 'deps': [ 'vt.h' ],
- 'func': check_pkg_config('libdrm'),
- }, {
'name': '--jpeg',
'desc': 'JPEG support',
'func': check_cc(header_name=['stdio.h', 'jpeglib.h'],
@@ -725,7 +740,7 @@ video_output_features = [
} , {
'name': '--gl',
'desc': 'OpenGL video outputs',
- 'deps_any': [ 'gl-cocoa', 'gl-x11', 'gl-win32', 'gl-wayland', 'rpi' ],
+ 'deps_any': [ 'gl-cocoa', 'gl-x11', 'egl-drm', 'gl-win32', 'gl-wayland', 'rpi' ],
'func': check_true
}
]