view src/mingw-w64-1-float-h.patch @ 4538:979f5b397e51

maint: update PKG_UPDATE targets * src/boost.mk: update UPDATE target, use https * src/cmake.mk: add usable UPDATE target * src/double-conversion.mk: add usable UPDATE target * src/dri2proto.mk: add PKG_UPDATE * src/exiv2.mk: update UPDATE for archives * src/fribidi.mk: update UPDATE for github * src/glproto.mk: add PKG_UPDATE * src/glu.mk: add PKG_UPDATE * src/levmar.mk: add user-agent to UPDATE * src/libarchive.mk: update UPDATE for website * src/libass.mk: update UPDATE for github * src/libdrm.mk: add PKG_UPDATE * src/libffi.mk: update for webpage changes * src/libgee.mk: update for gnome page changes * src/libgsf.mk: update for gnome page changes * src/libidn2.mk: correct PKG_UPDATE
author John D
date Tue, 21 Nov 2017 12:03:47 -0500
parents b90033378759
children a49c45403df7
line wrap: on
line source

This file is part of MXE.
See index.html for further information.

workaround for -isystem flag messing up include order
https://bugzilla.redhat.com/show_bug.cgi?id=843436

diff -ur a/mingw-w64-headers/crt/float.h b/mingw-w64-headers/crt/float.h
--- a/mingw-w64-headers/crt/float.h	2014-01-11 21:38:50.640418500 +1100
+++ b/mingw-w64-headers/crt/float.h	2014-01-11 21:44:08.528393903 +1100
@@ -105,6 +105,15 @@
 	#define DBL_MAX_10_EXP	__DBL_MAX_10_EXP__
 	#define LDBL_MAX_10_EXP	__LDBL_MAX_10_EXP__
 
+    /* The difference between 1 and the least value greater than 1 that is
+    representable in the given floating point type, b**1-p.  */
+    #undef FLT_EPSILON
+    #undef DBL_EPSILON
+    #undef LDBL_EPSILON
+    #define FLT_EPSILON __FLT_EPSILON__
+    #define DBL_EPSILON __DBL_EPSILON__
+    #define LDBL_EPSILON    __LDBL_EPSILON__
+
 	/* Addition rounds to 0: zero, 1: nearest, 2: +inf, 3: -inf, -1: unknown.  */
 	/* ??? This is supposed to change with calls to fesetround in <fenv.h>.  */
 	#undef FLT_ROUNDS