summaryrefslogtreecommitdiffstats
path: root/src/gcc-1-mingw-float.patch
diff options
context:
space:
mode:
authorLuis Saavedra <luis94855510@gmail.com>2013-03-20 07:02:31 (GMT)
committerLuis Saavedra <luis94855510@gmail.com>2013-03-20 07:02:31 (GMT)
commit734329ad56bf562e0a4041c4d7fe90764d40df7c (patch)
tree81c33a86b7b0f4b151cff90cffe018fcb647e8db /src/gcc-1-mingw-float.patch
parent26e46c89292c94bb1dd74a500375d4c68f950bf0 (diff)
downloadmxe-734329ad56bf562e0a4041c4d7fe90764d40df7c.zip
mxe-734329ad56bf562e0a4041c4d7fe90764d40df7c.tar.gz
mxe-734329ad56bf562e0a4041c4d7fe90764d40df7c.tar.bz2
add package opencv
OpenCV (Open Source Computer Vision Library) is an open source computer vision and machine learning software library. See more: http://opencv.org/about.html
Diffstat (limited to 'src/gcc-1-mingw-float.patch')
-rw-r--r--src/gcc-1-mingw-float.patch16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/gcc-1-mingw-float.patch b/src/gcc-1-mingw-float.patch
index 6c10586..8116c79 100644
--- a/src/gcc-1-mingw-float.patch
+++ b/src/gcc-1-mingw-float.patch
@@ -3,16 +3,26 @@ See index.html for further information.
This patch has been taken from:
http://gcc.gnu.org/ml/gcc-patches/2010-06/msg00387.html
-http://sourceforge.net/tracker/?func=detail&atid=302435&aid=3011968&group_id=2435
+http://sourceforge.net/p/mingw/bugs/1809
diff -urN a/gcc/ginclude/float.h b/gcc/ginclude/float.h
--- a/gcc/ginclude/float.h 2009-04-09 17:00:19.000000000 +0200
+++ b/gcc/ginclude/float.h 2010-06-05 12:03:41.887724045 +0200
-@@ -275,3 +275,7 @@
+@@ -275,3 +275,17 @@
#endif /* __STDC_WANT_DEC_FP__ */
#endif /* _FLOAT_H___ */
+
+#ifdef __MINGW32__
-+#include_next<float.h>
++ /*
++ * the MinGW-supplied header, which is guarded by the
++ * _MINGW_FLOAT_H_ macro, may be found first, thus...
++ */
++#ifndef _MINGW_FLOAT_H_
++ /*
++ * ...when we didn't find the MinGW-supplied header first, we
++ * want to pull it in now; include_next should achieve this
++ */
++# include_next <float.h>
++#endif
+#endif