mirror of
https://github.com/openwrt/packages.git
synced 2025-12-22 06:04:31 +04:00
Explicitly disable gobject introspection option. Set runtime_dir to /var/run as current glib2 version sets this option to /run by default. Add a patch removing the Python packaging module dependency. Refresh patches. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
11 lines
285 B
Diff
11 lines
285 B
Diff
--- a/glib/meson.build
|
|
+++ b/glib/meson.build
|
|
@@ -404,6 +404,7 @@ pcre2_static_args = []
|
|
|
|
if use_pcre2_static_flag
|
|
pcre2_static_args = ['-DPCRE2_STATIC']
|
|
+ pcre2 = pcre2.as_link_whole()
|
|
endif
|
|
|
|
glib_c_args = ['-DG_LOG_DOMAIN="GLib"'] + glib_c_args_internal + pcre2_static_args
|