svn commit: r561701 - head/math/cppad
Piotr Kubaj
pkubaj at FreeBSD.org
Sat Jan 16 02:06:54 UTC 2021
Author: pkubaj
Date: Sat Jan 16 02:06:53 2021
New Revision: 561701
URL: https://svnweb.freebsd.org/changeset/ports/561701
Log:
math/cppad: fix build on GCC architectures
The c++ complier flag __cplusplus is less than 201103. Starting with
cppad-20201202, c++11 or higher is required.
MFH: 2021Q1
Modified:
head/math/cppad/Makefile
Modified: head/math/cppad/Makefile
==============================================================================
--- head/math/cppad/Makefile Sat Jan 16 02:01:16 2021 (r561700)
+++ head/math/cppad/Makefile Sat Jan 16 02:06:53 2021 (r561701)
@@ -10,7 +10,7 @@ COMMENT= C++ Algorithmic Differentiation package
LICENSE= EPL
-USES= cmake eigen:3,run
+USES= cmake compiler:c++11-lang eigen:3,run
USE_GITHUB= yes
GH_ACCOUNT= coin-or
GH_PROJECT= CppAD
More information about the svn-ports-all
mailing list