Title: [92398] trunk/Source/WebCore
Revision
92398
Author
[email protected]
Date
2011-08-04 12:21:55 -0700 (Thu, 04 Aug 2011)

Log Message

Fix WinCE build after r92308.

* config.h: Don't try to include WebCoreHeaderDetection.h for WinCE.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (92397 => 92398)


--- trunk/Source/WebCore/ChangeLog	2011-08-04 19:20:18 UTC (rev 92397)
+++ trunk/Source/WebCore/ChangeLog	2011-08-04 19:21:55 UTC (rev 92398)
@@ -1,3 +1,9 @@
+2011-08-04  Jeff Miller  <[email protected]>
+
+        Fix WinCE build after r92308.
+
+        * config.h: Don't try to include WebCoreHeaderDetection.h for WinCE.
+
 2011-08-04  Darin Fisher  <[email protected]>
 
         webkitRequestAnimationFrame's element argument needs to be marked optional

Modified: trunk/Source/WebCore/config.h (92397 => 92398)


--- trunk/Source/WebCore/config.h	2011-08-04 19:20:18 UTC (rev 92397)
+++ trunk/Source/WebCore/config.h	2011-08-04 19:21:55 UTC (rev 92398)
@@ -29,7 +29,7 @@
 
 #include <wtf/Platform.h>
 
-#if OS(WINDOWS) && !PLATFORM(QT) && !PLATFORM(CHROMIUM)
+#if OS(WINDOWS) && !OS(WINCE) && !PLATFORM(QT) && !PLATFORM(CHROMIUM)
 #include <WebCore/WebCoreHeaderDetection.h>
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to