mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
When testing, the client object doesn't have a proper
netmgr handle, so ns_client_error() needs to be a no-op.
(cherry picked from commit ae37ef45ff)
29 lines
475 B
Makefile
29 lines
475 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBNS_CFLAGS) \
|
|
$(LIBUV_CFLAGS) \
|
|
-I$(top_srcdir)/lib/isc \
|
|
-I$(top_srcdir)/lib/dns
|
|
|
|
LDADD += \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBNS_LIBS) \
|
|
$(LIBUV_LIBS)
|
|
|
|
check_PROGRAMS = \
|
|
listenlist_test \
|
|
notify_test \
|
|
plugin_test \
|
|
query_test
|
|
|
|
query_test_SOURCES = \
|
|
query_test.c \
|
|
netmgr_wrap.c
|
|
|
|
EXTRA_DIST = testdata
|
|
|
|
include $(top_srcdir)/Makefile.tests
|