mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-26 11:32:01 -05:00
The <isc/readline.h> header provided a compatibility shim to use when other non-GNU readline libraries are in use. The two places where readline library is being used is nslookup and nsupdate, so the header file has been moved to bin/dig directory and it's directly included from bin/nsupdate. This also conceals any readline headers exposed from the libisc headers.
39 lines
639 B
Makefile
39 lines
639 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBISCCFG_CFLAGS) \
|
|
$(LIBIRS_CFLAGS) \
|
|
$(LIBBIND9_CFLAGS) \
|
|
$(LIBIDN2_CFLAGS)
|
|
|
|
LDADD = \
|
|
libdighost.la \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBISCCFG_LIBS) \
|
|
$(LIBIRS_LIBS) \
|
|
$(LIBBIND9_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
|