Revert "meson: Remove GIR init section"

This reverts commit b05f0f2b30.
This commit is contained in:
Rafał Dzięgiel
2025-05-27 19:04:40 +02:00
parent 5e2c1a8e30
commit 4a93bea203
3 changed files with 8 additions and 0 deletions

View File

@@ -176,6 +176,7 @@ if build_gir
clappergtk_enums,
],
extra_args: [
gir_init_section,
'--quiet',
'--warn-all',
'-DCLAPPER_GTK_COMPILATION',

View File

@@ -235,6 +235,7 @@ if build_gir
clapper_enums,
],
extra_args: [
gir_init_section,
'--quiet',
'--warn-all',
'-DCLAPPER_COMPILATION',

View File

@@ -4,6 +4,12 @@ build_gir = (gir.found() and not get_option('introspection').disabled())
vapigen = find_program('vapigen', required: get_option('vapi'))
build_vapi = (vapigen.found() and not get_option('vapi').disabled())
gir_init_section = '--add-init-section=extern void gst_init(gint*,gchar**);' + \
'g_setenv("GST_REGISTRY_1.0", "@0@", TRUE);'.format(meson.current_build_dir() + '/gir_empty_registry.reg') + \
'g_setenv("GST_PLUGIN_PATH_1_0", "", TRUE);' + \
'g_setenv("GST_PLUGIN_SYSTEM_PATH_1_0", "", TRUE);' + \
'gst_init(NULL,NULL);'
subdir('gst')
subdir('clapper')
subdir('clapper-gtk')