[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0alpha1-4-g70cdfd4

git at osgeo.org git at osgeo.org
Mon Feb 3 01:34:54 PST 2020


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, master has been updated
       via  70cdfd4f9eda64d7589532e44cd1188679be1483 (commit)
      from  fc5392de70c2a86e45e7b0378aa50842e2209856 (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 70cdfd4f9eda64d7589532e44cd1188679be1483
Author: Raúl Marín <git at rmr.ninja>
Date:   Mon Feb 3 10:34:21 2020 +0100

    Fix configure check for Postgresql version
    
    Closes #4634

diff --git a/configure.ac b/configure.ac
index 9961dd2..5a07d1e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -476,7 +476,7 @@ if test "x$LIBLWGEOM_ONLY" = "xno"; then
 
   AC_MSG_RESULT([checking PostgreSQL version... $PGSQL_FULL_VERSION])
   dnl Ensure that we are using PostgreSQL >= 9.6
-  if test $POSTGIS_PGSQL_VERSION -lt 95; then
+  if test $POSTGIS_PGSQL_VERSION -lt 96; then
     AC_MSG_ERROR([PostGIS requires PostgreSQL >= 9.6])
   fi
 

-----------------------------------------------------------------------

Summary of changes:
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list