diff options
author | 2003-05-14 06:49:59 +0000 | |
---|---|---|
committer | 2003-05-14 06:49:59 +0000 | |
commit | 09601deb29a25c849318f771d9211fd58e5d89b9 (patch) | |
tree | 36588ce52ac77305a748aa275cfbc244bee943c8 | |
parent | Manual page for mgx(4), and references to it. (diff) | |
download | wireguard-openbsd-09601deb29a25c849318f771d9211fd58e5d89b9.tar.xz wireguard-openbsd-09601deb29a25c849318f771d9211fd58e5d89b9.zip |
Removed krb4 support.
-rw-r--r-- | usr.bin/telnet/Makefile | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/usr.bin/telnet/Makefile b/usr.bin/telnet/Makefile index 0bde98a39f0..cbd2059c159 100644 --- a/usr.bin/telnet/Makefile +++ b/usr.bin/telnet/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.18 2003/05/14 01:46:51 hin Exp $ +# $OpenBSD: Makefile,v 1.19 2003/05/14 06:49:59 mho Exp $ # # Copyright (c) 1990 The Regents of the University of California. # All rights reserved. @@ -52,16 +52,9 @@ SRCS= authenc.c commands.c main.c network.c ring.c sys_bsd.c telnet.c \ .if (${KERBEROS5:L} == "yes") CFLAGS+=-DENCRYPTION -DAUTHENTICATION -DKRB5 -DDES_ENCRYPTION -LDADD+= -lkrb5 -lasn1 -lcrypto -lcom_err -lkafs -ldes -DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCRYPTO} ${LIBCOM_ERR} ${LIBKAFS} ${LIBDES} +LDADD+= -lkrb5 -lasn1 -lcrypto -lcom_err -ldes +DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCRYPTO} ${LIBCOM_ERR} ${LIBDES} SRCS+= kerberos5.c enc_des.c .endif -.if (${KERBEROS:L} == "yes") -CFLAGS+=-DENCRYPTION -DAUTHENTICATION -DKRB4 -DDES_ENCRYPTION -LDADD+= -lkrb -lcrypto -ldes -DPADD+= ${LIBDES} ${LIBKRB} ${LIBDES} -SRCS+= kerberos.c -.endif - .include <bsd.prog.mk> |