Title: [189345] trunk
Revision
189345
Author
[email protected]
Date
2015-09-04 04:48:08 -0700 (Fri, 04 Sep 2015)

Log Message

Follow-up patch for r189343.
https://bugs.webkit.org/show_bug.cgi?id=148795

Rubber-stamped by Csaba Osztrogonác.

* Source/cmake/WebKitCommon.cmake: Relax the Ruby version requirement
to 1.9, since this seems to be enough to fix the build failure.
And 2.0 may cause problems for developers using some distributions like Ubuntu.

Modified Paths

Diff

Modified: trunk/ChangeLog (189344 => 189345)


--- trunk/ChangeLog	2015-09-04 11:44:21 UTC (rev 189344)
+++ trunk/ChangeLog	2015-09-04 11:48:08 UTC (rev 189345)
@@ -1,3 +1,14 @@
+2015-09-04  Carlos Alberto Lopez Perez  <[email protected]>
+
+        Follow-up patch for r189343.
+        https://bugs.webkit.org/show_bug.cgi?id=148795
+
+        Rubber-stamped by Csaba Osztrogonác.
+
+        * Source/cmake/WebKitCommon.cmake: Relax the Ruby version requirement
+        to 1.9, since this seems to be enough to fix the build failure.
+        And 2.0 may cause problems for developers using some distributions like Ubuntu.
+
 2015-09-04  Emanuele Aina  <[email protected]>
 
         [CMake] Trigger the memory-reduction tricks on armhf too

Modified: trunk/Source/cmake/WebKitCommon.cmake (189344 => 189345)


--- trunk/Source/cmake/WebKitCommon.cmake	2015-09-04 11:44:21 UTC (rev 189344)
+++ trunk/Source/cmake/WebKitCommon.cmake	2015-09-04 11:48:08 UTC (rev 189345)
@@ -17,9 +17,9 @@
 # We cannot check for RUBY_FOUND because it is set only when the full package is installed and
 # the only thing we need is the interpreter. Unlike Python, cmake does not provide a macro
 # for finding only the Ruby interpreter.
-find_package(Ruby 2.0)
-if (NOT RUBY_EXECUTABLE OR RUBY_VERSION VERSION_LESS 2.0)
-    message(FATAL_ERROR "Ruby 2.0 or higher is required.")
+find_package(Ruby 1.9)
+if (NOT RUBY_EXECUTABLE OR RUBY_VERSION VERSION_LESS 1.9)
+    message(FATAL_ERROR "Ruby 1.9 or higher is required.")
 endif ()
 
 include(WebKitMacros)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to