diff options
author | gibbs <gibbs@FreeBSD.org> | 1995-09-14 21:29:21 +0000 |
---|---|---|
committer | gibbs <gibbs@FreeBSD.org> | 1995-09-14 21:29:21 +0000 |
commit | 958c14faa7fc3d2e02d3d91935322e02365ed132 (patch) | |
tree | d984e720845380cce8b0dda3e31168b2e8f5d8c5 /secure | |
parent | 684e425bda0966dfee94134b89a71a2ca3db6631 (diff) | |
download | FreeBSD-src-958c14faa7fc3d2e02d3d91935322e02365ed132.zip FreeBSD-src-958c14faa7fc3d2e02d3d91935322e02365ed132.tar.gz |
Enable kerberosIV authentication/encryption conditionalized on MAKE_EBONES.
Diffstat (limited to 'secure')
-rw-r--r-- | secure/libexec/telnetd/Makefile | 6 | ||||
-rw-r--r-- | secure/usr.bin/telnet/Makefile | 6 |
2 files changed, 2 insertions, 10 deletions
diff --git a/secure/libexec/telnetd/Makefile b/secure/libexec/telnetd/Makefile index 17ffa3e..977271d 100644 --- a/secure/libexec/telnetd/Makefile +++ b/secure/libexec/telnetd/Makefile @@ -1,9 +1,5 @@ # @(#)Makefile 8.2 (Berkeley) 12/15/93 -# 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 - # Do not define -DKLUDGELINEMODE, as it does not interact well with many # telnet implementations. @@ -23,7 +19,7 @@ CFLAGS+=-I${.CURDIR}/../../lib CFLAGS+=-DAUTHENTICATION -DENCRYPTION -.ifdef MAKE_KERBEROS +.ifdef MAKE_EBONES .if exists(/usr/lib/libkrb.a) LDADD+= -ldes -lkrb .endif diff --git a/secure/usr.bin/telnet/Makefile b/secure/usr.bin/telnet/Makefile index 20befdd..c77577a 100644 --- a/secure/usr.bin/telnet/Makefile +++ b/secure/usr.bin/telnet/Makefile @@ -33,10 +33,6 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 # -# 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 CFLAGS+=-DTERMCAP -DKLUDGELINEMODE -DUSE_TERMIO @@ -48,7 +44,7 @@ LDADD+= -ltermcap -ltelnet CFLAGS+=-DAUTHENTICATION -DENCRYPTION -.ifdef MAKE_KERBEROS +.ifdef MAKE_EBONES .if exists(/usr/lib/libkrb.a) CFLAGS+= -DKRB4 LDADD+= -ldes -lkrb |