svn commit: r560769 - head/devel/functionalplus

Mark Linimon linimon at FreeBSD.org
Fri Jan 8 12:54:15 UTC 2021


Author: linimon
Date: Fri Jan  8 12:54:14 2021
New Revision: 560769
URL: https://svnweb.freebsd.org/changeset/ports/560769

Log:
  Add compiler:c++14-lang to USES to fix build on GCC-based systems:
  
    CMake Error in CMakeLists.txt:
    Target "readme_perf_examples" requires the language dialect "CXX14" , but
    CMake does not know the compile flags to use to enable it.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/devel/functionalplus/Makefile

Modified: head/devel/functionalplus/Makefile
==============================================================================
--- head/devel/functionalplus/Makefile	Fri Jan  8 12:51:12 2021	(r560768)
+++ head/devel/functionalplus/Makefile	Fri Jan  8 12:54:14 2021	(r560769)
@@ -11,7 +11,7 @@ COMMENT=	C++ header-only library that helps write conc
 LICENSE=	BSL
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		cmake
+USES=		cmake compiler:c++14-lang
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	Dobiasd


More information about the svn-ports-head mailing list