diff options
author | wollman <wollman@FreeBSD.org> | 1994-08-05 02:02:36 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1994-08-05 02:02:36 +0000 |
commit | 195961bd8da403fa36acf39f359fb7706b4ea85a (patch) | |
tree | 4aa0061344738c408af0c6d55368a3d74a57f971 /lib/libtelnet | |
parent | d61cc614b7792d700261b9abd014d79cd7c24337 (diff) | |
download | FreeBSD-src-195961bd8da403fa36acf39f359fb7706b4ea85a.zip FreeBSD-src-195961bd8da403fa36acf39f359fb7706b4ea85a.tar.gz |
Allow libtelnet to compile, by removing references to Kerberos and DES in
the Makefile. We still need to determine the appropriate source organization
for this.
Diffstat (limited to 'lib/libtelnet')
-rw-r--r-- | lib/libtelnet/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libtelnet/Makefile b/lib/libtelnet/Makefile index 495dd73..3578c5e 100644 --- a/lib/libtelnet/Makefile +++ b/lib/libtelnet/Makefile @@ -1,11 +1,11 @@ -# @(#)Makefile 8.2 (Berkeley) 12/15/93 +# From: @(#)Makefile 8.2 (Berkeley) 12/15/93 +# $Id$ LIB= telnet SRCS= auth.c encrypt.c genget.c getent.c misc.c SRCS+= kerberos.c enc_des.c #SRCS+= kerberos5.c -CFLAGS+= -DENCRYPTION -DAUTHENTICATION -DHAS_CGETENT -CFLAGS+= -DKRB4 -DDES_ENCRYPTION -I/usr/include/kerberosIV +CFLAGS+= -DHAS_CGETENT # These are the sources that have encryption stuff in them. CRYPT_SRC= auth.c enc-proto.h enc_des.c encrypt.c |