Changeset 209138 in webkit


Ignore:
Timestamp:
Nov 30, 2016 10:45:57 AM (7 years ago)
Author:
Brent Fulgham
Message:

[Win] Apple build is using incorrect ICU library (if present)
https://bugs.webkit.org/show_bug.cgi?id=164934
<rdar://problem/29329654>

Reviewed by Alex Christensen.

Move the 'icuuc.lib' and 'icuin.lib' library names to the end of the set of choices when searching for ICU.
so that we preferentially select the 'new' version of these libraries if they are available.

  • Source/cmake/FindICU.cmake:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r208970 r209138  
     12016-11-30  Brent Fulgham  <bfulgham@apple.com>
     2
     3        [Win] Apple build is using incorrect ICU library (if present)
     4        https://bugs.webkit.org/show_bug.cgi?id=164934
     5        <rdar://problem/29329654>
     6
     7        Reviewed by Alex Christensen.
     8
     9        Move the 'icuuc.lib' and 'icuin.lib' library names to the end of the set of choices when searching for ICU.
     10        so that we preferentially select the 'new' version of these libraries if they are available.
     11
     12        * Source/cmake/FindICU.cmake:
     13
    1142016-11-23  Zan Dobersek  <zdobersek@igalia.com>
    215
  • trunk/Source/cmake/FindICU.cmake

    r204581 r209138  
    2626find_library(
    2727    ICU_LIBRARY
    28     NAMES icuuc libicuuc cygicuuc cygicuuc32
     28    NAMES libicuuc cygicuuc cygicuuc32 icuuc
    2929    HINTS ${PC_ICU_LIBRARY_DIRS}
    3030          ${PC_ICU_LIBDIR}
     
    5252    find_library(
    5353        ICU_I18N_LIBRARY
    54         NAMES icui18n icuin libicui18n libicuin cygicuin cygicuin32
     54        NAMES icui18n libicui18n libicuin cygicuin cygicuin32 icuin
    5555        HINTS ${PC_ICU_I18N_LIBRARY_DIRS}
    5656              ${PC_ICU_I18N_LIBDIR}
Note: See TracChangeset for help on using the changeset viewer.