Changeset 130656 in webkit


Ignore:
Timestamp:
Oct 8, 2012 11:10:17 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] Add minimum version information for tool dependencies
https://bugs.webkit.org/show_bug.cgi?id=97592

Patch by Laszlo Gombos <l.gombos@samsung.com> on 2012-10-08
Reviewed by Kenneth Rohde Christiansen.

Capture the minimum version information for the tools that are required
to build the EFL port (or more generally WebKit).

  • CMakeLists.txt:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/CMakeLists.txt

    r129447 r130656  
    5858# Find common packages (used by all ports)
    5959# -----------------------------------------------------------------------------
    60 FIND_PACKAGE(BISON REQUIRED)
    61 FIND_PACKAGE(FLEX REQUIRED)
    62 FIND_PACKAGE(Gperf REQUIRED)
    63 FIND_PACKAGE(Perl REQUIRED)
    64 FIND_PACKAGE(PythonInterp REQUIRED)
    65 FIND_PACKAGE(Ruby)
     60FIND_PACKAGE(BISON 2.4.1 REQUIRED)
     61FIND_PACKAGE(FLEX 2.5.34 REQUIRED)
     62
     63# TODO Enforce version requirement for gperf
     64FIND_PACKAGE(Gperf 3.0.3 REQUIRED)
     65
     66# Perl version check enforced using cmake version 2.8.8+
     67FIND_PACKAGE(Perl 5.10.0 REQUIRED)
     68
     69FIND_PACKAGE(PythonInterp 2.6.0 REQUIRED)
     70FIND_PACKAGE(Ruby 1.8.7)
    6671
    6772# -----------------------------------------------------------------------------
  • trunk/ChangeLog

    r130626 r130656  
     12012-10-08  Laszlo Gombos  <l.gombos@samsung.com>
     2
     3        [EFL] Add minimum version information for tool dependencies
     4        https://bugs.webkit.org/show_bug.cgi?id=97592
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        Capture the minimum version information for the tools that are required
     9        to build the EFL port (or more generally WebKit).
     10
     11        * CMakeLists.txt:
     12
    1132012-10-08  Dongwoo Joshua Im  <dw.im@samsung.com>
    214
Note: See TracChangeset for help on using the changeset viewer.