Title: [162636] trunk/Source/WebCore
Revision
162636
Author
commit-qu...@webkit.org
Date
2014-01-23 13:19:31 -0800 (Thu, 23 Jan 2014)

Log Message

[WinCairo] Compile error.
https://bugs.webkit.org/show_bug.cgi?id=127499

Patch by pe...@outlook.com <pe...@outlook.com> on 2014-01-23
Reviewed by Brent Fulgham.

* platform/network/curl/ResourceError.h: Include <winsock2.h> before <curl/curl.h>.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (162635 => 162636)


--- trunk/Source/WebCore/ChangeLog	2014-01-23 21:18:06 UTC (rev 162635)
+++ trunk/Source/WebCore/ChangeLog	2014-01-23 21:19:31 UTC (rev 162636)
@@ -1,3 +1,12 @@
+2014-01-23  pe...@outlook.com  <pe...@outlook.com>
+
+        [WinCairo] Compile error.
+        https://bugs.webkit.org/show_bug.cgi?id=127499
+
+        Reviewed by Brent Fulgham.
+
+        * platform/network/curl/ResourceError.h: Include <winsock2.h> before <curl/curl.h>.
+
 2014-01-23  Brady Eidson  <beid...@apple.com>
 
         IDB: Implement cross-thread and IPC plumbing for 'get' support

Modified: trunk/Source/WebCore/platform/network/curl/ResourceError.h (162635 => 162636)


--- trunk/Source/WebCore/platform/network/curl/ResourceError.h	2014-01-23 21:18:06 UTC (rev 162635)
+++ trunk/Source/WebCore/platform/network/curl/ResourceError.h	2014-01-23 21:19:31 UTC (rev 162636)
@@ -27,6 +27,12 @@
 #define ResourceError_h
 
 #include "ResourceErrorBase.h"
+
+#if PLATFORM(WIN)
+#include <windows.h>
+#include <winsock2.h>
+#endif
+
 #include <curl/curl.h>
 
 namespace WebCore {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to