[SCM] PostGIS branch master updated. 3.6.0rc2-483-g9db5b1e16
git at osgeo.org
git at osgeo.org
Mon May 25 09:38:37 PDT 2026
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".
The branch, master has been updated
via 9db5b1e16de4b83a4eedc52ce5d60760f9801845 (commit)
via e79f97080ec5293ab8af150563f9847257305f72 (commit)
from ae7249900558365d48a7c5fe5ed34463becd8382 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 9db5b1e16de4b83a4eedc52ce5d60760f9801845
Merge: ae7249900 e79f97080
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date: Mon May 25 09:38:32 2026 -0700
Merge branch 'ptitjano-tesselate-deprecated'
commit e79f97080ec5293ab8af150563f9847257305f72
Author: Jean Felder <jean.felder at oslandia.com>
Date: Mon May 25 15:46:05 2026 +0200
sfcgal: Adapt to deprecated sfcgal_geometry_tesselate
`sfcgal_geometry_tessellate` is now used instead.
diff --git a/sfcgal/lwgeom_sfcgal.c b/sfcgal/lwgeom_sfcgal.c
index 083ba081a..66b2b33cc 100644
--- a/sfcgal/lwgeom_sfcgal.c
+++ b/sfcgal/lwgeom_sfcgal.c
@@ -327,7 +327,11 @@ sfcgal_tesselate(PG_FUNCTION_ARGS)
geom = POSTGIS2SFCGALGeometry(input);
PG_FREE_IF_COPY(input, 0);
+#if POSTGIS_SFCGAL_VERSION < 20300
result = sfcgal_geometry_tesselate(geom);
+#else
+ result = sfcgal_geometry_tessellate(geom);
+#endif
sfcgal_geometry_delete(geom);
output = SFCGALGeometry2POSTGIS(result, 0, srid);
-----------------------------------------------------------------------
Summary of changes:
sfcgal/lwgeom_sfcgal.c | 4 ++++
1 file changed, 4 insertions(+)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list