diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2013-06-17 19:23:34 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2013-06-17 19:23:34 +0000 |
commit | 3c9690ed6ecaa94963845f027dd5e872f9a4af33 (patch) | |
tree | 3a5b47e66b9aec3ae3283146837f71a52b1e2ff2 /usr.bin/ssh | |
parent | dbc63391a1a5c3d0dd21d9f85340b1dea6526477 (diff) |
link to the new kerberos libraries
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/ssh/Makefile | 5 | ||||
-rw-r--r-- | usr.bin/ssh/sshd/Makefile | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/usr.bin/ssh/ssh/Makefile b/usr.bin/ssh/ssh/Makefile index 4261a7c0b2d..1865aec39e0 100644 --- a/usr.bin/ssh/ssh/Makefile +++ b/usr.bin/ssh/ssh/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.57 2013/05/16 09:12:31 dtucker Exp $ +# $OpenBSD: Makefile,v 1.58 2013/06/17 19:23:33 robert Exp $ .PATH: ${.CURDIR}/.. @@ -26,7 +26,8 @@ CFLAGS+= -DKRB5 -I${DESTDIR}/usr/include/kerberosV -DGSSAPI .if (${KERBEROS5:L} == "yes") DPADD+= ${LIBGSSAPI} ${LIBKRB5} -LDADD+= -lgssapi -lkrb5 +LDADD+= -lgssapi -lkrb5 -lasn1 -lheimntlm +LDADD+= -lhx509 -lwind -lroken -lcom_err -lpthread -lheimbase .endif # KERBEROS5 DPADD+= ${LIBCRYPTO} ${LIBZ} diff --git a/usr.bin/ssh/sshd/Makefile b/usr.bin/ssh/sshd/Makefile index 15417811a83..2e8bb2a54f5 100644 --- a/usr.bin/ssh/sshd/Makefile +++ b/usr.bin/ssh/sshd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.73 2011/06/22 21:57:01 djm Exp $ +# $OpenBSD: Makefile,v 1.74 2013/06/17 19:23:33 robert Exp $ .PATH: ${.CURDIR}/.. @@ -28,7 +28,8 @@ SRCS+= auth-krb5.c auth2-gss.c gss-serv.c gss-serv-krb5.c .include <bsd.prog.mk> .if (${KERBEROS5:L} == "yes") -LDADD+= -lgssapi -lkrb5 -lkafs +LDADD+= -lgssapi -lkrb5 -lasn1 -lheimntlm +LDADD+= -lhx509 -lwind -lroken -lcom_err -lpthread -lheimbase -lkafs5 DPADD+= ${LIBGSSAPI} ${LIBKRB5} .endif |