summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorRobert Nagy <robert@cvs.openbsd.org>2013-06-19 19:46:45 +0000
committerRobert Nagy <robert@cvs.openbsd.org>2013-06-19 19:46:45 +0000
commit05a96e526ec349b1e1a465e5acba2b5fb26fe674 (patch)
treedcfe4e4d32e7e9b3121f2b37d63fea9faaacc0c6 /usr.bin
parent0fd3b68f6059e07e9d94a7c3bda9b6072666bf5c (diff)
don't link to hx509, pthread and ntlm related libraries
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/passwd/Makefile6
-rw-r--r--usr.bin/telnet/Makefile6
2 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/passwd/Makefile b/usr.bin/passwd/Makefile
index 770afda57ef..bc9af47a2f0 100644
--- a/usr.bin/passwd/Makefile
+++ b/usr.bin/passwd/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.34 2013/06/18 20:27:20 miod Exp $
+# $OpenBSD: Makefile,v 1.35 2013/06/19 19:46:44 robert Exp $
.include <bsd.own.mk>
@@ -21,8 +21,8 @@ CFLAGS+=-DYP -I${.CURDIR}/../../lib/libc/yp
SRCS+= krb5_passwd.c
CFLAGS+= -DKRB5
DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCRYPTO}
-LDADD+= -lkrb5 -lhx509 -lasn1 -lcrypto
-LDADD+= -lwind -lroken -lcom_err -lpthread -lheimbase
+LDADD+= -lkrb5 -lasn1 -lcrypto
+LDADD+= -lwind -lroken -lcom_err -lheimbase
.endif
BINMODE=4555
diff --git a/usr.bin/telnet/Makefile b/usr.bin/telnet/Makefile
index 16ab684bc44..6ba11dd2ee7 100644
--- a/usr.bin/telnet/Makefile
+++ b/usr.bin/telnet/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.26 2013/06/18 20:27:20 miod Exp $
+# $OpenBSD: Makefile,v 1.27 2013/06/19 19:46:43 robert Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
# All rights reserved.
@@ -46,8 +46,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
DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCRYPTO}
-LDADD+= -lkrb5 -lhx509 -lasn1 -lcrypto
-LDADD+= -lwind -lroken -lcom_err -lpthread -lheimbase
+LDADD+= -lkrb5 -lasn1 -lcrypto
+LDADD+= -lwind -lroken -lcom_err -lheimbase
SRCS+= kerberos5.c enc_des.c
.endif