diff options
author | dougb <dougb@FreeBSD.org> | 2004-09-27 08:23:43 +0000 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2004-09-27 08:23:43 +0000 |
commit | fc66d174a383a0c0a0c8f0e7efe382835938cf7a (patch) | |
tree | cd570faf07c6f7174e23a34c086fde3a26d11121 /include | |
parent | d69dcb1c72e2198015f511d26e5edc1fc2acccbd (diff) | |
download | FreeBSD-src-fc66d174a383a0c0a0c8f0e7efe382835938cf7a.zip FreeBSD-src-fc66d174a383a0c0a0c8f0e7efe382835938cf7a.tar.gz |
1. Add much finer granularity to the NO_BIND knobs with the addition of:
NO_BIND_DNSSEC, NO_BIND_ETC, NO_BIND_NAMED, and NO_BIND_UTILS.
2. Make creation of directories in /usr/include that are only needed
in the WITH_BIND_LIBS case conditional.
Reviewed by: ru, des
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Makefile b/include/Makefile index f12dcb1..e2f2d60 100644 --- a/include/Makefile +++ b/include/Makefile @@ -98,6 +98,11 @@ compat: mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \ -f ${.CURDIR}/../etc/mtree/BSD.include.dist \ -p ${DESTDIR}${INCLUDEDIR} +.if defined(WITH_BIND_LIBS) && !defined(NO_BIND) + mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \ + -f ${.CURDIR}/../etc/mtree/BIND.include.dist \ + -p ${DESTDIR}${INCLUDEDIR} +.endif copies: .for i in ${LDIRS} ${LSUBDIRS} crypto machine machine/pc |