[postgis-tickets] [SCM] PostGIS branch master updated. 3.4.0rc1-579-g10ca82261

git at osgeo.org git at osgeo.org
Mon Sep 18 12:31:38 PDT 2023


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  10ca8226123ad9783d9af40fc2cc4e2455620abc (commit)
      from  93a9e00c4dac2841a3a2dabe93aee97628e08657 (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 10ca8226123ad9783d9af40fc2cc4e2455620abc
Author: Sandro Santilli <strk at kbt.io>
Date:   Mon Sep 18 21:29:52 2023 +0200

    Don't try building comments if they cannot be built
    
    Closes #5543

diff --git a/GNUmakefile.in b/GNUmakefile.in
index 38aaf1221..3760801b6 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -10,6 +10,7 @@ SUBDIRS += @DEPS_SUBDIR@ libpgcommon postgis regress @TOPOLOGY@ @SFCGAL@ utils d
 endif
 
 HAVE_SFCGAL=@HAVE_SFCGAL@
+CAN_BUILD_COMMENTS=@CAN_BUILD_COMMENTS@
 
 POSTGIS_MAJOR_VERSION=@POSTGIS_MAJOR_VERSION@
 POSTGIS_MINOR_VERSION=@POSTGIS_MINOR_VERSION@
@@ -53,9 +54,9 @@ endif
 
 all: postgis_revision.h
 
-ifeq (@LIBLWGEOM_ONLY@,no)
-install: all comments-install
-uninstall: docs-uninstall comments-uninstall
+ifeq ($(CAN_BUILD_COMMENTS),yes)
+install: comments-install
+uninstall: comments-uninstall
 endif
 
 clean: docs-clean clean-local
diff --git a/NEWS b/NEWS
index c86ee3c7e..1eb5ac096 100644
--- a/NEWS
+++ b/NEWS
@@ -15,6 +15,7 @@ xxxx/xx/xx
 * Enhancements *
 
   - #5531, documentation format upgraded to DocBook 5 (Sandro Santilli)
+  - #5543, allow building without documentation (Sandro Santilli)
 
 
 PostGIS 3.4.0

-----------------------------------------------------------------------

Summary of changes:
 GNUmakefile.in | 7 ++++---
 NEWS           | 1 +
 2 files changed, 5 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list