diff options
author | des <des@FreeBSD.org> | 2002-10-29 10:18:00 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-10-29 10:18:00 +0000 |
commit | da156e9602036970d85297b2fc0d67af0ae20e0d (patch) | |
tree | 124d1f1e1c456a20299518d4f53ecf7e2ede8043 /secure/lib/libssh/Makefile | |
parent | e1248d5245841c59947ed6cbc7aa6d00650bbcf5 (diff) | |
download | FreeBSD-src-da156e9602036970d85297b2fc0d67af0ae20e0d.zip FreeBSD-src-da156e9602036970d85297b2fc0d67af0ae20e0d.tar.gz |
Update for OpenSSH 3.5p1.
Diffstat (limited to 'secure/lib/libssh/Makefile')
-rw-r--r-- | secure/lib/libssh/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/secure/lib/libssh/Makefile b/secure/lib/libssh/Makefile index 515dab5..8e03711 100644 --- a/secure/lib/libssh/Makefile +++ b/secure/lib/libssh/Makefile @@ -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 |