diff options
Diffstat (limited to 'crypto/openssh/lib/Makefile')
-rw-r--r-- | crypto/openssh/lib/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/crypto/openssh/lib/Makefile b/crypto/openssh/lib/Makefile index 369cf90eac99..ac950a9ac3af 100644 --- a/crypto/openssh/lib/Makefile +++ b/crypto/openssh/lib/Makefile @@ -1,15 +1,15 @@ -# $OpenBSD: Makefile,v 1.31 2002/02/22 12:20:34 markus Exp $ +# $OpenBSD: Makefile,v 1.36 2002/06/11 15:23:29 hin Exp $ .PATH: ${.CURDIR}/.. LIB= ssh -SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c channels.c \ +SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c channels.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 \ + 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 + scard.c monitor_wrap.c monitor_fdpass.c msg.c DEBUGLIBS= no NOPROFILE= yes @@ -20,6 +20,10 @@ install: .include <bsd.own.mk> +.if (${KERBEROS5:L} == "yes") +CFLAGS+= -DKRB5 -I${DESTDIR}/usr/include/kerberosV +.endif # KERBEROS5 + .if (${KERBEROS:L} == "yes") CFLAGS+= -DKRB4 -I${DESTDIR}/usr/include/kerberosIV .if (${AFS:L} == "yes") @@ -28,8 +32,4 @@ SRCS+= radix.c .endif # AFS .endif # KERBEROS -.if (${KERBEROS5:L} == "yes") -CFLAGS+= -DKRB5 -I${DESTDIR}/usr/include/kerberosV -.endif # KERBEROS5 - .include <bsd.lib.mk> |