summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2000-09-03 18:41:24 +0000
committerMarc Espie <espie@cvs.openbsd.org>2000-09-03 18:41:24 +0000
commit228758662f475a61b9ae4f95b4fa2b910d112a0f (patch)
tree89af97fc39223c1fd3e255e50736787e50dcf6c8 /lib
parent570e744e53b725c62fcaf7d2f8551b4b887c1fd3 (diff)
Boring... Add :L modifier to all tweakable variables tests.
Closes PR 1246
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/Makefile.inc6
-rw-r--r--lib/libkvm.old/Makefile4
-rw-r--r--lib/libkvm/Makefile4
-rw-r--r--lib/libtelnet/Makefile6
4 files changed, 10 insertions, 10 deletions
diff --git a/lib/libc/Makefile.inc b/lib/libc/Makefile.inc
index 770171dac76..72ecb7fa6d1 100644
--- a/lib/libc/Makefile.inc
+++ b/lib/libc/Makefile.inc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.inc,v 1.2 2000/01/06 08:47:07 d Exp $
+# $OpenBSD: Makefile.inc,v 1.3 2000/09/03 18:41:13 espie Exp $
#
# This file contains make rules that are shared by libc and libc_r.
#
@@ -10,7 +10,7 @@ all:
CFLAGS+= -DLIBC_SCCS -DSYSLIBC_SCCS -I${LIBCSRCDIR}/include
-.if (${YP} == "yes")
+.if (${YP:L} == "yes")
CFLAGS+=-DYP -I${LIBCSRCDIR}/yp
.endif
@@ -47,7 +47,7 @@ AINC+= -nostdinc -idirafter ${DESTDIR}/usr/include
.include "${LIBCSRCDIR}/thread/Makefile.inc"
.include "${LIBCSRCDIR}/time/Makefile.inc"
.include "${LIBCSRCDIR}/sys/Makefile.inc"
-.if (${YP} == "yes")
+.if (${YP:L} == "yes")
.include "${LIBCSRCDIR}/yp/Makefile.inc"
.endif
diff --git a/lib/libkvm.old/Makefile b/lib/libkvm.old/Makefile
index 8c5d6c51e02..aa7926a0b42 100644
--- a/lib/libkvm.old/Makefile
+++ b/lib/libkvm.old/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.3 1999/12/01 09:58:16 deraadt Exp $
+# $OpenBSD: Makefile,v 1.4 2000/09/03 18:41:13 espie Exp $
# $NetBSD: Makefile,v 1.4 1996/05/13 02:30:20 thorpej Exp $
LIB= kvm
@@ -25,6 +25,6 @@ MLINKS+=kvm_read.3 kvm_write.3
.include <bsd.lib.mk>
-.if (${UVM} == "yes")
+.if (${UVM:L} == "yes")
CFLAGS+=-DUVM
.endif
diff --git a/lib/libkvm/Makefile b/lib/libkvm/Makefile
index 3b3509c2032..42d51f67677 100644
--- a/lib/libkvm/Makefile
+++ b/lib/libkvm/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.4 1999/06/22 14:40:50 art Exp $
+# $OpenBSD: Makefile,v 1.5 2000/09/03 18:41:13 espie Exp $
# $NetBSD: Makefile,v 1.11 1996/03/18 22:33:07 thorpej Exp $
# from: @(#)Makefile 8.1 (Berkeley) 6/4/93
@@ -27,6 +27,6 @@ MLINKS+=kvm_dump.3 kvm_dump_inval.3
.include <bsd.lib.mk>
-.if (${UVM} == "yes")
+.if (${UVM:L} == "yes")
CFLAGS+=-DUVM
.endif
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