diff options
author | Florent Thoumie <flz@FreeBSD.org> | 2007-10-29 15:11:57 +0000 |
---|---|---|
committer | Florent Thoumie <flz@FreeBSD.org> | 2007-10-29 15:11:57 +0000 |
commit | b80fd5665d588504807089e1a6f49f6a959f8d71 (patch) | |
tree | 1b8fe6edb858a7ab8a22f9e191f90d921c764bd3 /x11/pixman | |
parent | Update to 1.21 (diff) |
Disable SSE extensions as they're causing issues on machines without SSE
and gcc 4.2.1.
PR: ports/116551
Submitted by: Adam Kirchhoff <adamk@voicenet.com>
Diffstat (limited to 'x11/pixman')
-rw-r--r-- | x11/pixman/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/pixman/Makefile b/x11/pixman/Makefile index 92622dd7a242..4691d48a2660 100644 --- a/x11/pixman/Makefile +++ b/x11/pixman/Makefile @@ -7,7 +7,7 @@ PORTNAME= pixman PORTVERSION= 0.9.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -17,6 +17,6 @@ XORG_CAT= lib post-patch: @${REINPLACE_CMD} -e 's|gtk+-2\.0|disable-gtk|g' \ - ${WRKSRC}/configure + -e 's|-msse||' ${WRKSRC}/configure .include <bsd.port.mk> |