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_chpass | |
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_chpass')
-rw-r--r-- | libexec/login_chpass/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/login_chpass/Makefile b/libexec/login_chpass/Makefile index a323bbf89c1..99cfa581958 100644 --- a/libexec/login_chpass/Makefile +++ b/libexec/login_chpass/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.5 2008/01/02 14:33:48 millert Exp $ +# $OpenBSD: Makefile,v 1.6 2010/10/13 08:14:22 jsg Exp $ PROG= login_chpass @@ -14,8 +14,8 @@ CFLAGS+=-Wall #.if (${KERBEROS5:L} == "yes") #SRCS+= krb5_passwd.c #CFLAGS+= -DKRB5 -#DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBDES} ${LIBCRYPTO} -#LDADD+= -lkrb5 -lasn1 -ldes -lcrypto +#DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCRYPTO} +#LDADD+= -lkrb5 -lasn1 -lcrypto #.endif .if (${YP:L} == "yes") |