diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2003-08-22 10:56:10 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2003-08-22 10:56:10 +0000 |
commit | b3e8a9a0da9a4fbe3a84d9d3113851474129d460 (patch) | |
tree | e9178b4b7b0d42fddee0adfb2912da00660f13bb /usr.bin/ssh/sshd | |
parent | 49f5a4b688e110da4d5e2d9a08bff2979053472e (diff) |
support GSS API user authentication; patches from Simon Wilkinson,
stripped down and tested by Jakob and myself.
Diffstat (limited to 'usr.bin/ssh/sshd')
-rw-r--r-- | usr.bin/ssh/sshd/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/usr.bin/ssh/sshd/Makefile b/usr.bin/ssh/sshd/Makefile index 234f9c310a2..8775f8ee022 100644 --- a/usr.bin/ssh/sshd/Makefile +++ b/usr.bin/ssh/sshd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.58 2003/07/16 19:10:13 deraadt Exp $ +# $OpenBSD: Makefile,v 1.59 2003/08/22 10:56:09 markus Exp $ .PATH: ${.CURDIR}/.. @@ -23,8 +23,14 @@ SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \ .if (${KERBEROS5:L} == "yes") CFLAGS+=-DKRB5 -I${DESTDIR}/usr/include/kerberosV SRCS+= auth-krb5.c auth2-krb5.c -DPADD+= ${LIBKRB5} ${LIBASN1} -LDADD+= -lkrb5 -lasn1 + +LDADD+= -lkrb5 +DPADD+= ${LIBKRB5} + +SRCS+= auth2-gss.c gss-serv.c gss-serv-krb5.c +CFLAGS+= -DGSSAPI +LDADD+= -lgssapi +DPADD+= ${LIBGSSAPI} .endif # KERBEROS5 .include <bsd.prog.mk> |