svn commit: r547192 - head/devel/taskflow

Mark Linimon linimon at FreeBSD.org
Mon Aug 31 15:53:39 UTC 2020


Author: linimon
Date: Mon Aug 31 15:53:38 2020
New Revision: 547192
URL: https://svnweb.freebsd.org/changeset/ports/547192

Log:
  Add compiler:c++11-lang to USES to fix build on GCC-based systems:
  
    CMake Error at CMakeLists.txt:25 (message):
    Taskflow requires g++ at least v5.0
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/devel/taskflow/Makefile

Modified: head/devel/taskflow/Makefile
==============================================================================
--- head/devel/taskflow/Makefile	Mon Aug 31 15:07:03 2020	(r547191)
+++ head/devel/taskflow/Makefile	Mon Aug 31 15:53:38 2020	(r547192)
@@ -11,7 +11,7 @@ COMMENT=	Header-only library for parallel tasks in mod
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		cmake
+USES=		cmake compiler:c++11-lang
 USE_GITHUB=	yes
 
 CMAKE_OFF=	TF_BUILD_CUDA TF_BUILD_TESTS TF_BUILD_EXAMPLES


More information about the svn-ports-head mailing list