[postgis-tickets] [SCM] PostGIS branch stable-3.0 updated. 3.0.9-5-g3b71790f2

git at osgeo.org git at osgeo.org
Mon Jul 17 14:33:29 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.0 has been updated
       via  3b71790f2063614b061ad471e341f8d9e29f9073 (commit)
      from  f7d951505d6f0ef1d19e15138fecb7ae2eab5e89 (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 3b71790f2063614b061ad471e341f8d9e29f9073
Author: Bas Couwenberg <sebastic at debian.org>
Date:   Mon Jul 17 23:01:51 2023 +0200

    Fix macro expansion recursion on powerpc architectures.
    
    Closes #5450
    Closes #4751
    Closes #4752
    
    Backport in 3.0 branch (3.0.10dev)

diff --git a/NEWS b/NEWS
index 4d8c5b8b6..4dd62ea87 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,11 @@
 PostGIS 3.0.10
 xxxx/xx/xx
 
+* Bug Fixes *
+
+  - #5450, Fix macro expansion recursion on powerpc architectures.
+           (Bas Couwenberg)
+
 PostGIS 3.0.9
 2023/05/29
 
diff --git a/configure.ac b/configure.ac
index f7e9b2815..5e140b1bf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,7 +33,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         | 5 +++++
 configure.ac | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list