svn commit: r550346 - head/security/cryptopp

Mark Linimon linimon at FreeBSD.org
Sun Sep 27 20:35:25 UTC 2020


Author: linimon
Date: Sun Sep 27 20:35:24 2020
New Revision: 550346
URL: https://svnweb.freebsd.org/changeset/ports/550346

Log:
  Set flags on powerpc64le the same as on powerpc64.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/security/cryptopp/Makefile

Modified: head/security/cryptopp/Makefile
==============================================================================
--- head/security/cryptopp/Makefile	Sun Sep 27 20:32:36 2020	(r550345)
+++ head/security/cryptopp/Makefile	Sun Sep 27 20:35:24 2020	(r550346)
@@ -32,8 +32,9 @@ PLIST_SUB+=	SOVERSION=${SOVERSION} \
 OPTIONS_DEFINE=		DEBUG DOCS FULL_DEBUG TOOLS
 OPTIONS_DEFINE_amd64=	SIMD
 OPTIONS_DEFINE_i386=	SIMD
-OPTIONS_DEFINE_powerpc=	SIMD
+OPTIONS_DEFINE_powerpc=		SIMD
 OPTIONS_DEFINE_powerpc64=	SIMD
+OPTIONS_DEFINE_powerpc64le=	SIMD
 OPTIONS_DEFAULT=	TOOLS
 OPTIONS_SUB=		yes
 
@@ -64,7 +65,7 @@ CXXFLAGS+=	-DCRYPTOPP_DISABLE_SSSE3
 .    if !${MACHINE_CPU:Msse41}
 CXXFLAGS+=	-DCRYPTOPP_DISABLE_SSE4
 .    endif
-.  elif ${ARCH} == powerpc || ${ARCH} == powerpc64
+.  elif ${ARCH} == powerpc || ${ARCH:Mpowerpc64*}
 CXXFLAGS+=	-DCRYPTOPP_ALTIVEC_AVAILABLE -maltivec -mcrypto -mvsx
 .  endif
 .else


More information about the svn-ports-all mailing list