Title: [228136] trunk/Source/WTF
Revision
228136
Author
[email protected]
Date
2018-02-05 15:31:31 -0800 (Mon, 05 Feb 2018)

Log Message

[cmake] Fix build with ICU configured without collation support
https://bugs.webkit.org/show_bug.cgi?id=182498

Reviewed by Alex Christensen.

WebKit has CollatorDefault.cpp providing necessary stubs when
UCONFIG_NO_COLLATION is defined, however it is not included in cmake
file list.

* wtf/CMakeLists.txt:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (228135 => 228136)


--- trunk/Source/WTF/ChangeLog	2018-02-05 23:31:22 UTC (rev 228135)
+++ trunk/Source/WTF/ChangeLog	2018-02-05 23:31:31 UTC (rev 228136)
@@ -1,3 +1,16 @@
+2018-02-05  Konstantin Tokarev  <[email protected]>
+
+        [cmake] Fix build with ICU configured without collation support
+        https://bugs.webkit.org/show_bug.cgi?id=182498
+
+        Reviewed by Alex Christensen.
+
+        WebKit has CollatorDefault.cpp providing necessary stubs when
+        UCONFIG_NO_COLLATION is defined, however it is not included in cmake
+        file list.
+
+        * wtf/CMakeLists.txt:
+
 2018-02-05  Alicia Boya GarcĂ­a  <[email protected]>
 
         Fix bug in MediaTime comparison for negative values with different scale.

Modified: trunk/Source/WTF/wtf/CMakeLists.txt (228135 => 228136)


--- trunk/Source/WTF/wtf/CMakeLists.txt	2018-02-05 23:31:22 UTC (rev 228135)
+++ trunk/Source/WTF/wtf/CMakeLists.txt	2018-02-05 23:31:31 UTC (rev 228136)
@@ -459,6 +459,8 @@
 endif ()
 
 list(APPEND WTF_SOURCES
+    unicode/CollatorDefault.cpp
+
     unicode/icu/CollatorICU.cpp
 )
 set(WTF_SYSTEM_INCLUDE_DIRECTORIES
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to