diff options
Diffstat (limited to 'meta/recipes-graphics/clutter/clutter-box2d/isfinite.patch')
| -rw-r--r-- | meta/recipes-graphics/clutter/clutter-box2d/isfinite.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/meta/recipes-graphics/clutter/clutter-box2d/isfinite.patch b/meta/recipes-graphics/clutter/clutter-box2d/isfinite.patch deleted file mode 100644 index bcdbe24d06..0000000000 --- a/meta/recipes-graphics/clutter/clutter-box2d/isfinite.patch +++ /dev/null | |||
| @@ -1,19 +0,0 @@ | |||
| 1 | _finite is obsoleted and C99 has isfinite instead so we should use it | ||
| 2 | |||
| 3 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 4 | |||
| 5 | Upstream-Status: Pending | ||
| 6 | |||
| 7 | Index: clutter-box2d-0.10.0/box2d/Source/Common/b2Math.h | ||
| 8 | =================================================================== | ||
| 9 | --- clutter-box2d-0.10.0.orig/box2d/Source/Common/b2Math.h 2008-12-16 06:42:10.000000000 -0800 | ||
| 10 | +++ clutter-box2d-0.10.0/box2d/Source/Common/b2Math.h 2011-07-20 16:41:02.046430743 -0700 | ||
| 11 | @@ -60,7 +60,7 @@ | ||
| 12 | #ifdef _MSC_VER | ||
| 13 | return _finite(x) != 0; | ||
| 14 | #else | ||
| 15 | - return finite(x) != 0; | ||
| 16 | + return std::isfinite(x) != 0; | ||
| 17 | #endif | ||
| 18 | } | ||
| 19 | |||
