pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/x11/fox fix a conditional to appease bmake



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9584d425a2ec
branches:  trunk
changeset: 498339:9584d425a2ec
user:      grant <grant%pkgsrc.org@localhost>
date:      Sat Aug 20 10:50:52 2005 +0000

description:
fix a conditional to appease bmake

diffstat:

 x11/fox/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r aac2c30491a1 -r 9584d425a2ec x11/fox/Makefile
--- a/x11/fox/Makefile  Sat Aug 20 10:05:00 2005 +0000
+++ b/x11/fox/Makefile  Sat Aug 20 10:50:52 2005 +0000
@@ -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 @@
 .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
 



Home | Main Index | Thread Index | Old Index