Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Aug 2009 23:20:10 GMT
From:      Anonymous <swell.k@gmail.com>
To:        gnome@FreeBSD.org
Subject:   Re: ports/137114: [patch] x11/babl: add SIMD knob
Message-ID:  <200908042320.n74NKAMJ000185@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/137114; it has been noted by GNATS.

From: Anonymous <swell.k@gmail.com>
To: bug-followup@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 ---



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200908042320.n74NKAMJ000185>