fixup! Introduction of cfgmgr

This commit is contained in:
Colin Vidal
2024-12-19 15:00:00 +01:00
parent a125158762
commit 828c7ad87c
7 changed files with 11 additions and 10 deletions

View File

@@ -14,6 +14,7 @@ libisc_la_HEADERS = \
include/isc/base32.h \
include/isc/base64.h \
include/isc/buffer.h \
include/isc/cfgmgr.h \
include/isc/commandline.h \
include/isc/condition.h \
include/isc/counter.h \
@@ -122,6 +123,7 @@ libisc_la_SOURCES = \
backtrace.c \
base32.c \
base64.c \
cfgmgr.c \
commandline.c \
condition.c \
counter.c \
@@ -214,6 +216,7 @@ libisc_la_CPPFLAGS = \
$(AM_CPPFLAGS) \
$(LIBISC_CFLAGS) \
$(LIBUV_CFLAGS) \
$(LMDB_CFLAGS) \
$(OPENSSL_CFLAGS) \
$(ZLIB_CFLAGS)
@@ -223,6 +226,7 @@ libisc_la_LDFLAGS = \
libisc_la_LIBADD = \
$(LIBUV_LIBS) \
$(LMDB_LIBS) \
$(OPENSSL_LIBS) \
$(ZLIB_LIBS)

View File

@@ -21,8 +21,7 @@
#include <isc/random.h>
#include <isc/thread.h>
#include <isc/util.h>
#include <isccfg/cfgmgr.h>
#include <isc/cfgmgr.h>
/*
* See MDB_MAXKEYSIZE documentation, but not accessible as defined in

View File

@@ -10,8 +10,7 @@ libisccfg_la_HEADERS = \
include/isccfg/duration.h \
include/isccfg/grammar.h \
include/isccfg/kaspconf.h \
include/isccfg/namedconf.h \
include/isccfg/cfgmgr.h
include/isccfg/namedconf.h
libisccfg_la_SOURCES = \
$(libisccfg_la_HEADERS) \
@@ -20,8 +19,7 @@ libisccfg_la_SOURCES = \
duration.c \
kaspconf.c \
namedconf.c \
parser.c \
cfgmgr.c
parser.c
libisccfg_la_CPPFLAGS = \
$(AM_CPPFLAGS) \

View File

@@ -15,6 +15,7 @@ check_PROGRAMS = \
ascii_test \
async_test \
buffer_test \
cfgmgr_test \
counter_test \
dnsstream_utils_test \
errno_test \

View File

@@ -20,9 +20,9 @@
#define UNIT_TESTING
#include <cmocka.h>
#include <isccfg/cfgmgr.h>
#include <isc/cfgmgr.h>
#include "../../lib/isccfg/cfgmgr.c"
#include "../../lib/isc/cfgmgr.c"
#include <tests/isc.h>

View File

@@ -16,7 +16,6 @@ LDADD += \
check_PROGRAMS = \
duration_test \
parser_test \
grammar_test \
cfgmgr_test
grammar_test
include $(top_srcdir)/Makefile.tests