svn commit: r373579 - in head/cad/gmsh: . files
Stephen Montgomery-Smith
stephen at FreeBSD.org
Fri Nov 28 20:21:19 UTC 2014
Author: stephen
Date: Fri Nov 28 20:21:17 2014
New Revision: 373579
URL: https://svnweb.freebsd.org/changeset/ports/373579
QAT: https://qat.redports.org/buildarchive/r373579/
Log:
- Patch to fix build error.
- Bump portrevision.
Reference: http://beefy2.isc.freebsd.org/data/10amd64-default/2014-11-26_04h02m22s/logs/gmsh-2.8.5.log
Obtained from: Comparing to development branch of gmsh.
Added:
head/cad/gmsh/files/patch-Mesh-meshGFace.cpp (contents, props changed)
Modified:
head/cad/gmsh/Makefile
Modified: head/cad/gmsh/Makefile
==============================================================================
--- head/cad/gmsh/Makefile Fri Nov 28 19:35:48 2014 (r373578)
+++ head/cad/gmsh/Makefile Fri Nov 28 20:21:17 2014 (r373579)
@@ -3,6 +3,7 @@
PORTNAME= gmsh
PORTVERSION= 2.8.5
+PORTREVISION= 1
CATEGORIES= cad
MASTER_SITES= http://www.geuz.org/gmsh/src/ \
http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/
Added: head/cad/gmsh/files/patch-Mesh-meshGFace.cpp
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/cad/gmsh/files/patch-Mesh-meshGFace.cpp Fri Nov 28 20:21:17 2014 (r373579)
@@ -0,0 +1,11 @@
+--- Mesh/meshGFace.cpp-orig 2014-11-28 19:32:56.000000000 +0000
++++ Mesh/meshGFace.cpp 2014-11-28 19:34:10.000000000 +0000
+@@ -156,7 +156,7 @@
+ MEdge E = _gf->quadrangles[i]->getEdge(j);
+ SPoint2 p1, p2;
+ reparamMeshEdgeOnFace(E.getVertex(0),E.getVertex(1),_gf,p1,p2);
+- std::map<MEdge, MVertex *>::iterator it = _middle.find(E);
++ std::map<MEdge, MVertex *, Less_Edge>::iterator it = _middle.find(E);
+ std::map<MEdge, MVertex *, Less_Edge>::iterator it2 = eds.find(E);
+ m[j] = p1;
+ if (it == _middle.end() && it2 == eds.end()){
More information about the svn-ports-head
mailing list