We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentaeab5bd commite582329Copy full SHA for e582329
README.pg_sphere
@@ -6,20 +6,22 @@ useful functions and operators.
6
NOTICE:
7
This version will works only with postgresql version 8.0 and above.
8
9
-INSTALLATION:
+INSTALLATION AS EXTENSION (RECOMMENDED):
10
11
+ -- build and install
12
+ gmake USE_PGXS=1 PG_CONFIG=/usr/bin/pg_config
13
+ gmake USE_PGXS=1 PG_CONFIG=/usr/bin/pg_config install
14
+ -- load extension
15
+ psql <database> -c "CREATE EXTENSION pg_sphere;"
16
+
17
+INSTALLATION AS MODULE (DEPRECATED):
18
19
20
gmake
21
gmake install
22
-- load functions
23
psql <database> < pg_sphere.sql
24
-USING PG_CONFIG:
-
-gmake USE_PGXS=1 PG_CONFIG=/usr/bin/pg_config
-gmake USE_PGXS=1 PG_CONFIG=/usr/bin/pg_config install
--- load extension:
-CREATE EXTENSION pg_sphere;
25
REGRESSION TEST:
26
27
gmake installcheck