Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/usr.bin/ssh/sshd Pull up revisions 1.2-1.3 (requested b...



details:   https://anonhg.NetBSD.org/src/rev/77d4cc4bce36
branches:  netbsd-1-5
changeset: 490724:77d4cc4bce36
user:      he <he%NetBSD.org@localhost>
date:      Mon Feb 26 20:55:42 2001 +0000

description:
Pull up revisions 1.2-1.3 (requested by itojun):
  Update SSH to version found on trunk as of 26 Feb 2001.
  Note that /dev/random is now mandatory for ssh.

diffstat:

 usr.bin/ssh/sshd/Makefile |  40 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 40 insertions(+), 0 deletions(-)

diffs (44 lines):

diff -r cd99c811996f -r 77d4cc4bce36 usr.bin/ssh/sshd/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/usr.bin/ssh/sshd/Makefile Mon Feb 26 20:55:42 2001 +0000
@@ -0,0 +1,40 @@
+#      $NetBSD: Makefile,v 1.1.2.2 2001/02/26 20:55:42 he Exp $
+
+.include <bsd.own.mk>
+
+PROG=  sshd
+MAN=   sshd.8
+
+BINDIR=        /usr/sbin
+
+SRCS=  sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
+       pty.c log-server.c login.c servconf.c serverloop.c \
+       auth.c auth1.c auth2.c auth-options.c session.c dh.c \
+       auth-chall.c auth2-chall.c groupaccess.c
+
+.if (${MKKERBEROS} != "no")
+# XXX needs krb5
+#CPPFLAGS+=-DAFS
+#LDADD+=       -lkafs
+#DPADD+=       ${LIBKAFS}
+
+CPPFLAGS+=-DKRB4 -I${DESTDIR}/usr/include/kerberosIV
+SRCS+= auth-krb4.c
+LDADD+=        -lkrb -lcom_err -lroken
+DPADD+=        ${LIBKRB} ${LIBCOM_ERR} ${LIBROKEN}
+.endif
+
+.include <bsd.prog.mk>
+
+LDADD+=        -lcrypto -lutil -lz
+DPADD+=        ${LIBCRYPTO} ${LIBUTIL} ${LIBZ}
+
+CPPFLAGS+=-DLIBWRAP
+LDADD+=        -lwrap
+DPADD+=        ${LIBWRAP}
+
+.ifdef SKEY
+CPPFLAGS+=-DSKEY
+LDADD+=        -lskey
+DPADD+=        ${LIBSKEY}
+.endif



Home | Main Index | Thread Index | Old Index