NetworkManager/libnm-core/nm-libnm-core-aux
2021-02-09 12:38:17 +01:00
..
nm-dispatcher-api.h all: update deprecated SPDX license identifiers 2021-01-05 09:46:21 +01:00
nm-libnm-core-aux.c all: add "nm-glib-aux/nm-default-glib-i18n-lib.h" as replacement for "nm-default.h" 2021-02-09 12:38:17 +01:00
nm-libnm-core-aux.h all: update deprecated SPDX license identifiers 2021-01-05 09:46:21 +01:00
README.md all: move "shared/nm-libnm-core-aux" to "libnm-core/nm-libnm-core-aux" 2020-06-11 10:53:50 +02:00

nm-libnm-core-aux is a static library that:

  • uses parts of "libnm-core", that are public API of "libnm"
  • can be statically linked into users of libnm-core (like libnm and NetworkManager).
  • that can also be statically linked into other users of libnm.

Basically, it is a static library with utility functions that extends libnm-core (the part that is public API of libnm), but can also be used without full libnm.

That means:

  • you can use it everywhere where you either statically link with libnm-core, or dynamically link with libnm.
  • you cannot use it inside libnm-core itself. This is the difference between nm-libnm-core-intern and nm-libnm-core-aux.

Also, since nm-libnm-core-aux itself only uses public (stable) API of libnm, you theoretically can copy the sources into your own source tree.