[postgis-tickets] [SCM] PostGIS branch stable-3.2 updated. 3.2.1-4-gf7a8918f3
git at osgeo.org
git at osgeo.org
Thu Feb 17 23:54:27 PST 2022
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 f7a8918f33550edf54790d8350ea4d3bc7647b8f (commit)
from e9014f4aa144b17a65e3a4a2e4f796108c3032f6 (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 f7a8918f33550edf54790d8350ea4d3bc7647b8f
Author: Tobias Bussmann <t.bussmann at gmx.net>
Date: Fri Feb 18 02:13:00 2022 +0100
fix generation of FLATGEOBUF_LDFLAGS
because of WAGYU_LDFLAGS, this only had an impact when building
--without-protobuf.
References #5091 in stable-3.2 branch (3.2.2dev)
diff --git a/NEWS b/NEWS
index 0ca0b162f..76cb5f35c 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,7 @@ PostGIS 3.2.2dev
* Bug Fixes *
- #5097, Ensure spatial index is used during topology population
at the getClosestEdge step (Sandro Santilli)
+ - #5091, Fix --without-protobuf builds (Tobias Bussmann)
PostGIS 3.2.1
2022/02/12
diff --git a/configure.ac b/configure.ac
index f07ee41d5..cf4253727 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1629,7 +1629,7 @@ AC_CHECK_LIB(c++, main, [HAVE_CPP=yes], [HAVE_CPP=no])
AC_CHECK_LIB(stdc++, main, [HAVE_STDCPP=yes], [HAVE_STDCPP=no])
if test "x$HAVE_CPP" = "xyes"; then
- WFLATGEOBUF_LDFLAGS="-lc++"
+ FLATGEOBUF_LDFLAGS="-lc++"
elif test "x$HAVE_STDCPP" = "xyes"; then
FLATGEOBUF_LDFLAGS="-lstdc++"
else
-----------------------------------------------------------------------
Summary of changes:
NEWS | 1 +
configure.ac | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list