diff options
author | Thomas Haller <thaller@redhat.com> | 2020-06-09 18:06:15 +0200 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2020-06-11 10:53:50 +0200 |
commit | a9408e34974b62e60b5e71fb975e09b7c5c82b7d (patch) | |
tree | c2fa0aa119ac42a256b674a3f1f5ad8772c25f18 /docs | |
parent | e17a067e684d070c438febcc3e5c756eb984e821 (diff) | |
download | NetworkManager-a9408e34974b62e60b5e71fb975e09b7c5c82b7d.tar.gz |
all: move "shared/nm-libnm-core-aux" to "libnm-core/nm-libnm-core-aux"
Like the previous commit. Move code that depends on libnm-core out
of shared to avoid circular dependency.
Also add a readme file explaining the reason for existence of
the helper libraries nm-libnm-core-intern and nm-libnm-core-aux.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/libnm/Makefile.am | 3 | ||||
-rw-r--r-- | docs/libnm/meson.build | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/libnm/Makefile.am b/docs/libnm/Makefile.am index f02c2de4f1..e1a019b313 100644 --- a/docs/libnm/Makefile.am +++ b/docs/libnm/Makefile.am @@ -63,6 +63,9 @@ IGNORE_HFILES= \ nm-ethtool-utils.h \ nm-libnm-core-utils.h \ \ + nm-dispatcher-api.h \ + nm-libnm-core-aux.h \ + \ $(NULL) # Images to copy into HTML directory. diff --git a/docs/libnm/meson.build b/docs/libnm/meson.build index 460e3e224d..275522db2a 100644 --- a/docs/libnm/meson.build +++ b/docs/libnm/meson.build @@ -35,6 +35,9 @@ private_headers = [ 'nm-common-macros.h', 'nm-ethtool-utils.h', 'nm-libnm-core-utils.h', + + 'nm-dispatcher-api.h', + 'nm-libnm-core-aux.h', ] scan_args = [ |