Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 16 Nov 2019 16:04:26 +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: r517757 - head/math/clingo
Message-ID:  <201911161604.xAGG4Qp1058488@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon
Date: Sat Nov 16 16:04:26 2019
New Revision: 517757
URL: https://svnweb.freebsd.org/changeset/ports/517757

Log:
  Fix build on GCC-based systems:
  
    CMake Error in app/clingo/CMakeLists.txt:
    Target "clingo" 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/math/clingo/Makefile

Modified: head/math/clingo/Makefile
==============================================================================
--- head/math/clingo/Makefile	Sat Nov 16 15:47:09 2019	(r517756)
+++ head/math/clingo/Makefile	Sat Nov 16 16:04:26 2019	(r517757)
@@ -13,7 +13,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE.md
 
 BUILD_DEPENDS=	re2c:devel/re2c
 
-USES=		cmake
+USES=		cmake compiler:c++14-lang
 USE_GITHUB=	yes
 GH_ACCOUNT=	potassco
 GH_TUPLE=	potassco:clasp:c183473:clasp/clasp



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