Skip to content

Commit bbcbdbf

Browse files
committed
Add USE_HEALPIX=0 cases to instrutions for regression testing and other minor tweaks
1 parent 26def74 commit bbcbdbf

File tree

1 file changed

+19
-11
lines changed

1 file changed

+19
-11
lines changed

Diff for: README.pg_sphere

+19-11
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,25 @@ It provides:
99
* Object rotation by Euler angles
1010
* Indexing of spherical data types
1111

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.
1514

1615
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.
1817

1918
INSTALLATION:
2019

2120
-- Build and install
2221

23-
gmake
24-
gmake install
22+
make
23+
make install
2524

2625
-- HEALPix/MOC support is included by default. If your platform does not
2726
-- 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:
2928

30-
gmake USE_HEALPIX=0
31-
gmake USE_HEALPIX=0 install
29+
make USE_HEALPIX=0
30+
make USE_HEALPIX=0 install
3231

3332
-- Load extension
3433

@@ -44,7 +43,7 @@ UPDATING AN EXISTING INSTALLATION:
4443

4544
-- where A.B.C is a placeholder for the current version.
4645
-- 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:
4847

4948
psql -c "SELECT pg_sphere_version();" <database>
5049
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):
5352

5453
make installcheck
5554

55+
-- or --
56+
57+
make USE_HEALPIX=0 installcheck
58+
5659
LONG REGRESSION TEST:
5760

5861
make crushtest
5962

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.
6169

6270
For more information or to report issues or to help with development, please
6371
refer to https://github.com/postgrespro/pgsphere/

0 commit comments

Comments
 (0)