Title: [166974] trunk/Tools
Revision
166974
Author
bfulg...@apple.com
Date
2014-04-08 15:59:27 -0700 (Tue, 08 Apr 2014)

Log Message

Unreviewed gardening (Take 2): Prevent users from attempting
to build with known invalid cURL. 

* Scripts/webkitdirs.pm:
(checkInstalledTools): Check for 7.34.0 (the broken version), not
7.33.0 (the known good version).

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (166973 => 166974)


--- trunk/Tools/ChangeLog	2014-04-08 22:52:26 UTC (rev 166973)
+++ trunk/Tools/ChangeLog	2014-04-08 22:59:27 UTC (rev 166974)
@@ -1,3 +1,12 @@
+2014-04-08  Brent Fulgham  <bfulg...@apple.com>
+
+        Unreviewed gardening (Take 2): Prevent users from attempting
+        to build with known invalid cURL. 
+
+        * Scripts/webkitdirs.pm:
+        (checkInstalledTools): Check for 7.34.0 (the broken version), not
+        7.33.0 (the known good version).
+
 2014-04-08  Martin Robinson  <mrobin...@igalia.com>
 
         [GTK] Remove DumpRenderTree and GtkLauncher

Modified: trunk/Tools/Scripts/webkitdirs.pm (166973 => 166974)


--- trunk/Tools/Scripts/webkitdirs.pm	2014-04-08 22:52:26 UTC (rev 166973)
+++ trunk/Tools/Scripts/webkitdirs.pm	2014-04-08 22:59:27 UTC (rev 166974)
@@ -1422,7 +1422,7 @@
     # cURL 7.34.0 has a bug that prevents authentication with opensource.apple.com (and other things using SSL3).
     my $curlVer = `curl --version | grep "curl"`;
     chomp($curlVer);
-    if (!$? and $curlVer =~ /libcurl\/7\.33\.0/) {
+    if (!$? and $curlVer =~ /libcurl\/7\.34\.0/) {
         print "cURL version 7.34.0 has a bug that prevents authentication with SSL v2 or v3.\n";
         print "cURL 7.33.0 is known to work. The cURL projects is preparing an update to\n";
         print "correct this problem.\n\n";
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to