Title: [189157] trunk
Revision
189157
Author
[email protected]
Date
2015-08-29 22:48:47 -0700 (Sat, 29 Aug 2015)

Log Message

Unreviewed build fix after r179923.

* Source/CMakeLists.txt:
bmalloc isn't ported to Windows yet.

Modified Paths

Diff

Modified: trunk/ChangeLog (189156 => 189157)


--- trunk/ChangeLog	2015-08-30 05:11:23 UTC (rev 189156)
+++ trunk/ChangeLog	2015-08-30 05:48:47 UTC (rev 189157)
@@ -1,3 +1,10 @@
+2015-08-29  Alex Christensen  <[email protected]>
+
+        Unreviewed build fix after r179923.
+
+        * Source/CMakeLists.txt:
+        bmalloc isn't ported to Windows yet.
+
 2015-08-27  Alex Christensen  <[email protected]>
 
         Isolate Source directories in CMake build

Modified: trunk/Source/CMakeLists.txt (189156 => 189157)


--- trunk/Source/CMakeLists.txt	2015-08-30 05:11:23 UTC (rev 189156)
+++ trunk/Source/CMakeLists.txt	2015-08-30 05:48:47 UTC (rev 189157)
@@ -33,7 +33,10 @@
 # -----------------------------------------------------------------------------
 # Set compiler flags for all targets
 # -----------------------------------------------------------------------------
-WEBKIT_SET_EXTRA_COMPILER_FLAGS(bmalloc ${ADDITIONAL_COMPILER_FLAGS})
+# FIXME: Port bmalloc to Windows. https://bugs.webkit.org/show_bug.cgi?id=143310
+if (NOT WIN32)
+    WEBKIT_SET_EXTRA_COMPILER_FLAGS(bmalloc ${ADDITIONAL_COMPILER_FLAGS})
+endif ()
 WEBKIT_SET_EXTRA_COMPILER_FLAGS(WTF ${ADDITIONAL_COMPILER_FLAGS})
 WEBKIT_SET_EXTRA_COMPILER_FLAGS(_javascript_Core ${ADDITIONAL_COMPILER_FLAGS})
 WEBKIT_SET_EXTRA_COMPILER_FLAGS(WebCoreTestSupport ${ADDITIONAL_COMPILER_FLAGS})
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to