summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--secure/lib/Makefile6
-rw-r--r--secure/libexec/Makefile5
-rw-r--r--secure/usr.bin/Makefile6
3 files changed, 11 insertions, 6 deletions
diff --git a/secure/lib/Makefile b/secure/lib/Makefile
index d194db8..6f61ed5 100644
--- a/secure/lib/Makefile
+++ b/secure/lib/Makefile
@@ -1,6 +1,8 @@
# $FreeBSD$
-SUBDIR= libcipher libdes libtelnet
+SUBDIR= libcipher libdes
+.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4)
+SUBDIR+=libtelnet
+.endif
.include <bsd.subdir.mk>
-
diff --git a/secure/libexec/Makefile b/secure/libexec/Makefile
index 5c5b450..8661ee2 100644
--- a/secure/libexec/Makefile
+++ b/secure/libexec/Makefile
@@ -1,6 +1,7 @@
-# $FreeBSD$
+# $FreeBSD$
+.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4)
SUBDIR= telnetd
+.endif
.include <bsd.subdir.mk>
-
diff --git a/secure/usr.bin/Makefile b/secure/usr.bin/Makefile
index 0b1fc8a..f711c0a 100644
--- a/secure/usr.bin/Makefile
+++ b/secure/usr.bin/Makefile
@@ -1,6 +1,8 @@
# $FreeBSD$
-SUBDIR= bdes telnet
+SUBDIR= bdes
+.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4)
+SUBDIR+=telnet
+.endif
.include <bsd.subdir.mk>
-
OpenPOWER on IntegriCloud