svn commit: r430611 - head/graphics/rawtherapee

Matthias Andree mandree at FreeBSD.org
Thu Jan 5 01:45:40 UTC 2017


Author: mandree
Date: Thu Jan  5 01:45:39 2017
New Revision: 430611
URL: https://svnweb.freebsd.org/changeset/ports/430611

Log:
  Upgrade CPU flags to use SSE2 by default on i386.
  
  Reported by:	Ingo Weyrich

Modified:
  head/graphics/rawtherapee/Makefile

Modified: head/graphics/rawtherapee/Makefile
==============================================================================
--- head/graphics/rawtherapee/Makefile	Thu Jan  5 01:21:22 2017	(r430610)
+++ head/graphics/rawtherapee/Makefile	Thu Jan  5 01:45:39 2017	(r430611)
@@ -3,7 +3,7 @@
 
 PORTNAME=	rawtherapee
 PORTVERSION=	4.2
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	graphics
 MASTER_SITES=	http://rawtherapee.com/shared/source/
 
@@ -53,7 +53,7 @@ RTDIR=		${PREFIX}/libdata/${PORTNAME}
 OPTIONS_DEFINE=		OPTIMIZED_CFLAGS OPENMP
 OPTIONS_DEFAULT=	OPTIMIZED_CFLAGS OPENMP
 OPENMP_DESC=		Enable multicore processing using OpenMP
-OPTIMIZED_CFLAGS_DESC=	Use extra compiler optimizations (requires SSE support)
+OPTIMIZED_CFLAGS_DESC=	Use extra compiler optimizations (requires SSE2 support)
 
 OPENMP_CMAKE_BOOL=	OPTION_OMP
 
@@ -64,9 +64,9 @@ OPENMP_CMAKE_BOOL=	OPTION_OMP
 .if ${ARCH} == "amd64" || ${ARCH} == "i386"
 .if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
 CFLAGS+=	-O3 -fexpensive-optimizations \
-		-funroll-loops -msse
+		-funroll-loops -msse2
 CXXFLAGS+=	-O3 \
-		-funroll-loops -msse
+		-funroll-loops -msse2
 .endif
 .endif
 


More information about the svn-ports-all mailing list