Update for OpenSSH 3.5p1.

This commit is contained in:
Dag-Erling Smørgrav 2002-10-29 10:18:00 +00:00
parent 6baff12cf5
commit 4d56bc2300
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=106132
3 changed files with 11 additions and 2 deletions

View File

@ -8,7 +8,7 @@ SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c channels.c \
rsa.c tildexpand.c ttymodes.c xmalloc.c atomicio.c \
key.c dispatch.c kex.c mac.c uuencode.c misc.c \
rijndael.c ssh-dss.c ssh-rsa.c dh.c kexdh.c kexgex.c \
scard.c monitor_wrap.c monitor_fdpass.c msg.c
scard.c monitor_wrap.c monitor_fdpass.c msg.c xmmap.c
# Portability layer
SRCS+= bsd-misc.c entropy.c
# FreeBSD additions
@ -17,6 +17,14 @@ CFLAGS+=-I${SSHDIR}
NOLINT= true
.if defined(MAKE_KERBEROS4)
CFLAGS+= -DKRB4
.endif
.if defined(MAKE_KERBEROS5)
CFLAGS+= -DKRB5 -DHEIMDAL
.endif
.if defined(COMPAT_GETADDRINFO)
SRCS+= getaddrinfo.c getnameinfo.c name6.c rcmd.c bindresvport.c
.endif

View File

@ -1,6 +1,7 @@
# $FreeBSD$
PROG= ssh-keysign
SRCS= ssh-keysign.c msg.c readconf.c
MAN= ssh-keysign.8
CFLAGS+=-I${SSHDIR}
.if defined(ENABLE_SUID_SSH)

View File

@ -7,7 +7,7 @@ LINKS= ${BINDIR}/ssh ${BINDIR}/slogin
MAN= ssh.1 ssh_config.5
MLINKS= ssh.1 slogin.1
SRCS= ssh.c readconf.c clientloop.c sshtty.c \
SRCS= ssh.c authfd.c hostfile.c msg.c readconf.c clientloop.c sshtty.c \
sshconnect.c sshconnect1.c sshconnect2.c
.if defined(MAKE_KERBEROS4)