summaryrefslogtreecommitdiff
path: root/src/supplicant-manager
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2014-05-19 13:44:02 -0400
committerDan Winship <danw@gnome.org>2014-08-01 14:34:05 -0400
commita7c4d53d036c0f75b0903c95de7cb8fbdc47413f (patch)
tree861f6f385edb63a97b405b0593193db382d35aad /src/supplicant-manager
parentc5daa4c4df07d413e5f760eac5a2f686f6062225 (diff)
downloadNetworkManager-a7c4d53d036c0f75b0903c95de7cb8fbdc47413f.tar.gz
all: port everything to libnm
Since the API has not changed at this point, this is mostly just a matter of updating Makefiles, and changing references to the library name in comments. NetworkManager cannot link to libnm due to the duplicated type/symbol names. So it links to libnm-core.la directly, which means that NetworkManager gets a separate copy of that code from libnm.so. Everything else links to libnm.
Diffstat (limited to 'src/supplicant-manager')
-rw-r--r--src/supplicant-manager/tests/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/supplicant-manager/tests/Makefile.am b/src/supplicant-manager/tests/Makefile.am
index 6a32acddca..2d9410c156 100644
--- a/src/supplicant-manager/tests/Makefile.am
+++ b/src/supplicant-manager/tests/Makefile.am
@@ -1,7 +1,7 @@
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
- -I$(top_srcdir)/libnm-util \
- -I$(top_builddir)/libnm-util \
+ -I$(top_srcdir)/libnm-core \
+ -I$(top_builddir)/libnm-core \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/supplicant-manager \
-DG_LOG_DOMAIN=\""NetworkManager"\" \