[postgis-tickets] [SCM] PostGIS branch stable-3.4 updated. 3.4.0-23-g2a34b1c1a

git at osgeo.org git at osgeo.org
Sat Sep 16 06:51:01 PDT 2023


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.4 has been updated
       via  2a34b1c1ad66d03c57c310d4dff9fd8cee371139 (commit)
      from  597ad70b19dc528e33fdc6a7fb9b5566204fb842 (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 2a34b1c1ad66d03c57c310d4dff9fd8cee371139
Author: Regina Obe <lr at pcorp.us>
Date:   Sat Sep 16 09:31:56 2023 -0400

    New Proj variables only available in 7.1+ and not 7.0+
    Closes #5482 for PostGIS 3.4.1

diff --git a/NEWS b/NEWS
index ae4f32b41..80176ad62 100644
--- a/NEWS
+++ b/NEWS
@@ -27,6 +27,7 @@ To take advantage of all SFCGAL featurs, SFCGAL 1.4.1+ is needed.
  - #5479, postgis_full_version() and postgis_gdal_version() sometimes
           warn of deprecated SRID: 2163 (Regina Obe)
  - Include elevation in output of ST_Contour when in polygonal mode (Paul Ramsey)
+ - #5482, New Proj output is only available for proj 7.1+ (Regina Obe)
 
 * Enhancements *
 
diff --git a/postgis/lwgeom_transform.c b/postgis/lwgeom_transform.c
index bb43b319f..0cd801ccc 100644
--- a/postgis/lwgeom_transform.c
+++ b/postgis/lwgeom_transform.c
@@ -212,7 +212,7 @@ Datum postgis_proj_version(PG_FUNCTION_ARGS)
 	stringbuffer_append(&sb, pji.version);
 #endif
 
-#if POSTGIS_PROJ_VERSION >= 70
+#if POSTGIS_PROJ_VERSION >= 71
 
 	stringbuffer_aprintf(&sb,
 		" NETWORK_ENABLED=%s",

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

Summary of changes:
 NEWS                       | 1 +
 postgis/lwgeom_transform.c | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list