svn commit: r549958 - head/graphics/vv

Yuri Victorovich yuri at FreeBSD.org
Thu Sep 24 20:54:18 UTC 2020


Author: yuri
Date: Thu Sep 24 20:54:18 2020
New Revision: 549958
URL: https://svnweb.freebsd.org/changeset/ports/549958

Log:
  graphics/vv: Narrow the SSE2 workaround to i386 because the problem exists only on i386

Modified:
  head/graphics/vv/Makefile

Modified: head/graphics/vv/Makefile
==============================================================================
--- head/graphics/vv/Makefile	Thu Sep 24 20:52:19 2020	(r549957)
+++ head/graphics/vv/Makefile	Thu Sep 24 20:54:18 2020	(r549958)
@@ -37,8 +37,8 @@ PLIST_FILES=	bin/vv
 
 .include <bsd.port.pre.mk>
 
-.if ${ARCH} == i386 || ${ARCH} == amd64
-CXXFLAGS+=	-msse2 # workaround for https://github.com/open-vv/vv/issues/83 & https://github.com/InsightSoftwareConsortium/ITK/issues/2011
+.if ${ARCH} == i386
+CXXFLAGS+=	-msse2 # workaround for ITK failing to add -msse2 on i386: https://github.com/open-vv/vv/issues/83 & https://github.com/InsightSoftwareConsortium/ITK/issues/2011
 .endif
 
 post-configure: # workaround for "error: unable to find library -lGTest::GTest", see https://github.com/open-vv/vv/issues/74


More information about the svn-ports-all mailing list