Title: [135724] trunk/Source/WTF
Revision
135724
Author
par...@webkit.org
Date
2012-11-26 07:47:01 -0800 (Mon, 26 Nov 2012)

Log Message

Build fix for WinCE after r135640.

* wtf/DataLog.cpp:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (135723 => 135724)


--- trunk/Source/WTF/ChangeLog	2012-11-26 15:46:41 UTC (rev 135723)
+++ trunk/Source/WTF/ChangeLog	2012-11-26 15:47:01 UTC (rev 135724)
@@ -1,3 +1,9 @@
+2012-11-26  Patrick Gansterer  <par...@webkit.org>
+
+        Build fix for WinCE after r135640.
+
+        * wtf/DataLog.cpp:
+
 2012-11-24  Adam Barth  <aba...@webkit.org>
 
         Chromium should use TCMalloc on Mac to go fast

Modified: trunk/Source/WTF/wtf/DataLog.cpp (135723 => 135724)


--- trunk/Source/WTF/wtf/DataLog.cpp	2012-11-26 15:46:41 UTC (rev 135723)
+++ trunk/Source/WTF/wtf/DataLog.cpp	2012-11-26 15:47:01 UTC (rev 135724)
@@ -29,6 +29,12 @@
 #include <wtf/FilePrintStream.h>
 #include <wtf/Threading.h>
 
+#if OS(WINCE)
+#ifndef _IONBF
+#define _IONBF 0x0004
+#endif
+#endif
+
 #define DATA_LOG_TO_FILE 0
 
 // Uncomment to force logging to the given file regardless of what the environment variable says.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to