[glib-networking] Meson: Add 'recursive: true' to avoid warning
- From: Michael Catanzaro <mcatanzaro src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib-networking] Meson: Add 'recursive: true' to avoid warning
- Date: Fri, 12 Aug 2022 14:43:26 +0000 (UTC)
commit c1640d0d6cbfef298772d335aeab053517332693
Author: Xavier Claessens <xavier claessens collabora com>
Date: Thu Jun 23 10:50:03 2022 -0400
Meson: Add 'recursive: true' to avoid warning
In our case it makes no difference, but Meson prints warning if we don't
specify that keyword argument.
proxy/environment/meson.build | 2 +-
proxy/gnome/meson.build | 2 +-
proxy/libproxy/meson.build | 2 +-
tls/gnutls/meson.build | 2 +-
tls/openssl/meson.build | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/proxy/environment/meson.build b/proxy/environment/meson.build
index 9cc18071..e2e0ffa6 100644
--- a/proxy/environment/meson.build
+++ b/proxy/environment/meson.build
@@ -28,7 +28,7 @@ module = shared_module(
if get_option('static_modules') or get_option('default_library') != 'shared'
gioenvironmentproxy_lib = static_library('gioenvironmentproxy',
- objects: module.extract_all_objects(),
+ objects: module.extract_all_objects(recursive: true),
install: true,
install_dir: gio_module_dir
)
diff --git a/proxy/gnome/meson.build b/proxy/gnome/meson.build
index fdb51856..b171bfec 100644
--- a/proxy/gnome/meson.build
+++ b/proxy/gnome/meson.build
@@ -25,7 +25,7 @@ module = shared_module(
if get_option('static_modules') or get_option('default_library') != 'shared'
giognomeproxy_lib = static_library('giognomeproxy',
- objects: module.extract_all_objects(),
+ objects: module.extract_all_objects(recursive: true),
install: true,
install_dir: gio_module_dir
)
diff --git a/proxy/libproxy/meson.build b/proxy/libproxy/meson.build
index 0fb77819..b06f77db 100644
--- a/proxy/libproxy/meson.build
+++ b/proxy/libproxy/meson.build
@@ -49,7 +49,7 @@ module = shared_module(
if get_option('static_modules') or get_option('default_library') != 'shared'
giolibproxy_lib = static_library('giolibproxy',
- objects: module.extract_all_objects(),
+ objects: module.extract_all_objects(recursive: true),
install: true,
install_dir: gio_module_dir
)
diff --git a/tls/gnutls/meson.build b/tls/gnutls/meson.build
index 4e6c8965..9d7b1637 100644
--- a/tls/gnutls/meson.build
+++ b/tls/gnutls/meson.build
@@ -36,7 +36,7 @@ if get_option('static_modules') or get_option('default_library') != 'shared'
# link_whole is a workaround for a meson bug
# https://github.com/mesonbuild/meson/pull/3939
giognutls_lib = static_library('giognutls',
- objects: module.extract_all_objects(),
+ objects: module.extract_all_objects(recursive: true),
install: true,
install_dir: gio_module_dir,
link_whole: [tlsbase]
diff --git a/tls/openssl/meson.build b/tls/openssl/meson.build
index 40b46f1f..43d78c24 100644
--- a/tls/openssl/meson.build
+++ b/tls/openssl/meson.build
@@ -49,7 +49,7 @@ if get_option('static_modules') or get_option('default_library') != 'shared'
# link_whole is a workaround for a meson bug
# https://github.com/mesonbuild/meson/pull/3939
gioopenssl_lib = static_library('gioopenssl',
- objects: module.extract_all_objects(),
+ objects: module.extract_all_objects(recursive: true),
install: true,
install_dir: gio_module_dir,
link_whole: [tlsbase]
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]