Title: [189343] trunk
Revision
189343
Author
[email protected]
Date
2015-09-04 04:26:12 -0700 (Fri, 04 Sep 2015)

Log Message

REGRESSION(r189293): _javascript_Core/offlineasm/x86.rb -- Build failure with ruby < 2.0
https://bugs.webkit.org/show_bug.cgi?id=148795

Rubber-stamped by Carlos Garcia Campos.

* Source/cmake/WebKitCommon.cmake: Require now at least Ruby 2.0

Modified Paths

Diff

Modified: trunk/ChangeLog (189342 => 189343)


--- trunk/ChangeLog	2015-09-04 11:16:03 UTC (rev 189342)
+++ trunk/ChangeLog	2015-09-04 11:26:12 UTC (rev 189343)
@@ -1,3 +1,12 @@
+2015-09-04  Carlos Alberto Lopez Perez  <[email protected]>
+
+        REGRESSION(r189293): _javascript_Core/offlineasm/x86.rb -- Build failure with ruby < 2.0
+        https://bugs.webkit.org/show_bug.cgi?id=148795
+
+        Rubber-stamped by Carlos Garcia Campos.
+
+        * Source/cmake/WebKitCommon.cmake: Require now at least Ruby 2.0
+
 2015-09-02  Alex Christensen  <[email protected]>
 
         Make bison grammar compatible with bison 2.1

Modified: trunk/Source/cmake/WebKitCommon.cmake (189342 => 189343)


--- trunk/Source/cmake/WebKitCommon.cmake	2015-09-04 11:16:03 UTC (rev 189342)
+++ trunk/Source/cmake/WebKitCommon.cmake	2015-09-04 11:26:12 UTC (rev 189343)
@@ -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 1.8.7)
-if (NOT RUBY_EXECUTABLE OR RUBY_VERSION VERSION_LESS 1.8.7)
-    message(FATAL_ERROR "Ruby 1.8.7 or higher is required.")
+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.")
 endif ()
 
 include(WebKitMacros)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to