Skip to content

Commit

Permalink
Update GEOS source to 3.11.3
Browse files Browse the repository at this point in the history
Fixes compilation error with clang 16 and gcc 13 (missing 'cstdint' header).
  • Loading branch information
Vladimir Burian committed Nov 14, 2023
1 parent a6cd5b7 commit 7a6a03a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ more information.
If you want to link GEOS statically, use the `static` feature.

The static build uses the GEOS version in the git submodule in`sys/geos-src/source`.
This is currently GEOS 3.11.2.
This is currently GEOS 3.11.3.

You will need to have a build environment supported for the static version of
GEOS. See [GEOS build instructions](https://libgeos.org/usage/download/#build-from-source)
Expand Down
2 changes: 1 addition & 1 deletion sys/geos-src/source
Submodule source updated 54 files
+38 −38 .azure-pipelines.yml
+19 −19 .github/workflows/ci.yml
+6 −6 .github/workflows/container.yml
+1 −1 .github/workflows/release.yml
+0 −59 .github/workflows/web-doxygen.yml
+2 −2 .github/workflows/web.yml
+26 −14 HOWTO_RELEASE
+17 −0 NEWS.md
+7 −6 README.md
+2 −2 Version.txt
+17 −13 capi/geos_c.h.in
+1 −1 capi/geos_ts_c.cpp
+3 −5 include/geos/algorithm/construct/LargestEmptyCircle.h
+5 −0 include/geos/geom/Geometry.h
+2 −0 include/geos/geom/GeometryCollection.h
+4 −0 include/geos/geom/MultiLineString.h
+4 −0 include/geos/geom/MultiPoint.h
+4 −0 include/geos/geom/MultiPolygon.h
+23 −4 include/geos/operation/buffer/OffsetCurve.h
+1 −1 include/geos/shape/fractal/HilbertCode.h
+1 −0 include/geos/shape/fractal/HilbertEncoder.h
+3 −0 src/algorithm/InteriorPointPoint.cpp
+17 −26 src/algorithm/construct/LargestEmptyCircle.cpp
+9 −0 src/geom/GeometryCollection.cpp
+9 −1 src/geom/HeuristicOverlay.cpp
+1 −6 src/geom/prep/PreparedLineStringIntersects.cpp
+3 −3 src/io/GeoJSONReader.cpp
+4 −1 src/operation/buffer/OffsetCurve.cpp
+11 −5 src/operation/distance/DistanceOp.cpp
+5 −1 src/operation/intersection/RectangleIntersection.cpp
+1 −1 src/operation/overlayng/OverlayMixedPoints.cpp
+11 −10 src/triangulate/tri/Tri.cpp
+64 −4 tests/unit/algorithm/construct/LargestEmptyCircleTest.cpp
+25 −0 tests/unit/capi/GEOSClipByRectTest.cpp
+1 −0 tests/unit/capi/GEOSMakeValidTest.cpp
+16 −2 tests/unit/capi/GEOSOffsetCurveTest.cpp
+21 −0 tests/unit/geom/Geometry/differenceTest.cpp
+27 −0 tests/unit/geom/GeometryCollectionTest.cpp
+12 −0 tests/unit/geom/LineStringTest.cpp
+13 −0 tests/unit/geom/MultiLineStringTest.cpp
+11 −0 tests/unit/geom/MultiPointTest.cpp
+11 −0 tests/unit/geom/MultiPolygonTest.cpp
+13 −1 tests/unit/geom/PointTest.cpp
+11 −0 tests/unit/geom/PolygonTest.cpp
+23 −2 tests/unit/io/GeoJSONReaderTest.cpp
+2 −2 tests/unit/math/DDTest.cpp
+67 −18 tests/unit/operation/buffer/OffsetCurveTest.cpp
+68 −0 tests/unit/operation/distance/DistanceOpTest.cpp
+23 −0 tests/unit/operation/intersection/RectangleIntersectionTest.cpp
+66 −1 tests/xmltester/tests/general/TestDistance.xml
+8 −1 tests/xmltester/tests/general/TestInteriorPoint.xml
+11 −0 tests/xmltester/tests/general/TestPreparedPredicatesWithGeometryCollection.xml
+1 −3 util/geosop/GeomFunction.cpp
+11 −3 util/geosop/GeosOp.cpp

0 comments on commit 7a6a03a

Please sign in to comment.