[postgis-tickets] [SCM] PostGIS branch stable-3.2 updated. 3.2.5-9-gd612282e4

git at osgeo.org git at osgeo.org
Mon Jul 17 14:28:28 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.2 has been updated
       via  d612282e4a112a20974706d726f8d7a01ed3cbb8 (commit)
      from  47ccf6abd8bb07d8029d4bedc2cf9ea96180faf6 (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 d612282e4a112a20974706d726f8d7a01ed3cbb8
Author: Bas Couwenberg <sebastic at debian.org>
Date:   Mon Jul 17 23:01:51 2023 +0200

    Fix macro expansion recursion on powerpc architectures.
    
    References #5450
    References #4751
    References #4752
    
    Backport in 3.2 branch (3.2.6dev)

diff --git a/NEWS b/NEWS
index f2b2f864f..89a210e76 100644
--- a/NEWS
+++ b/NEWS
@@ -7,6 +7,8 @@ Additional features are enabled if you are running GEOS 3.9+
 Proj 6.1+, and PostgreSQL 14+.
 
 * Bug Fixes and Enhancements *
+  - #5450, Fix macro expansion recursion on powerpc architectures.
+           (Bas Couwenberg)
   - #5403, [postgis_topology] Fix ValidateTopology(bbox)
            without topology in search_path (Sandro Santilli)
   - #5410, [postgis_raster] ST_Value bilinear resample,
diff --git a/configure.ac b/configure.ac
index cf4253727..285cefcf2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -35,7 +35,7 @@ dnl SQL Preprocessor
 dnl
 AC_PATH_PROG([CPPBIN], [cpp], [])
 if test "x$CPPBIN" != "x"; then
-  SQLPP="${CPPBIN} -traditional-cpp -w -P"
+  SQLPP="${CPPBIN} -traditional-cpp -w -P -Upixel -Ubool"
 else
   AC_PATH_PROG([GPP], [gpp_], [])
   if test "x$GPP" != "x"; then

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

Summary of changes:
 NEWS         | 2 ++
 configure.ac | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list