[postgis-tickets] [SCM] PostGIS branch stable-3.4 updated. 3.4.0rc1-20-g0f5fea668

git at osgeo.org git at osgeo.org
Fri Aug 11 22:40:56 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, stable-3.4 has been updated
       via  0f5fea668ca93dcc5a0dd14b7af4f3556bf321b3 (commit)
      from  55607539220349b44d5942f277e76ab0839469ea (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 0f5fea668ca93dcc5a0dd14b7af4f3556bf321b3
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.4.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