mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 10:59:35 -05:00
Building BIND 9 with older version of BIND 9 installed would result in build failure. Fix the last two remaining cases where <prog>_CFLAGS was being used leading to wrong order of the build flags on the command line.
58 lines
834 B
Makefile
58 lines
834 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS)
|
|
|
|
LDADD += \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBISC_LIBS)
|
|
|
|
bin_PROGRAMS = \
|
|
arpaname \
|
|
mdig \
|
|
named-journalprint \
|
|
named-rrchecker \
|
|
nsec3hash
|
|
|
|
arpaname_LDADD = \
|
|
$(LIBISC_LIBS)
|
|
|
|
mdig_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
$(LIBBIND9_CFLAGS)
|
|
|
|
mdig_LDADD = \
|
|
$(LIBBIND9_LIBS) \
|
|
$(LIBISCCFG_LIBS) \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBISC_LIBS)
|
|
|
|
if HAVE_DNSTAP
|
|
bin_PROGRAMS += \
|
|
dnstap-read
|
|
|
|
dnstap_read_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
$(DNSTAP_CFLAGS) \
|
|
-I$(top_builddir)/lib/dns
|
|
|
|
dnstap_read_LDADD = \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBISC_LIBS) \
|
|
$(DNSTAP_LIBS)
|
|
endif
|
|
|
|
if HAVE_LMDB
|
|
bin_PROGRAMS += \
|
|
named-nzd2nzf
|
|
|
|
named_nzd2nzf_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
$(LMDB_CFLAGS)
|
|
|
|
named_nzd2nzf_LDADD = \
|
|
$(LIBISC_LIBS) \
|
|
$(LMDB_LIBS)
|
|
|
|
endif
|