Date: Sat, 16 Jan 2021 02:06:53 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r561701 - head/math/cppad Message-ID: <202101160206.10G26rNU047619@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101160206.10G26rNU047619>