diff options
| author | Mark Murray <markm@FreeBSD.org> | 2000-02-24 17:00:55 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2000-02-24 17:00:55 +0000 |
| commit | c23e256eefa3a3fa4d991e28c9cad41c1bfef81b (patch) | |
| tree | ae6aab7c740466dd15348eac8581c327e32b1c23 /secure/lib/libssh/Makefile | |
| parent | 843c5d4993d422083d400dd08b109f410a9f2b3c (diff) | |
Notes
Diffstat (limited to 'secure/lib/libssh/Makefile')
| -rw-r--r-- | secure/lib/libssh/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/secure/lib/libssh/Makefile b/secure/lib/libssh/Makefile new file mode 100644 index 000000000000..563a156f399b --- /dev/null +++ b/secure/lib/libssh/Makefile @@ -0,0 +1,36 @@ +# $FreeBSD$ +# + +SSHSRC= ${.CURDIR}/../../../crypto/openssh + +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 \ + strlcat.c strlcpy.c + +NOPIC= yes + +install: + +.if defined(COMPAT_GETADDRINFO) +SRCS+= getaddrinfo.c getnameinfo.c name6.c rcmd.c bindresvport.c +.endif + +.include <bsd.own.mk> + +.PATH: ${SSHSRC} +.PATH: ${SSHSRC}/lib + +.if defined(MAKE_KERBEROS4) && \ + ((${MAKE_KERBEROS4} == "yes") || (${MAKE_KERBEROS4} == "YES")) +CFLAGS+= -DKRB4 +.endif # MAKE_KERBEROS4 + +.if defined(MAKE_KERBEROS5) && \ + ((${MAKE_KERBEROS5} == "yes") || (${MAKE_KERBEROS5} == "YES")) +CFLAGS+= -DKRB5 +.endif # MAKE_KERBEROS5 + +.include <bsd.lib.mk> |
