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.
30 lines
502 B
Makefile
30 lines
502 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBISCCFG_CFLAGS) \
|
|
$(GSSAPI_CFLAGS) \
|
|
$(KRB5_CFLAGS) \
|
|
$(READLINE_CFLAGS)
|
|
|
|
AM_CPPFLAGS += \
|
|
-DSESSION_KEYFILE=\"${localstatedir}/run/named/session.key\"
|
|
|
|
LDADD += \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBISCCFG_LIBS) \
|
|
$(GSSAPI_LIBS) \
|
|
$(KRB5_LIBS)
|
|
|
|
if HAVE_READLINE
|
|
LDADD += \
|
|
$(READLINE_LIBS)
|
|
endif
|
|
|
|
bin_PROGRAMS = nsupdate
|
|
|
|
nsupdate_SOURCES = \
|
|
nsupdate.c \
|
|
../dig/readline.h
|