mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-20 08:20:26 -05:00
4708. [cleanup] Legacy Windows builds (i.e. for XP and earlier)
are no longer supported. [RT #45186]
4707. [func] The lightweight resolver daemon and library (lwresd
and liblwres) have been removed. [RT #45186]
4706. [func] Code implementing name server query processing has
been moved from bin/named to a new library "libns".
Functions remaining in bin/named are now prefixed
with "named_" rather than "ns_". This will make it
easier to write unit tests for name server code, or
link name server functionality into new tools.
[RT #45186]
39 lines
1.3 KiB
Text
39 lines
1.3 KiB
Text
# Copyright (C) 1999-2001, 2004, 2005, 2007, 2012, 2014, 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
# Search for machine-generated header files in the build tree,
|
|
# and for normal headers in the source tree (${top_srcdir}).
|
|
# We only need to look in OS-specific subdirectories for the
|
|
# latter case, because there are no machine-generated OS-specific
|
|
# headers.
|
|
|
|
ISC_INCLUDES = @BIND9_ISC_BUILDINCLUDE@ \
|
|
-I${top_srcdir}/lib/isc \
|
|
-I${top_srcdir}/lib/isc/include \
|
|
-I${top_srcdir}/lib/isc/unix/include \
|
|
-I${top_srcdir}/lib/isc/@ISC_THREAD_DIR@/include \
|
|
-I${top_srcdir}/lib/isc/@ISC_ARCH_DIR@/include
|
|
|
|
ISCCC_INCLUDES = @BIND9_ISCCC_BUILDINCLUDE@ \
|
|
-I${top_srcdir}/lib/isccc/include
|
|
|
|
ISCCFG_INCLUDES = @BIND9_ISCCFG_BUILDINCLUDE@ \
|
|
-I${top_srcdir}/lib/isccfg/include
|
|
|
|
DNS_INCLUDES = @BIND9_DNS_BUILDINCLUDE@ \
|
|
-I${top_srcdir}/lib/dns/include
|
|
|
|
NS_INCLUDES = @BIND9_NS_BUILDINCLUDE@ \
|
|
-I${top_srcdir}/lib/ns/include
|
|
|
|
IRS_INCLUDES = @BIND9_IRS_BUILDINCLUDE@ \
|
|
-I${top_srcdir}/lib/irs/include
|
|
|
|
BIND9_INCLUDES = @BIND9_BIND9_BUILDINCLUDE@ \
|
|
-I${top_srcdir}/lib/bind9/include
|
|
|
|
TEST_INCLUDES = \
|
|
-I${top_srcdir}/lib/tests/include
|