Date: Sat, 16 Jan 2021 02:07:34 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r561702 - branches/2021Q1/math/cppad Message-ID: <202101160207.10G27Y3L047783@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Sat Jan 16 02:07:33 2021 New Revision: 561702 URL: https://svnweb.freebsd.org/changeset/ports/561702 Log: MFH: r561701 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. Modified: branches/2021Q1/math/cppad/Makefile Directory Properties: branches/2021Q1/ (props changed) Modified: branches/2021Q1/math/cppad/Makefile ============================================================================== --- branches/2021Q1/math/cppad/Makefile Sat Jan 16 02:06:53 2021 (r561701) +++ branches/2021Q1/math/cppad/Makefile Sat Jan 16 02:07:33 2021 (r561702) @@ -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?202101160207.10G27Y3L047783>