svn commit: r561702 - branches/2021Q1/math/cppad

Piotr Kubaj pkubaj at FreeBSD.org
Sat Jan 16 02:07:34 UTC 2021


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


More information about the svn-ports-all mailing list