summaryrefslogtreecommitdiff
path: root/usr.bin/telnet/Makefile
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-07-15 19:02:21 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-07-15 19:02:21 +0000
commit656339011714db1f25d3e90c207a8f439b734f14 (patch)
tree12b8fade7d6b1f04ed3e4e3eb1fe4e6a389671c0 /usr.bin/telnet/Makefile
parent3aee9ca9c1c4e65f664a0ba6ce14f80fd0ca03f1 (diff)
stop using libcom_err, it is built into krb5
Diffstat (limited to 'usr.bin/telnet/Makefile')
-rw-r--r--usr.bin/telnet/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/telnet/Makefile b/usr.bin/telnet/Makefile
index 248fa8657ef..d6001abb1a7 100644
--- a/usr.bin/telnet/Makefile
+++ b/usr.bin/telnet/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.20 2003/06/03 02:56:17 millert Exp $
+# $OpenBSD: Makefile,v 1.21 2003/07/15 19:02:20 deraadt Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
# All rights reserved.
@@ -48,8 +48,8 @@ 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 -ldes
-DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCRYPTO} ${LIBCOM_ERR} ${LIBDES}
+LDADD+= -lkrb5 -lasn1 -lcrypto -ldes
+DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCRYPTO} ${LIBDES}
SRCS+= kerberos5.c enc_des.c
.endif