[postgis-tickets] [SCM] PostGIS branch master updated. 3.4.0rc1-21-g7faeed1d4

git at osgeo.org git at osgeo.org
Fri Aug 11 22:50:08 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  7faeed1d4800fb9a46dc7143eebd7c785ec3fa7e (commit)
      from  8c0b46cd9ebb2a3ca0550b1ee051604dfd466af8 (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 7faeed1d4800fb9a46dc7143eebd7c785ec3fa7e
Author: Regina Obe <lr at pcorp.us>
Date:   Sat Aug 12 01:39:18 2023 -0400

    Prevent infinite loop when building --without-pgconfig
    Closes #5473 for PostGIS 3.5.0

diff --git a/raster/Makefile.in b/raster/Makefile.in
index 4cb93e082..504b80dd6 100644
--- a/raster/Makefile.in
+++ b/raster/Makefile.in
@@ -23,13 +23,16 @@ CC=@CC@
 CFLAGS=-I../liblwgeom @CFLAGS@
 LDFLAGS = @LDFLAGS@
 
+with_pg = @RT_PG_LIB@
 all:
 	$(MAKE) @RT_CORE_LIB@
+ifdef with_pg
 	$(MAKE) @RT_PG_LIB@
+endif
 	$(MAKE) @RT_LOADER@
+ifdef with_pg
 	$(MAKE) @RT_POSTGIS_SQL@
-
-with_pg = @RT_PG_LIB@
+endif
 
 corelib:
 	$(MAKE) -C rt_core

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

Summary of changes:
 raster/Makefile.in | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list