Changeset 141157 in webkit


Ignore:
Timestamp:
Jan 29, 2013 1:18:41 PM (11 years ago)
Author:
Patrick Gansterer
Message:

[CMake] 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 2013-01-29
Reviewed by Kenneth Rohde Christiansen.

Capture the minimum version information for the tools that are required
to build WebKit for all CMake based build systems.

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

Legend:

Unmodified
Added
Removed
  • trunk/CMakeLists.txt

    r140990 r141157  
    6161# Find common packages (used by all ports)
    6262# -----------------------------------------------------------------------------
    63 find_package(BISON REQUIRED)
    64 find_package(FLEX REQUIRED)
    65 find_package(Gperf REQUIRED)
    66 find_package(Perl REQUIRED)
    67 find_package(PythonInterp REQUIRED)
    68 find_package(Ruby)
     63find_package(BISON 2.4.1 REQUIRED)
     64find_package(FLEX 2.5.34 REQUIRED)
     65
     66# TODO Enforce version requirement for gperf
     67find_package(Gperf 3.0.1 REQUIRED)
     68
     69# TODO Enforce version requirement for perl
     70find_package(Perl 5.10.0 REQUIRED)
     71
     72find_package(PythonInterp 2.6.0 REQUIRED)
     73find_package(Ruby 1.8.7)
    6974
    7075# -----------------------------------------------------------------------------
  • trunk/ChangeLog

    r141136 r141157  
     12013-01-29  Laszlo Gombos  <l.gombos@samsung.com>
     2
     3        [CMake] 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 WebKit for all CMake based build systems.
     10
     11        * CMakeLists.txt:
     12
    1132013-01-29  Nate Chapin  <japhet@chromium.org>
    214
Note: See TracChangeset for help on using the changeset viewer.