mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 07:08:23 +00:00
meson: ximage: check for XShmAttach()
Fixes FIXME.
This commit is contained in:
parent
e234932dc7
commit
64a991d7b8
1 changed files with 2 additions and 2 deletions
|
@ -2,9 +2,9 @@ x11_dep = dependency('x11', required : get_option('ximagesrc'))
|
|||
|
||||
if x11_dep.found()
|
||||
x_args = []
|
||||
# FIXME: Need to check for XShmAttach inside libXext
|
||||
xshm_dep = dependency('xext', required : get_option('ximagesrc-xshm'))
|
||||
if xshm_dep.found()
|
||||
# FIXME: should add a 'required' arg to cc.has_function() in Meson and use it here
|
||||
if xshm_dep.found() and cc.has_function('XShmAttach', dependencies: xshm_dep)
|
||||
x_args += ['-DHAVE_XSHM']
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue