mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-07 06:08:02 +02:00
Like the previous commit. Move code that depends on libnm out of shared to avoid circular dependency. Also add a readme file explaining the reason for existence of the helper library.
15 lines
441 B
Markdown
15 lines
441 B
Markdown
nm-libnm-aux is a static library that:
|
|
|
|
- uses the public parts of "libnm"
|
|
- that can also be statically linked into other users of libnm.
|
|
|
|
Basically, it is a static library with utility functions that extends
|
|
libnm.
|
|
|
|
That means:
|
|
|
|
- you can use it everywhere where you dynamically link with libnm.
|
|
|
|
Also, since nm-libnm-aux itself only uses public (stable)
|
|
API of libnm, you theoretically can copy the sources into your
|
|
own source tree.
|