diff options
author | pi <pi@FreeBSD.org> | 2016-12-27 22:52:34 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2016-12-27 22:52:34 +0800 |
commit | c1fd742c62017ea46df3dba88ab6152bf6e57ed6 (patch) | |
tree | 343a4e2c5b413f1f9889e79ca03cf169ca8b9fd9 /databases | |
parent | 2952838c83d4eeb8e9a6f0040fc7151853dcb920 (diff) | |
download | freebsd-ports-gnome-c1fd742c62017ea46df3dba88ab6152bf6e57ed6.tar.gz freebsd-ports-gnome-c1fd742c62017ea46df3dba88ab6152bf6e57ed6.tar.zst freebsd-ports-gnome-c1fd742c62017ea46df3dba88ab6152bf6e57ed6.zip |
databases/postgis21: update 2.1.7 -> 2.1.8
PR: 206398
Changes: http://svn.osgeo.org/postgis/tags/2.1.8/NEWS
Submitted by: Jochen Neumeister <joneum@bsdproject.de>
Approved by: harrison.grundy@astrodoggroup.com (maintainer timeout)
Diffstat (limited to 'databases')
-rw-r--r-- | databases/postgis21/Makefile | 3 | ||||
-rw-r--r-- | databases/postgis21/distinfo | 5 | ||||
-rw-r--r-- | databases/postgis21/files/patch-postgis-lwgeom_accum.c | 15 |
3 files changed, 4 insertions, 19 deletions
diff --git a/databases/postgis21/Makefile b/databases/postgis21/Makefile index d640d4b23f1e..d20ee4138c38 100644 --- a/databases/postgis21/Makefile +++ b/databases/postgis21/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= postgis -PORTVERSION= 2.1.7 -PORTREVISION= 3 +PORTVERSION= 2.1.8 CATEGORIES= databases geography MASTER_SITES= http://download.osgeo.org/postgis/source/ diff --git a/databases/postgis21/distinfo b/databases/postgis21/distinfo index c2e191504c0c..655d2377025f 100644 --- a/databases/postgis21/distinfo +++ b/databases/postgis21/distinfo @@ -1,2 +1,3 @@ -SHA256 (postgis-2.1.7.tar.gz) = 00ab79a3f609d7ea458f6fc358032ad059cb720baf88285243d6436a597a7ec2 -SIZE (postgis-2.1.7.tar.gz) = 6804372 +TIMESTAMP = 1482845254 +SHA256 (postgis-2.1.8.tar.gz) = 7c2380b895fe7bda34c2e70deab3fcf4c12b13ab40d7501cdaa6fa36f1a6c662 +SIZE (postgis-2.1.8.tar.gz) = 6811272 diff --git a/databases/postgis21/files/patch-postgis-lwgeom_accum.c b/databases/postgis21/files/patch-postgis-lwgeom_accum.c deleted file mode 100644 index 9fc1bfeee4d0..000000000000 --- a/databases/postgis21/files/patch-postgis-lwgeom_accum.c +++ /dev/null @@ -1,15 +0,0 @@ ---- postgis/lwgeom_accum.c.orig 2014-12-01 08:47:21 UTC -+++ postgis/lwgeom_accum.c -@@ -106,7 +106,11 @@ pgis_geometry_accum_transfn(PG_FUNCTION_ - errmsg("could not determine input data type"))); - - if (fcinfo->context && IsA(fcinfo->context, AggState)) -- aggcontext = ((AggState *) fcinfo->context)->aggcontext; -+#if POSTGIS_PGSQL_VERSION >= 95 -+ aggcontext = ((AggState *) fcinfo->context)->aggcontexts; -+#else -+ aggcontext = ((AggState *) fcinfo->context)->aggcontext; -+#endif - else if (fcinfo->context && IsA(fcinfo->context, WindowAggState)) - aggcontext = ((WindowAggState *) fcinfo->context)->aggcontext; - |