forked from pool/paraview
Update to version 3.14.0; add patch to fix incompatibility with boost 1.49 OBS-URL: https://build.opensuse.org/request/show/112994 OBS-URL: https://build.opensuse.org/package/show/science/paraview?expand=0&rev=5
20 lines
677 B
Diff
20 lines
677 B
Diff
Upstream Vtk bug: http://www.vtk.org/Bug/view.php?id=12988
|
|
|
|
Index: ParaView-3.14.0-Source/VTK/Infovis/vtkBoostBreadthFirstSearchTree.cxx
|
|
===================================================================
|
|
--- ParaView-3.14.0-Source.orig/VTK/Infovis/vtkBoostBreadthFirstSearchTree.cxx
|
|
+++ ParaView-3.14.0-Source/VTK/Infovis/vtkBoostBreadthFirstSearchTree.cxx
|
|
@@ -53,7 +53,11 @@ namespace {
|
|
return e.Id;
|
|
}
|
|
vtkIdType unwrap_edge_id(boost::detail::reverse_graph_edge_descriptor<vtkEdgeType> const &e) {
|
|
- return e.underlying_desc.Id;
|
|
+ #if BOOST_VERSION == 104800
|
|
+ return e.underlying_desc.Id;
|
|
+ #else
|
|
+ return e.underlying_descx.Id;
|
|
+ #endif
|
|
}
|
|
}
|
|
#endif
|