Title: [195617] trunk/Tools
- Revision
- 195617
- Author
- [email protected]
- Date
- 2016-01-26 13:38:21 -0800 (Tue, 26 Jan 2016)
Log Message
[webkitdirs] Removed check for bison, gperf, and flex.
https://bugs.webkit.org/show_bug.cgi?id=153496
Patch by Konstantin Tokarev <[email protected]> on 2016-01-26
Reviewed by Alex Christensen.
This prerequisites are checked in WebKitCommon.cmake and don't
have to be in $PATH.
* Scripts/webkitdirs.pm:
(checkRequiredSystemConfig):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (195616 => 195617)
--- trunk/Tools/ChangeLog 2016-01-26 21:22:16 UTC (rev 195616)
+++ trunk/Tools/ChangeLog 2016-01-26 21:38:21 UTC (rev 195617)
@@ -1,5 +1,18 @@
2016-01-26 Konstantin Tokarev <[email protected]>
+ [webkitdirs] Removed check for bison, gperf, and flex.
+ https://bugs.webkit.org/show_bug.cgi?id=153496
+
+ Reviewed by Alex Christensen.
+
+ This prerequisites are checked in WebKitCommon.cmake and don't
+ have to be in $PATH.
+
+ * Scripts/webkitdirs.pm:
+ (checkRequiredSystemConfig):
+
+2016-01-26 Konstantin Tokarev <[email protected]>
+
[webkitdirs] isCMakeBuild should be true by default
https://bugs.webkit.org/show_bug.cgi?id=153497
Modified: trunk/Tools/Scripts/webkitdirs.pm (195616 => 195617)
--- trunk/Tools/Scripts/webkitdirs.pm 2016-01-26 21:22:16 UTC (rev 195616)
+++ trunk/Tools/Scripts/webkitdirs.pm 2016-01-26 21:38:21 UTC (rev 195617)
@@ -1500,20 +1500,7 @@
print "most likely fail. The latest Xcode is available from the App Store.\n";
print "*************************************************************\n";
}
- } elsif (isGtk() or isEfl() or isWindows() or isCygwin()) {
- my @cmds = qw(bison gperf flex);
- my @missing = ();
- my $oldPath = $ENV{PATH};
- foreach my $cmd (@cmds) {
- push @missing, $cmd if not commandExists($cmd);
- }
-
- if (@missing) {
- my $list = join ", ", @missing;
- die "ERROR: $list missing but required to build WebKit.\n";
- }
}
- # Win32 and other platforms may want to check for minimum config
}
sub determineWindowsSourceDir()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes