ports/137114: [patch] x11/babl: add SIMD knob
Anonymous
swell.k at gmail.com
Tue Aug 4 23:20:11 UTC 2009
The following reply was made to PR ports/137114; it has been noted by GNATS.
From: Anonymous <swell.k at gmail.com>
To: bug-followup at FreeBSD.org
Cc:
Subject: Re: ports/137114: [patch] x11/babl: add SIMD knob
Date: Wed, 05 Aug 2009 03:18:49 +0400
ports/137439 turned out to be more global. The change in this PR
regarding SIMD defaults was wrong. configure script detects cpu-specific
extensions *without* explicit --enable-*. I'm attaching correct diff.
Sorry for inconvenience.
--- babl.diff begins here ---
Index: x11/babl/Makefile
===================================================================
RCS file: /home/csup/ports/x11/babl/Makefile,v
retrieving revision 1.6
diff -u -p -r1.6 Makefile
--- x11/babl/Makefile 2 Aug 2009 21:35:01 -0000 1.6
+++ x11/babl/Makefile 4 Aug 2009 23:05:55 -0000
@@ -31,10 +31,10 @@ OPTIONS= SIMD "Use cpu-specific optimiza
.include <bsd.port.pre.mk>
-.if !defined(WITHOUT_SIMD)
-CONFIGURE_ARGS+=--enable-mmx \
- --enable-sse \
- --enable-altivec
+.if defined(WITHOUT_SIMD)
+CONFIGURE_ARGS+=--disable-mmx \
+ --disable-sse \
+ --disable-altivec
.endif
.include <bsd.port.post.mk>
--- babl.diff ends here ---
More information about the freebsd-gnome
mailing list