From 59b76a143ffe333cc692d01d25c0324c756f377f Mon Sep 17 00:00:00 2001 From: Willy Sudiarto Raharjo Date: Sun, 7 Feb 2016 08:06:11 +0700 Subject: gis/pointcloud: Fix build against postgresql 9.5. Signed-off-by: Willy Sudiarto Raharjo --- gis/pointcloud/pointcloud.SlackBuild | 14 +++++++++----- gis/pointcloud/postgresql9.5.patch | 19 +++++++++++++++++++ 2 files changed, 28 insertions(+), 5 deletions(-) create mode 100644 gis/pointcloud/postgresql9.5.patch (limited to 'gis/pointcloud') diff --git a/gis/pointcloud/pointcloud.SlackBuild b/gis/pointcloud/pointcloud.SlackBuild index c37bfef672..236b83aa0c 100644 --- a/gis/pointcloud/pointcloud.SlackBuild +++ b/gis/pointcloud/pointcloud.SlackBuild @@ -67,11 +67,15 @@ else fi cd $PRGNAM-$VERSION chown -R root:root . -find . \ - \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +# Upstream commit +# please remove it on next release +patch -p1 < $CWD/postgresql9.5.patch ./autogen.sh CFLAGS="$SLKCFLAGS" \ diff --git a/gis/pointcloud/postgresql9.5.patch b/gis/pointcloud/postgresql9.5.patch new file mode 100644 index 0000000000..a1c21765a7 --- /dev/null +++ b/gis/pointcloud/postgresql9.5.patch @@ -0,0 +1,19 @@ +--- pointcloud-1.0.1/pgsql/pc_access.c.orig 2016-02-07 08:01:10.553181345 +0700 ++++ pointcloud-1.0.1/pgsql/pc_access.c 2016-02-07 08:01:39.528225276 +0700 +@@ -313,15 +313,7 @@ + (errcode(ERRCODE_INVALID_PARAMETER_VALUE), + errmsg("could not determine input data type"))); + +- if (fcinfo->context && IsA(fcinfo->context, AggState)) +- { +- aggcontext = ((AggState *) fcinfo->context)->aggcontext; +- } +- else if (fcinfo->context && IsA(fcinfo->context, WindowAggState)) +- { +- aggcontext = ((WindowAggState *) fcinfo->context)->aggcontext; +- } +- else ++ if ( ! AggCheckCallContext(fcinfo, &aggcontext) ) + { + /* cannot be called directly because of dummy-type argument */ + elog(ERROR, "pointcloud_agg_transfn called in non-aggregate context"); -- cgit v1.2.3