diff options
author | Landry Breuil <landry@rhaalovely.net> | 2014-03-08 11:38:09 +0100 |
---|---|---|
committer | Landry Breuil <landry@rhaalovely.net> | 2014-03-08 11:38:09 +0100 |
commit | 66e1577a083bd042df9a228cfebb90b7a21f170e (patch) | |
tree | 1b03219bb3077cee185833ed3a37e8562bb2131e /patches/patch-Source_WTF_wtf_MathExtras_h | |
parent | 633114ffb5d67bfde83584dbdf08b6726820eaa6 (diff) |
add links to upstream bugs
Diffstat (limited to 'patches/patch-Source_WTF_wtf_MathExtras_h')
-rw-r--r-- | patches/patch-Source_WTF_wtf_MathExtras_h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/patches/patch-Source_WTF_wtf_MathExtras_h b/patches/patch-Source_WTF_wtf_MathExtras_h index 7982c8e..107b235 100644 --- a/patches/patch-Source_WTF_wtf_MathExtras_h +++ b/patches/patch-Source_WTF_wtf_MathExtras_h @@ -1,6 +1,7 @@ $OpenBSD: patch-Source_WTF_wtf_MathExtras_h,v 1.1 2013/10/06 14:03:43 landry Exp $ signbit & isfinite are defined in gcc's cmath for 4.6 & 4.8.. so partly revert https://bugs.webkit.org/show_bug.cgi?id=19975, make it conditional to older gcc +https://bugs.webkit.org/show_bug.cgi?id=129927 --- Source/WTF/wtf/MathExtras.h.orig Tue Jan 21 15:06:51 2014 +++ Source/WTF/wtf/MathExtras.h Fri Feb 14 20:41:39 2014 @@ -94,7 +94,8 @@ inline bool isinf(double x) { return !finite(x) && !is |