1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Fix build with c++11

This commit is contained in:
Dmitry Marakasov 2015-04-13 19:18:36 +00:00
parent e99e104a08
commit c268481174
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=383950
3 changed files with 48 additions and 0 deletions

View File

@ -10,6 +10,7 @@ MAINTAINER= ports@FreeBSD.org
COMMENT= Library of tools for doing computation in game theory
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
USES= compiler:c++11-lib
USE_GNOME= gtk20

View File

@ -0,0 +1,18 @@
--- src/libgambit/matrix.cc.orig 2014-06-06 16:33:54.000000000 +0400
+++ src/libgambit/matrix.cc 2015-04-13 21:39:08.802909000 +0300
@@ -25,11 +25,15 @@
using namespace Gambit;
+namespace Gambit {
+
template class Matrix<double>;
template class Matrix<Rational>;
template class Matrix<Integer>;
template class Matrix<int>;
+}
+
template Vector<double> Gambit::operator*(const Vector<double> &,
const Matrix<double> &);
template Vector<Rational> Gambit::operator*(const Vector<Rational> &,

View File

@ -0,0 +1,29 @@
--- src/tools/enumpoly/pelqhull.cc.orig 2014-05-27 12:07:04.000000000 +0400
+++ src/tools/enumpoly/pelqhull.cc 2015-04-13 20:35:03.596285000 +0300
@@ -2792,7 +2792,7 @@
/* zdef_(type,name,doc,average) */
zzdef_(zdoc, Zdoc2, "precision statistics", -1);
- zdef_(zinc, Znewvertex, reinterpret_cast<const char *>(NULL), -1);
+ zdef_(zinc, Znewvertex, static_cast<const char *>(NULL), -1);
zdef_(wadd, Wnewvertex, "ave. distance of a new vertex to a facet (not 0s)", Znewvertex);
zdef_(wmax, Wnewvertexmax, "max. distance of a new vertex to a facet", -1);
zdef_(wmax, Wvertexmax, "max. distance of an output vertex to a facet", -1);
@@ -2831,7 +2831,7 @@
zzdef_(zinc, Zsetplane, "facets created altogether", -1);
zdef_(zinc, Ztotridges, "ridges created altogether", -1);
zdef_(zinc, Zpostfacets, "facets before post merge", -1);
- zdef_(zinc, Zangle, reinterpret_cast<const char *>(NULL), -1);
+ zdef_(zinc, Zangle, static_cast<const char *>(NULL), -1);
zdef_(wadd, Wangle, "average angle (cosine) for all ridges", Zangle);
zdef_(wmax, Wanglemax, "maximum angle (cosine) of a ridge", -1);
zdef_(wmin, Wanglemin, "minimum angle (cosine) of a ridge", -1);
@@ -2946,7 +2946,7 @@
zdef_(zinc, Zintersect, "intersections found redundant vertices", -1);
zdef_(zadd, Zintersecttot, " ave. number found per vertex", Zintersect);
zdef_(zmax, Zintersectmax, " max. found for a vertex", -1);
- zdef_(zinc, Zvertexridge, reinterpret_cast<const char *>(NULL), -1);
+ zdef_(zinc, Zvertexridge, static_cast<const char *>(NULL), -1);
zdef_(zadd, Zvertexridgetot, " ave. number of ridges per tested vertex", Zvertexridge);
zdef_(zmax, Zvertexridgemax, " max. number of ridges per tested vertex", -1);