mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-19 20:46:22 +00:00
meson: Unset the plugin paths to generate the .gir files
Avoiding problems when using subproject: Failed to load plugin 'something.so: file too short
This commit is contained in:
parent
9f765e1787
commit
7610e50fd0
1 changed files with 5 additions and 1 deletions
|
@ -294,7 +294,11 @@ gnome = import('gnome')
|
||||||
# Fixme, not very elegant.
|
# Fixme, not very elegant.
|
||||||
build_gir = gir.found() and not meson.is_cross_build() and not get_option('disable_introspection')
|
build_gir = gir.found() and not meson.is_cross_build() and not get_option('disable_introspection')
|
||||||
|
|
||||||
gir_init_section = [ '--add-init-section=extern void gst_init(gint*,gchar**); gst_init(NULL,NULL);' ]
|
gir_init_section = [ '--add-init-section=extern void gst_init(gint*,gchar**);' + \
|
||||||
|
'g_setenv("GST_REGISTRY_1.0", "/no/way/this/exists.reg", TRUE);' + \
|
||||||
|
'g_setenv("GST_PLUGIN_PATH_1_0", "", TRUE);' + \
|
||||||
|
'g_setenv("GST_PLUGIN_SYSTEM_PATH_1_0", "", TRUE);' + \
|
||||||
|
'gst_init(NULL,NULL);' ]
|
||||||
vs_module_defs_dir = meson.current_source_dir() + '/win32/common/'
|
vs_module_defs_dir = meson.current_source_dir() + '/win32/common/'
|
||||||
|
|
||||||
gst_c_args = ['-DHAVE_CONFIG_H']
|
gst_c_args = ['-DHAVE_CONFIG_H']
|
||||||
|
|
Loading…
Reference in a new issue