summaryrefslogtreecommitdiff
path: root/kerberosV/libexec/kfd
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2010-10-13 08:14:23 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2010-10-13 08:14:23 +0000
commit6253030148c24c38d1793bdab4a29eeca5490a3a (patch)
treeea7ea8d6528f4c8b8fb11e7fd95079af21751099 /kerberosV/libexec/kfd
parent20544e8960fd11bf8f27949241138b657b848bce (diff)
The heimdal code switched to using DES from libcrypto when 0.7.2
was imported over four years ago, so we don't need to link libdes for kerberos anymore. ok mikeb@ deraadt@
Diffstat (limited to 'kerberosV/libexec/kfd')
-rw-r--r--kerberosV/libexec/kfd/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/kerberosV/libexec/kfd/Makefile b/kerberosV/libexec/kfd/Makefile
index 9c84bd0b4bb..c1571641e4a 100644
--- a/kerberosV/libexec/kfd/Makefile
+++ b/kerberosV/libexec/kfd/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.5 2003/07/14 16:14:44 mho Exp $
+# $OpenBSD: Makefile,v 1.6 2010/10/13 08:14:22 jsg Exp $
KRBDEPTH=../..
.include <${.CURDIR}/../../Makefile.inc>
@@ -12,7 +12,7 @@ SRCS= kfd.c
CFLAGS+=-I${KRB5SRC}/lib/krb5
-DPADD+= ${LIBKRB5} ${LIBDES} ${LIBCRYPTO}
-LDADD+= -lkrb5 -ldes -lcrypto
+DPADD+= ${LIBKRB5} ${LIBCRYPTO}
+LDADD+= -lkrb5 -lcrypto
.include <bsd.prog.mk>