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.
This commit is contained in:
@@ -19,11 +19,11 @@
|
||||
|
||||
/*
|
||||
* The example shows how to call AddConnection() D-Bus method to add
|
||||
* a connection to system settings service. It uses dbus-glib and libnm-util
|
||||
* a connection to system settings service. It uses dbus-glib and libnm
|
||||
* libraries.
|
||||
*
|
||||
* Compile with:
|
||||
* gcc -Wall `pkg-config --libs --cflags glib-2.0 dbus-glib-1 libnm-util` add-connection-glib.c -o add-connection-glib
|
||||
* gcc -Wall `pkg-config --libs --cflags glib-2.0 dbus-glib-1 libnm` add-connection-glib.c -o add-connection-glib
|
||||
*/
|
||||
|
||||
#include <glib.h>
|
||||
|
Reference in New Issue
Block a user