annotate src/mingw-w64-1-float-h.patch @ 3736:b90033378759

mingw-w64: update version to 3.3.0 * src/mingw-w64-1-float-h.patch: renamed src/mingw-w64-2-float-h.patch * src/mingw-w64-1-math-h.patch: removed. * dist-files.mk: renamed mingw-w64-1-float-h.patch, removed mingw-w64-1-math-h.patch * src/mingw-w64.mk: update version, checksum
author John Donoghue
date Wed, 12 Nov 2014 15:05:45 -0500
parents
children a49c45403df7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3736
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
1 This file is part of MXE.
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
2 See index.html for further information.
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
3
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
4 workaround for -isystem flag messing up include order
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
5 https://bugzilla.redhat.com/show_bug.cgi?id=843436
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
6
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
7 diff -ur a/mingw-w64-headers/crt/float.h b/mingw-w64-headers/crt/float.h
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
8 --- a/mingw-w64-headers/crt/float.h 2014-01-11 21:38:50.640418500 +1100
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
9 +++ b/mingw-w64-headers/crt/float.h 2014-01-11 21:44:08.528393903 +1100
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
10 @@ -105,6 +105,15 @@
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
11 #define DBL_MAX_10_EXP __DBL_MAX_10_EXP__
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
12 #define LDBL_MAX_10_EXP __LDBL_MAX_10_EXP__
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
13
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
14 + /* The difference between 1 and the least value greater than 1 that is
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
15 + representable in the given floating point type, b**1-p. */
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
16 + #undef FLT_EPSILON
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
17 + #undef DBL_EPSILON
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
18 + #undef LDBL_EPSILON
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
19 + #define FLT_EPSILON __FLT_EPSILON__
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
20 + #define DBL_EPSILON __DBL_EPSILON__
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
21 + #define LDBL_EPSILON __LDBL_EPSILON__
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
22 +
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
23 /* Addition rounds to 0: zero, 1: nearest, 2: +inf, 3: -inf, -1: unknown. */
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
24 /* ??? This is supposed to change with calls to fesetround in <fenv.h>. */
b90033378759 mingw-w64: update version to 3.3.0
John Donoghue
parents:
diff changeset
25 #undef FLT_ROUNDS