summaryrefslogtreecommitdiff
path: root/libnm-glib
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-01-11 17:02:12 +0100
committerThomas Haller <thaller@redhat.com>2018-01-12 09:37:55 +0100
commit54641388f8af6bf9e3de3105571362167a8aed00 (patch)
treec6e6fa9fc9cbc4affe3b48909afbd84436b99b51 /libnm-glib
parent4fc4c16092ca886442bf3e0542f3283028a110c4 (diff)
meson: Fix missing symbols in libnm-glib
The following symbols are missing from the libnm-glib library: * libnm_glib_get_network_state * libnm_glib_init * libnm_glib_register_callback * libnm_glib_shutdown * libnm_glib_unregister_callback This has been changed by linking `libdeprecated_nm_glib` as a whole. https://mail.gnome.org/archives/networkmanager-list/2018-January/msg00056.html
Diffstat (limited to 'libnm-glib')
-rw-r--r--libnm-glib/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/libnm-glib/meson.build b/libnm-glib/meson.build
index 68ffcec4ba..a236ec08bd 100644
--- a/libnm-glib/meson.build
+++ b/libnm-glib/meson.build
@@ -200,7 +200,7 @@ libnm_glib = shared_library(
c_args: cflags + [
'-DNMRUNDIR="@0@"'.format(nm_pkgrundir),
],
- link_with: libdeprecated_nm_glib,
+ link_whole: libdeprecated_nm_glib,
link_args: [
'-Wl,--version-script,@0@'.format(linker_script),
],