svn commit: r559989 - head/graphics/osgearth

Piotr Kubaj pkubaj at FreeBSD.org
Sun Jan 3 05:09:56 UTC 2021


Author: pkubaj
Date: Sun Jan  3 05:09:55 2021
New Revision: 559989
URL: https://svnweb.freebsd.org/changeset/ports/559989

Log:
  graphics/osgearth: fix build on powerpc64le
  
  Same issue as on powerpc64.

Modified:
  head/graphics/osgearth/Makefile

Modified: head/graphics/osgearth/Makefile
==============================================================================
--- head/graphics/osgearth/Makefile	Sun Jan  3 03:56:17 2021	(r559988)
+++ head/graphics/osgearth/Makefile	Sun Jan  3 05:09:55 2021	(r559989)
@@ -39,7 +39,7 @@ PLIST_SUB=	PORTVERSION=${PORTVERSION}
 
 .include <bsd.port.options.mk>
 
-.if ${ARCH} == powerpc64
+.if ${ARCH:Mpowerpc64*}
 CXXFLAGS+=	-DNO_WARN_X86_INTRINSICS -maltivec -mvsx
 USES+=		compiler:gcc-c++11-lib
 .else


More information about the svn-ports-head mailing list