2019-01-22 09:32:31 +00:00
|
|
|
x11_dep = dependency('x11', required : get_option('ximagesrc'))
|
2016-08-12 15:42:30 +00:00
|
|
|
|
|
|
|
if x11_dep.found()
|
|
|
|
x_args = []
|
2019-01-22 09:32:31 +00:00
|
|
|
xshm_dep = dependency('xext', required : get_option('ximagesrc-xshm'))
|
2019-01-22 09:51:33 +00:00
|
|
|
# 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)
|
2016-08-12 15:42:30 +00:00
|
|
|
x_args += ['-DHAVE_XSHM']
|
|
|
|
endif
|
|
|
|
|
2019-01-22 09:32:31 +00:00
|
|
|
xfixes_dep = dependency('xfixes', required : get_option('ximagesrc-xfixes'))
|
2016-08-12 15:42:30 +00:00
|
|
|
if xfixes_dep.found()
|
|
|
|
x_args += ['-DHAVE_XFIXES']
|
|
|
|
endif
|
|
|
|
|
2019-01-22 09:32:31 +00:00
|
|
|
xdamage_dep = dependency('xdamage', required : get_option('ximagesrc-xdamage'))
|
2016-08-12 15:42:30 +00:00
|
|
|
if xdamage_dep.found()
|
|
|
|
x_args += ['-DHAVE_XDAMAGE']
|
|
|
|
endif
|
|
|
|
|
|
|
|
gstximagesrc = library('gstximagesrc',
|
|
|
|
'gstximagesrc.c', 'ximageutil.c',
|
|
|
|
c_args : gst_plugins_good_args + x_args,
|
|
|
|
include_directories : [configinc, libsinc],
|
|
|
|
dependencies : [gstbase_dep, gstvideo_dep, x11_dep,
|
|
|
|
xshm_dep, xfixes_dep, xdamage_dep],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-04-24 18:06:10 +00:00
|
|
|
pkgconfig.generate(gstximagesrc, install_dir : plugins_pkgconfig_install_dir)
|
2018-10-22 09:39:55 +00:00
|
|
|
plugins += [gstximagesrc]
|
2016-08-12 15:42:30 +00:00
|
|
|
endif
|