mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-23 09:51:03 -05:00
`libirs` used to be a reference implementation of `getaddrinfo` and related modern resolver APIs. It was stripped down in BIND 9.18 leaving only the `irs_resconf` module, which parses `/etc/resolv.conf`. I have kept its include path and namespace prefix, so it remains a little fragment of libirs now embedded in libdns.
36 lines
579 B
Makefile
36 lines
579 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBISCCFG_CFLAGS) \
|
|
$(LIBIDN2_CFLAGS) \
|
|
$(LIBUV_CFLAGS)
|
|
|
|
LDADD += \
|
|
libdighost.la \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBISCCFG_LIBS) \
|
|
$(LIBIDN2_LIBS)
|
|
|
|
noinst_LTLIBRARIES = libdighost.la
|
|
|
|
libdighost_la_SOURCES = \
|
|
dighost.h \
|
|
dighost.c
|
|
|
|
bin_PROGRAMS = dig host nslookup
|
|
|
|
nslookup_CPPFLAGS = \
|
|
$(AM_CPPFLAGS)
|
|
|
|
nslookup_LDADD = \
|
|
$(LDADD)
|
|
|
|
if HAVE_READLINE
|
|
nslookup_CPPFLAGS += \
|
|
$(READLINE_CFLAGS)
|
|
nslookup_LDADD += \
|
|
$(READLINE_LIBS)
|
|
endif HAVE_READLINE
|