diff options
author | des <des@FreeBSD.org> | 2002-06-25 19:10:09 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-06-25 19:10:09 +0000 |
commit | 513df53f599143b8e6eea0bfc146795e8b49a816 (patch) | |
tree | d2e405b1830cc112b95eb861435acc4cf82f9dbe /secure/lib/libssh | |
parent | df105eba79a48fb00cc8f6a894e8869777c2b518 (diff) | |
download | FreeBSD-src-513df53f599143b8e6eea0bfc146795e8b49a816.zip FreeBSD-src-513df53f599143b8e6eea0bfc146795e8b49a816.tar.gz |
No guts, no glory. Switch to OpenSSH-portable.
Sponsored by: DARPA, NAI Labs
Diffstat (limited to 'secure/lib/libssh')
-rw-r--r-- | secure/lib/libssh/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/secure/lib/libssh/Makefile b/secure/lib/libssh/Makefile index e5146bb..7bfbdc3 100644 --- a/secure/lib/libssh/Makefile +++ b/secure/lib/libssh/Makefile @@ -8,8 +8,12 @@ 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 \ - uidswap.c version.c + scard.c monitor_wrap.c monitor_fdpass.c msg.c +# Portability layer +SRCS+= bsd-misc.c entropy.c +# FreeBSD additions +SRCS+= version.c +CFLAGS+=-I${SSHDIR} .if defined(COMPAT_GETADDRINFO) SRCS+= getaddrinfo.c getnameinfo.c name6.c rcmd.c bindresvport.c @@ -20,4 +24,4 @@ LDADD= -lcrypto -lz .include <bsd.lib.mk> -.PATH: ${SSHDIR} ${SSHDIR}/lib +.PATH: ${SSHDIR} ${SSHDIR}/openbsd-compat |