Title: [110426] trunk/Source/_javascript_Core
Revision
110426
Author
[email protected]
Date
2012-03-12 07:43:52 -0700 (Mon, 12 Mar 2012)

Log Message

Unreviewed prospective Qt/Mac build fix

* runtime/JSGlobalData.cpp: use #USE(CF) instead of PLATFORM(MAC) to determine
whether to include CoreFoundation headers, used for JIT configuration in JSGlobalData
constructor.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (110425 => 110426)


--- trunk/Source/_javascript_Core/ChangeLog	2012-03-12 14:36:17 UTC (rev 110425)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-03-12 14:43:52 UTC (rev 110426)
@@ -1,3 +1,11 @@
+2012-03-12  Simon Hausmann  <[email protected]>
+
+        Unreviewed prospective Qt/Mac build fix
+
+        * runtime/JSGlobalData.cpp: use #USE(CF) instead of PLATFORM(MAC) to determine
+        whether to include CoreFoundation headers, used for JIT configuration in JSGlobalData
+        constructor.
+
 2012-03-12  Filip Pizlo  <[email protected]>
 
         All DFG nodes should have a mutable set of flags

Modified: trunk/Source/_javascript_Core/runtime/JSGlobalData.cpp (110425 => 110426)


--- trunk/Source/_javascript_Core/runtime/JSGlobalData.cpp	2012-03-12 14:36:17 UTC (rev 110425)
+++ trunk/Source/_javascript_Core/runtime/JSGlobalData.cpp	2012-03-12 14:43:52 UTC (rev 110426)
@@ -62,7 +62,7 @@
 #include "RegExp.h"
 #endif
 
-#if PLATFORM(MAC)
+#if USE(CF)
 #include <CoreFoundation/CoreFoundation.h>
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to