mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-10 10:11:39 -04:00
this commit removes the deprecated "sortlist" option. the option is now marked as ancient; it is a fatal error to use it in named.conf. the sortlist system test has been removed, and other tests that referenced the option have been modified. the enabling functions, dns_message_setsortorder() and dns_rdataset_towiresorted(), have also been removed.
62 lines
1.1 KiB
Makefile
62 lines
1.1 KiB
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
-DNAMED_PLUGINDIR=\"$(pkglibdir)\"
|
|
|
|
lib_LTLIBRARIES = libns.la
|
|
|
|
libns_ladir = $(includedir)/ns
|
|
|
|
libns_la_HEADERS = \
|
|
include/ns/client.h \
|
|
include/ns/hooks.h \
|
|
include/ns/interfacemgr.h \
|
|
include/ns/listenlist.h \
|
|
include/ns/notify.h \
|
|
include/ns/query.h \
|
|
include/ns/server.h \
|
|
include/ns/stats.h \
|
|
include/ns/types.h \
|
|
include/ns/update.h \
|
|
include/ns/xfrout.h
|
|
|
|
libns_la_SOURCES = \
|
|
$(libns_la_HEADERS) \
|
|
client.c \
|
|
hooks.c \
|
|
interfacemgr.c \
|
|
listenlist.c \
|
|
notify.c \
|
|
probes.d \
|
|
query.c \
|
|
server.c \
|
|
stats.c \
|
|
update.c \
|
|
xfrout.c
|
|
|
|
libns_la_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBNS_CFLAGS) \
|
|
$(LIBUV_CFLAGS) \
|
|
$(OPENSSL_CFLAGS)
|
|
|
|
libns_la_LIBADD = \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBUV_LIBS) \
|
|
$(OPENSSL_LIBS)
|
|
|
|
libns_la_LDFLAGS = \
|
|
$(AM_LDFLAGS) \
|
|
-release "$(PACKAGE_VERSION)"
|
|
|
|
if !HAVE_SYSTEMTAP
|
|
DTRACE_DEPS = libns_la-query.lo
|
|
DTRACE_OBJS = .libs/libns_la-query.$(OBJEXT)
|
|
endif
|
|
|
|
include $(top_srcdir)/Makefile.dtrace
|
|
|
|
libns_la_LIBADD += $(DTRACE_LIBADD)
|