mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
24bebf0b72
instead of int, change the calculation method to use the haversine formula which is more accurrate for short distances, added a grant to public for geo_distance and added a regression test. I will resubmit the earth distance stuff based on cube after 7.3 is released. Bruno Wolff III
13 lines
352 B
Makefile
13 lines
352 B
Makefile
# $Header: /cvsroot/pgsql/contrib/earthdistance/Makefile,v 1.12 2002/09/20 03:47:22 momjian Exp $
|
|
|
|
subdir = contrib/earthdistance
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
MODULES = earthdistance
|
|
DATA_built = earthdistance.sql
|
|
DOCS = README.earthdistance
|
|
REGRESS = earthdistance
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|