Title: [154610] trunk/Source/WTF
Revision
154610
Author
oli...@apple.com
Date
2013-08-26 10:21:38 -0700 (Mon, 26 Aug 2013)

Log Message

Disable compression under MSVC for now

Modified Paths


Diff

Modified: trunk/Source/WTF/ChangeLog (154609 => 154610)


--- trunk/Source/WTF/ChangeLog	2013-08-26 16:53:42 UTC (rev 154609)
+++ trunk/Source/WTF/ChangeLog	2013-08-26 17:21:38 UTC (rev 154610)
@@ -1,3 +1,10 @@
+2013-08-26  Oliver Hunt  <oli...@apple.com>
+
+        Disable compression under MSVC for now as we're getting
+        weird release-only failures.
+
+        * wtf/Compression.cpp:
+
 2013-08-24  Benjamin Poulain  <benja...@webkit.org>
 
         Save three bytes per CStringBuffer object

Modified: trunk/Source/WTF/wtf/Compression.cpp (154609 => 154610)


--- trunk/Source/WTF/wtf/Compression.cpp	2013-08-26 16:53:42 UTC (rev 154609)
+++ trunk/Source/WTF/wtf/Compression.cpp	2013-08-26 17:21:38 UTC (rev 154610)
@@ -29,7 +29,7 @@
 
 #include "CheckedArithmetic.h"
 
-#if USE(ZLIB)
+#if USE(ZLIB) && !COMPILER(MSVC)
 
 #include <zlib.h>
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to