diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2024-05-02 10:55:11 +0200 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2024-05-02 23:03:08 +0200 |
| commit | 3ca60d00b1a3ca3822db5fcf6ba46cf3ac0a6b0b (patch) | |
| tree | dc05bb85b030d436e4fb7a886e1e297299ae6786 /mgmtd | |
| parent | afb3020e285af046efb0fbe8c53e15f2244f0540 (diff) | |
*: add XREF_SETUP() to libraries and utilites
This is theoretically not needed if neither DEFUNs nor zlog_* calls are
used, except I'm about to turn it into a build error to catch the cases
where it _is_ necessary. Which is libmgmt_be_nb.la in this case, where
it causes build failures on hppa.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'mgmtd')
| -rw-r--r-- | mgmtd/mgmt_be_nb.c | 6 | ||||
| -rw-r--r-- | mgmtd/subdir.am | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/mgmtd/mgmt_be_nb.c b/mgmtd/mgmt_be_nb.c new file mode 100644 index 0000000000..613272d407 --- /dev/null +++ b/mgmtd/mgmt_be_nb.c @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "config.h" +#include "xref.h" + +XREF_SETUP(); diff --git a/mgmtd/subdir.am b/mgmtd/subdir.am index 5182c4a47d..14544c4f05 100644 --- a/mgmtd/subdir.am +++ b/mgmtd/subdir.am @@ -16,6 +16,7 @@ clippy_scan += \ lib_LTLIBRARIES += mgmtd/libmgmt_be_nb.la mgmtd_libmgmt_be_nb_la_SOURCES = \ + mgmtd/mgmt_be_nb.c \ zebra/zebra_cli.c \ # end nodist_mgmtd_libmgmt_be_nb_la_SOURCES = \ |
