Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Jan 2021 12:54:15 +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: r560769 - head/devel/functionalplus
Message-ID:  <202101081254.108CsFah007205@repo.freebsd.org>

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



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