From: Regina Obe Date: Wed, 7 Oct 2015 21:27:38 +0000 (+0000) Subject: #3322 get rid of hard-coded lib path X-Git-Tag: 2.3.0beta1~440 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6cb04138c8f13932d25494296121ba420dadf479;p=postgis #3322 get rid of hard-coded lib path git-svn-id: http://svn.osgeo.org/postgis/trunk@14217 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in index 3e9407d94..46bb4cfe1 100644 --- a/postgis/postgis.sql.in +++ b/postgis/postgis.sql.in @@ -1634,13 +1634,13 @@ CREATE OR REPLACE FUNCTION ST_Polygonize (geometry[]) -- Availability: 2.2 CREATE OR REPLACE FUNCTION ST_ClusterIntersecting(geometry[]) RETURNS geometry[] - AS '$libdir/postgis-2.2', 'clusterintersecting_garray' + AS 'MODULE_PATHNAME', 'clusterintersecting_garray' LANGUAGE 'c' IMMUTABLE STRICT; -- Availability: 2.2 CREATE OR REPLACE FUNCTION ST_ClusterWithin(geometry[], float8) RETURNS geometry[] - AS '$libdir/postgis-2.2', 'cluster_within_distance_garray' + AS 'MODULE_PATHNAME', 'cluster_within_distance_garray' LANGUAGE 'c' IMMUTABLE STRICT; -- Availability: 1.2.2