diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2010-10-13 08:14:23 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2010-10-13 08:14:23 +0000 |
commit | 6253030148c24c38d1793bdab4a29eeca5490a3a (patch) | |
tree | ea7ea8d6528f4c8b8fb11e7fd95079af21751099 /kerberosV/usr.sbin/ktutil | |
parent | 20544e8960fd11bf8f27949241138b657b848bce (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/usr.sbin/ktutil')
-rw-r--r-- | kerberosV/usr.sbin/ktutil/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kerberosV/usr.sbin/ktutil/Makefile b/kerberosV/usr.sbin/ktutil/Makefile index c2725bffac8..28c22f3719f 100644 --- a/kerberosV/usr.sbin/ktutil/Makefile +++ b/kerberosV/usr.sbin/ktutil/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.15 2009/08/17 09:40:37 jsg Exp $ +# $OpenBSD: Makefile,v 1.16 2010/10/13 08:14:22 jsg Exp $ KRBDEPTH=../.. .include <${.CURDIR}/../../Makefile.inc> @@ -43,9 +43,9 @@ ktutil-commands.c ktutil-commands.h: ktutil-commands.in $(SLC) CFLAGS+=-I${KRB5SRC}/lib/krb5 -I${KRB5SRC}/lib/kadm5 -I. DPADD+= ${LIBEDIT} ${LIBCURSES} ${LIBKADM5CLNT} ${LIBKRB5} \ - ${LIBCRYPTO} ${LIBDES} + ${LIBCRYPTO} LDADD+= -ledit -lcurses -lkadm5clnt -lkrb5 \ - -lcrypto -ldes + -lcrypto CLEANFILES+= ktutil-commands.c slc slc-lex.o \ ktutil-commands.h slc-gram.o stamp_grammar |