@@ -9,26 +9,25 @@ It provides:
9
9
* Object rotation by Euler angles
10
10
* Indexing of spherical data types
11
11
12
- This is an R-Tree implementation using GiST for spherical objects
13
- like spherical points and spherical circles with
14
- useful functions and operators.
12
+ This is an R-Tree implementation using GiST for spherical objects like
13
+ spherical points and spherical circles with useful functions and operators.
15
14
16
15
NOTICE:
17
- This version will work only with PostgreSQL version 9.5 and above.
16
+ This version will work only with PostgreSQL version 9.6 and above.
18
17
19
18
INSTALLATION:
20
19
21
20
-- Build and install
22
21
23
- gmake
24
- gmake install
22
+ make
23
+ make install
25
24
26
25
-- HEALPix/MOC support is included by default. If your platform does not
27
26
-- have the required libhealpix_cxx dependency, you can optionally build
28
- -- pgSphere without HEALPix/MOC support, like so :
27
+ -- pgSphere without HEALPix/MOC support, like this :
29
28
30
- gmake USE_HEALPIX=0
31
- gmake USE_HEALPIX=0 install
29
+ make USE_HEALPIX=0
30
+ make USE_HEALPIX=0 install
32
31
33
32
-- Load extension
34
33
@@ -44,7 +43,7 @@ UPDATING AN EXISTING INSTALLATION:
44
43
45
44
-- where A.B.C is a placeholder for the current version.
46
45
-- You also may want to check what version of pgSphere is installed using
47
- either of following commands:
46
+ either or both of the following commands:
48
47
49
48
psql -c "SELECT pg_sphere_version();" <database>
50
49
psql -c "SELECT * FROM pg_available_extension_versions WHERE name = 'pg_sphere';"
@@ -53,11 +52,20 @@ REGRESSION TEST (as the same user as the currently running PostgreSQL server):
53
52
54
53
make installcheck
55
54
55
+ -- or --
56
+
57
+ make USE_HEALPIX=0 installcheck
58
+
56
59
LONG REGRESSION TEST:
57
60
58
61
make crushtest
59
62
60
- The 'make' program must be compatible with GNU make.
63
+ -- or --
64
+
65
+ make USE_HEALPIX=0 crushtest
66
+
67
+ The 'make' program used in all of the above commands must be compatible with
68
+ GNU make.
61
69
62
70
For more information or to report issues or to help with development, please
63
71
refer to https://github.com/postgrespro/pgsphere/
0 commit comments