File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -6,20 +6,22 @@ useful functions and operators.
66NOTICE:
77 This version will works only with postgresql version 8.0 and above.
88
9- INSTALLATION:
9+ INSTALLATION AS EXTENSION (RECOMMENDED) :
1010
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+ -- build and install
1120 gmake
1221 gmake install
1322 -- load functions
1423 psql <database> < pg_sphere.sql
1524
16- USING PG_CONFIG:
17-
18- gmake USE_PGXS=1 PG_CONFIG=/usr/bin/pg_config
19- gmake USE_PGXS=1 PG_CONFIG=/usr/bin/pg_config install
20- -- load extension:
21- CREATE EXTENSION pg_sphere;
22-
2325REGRESSION TEST:
2426
2527 gmake installcheck
You can’t perform that action at this time.
0 commit comments