summaryrefslogtreecommitdiffstats
path: root/libexec
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2015-03-01 22:03:52 +0000
committerngie <ngie@FreeBSD.org>2015-03-01 22:03:52 +0000
commitde8fb43ec92b1b420147d22f7a048a179f90fa76 (patch)
tree4fe8bb91688ede3457d83635c42d3820c205f22f /libexec
parent9da1add17162140813ca1a79eb57724b0d2c3617 (diff)
downloadFreeBSD-src-de8fb43ec92b1b420147d22f7a048a179f90fa76.zip
FreeBSD-src-de8fb43ec92b1b420147d22f7a048a179f90fa76.tar.gz
MFC r278192:
Add the following options to enable/disable several features in the base system WITHOUT_BOOTPARAMD - bootparamd WITHOUT_BOOTPD - bootpd WITHOUT_FINGER - finger, fingerd WITHOUT_FTP - ftp, ftpd WITHOUT_INETD - inetd WITHOUT_RBOOTD - rbootd WITHOUT_TCP_WRAPPERS - tcpd, et al WITHOUT_TFTP - tftp, tftp-server WITHOUT_TIMED - timed Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'libexec')
-rw-r--r--libexec/Makefile30
1 files changed, 24 insertions, 6 deletions
diff --git a/libexec/Makefile b/libexec/Makefile
index 69bcd77..1d9210d 100644
--- a/libexec/Makefile
+++ b/libexec/Makefile
@@ -5,16 +5,12 @@
SUBDIR= ${_atf} \
${_atrun} \
- bootpd \
${_comsat} \
- fingerd \
- ftpd \
getty \
${_hyperv} \
${_mail.local} \
${_mknetid} \
${_pppoed} \
- rbootd \
revnetgroup \
${_rlogind} \
rpc.rquotad \
@@ -26,10 +22,8 @@ SUBDIR= ${_atf} \
${_rtld-elf} \
save-entropy \
${_smrsh} \
- tcpd \
${_telnetd} \
${_tests} \
- tftpd \
${_tftp-proxy} \
ulog-helper \
${_ypxfr}
@@ -38,6 +32,18 @@ SUBDIR= ${_atf} \
_atrun= atrun
.endif
+.if ${MK_BOOTPD} != "no"
+SUBDIR+= bootpd
+.endif
+
+.if ${MK_FINGER} != "no"
+SUBDIR+= fingerd
+.endif
+
+.if ${MK_FTP} != "no"
+SUBDIR+= ftpd
+.endif
+
.if ${MK_MAIL} != "no"
_comsat= comsat
.endif
@@ -63,6 +69,10 @@ _tftp-proxy= tftp-proxy
_rtld-elf= rtld-elf
.endif
+.if ${MK_RBOOTD} != "no"
+SUBDIR+= rbootd
+.endif
+
.if ${MK_RCMDS} != "no"
_rlogind= rlogind
_rshd= rshd
@@ -77,10 +87,18 @@ _smrsh= smrsh
SUBDIR+= talkd
.endif
+.if ${MK_TCP_WRAPPERS} != "no"
+SUBDIR+= tcpd
+.endif
+
.if ${MK_TELNET} != "no"
_telnetd= telnetd
.endif
+.if ${MK_TFTP} != "no"
+SUBDIR+= tftpd
+.endif
+
.if ${MK_TESTS} != "no"
_atf= atf
_tests= tests
OpenPOWER on IntegriCloud