Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--meson.build8
1 files changed, 7 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index cf1d7977c..2232baa79 100644
--- a/meson.build
+++ b/meson.build
@@ -243,7 +243,13 @@ foreach plugin : plugins
variables: {'full_path': plugin.full_path()},
)
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']
endforeach