[postgis-tickets] [SCM] PostGIS branch stable-3.0 updated. 3.0.3-6-g3c258e2

git at osgeo.org git at osgeo.org
Tue Feb 9 12:00:21 PST 2021


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  3c258e243a3eb7749f4e8ef0f09ff82dbf18c267 (commit)
       via  d1e56435e81438f3303bab81ba20062364f88f40 (commit)
      from  4d142be96dc0a44519e2599e6fd46ce02fcbdf5a (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 3c258e243a3eb7749f4e8ef0f09ff82dbf18c267
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Tue Feb 9 12:00:02 2021 -0800

    Note support for newer Proj

diff --git a/NEWS b/NEWS
index 4cfa533..8fa6fe5 100644
--- a/NEWS
+++ b/NEWS
@@ -14,6 +14,7 @@ PostGIS 3.0.3
   - #4727, Fix bug in geocentrix box computation (Paul Ramsey)
   - #4790, Fix ST_3dintersects calculations with identical vertices (Nicklas Avén)
   - #4817, Handle complex compound coordinate systems (Paul Ramsey)
+  - Support newer proj versions that have deprecated pj_get_release (Paul Ramsey)
 
 PostGIS 3.0.2
 2020/08/15

commit d1e56435e81438f3303bab81ba20062364f88f40
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Tue Feb 9 11:57:04 2021 -0800

    If pg_get_release is not present, test for proj_info instead when configuring.

diff --git a/configure.ac b/configure.ac
index 4f26390..89e0a07 100644
--- a/configure.ac
+++ b/configure.ac
@@ -917,12 +917,15 @@ AC_SUBST([PROJ_LDFLAGS])
 dnl Ensure we can link against libproj
 LIBS_SAVE="$LIBS"
 LIBS="$PROJ_LDFLAGS"
-AC_CHECK_LIB([proj], [pj_get_release],
-	[],
-	[AC_MSG_ERROR([could not find libproj - you may need to specify the directory of a PROJ installation using --with-projdir])],
+AC_CHECK_LIB([proj], [pj_get_release], [],
+	[AC_CHECK_LIB([proj], [proj_info], [],
+		[AC_MSG_ERROR([could not find libproj - you may need to specify the directory of a PROJ installation using --with-projdir])],
+		[]
+		)],
 	[])
 LIBS="$LIBS_SAVE"
 
+
 dnl ===========================================================================
 dnl Detect if json-c installed
 dnl ===========================================================================

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

Summary of changes:
 NEWS         | 1 +
 configure.ac | 9 ++++++---
 2 files changed, 7 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list