From 8d6cb97e95d052737b47d360325425615f4ebb89 Mon Sep 17 00:00:00 2001 From: ache Date: Mon, 24 Jul 1995 21:47:30 +0000 Subject: Since this stuff not works with eBones, ifdef kerberos stuff with MAKE_KERBEROS to allow other things to live Reviewed by: Submitted by: Obtained from: --- eBones/usr.bin/telnet/Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'eBones/usr.bin/telnet') diff --git a/eBones/usr.bin/telnet/Makefile b/eBones/usr.bin/telnet/Makefile index 1c0eacb..b7f5085 100644 --- a/eBones/usr.bin/telnet/Makefile +++ b/eBones/usr.bin/telnet/Makefile @@ -35,6 +35,7 @@ # This stuff need original libdes to run (new_rnd_key.c module), # current eBones/des lib don't have it +# Kerberos4 stuff ifdefed by MAKE_KERBEROS (make.conf) because of it PROG= telnet @@ -47,18 +48,18 @@ LDADD+= -ltermcap -ltelnet CFLAGS+=-DAUTHENTICATION -DENCRYPTION +.ifdef MAKE_KERBEROS .if exists(/usr/lib/libkrb.a) CFLAGS+= -DKRB4 -LDADD+= -lkrb +LDADD+= -lkrb -ldes +.endif .endif .if exists(/usr/lib/libkrb5.a) CFLAGS+= -DKRB5 -DFORWARD -LDADD+= -lkrb5 +LDADD+= -lkrb5 -ldes .endif -LDADD+= -ldes - #endif /* ENCRYPTION */ DPADD= ${LIBTERMCAP} -- cgit v1.1