From e1e3faa147e1c845653e56d40391e33d5a0c5a09 Mon Sep 17 00:00:00 2001 From: grant Date: Sat, 20 Aug 2005 10:50:52 +0000 Subject: fix a conditional to appease bmake --- x11/fox/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x11/fox/Makefile b/x11/fox/Makefile index 0d0b14c976f..a40b0882d90 100644 --- a/x11/fox/Makefile +++ b/x11/fox/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2005/08/02 10:26:43 adam Exp $ +# $NetBSD: Makefile,v 1.28 2005/08/20 10:50:52 grant Exp $ DISTNAME= fox-1.4.17 CATEGORIES= x11 @@ -19,7 +19,7 @@ CONFIGURE_ARGS+= --with-x .include "../../mk/bsd.prefs.mk" # NetBSD < 3.0 does not have getpwnam_r() getpwuin_r() -.if (${OPSYS} == "NetBSD") && (${OS_VERSION:R} < 3) +.if ${OPSYS} == "NetBSD" && !empty(OS_VERSION:M[1-2]*) CONFIGURE_ARGS+= --disable-threadsafe .endif -- cgit v1.2.3