summaryrefslogtreecommitdiff
path: root/geography/geos/patches
diff options
context:
space:
mode:
authorgdt <gdt@pkgsrc.org>2022-07-08 13:21:59 +0000
committergdt <gdt@pkgsrc.org>2022-07-08 13:21:59 +0000
commit176e791526ee01809eedd6ad29013866888a3b42 (patch)
treee0453b13d9844bf00bc59822ced6fa11600abe2f /geography/geos/patches
parenta5b1788e88e4c420d711f85d5b60433b8b9620cc (diff)
downloadpkgsrc-176e791526ee01809eedd6ad29013866888a3b42.tar.gz
geography/geos: Update to 3.11.0
Upstream NEWS: - New things: - OffsetCurve (GH-530, Paul Ramsey/Martin Davis) - ConcaveHull (GH-549, Paul Ramsey/Martin Davis) - PolygonHull (GH-603, Paul Ramsey/Martin Davis) - LineMerger directed option (GH-597, Sergei Sh) - CAPI: GEOSHilbertCode (GH-556, Brendan Ward) - CAPI: GEOSGeom_createRectangle (GH-558, Brendan Ward) - CAPI: GEOSGeom_transformXY (GH-563, Dan Baston/Brendan Ward) - CAPI: GEOSRemoveRepeatedPoints (GH-599, Paul Ramsey) - CAPI: GEOSLineMergeDirected (GH-597, Sergei Sh) - Improvements: - Allow direct setting of grid size (GH-513, Martin Davis) - Allow GEOS to be used as a CMake subproject (GH-518, Robert Coup) - Remove .inl inline files in favour of header declaration (GH-543, Paul Ramsey) - Add SnappingNoder seeding (Martin Davis) - Add OverlayNG area check heuristic (JTS-812, Paul Ramsey)
Diffstat (limited to 'geography/geos/patches')
-rw-r--r--geography/geos/patches/patch-src_noding_snap_SnappingNoder.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/geography/geos/patches/patch-src_noding_snap_SnappingNoder.cpp b/geography/geos/patches/patch-src_noding_snap_SnappingNoder.cpp
deleted file mode 100644
index 034fdfe42b4..00000000000
--- a/geography/geos/patches/patch-src_noding_snap_SnappingNoder.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-src_noding_snap_SnappingNoder.cpp,v 1.1 2022/06/22 11:42:22 gdt Exp $
-
-Work around Solaris compiler behavior, which fails to resolve the
-C++-required sqrt for integral types, by changing 5 to 5.0.
-
-Reported upstream via email, and a larger fix has been merged:
- https://github.com/libgeos/geos/pull/641
-
---- src/noding/snap/SnappingNoder.cpp.orig 2022-06-03 16:04:49.000000000 +0000
-+++ src/noding/snap/SnappingNoder.cpp
-@@ -63,7 +63,7 @@ SnappingNoder::snapVertices(std::vector<
- void
- SnappingNoder::seedSnapIndex(std::vector<SegmentString*>& segStrings)
- {
-- double PHI_INV = (sqrt(5) - 1.0) / 2.0;
-+ double PHI_INV = (sqrt(5.0) - 1.0) / 2.0;
-
- for (SegmentString* ss: segStrings) {
- CoordinateSequence* cs = ss->getCoordinates();