mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
eadedc68f8
GL dependency detection is still automagic. https://bugzilla.gnome.org/show_bug.cgi?id=795107
9 lines
274 B
Meson
9 lines
274 B
Meson
if x11_dep.found()
|
|
# XShm is only used by ximage and xvimage
|
|
# FIXME: Need to check for XShmAttach inside libXext
|
|
xshm_dep = dependency('xext', required : get_option('xshm'))
|
|
core_conf.set('HAVE_XSHM', xshm_dep.found())
|
|
|
|
subdir('ximage')
|
|
subdir('xvimage')
|
|
endif
|