diff options
Diffstat (limited to 'lib/libtelnet/Makefile')
-rw-r--r-- | lib/libtelnet/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libtelnet/Makefile b/lib/libtelnet/Makefile index cea65a18f80..125cb56e11b 100644 --- a/lib/libtelnet/Makefile +++ b/lib/libtelnet/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 8.2 (Berkeley) 12/15/93 -# $OpenBSD: Makefile,v 1.3 1998/03/12 04:48:42 art Exp $ +# $OpenBSD: Makefile,v 1.4 2000/09/03 18:41:14 espie Exp $ # $NetBSD: Makefile,v 1.6 1996/02/24 01:15:15 jtk Exp $ LIB= telnet @@ -9,13 +9,13 @@ CFLAGS+= -DHAS_CGETENT .include <bsd.own.mk> # for KERBEROS -.if (${KERBEROS} == "yes") +.if (${KERBEROS:L} == "yes") CFLAGS+= -DKRB4 -DAUTHENTICATION -DENCRYPTION -DDES_ENCRYPTION SRCS+= kerberos.c enc_des.c .endif # XXX this has not been tested due to lack of kerberos5 to test with. -.if (${KERBEROS5} == "yes") +.if (${KERBEROS5:L} == "yes") CFLAGS+= -DKRB5 -DAUTHENTICATION -DENCRYPTION -DDES_ENCRYPTION SRCS+= kerberos5.c enc_des.c .endif |