Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Jun 2019 09:37:49 +0000 (UTC)
From:      Larry Rosenman <ler@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r503367 - in head/databases/pointcloud: . files
Message-ID:  <201906030937.x539bnZe086459@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ler
Date: Mon Jun  3 09:37:48 2019
New Revision: 503367
URL: https://svnweb.freebsd.org/changeset/ports/503367

Log:
  databases/pointcloud: Backport upstream PR for PostgreSQL 11 support.
  
  PR:		238302
  Approved by:	lbartoletti@tuxfamily.org (maintainer)
  Obtained from:	https://github.com/pgpointcloud/pointcloud/commit/3e64c68dd4e0b9b9fdf0a74492ab49023161f6f1
  MFH:		2019Q2

Added:
  head/databases/pointcloud/files/
  head/databases/pointcloud/files/patch-pgsql_pc__access.c   (contents, props changed)
  head/databases/pointcloud/files/patch-pgsql_pc__inout.c   (contents, props changed)
Modified:
  head/databases/pointcloud/Makefile

Modified: head/databases/pointcloud/Makefile
==============================================================================
--- head/databases/pointcloud/Makefile	Mon Jun  3 09:32:09 2019	(r503366)
+++ head/databases/pointcloud/Makefile	Mon Jun  3 09:37:48 2019	(r503367)
@@ -3,7 +3,7 @@
 
 PORTNAME=	pointcloud
 PORTVERSION=	1.2.0
-PORTREVISION=	1
+PORTREVISION=	2
 DISTVERSIONPREFIX=	v
 CATEGORIES=	databases geography
 

Added: head/databases/pointcloud/files/patch-pgsql_pc__access.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/pointcloud/files/patch-pgsql_pc__access.c	Mon Jun  3 09:37:48 2019	(r503367)
@@ -0,0 +1,26 @@
+--- pgsql/pc_access.c.orig	2018-08-22 09:36:04 UTC
++++ pgsql/pc_access.c
+@@ -879,9 +879,9 @@ Datum pcpatch_intersects(PG_FUNCTION_ARGS)
+ 
+ 	if ( pc_bounds_intersects(&(serpa1->bounds), &(serpa2->bounds)) )
+ 	{
+-		PG_RETURN_BOOL(TRUE);
++		PG_RETURN_BOOL(true);
+ 	}
+-	PG_RETURN_BOOL(FALSE);
++	PG_RETURN_BOOL(false);
+ }
+ 
+ PG_FUNCTION_INFO_V1(pcpatch_size);
+@@ -939,9 +939,9 @@ PG_FUNCTION_INFO_V1(pc_lazperf_enabled);
+ Datum pc_lazperf_enabled(PG_FUNCTION_ARGS)
+ {
+ #ifdef HAVE_LAZPERF
+-	PG_RETURN_BOOL(TRUE);
++	PG_RETURN_BOOL(true);
+ #else
+-	PG_RETURN_BOOL(FALSE);
++	PG_RETURN_BOOL(false);
+ #endif
+ }
+ 

Added: head/databases/pointcloud/files/patch-pgsql_pc__inout.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/pointcloud/files/patch-pgsql_pc__inout.c	Mon Jun  3 09:37:48 2019	(r503367)
@@ -0,0 +1,11 @@
+--- pgsql/pc_inout.c.orig	2018-08-22 09:36:04 UTC
++++ pgsql/pc_inout.c
+@@ -171,7 +171,7 @@ Datum pcschema_is_valid(PG_FUNCTION_ARGS)
+ 
+ 	if ( !schema )
+ 	{
+-		PG_RETURN_BOOL(FALSE);
++		PG_RETURN_BOOL(false);
+ 	}
+ 
+ 	valid = pc_schema_is_valid(schema);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906030937.x539bnZe086459>