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 /libexec/login_krb5-or-pwd | |
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 'libexec/login_krb5-or-pwd')
-rw-r--r-- | libexec/login_krb5-or-pwd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/login_krb5-or-pwd/Makefile b/libexec/login_krb5-or-pwd/Makefile index e8a0b414188..ec26f9e979a 100644 --- a/libexec/login_krb5-or-pwd/Makefile +++ b/libexec/login_krb5-or-pwd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.13 2006/03/09 19:14:09 millert Exp $ +# $OpenBSD: Makefile,v 1.14 2010/10/13 08:14:22 jsg Exp $ .include <bsd.own.mk> @@ -9,8 +9,8 @@ CFLAGS+=-DPASSWD -Wall -I${.CURDIR}/../login_passwd .if (${KERBEROS5:L} == "yes") SRCS+= login_krb5.c -DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCRYPTO} ${LIBUTIL} ${LIBDES} -LDADD+= -lkrb5 -lasn1 -lcrypto -lutil -ldes +DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCRYPTO} ${LIBUTIL} +LDADD+= -lkrb5 -lasn1 -lcrypto -lutil CFLAGS+=-DKRB5 .PATH: ${.CURDIR}/../login_passwd ${.CURDIR}/../login_krb5 ${.CURDIR}/../../usr.bin/passwd .else |