svn commit: r495565 - head/security/seal

Mark Linimon linimon at FreeBSD.org
Wed Mar 13 05:51:25 UTC 2019


Author: linimon
Date: Wed Mar 13 05:51:24 2019
New Revision: 495565
URL: https://svnweb.freebsd.org/changeset/ports/495565

Log:
  Fix build on gcc-based architectures:
  
      target_compile_features The compiler feature "cxx_std_17" is not known to CXX compiler
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/security/seal/Makefile

Modified: head/security/seal/Makefile
==============================================================================
--- head/security/seal/Makefile	Wed Mar 13 05:46:31 2019	(r495564)
+++ head/security/seal/Makefile	Wed Mar 13 05:51:24 2019	(r495565)
@@ -10,7 +10,7 @@ COMMENT=	Microsoft Simple Encrypted Arithmetic Library
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=	cmake
+USES=		cmake compiler:c++17-lang
 
 CMAKE_SOURCE_PATH=	${WRKSRC}/src
 


More information about the svn-ports-all mailing list