svn commit: r531520 - head/math/ascent

Piotr Kubaj pkubaj at FreeBSD.org
Sun Apr 12 14:28:07 UTC 2020


Author: pkubaj
Date: Sun Apr 12 14:28:06 2020
New Revision: 531520
URL: https://svnweb.freebsd.org/changeset/ports/531520

Log:
  math/ascent: fix build on GCC architectures
  
  C++17 compiler is necessary:
    The compiler feature "cxx_std_17" is not known to CXX compiler
  
    "GNU"
  
    version 4.2.1.

Modified:
  head/math/ascent/Makefile

Modified: head/math/ascent/Makefile
==============================================================================
--- head/math/ascent/Makefile	Sun Apr 12 13:40:24 2020	(r531519)
+++ head/math/ascent/Makefile	Sun Apr 12 14:28:06 2020	(r531520)
@@ -11,7 +11,7 @@ COMMENT=	C++ simulation engine and differential equati
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		cmake
+USES=		cmake compiler:c++17-lang
 USE_GITHUB=	yes
 GH_ACCOUNT=	AnyarInc
 GH_PROJECT=	Ascent


More information about the svn-ports-all mailing list