summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2011-07-12 22:03:28 +0000
committertron <tron@pkgsrc.org>2011-07-12 22:03:28 +0000
commitc611ff936c0581044c583e6b51846bfbd43b3eeb (patch)
tree161365382f0aeb68d94f5949fae019124145381b /x11
parent3512aa17e2013d3b9e9a75cff7623d3daa8d013e (diff)
downloadpkgsrc-c611ff936c0581044c583e6b51846bfbd43b3eeb.tar.gz
Change last pattern back to allow SSE2 support for GCC 100.* and newer
as suggested by Matthias Drochner in private e-mail. Let's hope we have switched to CLang by then.
Diffstat (limited to 'x11')
-rw-r--r--x11/pixman/hacks.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/pixman/hacks.mk b/x11/pixman/hacks.mk
index 175ff9aff2a..667b4121d43 100644
--- a/x11/pixman/hacks.mk
+++ b/x11/pixman/hacks.mk
@@ -1,4 +1,4 @@
-# $NetBSD: hacks.mk,v 1.5 2011/07/12 18:23:09 tron Exp $
+# $NetBSD: hacks.mk,v 1.6 2011/07/12 22:03:28 tron Exp $
#
.if !defined(PIXMAN_HACKS_MK)
PIXMAN_HACKS_MK= # empty
@@ -9,7 +9,7 @@ PIXMAN_HACKS_MK= # empty
###
.if empty(CC_VERSION:Mgcc-4.[2-9]*) && \
empty(CC_VERSION:Mgcc-[5-9].*) && \
- empty(CC_VERSION:Mgcc-[1-9][0-9].*)
+ empty(CC_VERSION:Mgcc-[1-9][0-9]*)
CONFIGURE_ARGS+= --disable-sse2
. endif
.endif