svn commit: r522080 - head/security/palisade

Mark Linimon linimon at FreeBSD.org
Sun Jan 5 03:59:52 UTC 2020


Author: linimon
Date: Sun Jan  5 03:59:51 2020
New Revision: 522080
URL: https://svnweb.freebsd.org/changeset/ports/522080

Log:
  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:
  head/security/palisade/Makefile

Modified: head/security/palisade/Makefile
==============================================================================
--- head/security/palisade/Makefile	Sun Jan  5 02:17:32 2020	(r522079)
+++ head/security/palisade/Makefile	Sun Jan  5 03:59:51 2020	(r522080)
@@ -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