Update for OpenSSH 2.1

This commit is contained in:
Kris Kennaway 2000-05-15 05:26:50 +00:00
parent e8aafc91b5
commit 4fc9354419
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=60577
3 changed files with 15 additions and 5 deletions

View File

@ -7,7 +7,8 @@ LIB= ssh
SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c channels.c \
cipher.c compat.c compress.c crc32.c deattack.c fingerprint.c \
hostfile.c log.c match.c mpaux.c nchan.c packet.c readpass.c \
rsa.c tildexpand.c ttymodes.c uidswap.c xmalloc.c atomicio.c
rsa.c tildexpand.c ttymodes.c uidswap.c xmalloc.c atomicio.c \
key.c dispatch.c dsa.c kex.c hmac.c uuencode.c
NOPIC= yes
@ -32,4 +33,8 @@ CFLAGS+= -DKRB4
CFLAGS+= -DKRB5
.endif # MAKE_KERBEROS5
CFLAGS+= -DSKEY
DPADD+= ${LIBOPIE}
LDADD+= -lopie
SRCS+= auth-skey.c
.include <bsd.lib.mk>

View File

@ -10,7 +10,8 @@ MAN1= ssh.1
LINKS= ${BINDIR}/ssh ${BINDIR}/slogin
MLINKS= ssh.1 slogin.1
SRCS= clientloop.c key.c log-client.c readconf.c ssh.c sshconnect.c
SRCS= ssh.c log-client.c readconf.c clientloop.c sshconnect.c \
sshconnect1.c sshconnect2.c
.include <bsd.own.mk>

View File

@ -9,9 +9,9 @@ BINOWN= root
BINMODE=555
MAN8= sshd.8
SRCS= auth-passwd.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c \
key.c log-server.c login.c login_access.c pty.c servconf.c \
serverloop.c sshd.c \
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 session.c login_access.c
CFLAGS+= -DLIBWRAP -DLOGIN_ACCESS -I${LOGINSRC}
@ -37,6 +37,10 @@ LDADD+= -lkrb5 -lasn1 -lcom_err -lmd -L${.OBJDIR}/../../../kerberos5/lib/librok
DPADD+= ${LIBKRB5} ${LIBCOM_ERR} ${LIBASN1} ${LIBMD}
.endif # MAKE_KERBEROS5
CFLAGS+= -DSKEY
LDADD+= -lopie
DPADD+= ${LIBOPIE}
.include <bsd.prog.mk>
LDADD+= -L${.OBJDIR}/../../lib/libssh -lssh -lcrypt -lcrypto -lutil -lz -lwrap