summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2014-02-15 10:23:15 (GMT)
committerTony Theodore <tonyt@logyst.com>2014-02-15 10:23:15 (GMT)
commit63ffb350b0b772faa3d3e21226d56330bdae8629 (patch)
treef18a2a35052eb27207cc6298ef7c5cdfbb5db5c1
parent25aafac4f932b6cf44b6a9a44c1b9a800db34f4a (diff)
downloadmxe-63ffb350b0b772faa3d3e21226d56330bdae8629.zip
mxe-63ffb350b0b772faa3d3e21226d56330bdae8629.tar.gz
mxe-63ffb350b0b772faa3d3e21226d56330bdae8629.tar.bz2
package mingw-w64: fix for math.h constant visibility when using -std=c99
-rw-r--r--src/mingw-w64-1-math-h.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/mingw-w64-1-math-h.patch b/src/mingw-w64-1-math-h.patch
new file mode 100644
index 0000000..7484f71
--- /dev/null
+++ b/src/mingw-w64-1-math-h.patch
@@ -0,0 +1,18 @@
+This file is part of MXE.
+See index.html for further information.
+
+This patch was taken from:
+https://sourceforge.net/p/mingw-w64/code/6479/
+
+--- a/mingw-w64-headers/crt/math.h
++++ b/mingw-w64-headers/crt/math.h
+@@ -36,7 +36,7 @@
+ #endif
+ #endif
+
+-#ifndef __STRICT_ANSI__
++#if !defined(__STRICT_ANSI__) || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
+ #define M_E 2.7182818284590452354
+ #define M_LOG2E 1.4426950408889634074
+ #define M_LOG10E 0.43429448190325182765
+