Changeset 191442 in webkit


Ignore:
Timestamp:
Oct 22, 2015 12:07:41 AM (9 years ago)
Author:
Philippe Normand
Message:

[GTK][Mac] ICU-related build fixes
https://bugs.webkit.org/show_bug.cgi?id=150032

Rubber-stamped by Darin Adler.

  • Source/cmake/FindICU.cmake: Use pkg-config to hint at icu-i18n's library location.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r191334 r191442  
     12015-10-22  Philippe Normand  <pnormand@igalia.com>
     2
     3        [GTK][Mac] ICU-related build fixes
     4        https://bugs.webkit.org/show_bug.cgi?id=150032
     5
     6        Rubber-stamped by Darin Adler.
     7
     8        * Source/cmake/FindICU.cmake: Use pkg-config to hint at icu-i18n's library location.
     9
    1102015-10-20  Yoav Weiss  <yoav@yoav.ws>
    211
  • trunk/Source/cmake/FindICU.cmake

    r173655 r191442  
    4747
    4848    # Look for the ICU internationalization libraries
     49    pkg_check_modules(PC_ICU_I18N icu-i18n)
    4950    find_library(
    5051        ICU_I18N_LIBRARY
    51         NAMES icuin icui18n cygicuin cygicuin32
     52        NAMES icui18n icuin cygicuin cygicuin32
     53        HINTS ${PC_ICU_I18N_LIBRARY_DIRS}
     54              ${PC_ICU_I18N_LIBDIR}
    5255        DOC "Libraries to link against for ICU internationalization")
    5356    mark_as_advanced(ICU_I18N_LIBRARY)
Note: See TracChangeset for help on using the changeset viewer.