svn commit: r522086 - branches/2020Q1/security/palisade

Mark Linimon linimon at FreeBSD.org
Sun Jan 5 04:07:05 UTC 2020


Author: linimon
Date: Sun Jan  5 04:07:04 2020
New Revision: 522086
URL: https://svnweb.freebsd.org/changeset/ports/522086

Log:
  MFH: r522080
  
  Add compiler:c++11-lang to USES to try to fix build on GCC-based
  systems:
  
    CMake Error at CMakeLists.txt:112 (message): GCC version must be at least 6.1!
  
  Unfortunately this merely gets to a failure later on in the build
  for powerpc64.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  branches/2020Q1/security/palisade/Makefile
Directory Properties:
  branches/2020Q1/   (props changed)

Modified: branches/2020Q1/security/palisade/Makefile
==============================================================================
--- branches/2020Q1/security/palisade/Makefile	Sun Jan  5 04:06:59 2020	(r522085)
+++ branches/2020Q1/security/palisade/Makefile	Sun Jan  5 04:07:04 2020	(r522086)
@@ -12,10 +12,11 @@ LICENSE=	BSD2CLAUSE
 LICENSE_FILE=	${WRKSRC}/License.md
 
 BROKEN_i386=	fails to build: a declaration of 'Mul128' must be available
+BROKEN_powerpc64=	fails to build: math/native_int/binint.h:510:11: error: Architecture not supported for MultD()
 
 BUILD_DEPENDS=	autoconf:devel/autoconf # possibly a mistake in the project
 
-USES=		cmake:noninja localbase
+USES=		cmake:noninja compiler:c++11-lang localbase
 USE_GITLAB=	yes
 USE_GITHUB=	nodefault
 GL_PROJECT=	palisade-development


More information about the svn-ports-all mailing list