mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-28 12:31:29 -05:00
removed the isc_cfg_http_t and isc_cfg_tls_t structures and the functions that loaded and accessed them; this can be done using normal config parser functions.
39 lines
723 B
Makefile
39 lines
723 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
lib_LTLIBRARIES = libisccfg.la
|
|
|
|
libisccfg_ladir = $(includedir)/isccfg
|
|
libisccfg_la_HEADERS = \
|
|
include/isccfg/aclconf.h \
|
|
include/isccfg/cfg.h \
|
|
include/isccfg/grammar.h \
|
|
include/isccfg/kaspconf.h \
|
|
include/isccfg/log.h \
|
|
include/isccfg/namedconf.h
|
|
|
|
libisccfg_la_SOURCES = \
|
|
$(libisccfg_la_HEADERS) \
|
|
aclconf.c \
|
|
dnsconf.c \
|
|
kaspconf.c \
|
|
log.c \
|
|
namedconf.c \
|
|
parser.c
|
|
|
|
libisccfg_la_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
$(LIBISCCFG_CFLAGS) \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS)
|
|
|
|
libisccfg_la_LIBADD = \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBISC_LIBS)
|
|
|
|
libisccfg_la_LDFLAGS = \
|
|
$(AM_LDFLAGS) \
|
|
-release "$(PACKAGE_VERSION)"
|
|
|
|
if HAVE_CMOCKA
|
|
SUBDIRS = tests
|
|
endif
|