mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 02:42:33 -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.
20 lines
329 B
Makefile
20 lines
329 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
-I$(top_builddir)/include \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBISCCFG_CFLAGS)
|
|
|
|
AM_CPPFLAGS += \
|
|
-DSYSCONFDIR=\"${sysconfdir}\"
|
|
|
|
bin_PROGRAMS = delv
|
|
|
|
delv_SOURCES = \
|
|
delv.c
|
|
|
|
delv_LDADD = \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBISCCFG_LIBS)
|