[SCM] PostGIS branch stable-3.2 updated. 3.2.7-12-g91093989d
git at osgeo.org
git at osgeo.org
Sat Jul 27 01:27:12 PDT 2024
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 91093989d60a2ca24d02b963af84a5d1ebf1f40c (commit)
from 2aafd23999b58bd85bcc0f9cb5651404a8c72492 (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 91093989d60a2ca24d02b963af84a5d1ebf1f40c
Author: Regina Obe <lr at pcorp.us>
Date: Sat Jul 27 03:32:03 2024 -0400
Throw an error if trying to configure with
PostgreSQL greater than 15
Closes #5767 for PostGIS 3.2.8
diff --git a/configure.ac b/configure.ac
index cd01e167d..8b2668941 100644
--- a/configure.ac
+++ b/configure.ac
@@ -478,6 +478,11 @@ if test "x$LIBLWGEOM_ONLY" = "xno"; then
AC_MSG_ERROR([PostGIS requires PostgreSQL >= 9.6])
fi
+ dnl Ensure that we are using PostgreSQL < 15
+ if test $POSTGIS_PGSQL_VERSION -gt 150; then
+ AC_MSG_ERROR([PostGIS requires PostgreSQL <= 15])
+ fi
+
HAVE_SPGIST=no
if test $POSTGIS_PGSQL_VERSION -gt 100; then
HAVE_SPGIST=yes
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 5 +++++
1 file changed, 5 insertions(+)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list