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 /usr.bin/Makefile | |
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 'usr.bin/Makefile')
-rw-r--r-- | usr.bin/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index d09f4b5..763ab4c 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -234,7 +234,7 @@ _truss= truss #_atm= atm .endif -.if !defined(NO_BIND) +.if !defined(NO_BIND) && !defined(NO_BIND_UTILS) _dig= dig _host= host _nslookup= nslookup |