Adjust for OpenSSH 3.1.

Sponsored by:	DARPA, NAI Labs
This commit is contained in:
Dag-Erling Smørgrav 2002-03-18 10:20:33 +00:00
parent 12868dc6bb
commit 8f7701469e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=92563
3 changed files with 4 additions and 4 deletions

View File

@ -3,11 +3,11 @@
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 \
cipher.c compat.c compress.c crc32.c deattack.c fatal.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 \
key.c dispatch.c kex.c mac.c uuencode.c misc.c \
cli.c rijndael.c ssh-dss.c ssh-rsa.c dh.c kexdh.c kexgex.c \
rijndael.c ssh-dss.c ssh-rsa.c dh.c kexdh.c kexgex.c \
version.c
.if defined(COMPAT_GETADDRINFO)

View File

@ -2,7 +2,7 @@
#
PROG= scp
SRCS= scp.c scp-common.c
SRCS= scp.c
DPADD= ${LIBSSH}
LDADD= -lssh

View File

@ -2,7 +2,7 @@
#
PROG= sftp
SRCS= sftp.c sftp-client.c sftp-int.c sftp-common.c sftp-glob.c scp-common.c
SRCS= sftp.c sftp-client.c sftp-int.c sftp-common.c sftp-glob.c
LDADD= -lssh -lcrypto
DPADD= ${LIBSSH} ${LIBCRYPTO}