diff options
Diffstat (limited to 'secure/lib')
| -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 515dab5aaa6d0..8e037119719d2 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 |
