Title: [94607] trunk/Source/_javascript_Core
Revision
94607
Author
[email protected]
Date
2011-09-06 15:45:20 -0700 (Tue, 06 Sep 2011)

Log Message

Fix broken PPC build due to new dtoa library
https://bugs.webkit.org/show_bug.cgi?id=67654

Patch by Mark Hahnenberg <[email protected]> on 2011-09-06
Reviewed by Dan Bernstein.

Added condition for PPC in the new dtoa compatibility check so that
building won't fail.

* wtf/dtoa/utils.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (94606 => 94607)


--- trunk/Source/_javascript_Core/ChangeLog	2011-09-06 22:36:05 UTC (rev 94606)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-09-06 22:45:20 UTC (rev 94607)
@@ -1,3 +1,15 @@
+2011-09-06  Mark Hahnenberg  <[email protected]>
+
+        Fix broken PPC build due to new dtoa library
+        https://bugs.webkit.org/show_bug.cgi?id=67654
+
+        Reviewed by Dan Bernstein.
+
+        Added condition for PPC in the new dtoa compatibility check so that
+        building won't fail.
+
+        * wtf/dtoa/utils.h:
+
 2011-09-05  Oliver Hunt  <[email protected]>
 
         An object's structure should reference the global object responsible for its creation

Modified: trunk/Source/_javascript_Core/wtf/dtoa/utils.h (94606 => 94607)


--- trunk/Source/_javascript_Core/wtf/dtoa/utils.h	2011-09-06 22:36:05 UTC (rev 94606)
+++ trunk/Source/_javascript_Core/wtf/dtoa/utils.h	2011-09-06 22:45:20 UTC (rev 94607)
@@ -49,7 +49,7 @@
 defined(__ARMEL__) || \
 defined(_MIPS_ARCH_MIPS32R2)
 #define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1
-#elif CPU(MIPS) || OS(WINCE)
+#elif CPU(MIPS) || CPU(PPC) || CPU(PPC64) || OS(WINCE)
 #define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1
 #elif defined(_M_IX86) || defined(__i386__)
 #if defined(_WIN32)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to