From cb74a24fbdde07cc5703c290babb46a01b9e5db0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Cerveau?= Date: Fri, 30 Apr 2021 11:08:10 +0200 Subject: [PATCH] gstreamer-full: error about introspection The introspection feature is not supported yet in static build. Needs https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/167/diffs Part-of: --- meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meson.build b/meson.build index 61373021f8..0cd65ecd6f 100644 --- a/meson.build +++ b/meson.build @@ -248,6 +248,9 @@ libraries_map = { } if get_option('default_library') == 'static' + if not get_option('introspection').disabled() + error('GObject Introspection is not supported in static builds. Please use -Dintrospection=disabled') + endif # Generate a .c file which declare and register all built plugins plugins_names = [] foreach plugin: all_plugins