diff options
author | ru <ru@FreeBSD.org> | 2004-09-24 13:42:00 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-09-24 13:42:00 +0000 |
commit | 03cf2e6303ec5e66663f310806fbcaceffcb6ad6 (patch) | |
tree | 0a66d80ecf04f2810c88e41bc729d46e0caa066f /usr.sbin/named-checkconf | |
parent | 41902e813dab25f45bfc1cb38fc6afdc300a6303 (diff) | |
download | FreeBSD-src-03cf2e6303ec5e66663f310806fbcaceffcb6ad6.zip FreeBSD-src-03cf2e6303ec5e66663f310806fbcaceffcb6ad6.tar.gz |
Don't expose BIND libraries and their headers to the public by default,
but have a knob (WANT_BIND_LIBS) to build and install them in /usr/lib
and /usr/include. Rumors are that this may be useful at a later point,
let's see.
What this really means is that all BIND libraries are now internal to
buildworld (by default, unless WANT_BIND_LIBS is defined), and linked
statically into various BIND executables.
While here, removed redundant -I's from CFLAGS in lib/bind makefiles.
Sponsored by: des
OK'ed by: dougb
Diffstat (limited to 'usr.sbin/named-checkconf')
-rw-r--r-- | usr.sbin/named-checkconf/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/named-checkconf/Makefile b/usr.sbin/named-checkconf/Makefile index a478ba0..6a48669 100644 --- a/usr.sbin/named-checkconf/Makefile +++ b/usr.sbin/named-checkconf/Makefile @@ -1,7 +1,8 @@ # $FreeBSD$ BIND_DIR= ${.CURDIR}/../../contrib/bind9 -LIB_BIND_DIR= ${.CURDIR}/../../lib/bind +LIB_BIND_REL= ../../lib/bind +LIB_BIND_DIR= ${.CURDIR}/${LIB_BIND_REL} SRCDIR= ${BIND_DIR}/bin/check .include "${LIB_BIND_DIR}/config.mk" |