[postgis-tickets] [SCM] PostGIS branch stable-3.1 updated. 3.1.9-9-g72438b4cb
git at osgeo.org
git at osgeo.org
Mon Jul 17 14:31:35 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.1 has been updated
via 72438b4cb6c4d6afd04ce53fe54fc747dd747c95 (commit)
from d3b589fced32ed8ca4806815cdbdd3cd2c51ee8e (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 72438b4cb6c4d6afd04ce53fe54fc747dd747c95
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.1 branch (3.1.10dev)
diff --git a/NEWS b/NEWS
index cdc476001..c393dabfb 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,11 @@
PostGIS 3.1.10
xxxx/xx/xx
+
* Bug Fixes *
- - #5385, Postgres malloc assertion fail when
- using pg_cancel_backend with ST_AsMVT
- (Regina Obe, Paul Ramsey)
+ - #5450, Fix macro expansion recursion on powerpc architectures
+ (Bas Couwenberg)
+ - #5385, Postgres malloc assertion fail when using pg_cancel_backend
+ with ST_AsMVT (Regina Obe, Paul Ramsey)
* Breaking Changes *
- #5385, Take out interruptability of ST_AsMVT
diff --git a/configure.ac b/configure.ac
index 07126582a..3cad004d5 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 | 8 +++++---
configure.ac | 2 +-
2 files changed, 6 insertions(+), 4 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list