Skip to content

Commit

Permalink
Merge r228136 - [cmake] Fix build with ICU configured without collati…
Browse files Browse the repository at this point in the history
…on 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:
  • Loading branch information
annulen authored and carlosgcampos committed Feb 19, 2018
1 parent 3667cfc commit 2e6ba1c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Source/WTF/ChangeLog
@@ -1,3 +1,16 @@
2018-02-05 Konstantin Tokarev <annulen@yandex.ru>

[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 <aboya@igalia.com>

Fix bug in MediaTime comparison for negative values with different scale.
Expand Down
2 changes: 2 additions & 0 deletions Source/WTF/wtf/CMakeLists.txt
Expand Up @@ -459,6 +459,8 @@ if (NOT USE_SYSTEM_MALLOC)
endif ()

list(APPEND WTF_SOURCES
unicode/CollatorDefault.cpp

unicode/icu/CollatorICU.cpp
)
set(WTF_SYSTEM_INCLUDE_DIRECTORIES
Expand Down

0 comments on commit 2e6ba1c

Please sign in to comment.