[SCM] PostGIS branch master updated. 3.5.0-429-g3578f6a19
git at osgeo.org
git at osgeo.org
Fri Jul 4 21:04:26 PDT 2025
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 3578f6a199ee7f1cee6101525030f926ce281eab (commit)
from a4886d8581d307a132ac19a3f7c5052e6de65657 (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 3578f6a199ee7f1cee6101525030f926ce281eab
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date: Fri Jul 4 21:04:22 2025 -0700
Version guard static function
diff --git a/postgis/lwgeom_geos_predicates.c b/postgis/lwgeom_geos_predicates.c
index 1cd9cbba0..0ad18f4ed 100644
--- a/postgis/lwgeom_geos_predicates.c
+++ b/postgis/lwgeom_geos_predicates.c
@@ -880,6 +880,7 @@ Datum coveredby(PG_FUNCTION_ARGS)
PG_RETURN_BOOL(result);
}
+#if POSTGIS_GEOS_VERSION >= 31300
/*
* Flip the DE9IM matrix around the diagonal to
* account for flipping the order of the operands
@@ -893,6 +894,7 @@ imInvert(char *im)
t = im[2]; im[2] = im[6]; im[6] = t;
t = im[5]; im[5] = im[7]; im[7] = t;
}
+#endif
PG_FUNCTION_INFO_V1(relate_pattern);
Datum relate_pattern(PG_FUNCTION_ARGS)
-----------------------------------------------------------------------
Summary of changes:
postgis/lwgeom_geos_predicates.c | 2 ++
1 file changed, 2 insertions(+)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list