Changeset 95379 in webkit


Ignore:
Timestamp:
Sep 17, 2011 2:28:13 AM (13 years ago)
Author:
ryuan.choi@samsung.com
Message:

[EFL] Bump minimum requirement for cairo to 1.10.
https://bugs.webkit.org/show_bug.cgi?id=68226

Reviewed by Adam Barth.

  • Source/cmake/FindCairo.cmake: Check required version.
  • Source/cmake/OptionsEfl.cmake:
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r95354 r95379  
     12011-09-17  Ryuan Choi  <ryuan.choi@samsung.com>
     2
     3        [EFL] Bump minimum requirement for cairo to 1.10.
     4        https://bugs.webkit.org/show_bug.cgi?id=68226
     5
     6        Reviewed by Adam Barth.
     7
     8        * Source/cmake/FindCairo.cmake: Check required version.
     9        * Source/cmake/OptionsEfl.cmake:
     10
    1112011-09-16  Ulan Degenbaev  <ulan@chromium.org>
    212
  • trunk/Source/cmake/FindCairo.cmake

    r73242 r95379  
    1212
    1313# Use pkg-config to get hints about paths
    14 libfind_pkg_check_modules(Cairo_PKGCONF cairo)
     14set (Module cairo)
     15if (Cairo_FIND_VERSION)
     16  set (Module "${Module}>=${Cairo_FIND_VERSION}")
     17endif ()
     18
     19libfind_pkg_check_modules(Cairo_PKGCONF ${Module})
    1520
    1621# Include dir
  • trunk/Source/cmake/OptionsEfl.cmake

    r95271 r95379  
    2727SET(FONT_BACKEND "freetype" CACHE STRING "choose which network backend to use (one of ${ALL_FONT_BACKENDS})")
    2828
    29 FIND_PACKAGE(Cairo 1.6 REQUIRED)
     29FIND_PACKAGE(Cairo 1.10 REQUIRED)
    3030FIND_PACKAGE(EFL REQUIRED)
    3131FIND_PACKAGE(Fontconfig 2.8.0 REQUIRED)
Note: See TracChangeset for help on using the changeset viewer.