mirror of
https://github.com/postgres/postgres.git
synced 2025-04-25 21:42:33 +03:00
Handle missing M_PI the same way we've been doing in the core code,
instead of inserting an MSVC dependency.
This commit is contained in:
parent
f6e00ae128
commit
28997903a1
@ -1,14 +1,15 @@
|
|||||||
/* $PostgreSQL: pgsql/contrib/earthdistance/earthdistance.c,v 1.12 2006/10/19 20:03:07 tgl Exp $ */
|
/* $PostgreSQL: pgsql/contrib/earthdistance/earthdistance.c,v 1.13 2006/10/19 20:08:03 tgl Exp $ */
|
||||||
|
|
||||||
#include "postgres.h"
|
#include "postgres.h"
|
||||||
|
|
||||||
#ifdef WIN32
|
|
||||||
#define _USE_MATH_DEFINES
|
|
||||||
#endif
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
#include "utils/geo_decls.h" /* for Pt */
|
#include "utils/geo_decls.h" /* for Pt */
|
||||||
|
|
||||||
|
#ifndef M_PI
|
||||||
|
#define M_PI 3.14159265358979323846
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
PG_MODULE_MAGIC;
|
PG_MODULE_MAGIC;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user