[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-549-gbfe389e55

git at osgeo.org git at osgeo.org
Thu Jan 12 11:56:07 PST 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  bfe389e553de2f6b3c628fbb6b077dce430289a1 (commit)
      from  d40829d33923459b15a543fe103e586be7b45f25 (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 bfe389e553de2f6b3c628fbb6b077dce430289a1
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Thu Jan 12 11:55:51 2023 -0800

    Support Pg16 builds where the VARLENA macros have been moved into varatt.h

diff --git a/libpgcommon/lwgeom_pg.h b/libpgcommon/lwgeom_pg.h
index 51ffe77cb..b6f6973c2 100644
--- a/libpgcommon/lwgeom_pg.h
+++ b/libpgcommon/lwgeom_pg.h
@@ -27,6 +27,9 @@
 #include "liblwgeom.h"
 #include "pgsql_compat.h"
 
+#if POSTGIS_PGSQL_VERSION > 150
+#include "varatt.h"
+#endif
 
 /****************************************************************************************/
 
diff --git a/raster/rt_pg/rtpostgis.h b/raster/rt_pg/rtpostgis.h
index ef9f2811a..d12c291be 100644
--- a/raster/rt_pg/rtpostgis.h
+++ b/raster/rt_pg/rtpostgis.h
@@ -38,6 +38,10 @@
 
 #include "librtcore.h"
 
+#if POSTGIS_PGSQL_VERSION > 150
+#include "varatt.h"
+#endif
+
 /* Debugging macros */
 #if POSTGIS_DEBUG_LEVEL > 0
 

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

Summary of changes:
 libpgcommon/lwgeom_pg.h  | 3 +++
 raster/rt_pg/rtpostgis.h | 4 ++++
 2 files changed, 7 insertions(+)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list