diff options
author | bz <bz@FreeBSD.org> | 2004-11-13 20:40:32 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2004-11-13 20:40:32 +0000 |
commit | 4b83c5852a5bcba28ed7ce5d13ff021642859772 (patch) | |
tree | da33d2aed5fb6a0c2319fb0d10f0957f518eee99 /libexec/Makefile | |
parent | a67c7e75123103251e304a51ba19d0530b75981d (diff) | |
download | FreeBSD-src-4b83c5852a5bcba28ed7ce5d13ff021642859772.zip FreeBSD-src-4b83c5852a5bcba28ed7ce5d13ff021642859772.tar.gz |
Add knob NO_NIS (fka NO_YP_LIBC) and make world compileable when set.
If turned on no NIS support and related programs will be built.
Lost parts rediscovered by: Danny Braniss <danny at cs.huji.ac.il>
PR: bin/68303
No objections: des, gshapiro, nectar
Reviewed by: ru
Approved by: rwatson (mentor)
MFC after: 2 weeks
Diffstat (limited to 'libexec/Makefile')
-rw-r--r-- | libexec/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/libexec/Makefile b/libexec/Makefile index bfda5e4..100cd04 100644 --- a/libexec/Makefile +++ b/libexec/Makefile @@ -12,7 +12,7 @@ SUBDIR= atrun \ ${_lukemftpd} \ ${_mail.local} \ makekey \ - mknetid \ + ${_mknetid} \ pppoed \ pt_chown \ rbootd \ @@ -32,7 +32,12 @@ SUBDIR= atrun \ tcpd \ telnetd \ tftpd \ - ypxfr + ${_ypxfr} + +.if !defined(NO_NIS) +_mknetid= mknetid +_ypxfr= ypxfr +.endif .if !defined(NO_PF) _ftp-proxy= ftp-proxy |