diff options
Diffstat (limited to 'devel/dconf/files')
-rw-r--r-- | devel/dconf/files/patch-client_meson.build | 11 | ||||
-rw-r--r-- | devel/dconf/files/patch-gsettings_meson.build | 11 | ||||
-rw-r--r-- | devel/dconf/files/patch-gsettings_symbol.map | 11 |
3 files changed, 33 insertions, 0 deletions
diff --git a/devel/dconf/files/patch-client_meson.build b/devel/dconf/files/patch-client_meson.build new file mode 100644 index 000000000000..168f053dbe26 --- /dev/null +++ b/devel/dconf/files/patch-client_meson.build @@ -0,0 +1,11 @@ +--- client/meson.build.orig 2025-09-15 15:53:57 UTC ++++ client/meson.build +@@ -33,7 +33,7 @@ symbol_map = join_paths(meson.current_source_dir(), 's + ] + + symbol_map = join_paths(meson.current_source_dir(), 'symbol.map') +-ldflags = cc.get_supported_link_arguments('-Wl,--version-script,@0@'.format(symbol_map)) ++ldflags = '-Wl,--version-script,@0@'.format(symbol_map) + + libdconf = shared_library( + 'dconf', diff --git a/devel/dconf/files/patch-gsettings_meson.build b/devel/dconf/files/patch-gsettings_meson.build new file mode 100644 index 000000000000..c556c6ec05c3 --- /dev/null +++ b/devel/dconf/files/patch-gsettings_meson.build @@ -0,0 +1,11 @@ +--- gsettings/meson.build.orig 2025-09-15 15:53:57 UTC ++++ gsettings/meson.build +@@ -4,7 +4,7 @@ symbol_map = join_paths(meson.current_source_dir(), 's + ] + + symbol_map = join_paths(meson.current_source_dir(), 'symbol.map') +-ldflags = cc.get_supported_link_arguments('-Wl,--version-script,@0@'.format(symbol_map)) ++ldflags = '-Wl,--version-script,@0@'.format(symbol_map) + + libdconf_settings = shared_library( + 'dconfsettings', diff --git a/devel/dconf/files/patch-gsettings_symbol.map b/devel/dconf/files/patch-gsettings_symbol.map new file mode 100644 index 000000000000..148f0b87b6af --- /dev/null +++ b/devel/dconf/files/patch-gsettings_symbol.map @@ -0,0 +1,11 @@ +--- gsettings/symbol.map.orig 2025-09-15 15:53:57 UTC ++++ gsettings/symbol.map +@@ -3,8 +3,6 @@ global: + g_io_module_load; + g_io_module_unload; + g_io_module_query; +- environ; +- __progname; + local: + *; + }; |