[postgis-tickets] [SCM] PostGIS branch stable-3.3 updated. 3.3.3-28-g95d92985b

git at osgeo.org git at osgeo.org
Mon Jul 17 14:26:31 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.3 has been updated
       via  95d92985ba167ac9e357ab9405d7b6e7914da731 (commit)
      from  c336509f6d90c0daef9d1a50b4b47e0c4a09f9f0 (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 95d92985ba167ac9e357ab9405d7b6e7914da731
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.3 branch (3.3.4dev)

diff --git a/NEWS b/NEWS
index 8ceed6acb..658c45845 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,8 @@ PostGIS 3.3.4dev
 YYYY/MM/DD
 
 * Bug Fixes and Enhancements *
+  - #5450, Fix macro expansion recursion on powerpc architectures.
+           (Bas Couwenberg)
   - #5395, [postgis_topology] Allow unprivileged user dump
            of database with topology enabled
   - #5394, [postgis_topology] Improve robustness of finding
diff --git a/configure.ac b/configure.ac
index 98dcc3fd2..c4186fb87 100644
--- a/configure.ac
+++ b/configure.ac
@@ -53,7 +53,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