[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-308-g4aabcd4ad

git at osgeo.org git at osgeo.org
Wed Nov 2 11:04:27 PDT 2022


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  4aabcd4addb7ab823f417e953266c9f1a5847989 (commit)
      from  5df6277731aebc6be44782efb8065b1cdb56db8d (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 4aabcd4addb7ab823f417e953266c9f1a5847989
Author: Regina Obe <lr at pcorp.us>
Date:   Wed Nov 2 13:18:49 2022 -0400

    Fix multi-def error introduced in last commit.  References #5277 for PostGIS 3.4.0

diff --git a/raster/rt_pg/rtpostgis.c b/raster/rt_pg/rtpostgis.c
index 5bbb5668c..abab96cf2 100644
--- a/raster/rt_pg/rtpostgis.c
+++ b/raster/rt_pg/rtpostgis.c
@@ -452,8 +452,11 @@ rt_pg_vsi_check_options(char **newval, void **extra, GucSource source)
 
 static char *gdal_datapath = NULL;
 static char *gdal_vsi_options = NULL;
-extern char *gdal_enabled_drivers = NULL;
-extern bool enable_outdb_rasters = false;
+extern char *gdal_enabled_drivers;
+extern bool enable_outdb_rasters;
+
+char *gdal_enabled_drivers = NULL;
+bool enable_outdb_rasters = false;
 
 /* ---------------------------------------------------------------- */
 /*  Useful variables                                                */

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

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


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list