mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 22:15:20 +00:00
Remove the complicated mechanism that could be (in theory) used by external libraries to register new categories and modules with statically defined lists in <isc/log.h>. This is similar to what we have done for <isc/result.h> result codes. All the libraries are now internal to BIND 9, so we don't need to provide a mechanism to register extra categories and modules.
46 lines
877 B
Makefile
46 lines
877 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/check.h \
|
|
include/isccfg/duration.h \
|
|
include/isccfg/grammar.h \
|
|
include/isccfg/kaspconf.h \
|
|
include/isccfg/namedconf.h
|
|
|
|
libisccfg_la_SOURCES = \
|
|
$(libisccfg_la_HEADERS) \
|
|
aclconf.c \
|
|
check.c \
|
|
dnsconf.c \
|
|
duration.c \
|
|
kaspconf.c \
|
|
namedconf.c \
|
|
parser.c
|
|
|
|
libisccfg_la_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
$(LIBISCCFG_CFLAGS) \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBNS_CFLAGS) \
|
|
$(OPENSSL_CFLAGS)
|
|
|
|
libisccfg_la_LIBADD = \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBNS_LIBS) \
|
|
$(OPENSSL_LIBS)
|
|
|
|
libisccfg_la_LDFLAGS = \
|
|
$(AM_LDFLAGS) \
|
|
-release "$(PACKAGE_VERSION)"
|
|
|
|
if HAVE_DNSTAP
|
|
libisccfg_la_CPPFLAGS += $(DNSTAP_CFLAGS)
|
|
endif
|