]> code.ossystems Code Review - openembedded-core.git/commitdiff
clutter-box2d: fix isfinite.patch
authorSaul Wold <sgw@linux.intel.com>
Thu, 21 Jul 2011 00:18:27 +0000 (17:18 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 21 Jul 2011 09:47:50 +0000 (10:47 +0100)
The original patch lost ^M and was not appliable.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
meta/recipes-graphics/clutter/clutter-box2d/isfinite.patch

index fd2bf749230b2f1782314a6f0245cb8c820d1b84..bcdbe24d06eb753ce35cdf8645f3855034cd3d6b 100644 (file)
@@ -7,13 +7,13 @@ Upstream-Status: Pending
 Index: clutter-box2d-0.10.0/box2d/Source/Common/b2Math.h
 ===================================================================
 --- clutter-box2d-0.10.0.orig/box2d/Source/Common/b2Math.h     2008-12-16 06:42:10.000000000 -0800
-+++ clutter-box2d-0.10.0/box2d/Source/Common/b2Math.h  2011-07-17 02:10:29.833825198 -0700
++++ clutter-box2d-0.10.0/box2d/Source/Common/b2Math.h  2011-07-20 16:41:02.046430743 -0700
 @@ -60,7 +60,7 @@
- #ifdef _MSC_VER
-       return _finite(x) != 0;
- #else
--      return finite(x) != 0;
-+      return std::isfinite(x) != 0;
- #endif
- }
+ #ifdef _MSC_VER\r
+       return _finite(x) != 0;\r
+ #else\r
+-      return finite(x) != 0;\r
++      return std::isfinite(x) != 0;\r
+ #endif\r
+ }\r
\r