[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0alpha2-104-gdf6924e

git at osgeo.org git at osgeo.org
Wed Oct 28 15:00:48 PDT 2020


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  df6924e7ff4f470351934b81e66f3c81dd6be6ad (commit)
      from  88d70f63fdfc250d5cf64b41c5705e0b0c3ef747 (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 df6924e7ff4f470351934b81e66f3c81dd6be6ad
Author: Sandro Santilli <strk at kbt.io>
Date:   Wed Oct 28 22:59:00 2020 +0100

    Fix sfcgal.so dependency on postgis_revision.h

diff --git a/sfcgal/Makefile.in b/sfcgal/Makefile.in
index 517209c..68849fc 100644
--- a/sfcgal/Makefile.in
+++ b/sfcgal/Makefile.in
@@ -79,7 +79,13 @@ SHLIB_LINK := $(SHLIB_LINK_F) $(SHLIB_LINK)
 PG_CONFIG := @PG_CONFIG@
 PGXS := @PGXS@
 
-$(OBJS): ../liblwgeom/.libs/liblwgeom.a ../libpgcommon/libpgcommon.a ../postgis_config.h
+# Make all PostGIS objects depend upon liblwgeom, so that if an underlying
+# change is made, a PostGIS rebuild is triggered.
+#
+# Also they are all dependent on postgis_config.h
+# and thus postgis_revision.h
+#
+$(OBJS): ../liblwgeom/.libs/liblwgeom.a ../libpgcommon/libpgcommon.a ../postgis_config.h ../postgis_revision.h
 
 # Note: we specify liblwgeom.a directly in SHLIB_LINK rather than using
 # -L... -l options to prevent issues with some platforms trying to link
@@ -130,14 +136,6 @@ ifeq ($(REGRESS),1)
 	datamoduledir=contrib/postgis
 endif
 
-# Make all PostGIS objects depend upon liblwgeom, so that if an underlying
-# change is made, a PostGIS rebuild is triggered.
-#
-# Also they are all dependent on postgis_config.h
-# and thus postgis_revision.h
-#
-$(PG_OBJS): ../liblwgeom/.libs/liblwgeom.a ../libpgcommon/libpgcommon.a ../postgis_config.h ../postgis_revision.h
-
 # Borrow the $libdir substitution from PGXS but customise by running the preprocessor
 # and adding the version number
 # replace @extschema at . with nothing, this is only used as placeholder for extension install

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

Summary of changes:
 sfcgal/Makefile.in | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list