Title: [152495] trunk/Source/WebCore
- Revision
- 152495
- Author
- [email protected]
- Date
- 2013-07-09 09:22:29 -0700 (Tue, 09 Jul 2013)
Log Message
[Windows] Compile fix.
https://bugs.webkit.org/show_bug.cgi?id=106558
Patch by [email protected] <[email protected]> on 2013-07-09
Reviewed by Brent Fulgham.
On Windows, dispatch.h needs to be included before certain CFNetwork headers.
* WebCorePrefix.h: Include dispatch.h.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (152494 => 152495)
--- trunk/Source/WebCore/ChangeLog 2013-07-09 16:15:12 UTC (rev 152494)
+++ trunk/Source/WebCore/ChangeLog 2013-07-09 16:22:29 UTC (rev 152495)
@@ -1,3 +1,14 @@
+2013-07-09 [email protected] <[email protected]>
+
+ [Windows] Compile fix.
+ https://bugs.webkit.org/show_bug.cgi?id=106558
+
+ Reviewed by Brent Fulgham.
+
+ On Windows, dispatch.h needs to be included before certain CFNetwork headers.
+
+ * WebCorePrefix.h: Include dispatch.h.
+
2013-07-09 Mark Lam <[email protected]>
Fix 30% JSBench regression (caused by adding column numbers to stack traces).
Modified: trunk/Source/WebCore/WebCorePrefix.h (152494 => 152495)
--- trunk/Source/WebCore/WebCorePrefix.h 2013-07-09 16:15:12 UTC (rev 152494)
+++ trunk/Source/WebCore/WebCorePrefix.h 2013-07-09 16:22:29 UTC (rev 152495)
@@ -168,6 +168,8 @@
/* Windows doesn't include CFNetwork.h via CoreServices.h, so we do
it explicitly here to make Windows more consistent with Mac. */
#include <CFNetwork/CFNetwork.h>
+// On Windows, dispatch.h needs to be included before certain CFNetwork headers.
+#include <dispatch/dispatch.h>
#endif
#include <windows.h>
#else
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes