From 09557fa69d38237ac1fb74aa24c278b0b236be7d Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 15 May 2019 11:20:33 +0200 Subject: [PATCH] build: introduce libnm/liblibnm.la as static library for libnm/libnm.la We have "src/libNetworkManager.la" which is an intermediate static library containing everything that ends up in "src/NetworkManager". Likewise, add "libnm/liblibnm.la" to be the static library that contains everything from "libnm/libnm.la". The point of these libraries is to tie everything together that is used by "src/NetworkManager" and "libnm/libnm.la" so that it also can be used by unit-tests. Thereby, the unit tests will link statically against the code of libnm. The problem is that the unit tests also want to access internal functionality of libnm that is not accessible when dynamically linking. In part, this new library replaces "libnm/libnm-utils.la". The previous name was confusing, because to us everything is an "utils", and it's unclear what the purpose of that library was. Now the purpose should be a bit clearer: liblibnm.la is a step before libnm.la, similar to what libNetworkManager.la is to NetworkManager. --- Makefile.am | 38 ++++++++++++++++---------------------- 1 file changed, 16 insertions(+), 22 deletions(-) diff --git a/Makefile.am b/Makefile.am index 4c75d34aab..a015045c3e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1247,6 +1247,7 @@ libnm_lib_c_real = \ libnm/nm-ip-config.c \ libnm/nm-ip4-config.c \ libnm/nm-ip6-config.c \ + libnm/nm-libnm-utils.c \ libnm/nm-manager.c \ libnm/nm-object.c \ libnm/nm-remote-connection.c \ @@ -1278,28 +1279,34 @@ nodist_libnminclude_HEADERS += \ ############################################################################### -noinst_LTLIBRARIES += libnm/libnm-utils.la +noinst_LTLIBRARIES += libnm/liblibnm.la -libnm_libnm_utils_la_CPPFLAGS = \ +libnm_liblibnm_la_CPPFLAGS = \ $(INTROSPECTION_CFLAGS) \ $(libnm_lib_cppflags) \ $(NULL) -libnm_libnm_utils_la_SOURCES = \ - libnm/nm-libnm-utils.c \ +libnm_liblibnm_la_SOURCES = \ + $(libnm_lib_c_real) \ $(NULL) -libnm_libnm_utils_la_LIBADD = \ +libnm_liblibnm_la_LIBADD = \ shared/nm-libnm-core-aux/libnm-libnm-core-aux.la \ libnm-core/libnm-core.la \ $(libnm_crypto_lib) \ shared/nm-libnm-core-intern/libnm-libnm-core-intern.la \ introspection/libnmdbus.la \ shared/nm-glib-aux/libnm-glib-aux.la \ + shared/systemd/libnm-systemd-shared.la \ + shared/systemd/libnm-systemd-logging-stub.la \ + shared/nm-udev-aux/libnm-udev-aux.la \ $(GLIB_LIBS) \ + $(DL_LIBS) \ + $(UUID_LIBS) \ $(NULL) -$(libnm_libnm_utils_la_OBJECTS) : $(libnm_lib_h_pub_mkenums) +$(libnm_liblibnm_la_OBJECTS) : $(libnm_lib_h_pub_mkenums) +$(libnm_liblibnm_la_OBJECTS) : $(libnm_core_lib_h_pub_mkenums) ############################################################################### @@ -1328,7 +1335,6 @@ libnm_libnm_la_CPPFLAGS = \ libnm_libnm_la_SOURCES = \ $(libnm_lib_h_pub_real) \ $(libnm_lib_h_priv) \ - $(libnm_lib_c_real) \ $(NULL) nodist_libnm_libnm_la_SOURCES = \ @@ -1340,13 +1346,7 @@ EXTRA_libnm_libnm_la_DEPENDENCIES = \ libnm/libnm.ver libnm_libnm_la_LIBADD = \ - libnm/libnm-utils.la \ - shared/systemd/libnm-systemd-shared.la \ - shared/systemd/libnm-systemd-logging-stub.la \ - shared/nm-udev-aux/libnm-udev-aux.la \ - $(DL_LIBS) \ - $(GLIB_LIBS) \ - $(UUID_LIBS) \ + libnm/liblibnm.la \ $(NULL) libnm_libnm_la_LDFLAGS = \ @@ -1475,9 +1475,7 @@ libnm_tests_cppflags = \ $(NULL) libnm_tests_ldadd = \ - libnm/libnm.la \ - shared/systemd/libnm-systemd-shared.la \ - shared/systemd/libnm-systemd-logging-stub.la \ + libnm/liblibnm.la \ $(GLIB_LIBS) \ $(NULL) @@ -1509,11 +1507,7 @@ libnm_tests_test_secret_agent_SOURCES = \ shared/nm-test-libnm-utils.h \ libnm/tests/test-secret-agent.c -libnm_tests_test_libnm_LDADD = \ - libnm/libnm-utils.la \ - $(libnm_tests_ldadd) \ - $(NULL) - +libnm_tests_test_libnm_LDADD = $(libnm_tests_ldadd) libnm_tests_test_nm_client_LDADD = $(libnm_tests_ldadd) libnm_tests_test_remote_settings_client_LDADD = $(libnm_tests_ldadd) libnm_tests_test_secret_agent_LDADD = $(libnm_tests_ldadd)