Changeset 228136 in webkit


Ignore:
Timestamp:
Feb 5, 2018 3:31:31 PM (6 years ago)
Author:
Konstantin Tokarev
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:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r228089 r228136  
     12018-02-05  Konstantin Tokarev  <annulen@yandex.ru>
     2
     3        [cmake] Fix build with ICU configured without collation support
     4        https://bugs.webkit.org/show_bug.cgi?id=182498
     5
     6        Reviewed by Alex Christensen.
     7
     8        WebKit has CollatorDefault.cpp providing necessary stubs when
     9        UCONFIG_NO_COLLATION is defined, however it is not included in cmake
     10        file list.
     11
     12        * wtf/CMakeLists.txt:
     13
    1142018-02-05  Alicia Boya García  <aboya@igalia.com>
    215
  • trunk/Source/WTF/wtf/CMakeLists.txt

    r228007 r228136  
    460460
    461461list(APPEND WTF_SOURCES
     462    unicode/CollatorDefault.cpp
     463
    462464    unicode/icu/CollatorICU.cpp
    463465)
Note: See TracChangeset for help on using the changeset viewer.