svn commit: r562108 - head/biology/edlib

Mark Linimon linimon at FreeBSD.org
Wed Jan 20 02:31:34 UTC 2021


Author: linimon
Date: Wed Jan 20 02:31:33 2021
New Revision: 562108
URL: https://svnweb.freebsd.org/changeset/ports/562108

Log:
  Fix build on GCC-based systems by adding compiler:c++14-lang to USES:
  
    CMake Error in CMakeLists.txt:
    Target "runTests" 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/biology/edlib/Makefile

Modified: head/biology/edlib/Makefile
==============================================================================
--- head/biology/edlib/Makefile	Wed Jan 20 02:30:13 2021	(r562107)
+++ head/biology/edlib/Makefile	Wed Jan 20 02:31:33 2021	(r562108)
@@ -10,7 +10,7 @@ COMMENT=	Fast C++ library for sequence alignment using
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		cmake
+USES=		cmake compiler:c++14-lang
 USE_LDCONFIG=	yes
 
 USE_GITHUB=	yes


More information about the svn-ports-all mailing list