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:           Sat Dec  7 15:04:15 UTC 2024

Modified Files:
        pkgsrc/graphics/opencolorio: Makefile

Log Message:
opencolorio: Disable SIMD on i386


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 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.13 pkgsrc/graphics/opencolorio/Makefile:1.14
--- pkgsrc/graphics/opencolorio/Makefile:1.13   Mon Nov  4 21:20:59 2024
+++ pkgsrc/graphics/opencolorio/Makefile        Sat Dec  7 15:04:14 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2024/11/04 21:20:59 adam Exp $
+# $NetBSD: Makefile,v 1.14 2024/12/07 15:04:14 nia Exp $
 
 DISTNAME=      OpenColorIO-2.4.0
 PKGNAME=       ${DISTNAME:tl}
@@ -29,6 +29,10 @@ CMAKE_CONFIGURE_ARGS+=       -DOCIO_INSTALL_EX
 
 .include "../../mk/bsd.prefs.mk"
 
+.if ${MACHINE_ARCH} == "i386"
+CMAKE_CONFIGURE_ARGS+= -DOCIO_USE_SIMD:BOOL=OFF
+.endif
+
 .if ${MACHINE_ARCH} != "x86_64"
 CMAKE_CONFIGURE_ARGS+= -DOCIO_BUILD_ENABLE_OPTIMIZATIONS_SSE:BOOL=OFF
 .endif



Home | Main Index | Thread Index | Old Index