]> granicus.if.org Git - postgresql/commitdiff
Handle missing M_PI the same way we've been doing in the core code,
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 19 Oct 2006 20:08:03 +0000 (20:08 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 19 Oct 2006 20:08:03 +0000 (20:08 +0000)
instead of inserting an MSVC dependency.

contrib/earthdistance/earthdistance.c

index b60370483ba9e78b1717ddfd7bab9e1876be5800..ce1ca1665b3517c3cedcd97339ee787bf2114410 100644 (file)
@@ -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"
 
-#ifdef WIN32
-#define _USE_MATH_DEFINES
-#endif
 #include <math.h>
 
 #include "utils/geo_decls.h"   /* for Pt */
 
+#ifndef M_PI
+#define M_PI 3.14159265358979323846
+#endif
+
 
 PG_MODULE_MAGIC;