[postgis-tickets] [SCM] PostGIS branch stable-3.0 updated. 3.0.5-2-g22cb43bc3
git at osgeo.org
git at osgeo.org
Wed Feb 16 19:33:51 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.0 has been updated
via 22cb43bc3e200f221ca5cdb15d149cb3bbc0f371 (commit)
from 6a6a0e753fc6a18a0e75bd628520cdd63cbb921c (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 22cb43bc3e200f221ca5cdb15d149cb3bbc0f371
Author: Regina Obe <lr at pcorp.us>
Date: Wed Feb 16 22:33:39 2022 -0500
Prevent building for PostgreSQL 14 and above. Closes #5087 for PostGIS 3.0.6
diff --git a/NEWS b/NEWS
index 7f16c67c0..74f138fc0 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,10 @@
+PostGIS 3.0.6
+2022/XX/XX
+* Bug Fixes and Enhancements *
+ - #5087, Prevent configure for PostgreSQL >= 14
+ and note in docs, PostgreSQL > 13 major
+ is not supported (Regina Obe)
+
PostGIS 3.0.5
2022/02/02
* Bug Fixes and Enhancements *
diff --git a/configure.ac b/configure.ac
index 7903c5701..f7e9b2815 100644
--- a/configure.ac
+++ b/configure.ac
@@ -490,6 +490,11 @@ if test "x$LIBLWGEOM_ONLY" = "xno"; then
AC_MSG_ERROR([PostGIS requires PostgreSQL >= 9.5])
fi
+ dnl Ensure that we are using PostgreSQL < 14
+ if test $POSTGIS_PGSQL_VERSION -gt 130; then
+ AC_MSG_ERROR([This version of PostGIS requires PostgreSQL < 14])
+ fi
+
HAVE_SPGIST=no
if test $POSTGIS_PGSQL_VERSION -gt 100; then
HAVE_SPGIST=yes
diff --git a/doc/installation.xml b/doc/installation.xml
index 5a227482a..c6cca2101 100644
--- a/doc/installation.xml
+++ b/doc/installation.xml
@@ -348,7 +348,7 @@ tar -xvzf postgis-&last_release_version;.tar.gz</programlisting>
The PostGIS module is an extension to the PostgreSQL backend server. As
such, PostGIS &last_release_version; <emphasis>requires</emphasis> full
PostgreSQL server headers access in order to compile. It can be built
- against PostgreSQL versions &min_postgres_version; or higher. Earlier
+ against PostgreSQL versions &min_postgres_version; - 13. Earlier and later
versions of PostgreSQL are <emphasis>not</emphasis> supported.
</para>
-----------------------------------------------------------------------
Summary of changes:
NEWS | 7 +++++++
configure.ac | 5 +++++
doc/installation.xml | 2 +-
3 files changed, 13 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list