Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Jan 2020 03:59:51 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r522080 - head/security/palisade
Message-ID:  <202001050359.0053xp4B041227@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001050359.0053xp4B041227>