pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/graphics/opencolorio



Module Name:    pkgsrc
Committed By:   nia
Date:           Sun Oct 20 09:51:02 UTC 2019

Modified Files:
        pkgsrc/graphics/opencolorio: Makefile

Log Message:
opencolorio: Disable SSE on non-x86


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/graphics/opencolorio/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/graphics/opencolorio/Makefile
diff -u pkgsrc/graphics/opencolorio/Makefile:1.6 pkgsrc/graphics/opencolorio/Makefile:1.7
--- pkgsrc/graphics/opencolorio/Makefile:1.6    Sun Sep 22 23:40:29 2019
+++ pkgsrc/graphics/opencolorio/Makefile        Sun Oct 20 09:51:02 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2019/09/22 23:40:29 nia Exp $
+# $NetBSD: Makefile,v 1.7 2019/10/20 09:51:02 nia Exp $
 
 DISTNAME=      OpenColorIO-1.1.1
 PKGREVISION=   1
@@ -24,6 +24,10 @@ CMAKE_ARGS+= -DOCIO_BUILD_APPS:BOOL=OFF
 CMAKE_ARGS+=   -DOCIO_BUILD_SHARED:BOOL=ON
 CMAKE_ARGS+=   -DOCIO_BUILD_PYGLUE:BOOL=OFF
 
+.if ${MACHINE_ARCH} != "i386" && ${MACHINE_ARCH} != "x86_64"
+CMAKE_ARGS+=   -DOCIO_USE_SSE:BOOL=OFF
+.endif
+
 PKGCONFIG_OVERRIDE+=   export/pkgconfig/OpenColorIO.pc.in
 
 BUILDLINK_TRANSFORM+=  rm:-Werror



Home | Main Index | Thread Index | Old Index