mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-23 02:26:35 +00:00
meson: Blacklist csound and threadshare plugins for gst-full
They are known to be broken: - csound is missing pkgconfig file. - threadshare duplicates rtp symbols from GStreamer.
This commit is contained in:
parent
4ac60165a8
commit
d1d7e99978
1 changed files with 7 additions and 1 deletions
|
@ -243,7 +243,13 @@ foreach plugin : plugins
|
||||||
variables: {'full_path': plugin.full_path()},
|
variables: {'full_path': plugin.full_path()},
|
||||||
)
|
)
|
||||||
meson.override_dependency(plugin_name, dep)
|
meson.override_dependency(plugin_name, dep)
|
||||||
gst_plugins += dep
|
|
||||||
|
if static_build and plugin_name in ['gstcsound', 'gstthreadshare']
|
||||||
|
warning('Static plugin @0@ is known to fail. It will not be included in libgstreamer-full.'.format(plugin_name))
|
||||||
|
else
|
||||||
|
gst_plugins += dep
|
||||||
|
endif
|
||||||
|
|
||||||
pc_files += [plugin_name + '.pc']
|
pc_files += [plugin_name + '.pc']
|
||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue