From ca616e7d07413dc8ccef29cc95871f86542d5779 Mon Sep 17 00:00:00 2001 From: markm Date: Tue, 12 Oct 1999 19:48:05 +0000 Subject: [PATCH] Dont build telenet if we are going for kerberised telnet; this just jumps all over kerberised telnet otherwise. --- secure/lib/Makefile | 6 ++++-- secure/libexec/Makefile | 5 +++-- secure/usr.bin/Makefile | 6 ++++-- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/secure/lib/Makefile b/secure/lib/Makefile index d194db8159e9..6f61ed554063 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 - diff --git a/secure/libexec/Makefile b/secure/libexec/Makefile index 5c5b4505e6a8..8661ee263d7d 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 - diff --git a/secure/usr.bin/Makefile b/secure/usr.bin/Makefile index 0b1fc8ac992e..f711c0a389cd 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 -