[SCM] PostGIS branch master updated. 3.6.0rc2-610-gd56c04e9a
git at osgeo.org
git at osgeo.org
Thu Jun 18 09:40: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 d56c04e9a8e23f5f6ebddc1f9a0269b230838abf (commit)
from ea686747486090d3da1a40e5b753671699b4177d (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 d56c04e9a8e23f5f6ebddc1f9a0269b230838abf
Author: Darafei Praliaskouski <me at komzpa.net>
Date: Thu Jun 18 20:39:12 2026 +0400
doc: skip XML checks without xsltproc
Let make check skip documentation XML validation when configure did not find xsltproc, while direct check-xml still reports the missing requirement.
Closes https://github.com/postgis/postgis/pull/919
Closes #5655
diff --git a/NEWS b/NEWS
index 0b6caaaeb..ebfe62cef 100644
--- a/NEWS
+++ b/NEWS
@@ -58,6 +58,8 @@ To take advantage of all postgis_sfcgal extension features SFCGAL 2.3+ is needed
* Bug Fixes *
+ - #5655, [doc] Skip XML validation during `make check` when xsltproc is
+ unavailable (Darafei Praliaskouski)
- #5487, Improve error detail for repeated upgrades after an incomplete
deprecated-function cleanup (Darafei Praliaskouski)
- GH-899, [raster] Honor PostgreSQL interrupts in long-running GDAL
diff --git a/doc/Makefile.in b/doc/Makefile.in
index b68c6ae1b..418d46ab6 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -264,6 +264,11 @@ VPATH = $(srcdir)
CAN_CHECK_XML = yes
+ifeq ($(XSLTPROC),)
+check-xml: requirements_not_met_xsltproc
+CAN_CHECK_XML = no
+endif
+
ifeq ($(XMLLINT),)
postgis-nospecial.xml: requirements_not_met_xmllint
postgis-out.xml: requirements_not_met_xmllint
-----------------------------------------------------------------------
Summary of changes:
NEWS | 2 ++
doc/Makefile.in | 5 +++++
2 files changed, 7 insertions(+)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list