diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2003-05-14 02:15:49 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2003-05-14 02:15:49 +0000 |
commit | 52fbbfb28794c9213922d46cad36d8d41848aa16 (patch) | |
tree | 4ab8b3ccde61952407a2d8ccbe42ad2d06c03cb1 /usr.bin/ssh/sshd | |
parent | 1dfa00c90a29b52a27f2dc82d247ebac761a9e0f (diff) |
implement kerberos over ssh2 ("kerberos-2@ssh.com"); tested with jakob@
server interops with commercial client; ok jakob@ djm@
Diffstat (limited to 'usr.bin/ssh/sshd')
-rw-r--r-- | usr.bin/ssh/sshd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshd/Makefile b/usr.bin/ssh/sshd/Makefile index 9ee50491347..9e98dfd1f09 100644 --- a/usr.bin/ssh/sshd/Makefile +++ b/usr.bin/ssh/sshd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.54 2003/04/10 00:17:52 pvalchev Exp $ +# $OpenBSD: Makefile,v 1.55 2003/05/14 02:15:48 markus Exp $ .PATH: ${.CURDIR}/.. @@ -22,7 +22,7 @@ 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 +SRCS+= auth-krb5.c auth2-krb5.c LDADD+= -lkrb5 -lkafs -lkrb -lasn1 -lcom_err DPADD+= ${LIBKRB5} ${LIBKAFS} ${LIBASN1} ${LIBCOM_ERR} .endif # KERBEROS5 |