Title: [111812] trunk/Tools
Revision
111812
Author
[email protected]
Date
2012-03-22 19:30:20 -0700 (Thu, 22 Mar 2012)

Log Message

Unreviewed build fix. Add knowledge of the WTF project to
the autotools build system scripts so that build-jsc works
correctly for GTK+.

* Scripts/webkitdirs.pm:
(buildAutotoolsProject): handle the WTF project, build the
libWTF.la target.
(buildGtkProject): add WTF to the list of supported projects.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (111811 => 111812)


--- trunk/Tools/ChangeLog	2012-03-23 02:26:12 UTC (rev 111811)
+++ trunk/Tools/ChangeLog	2012-03-23 02:30:20 UTC (rev 111812)
@@ -1,3 +1,14 @@
+2012-03-22  Gustavo Noronha Silva  <[email protected]>
+
+        Unreviewed build fix. Add knowledge of the WTF project to
+        the autotools build system scripts so that build-jsc works
+        correctly for GTK+.
+
+        * Scripts/webkitdirs.pm:
+        (buildAutotoolsProject): handle the WTF project, build the
+        libWTF.la target.
+        (buildGtkProject): add WTF to the list of supported projects.
+
 2012-03-22  Eric Seidel  <[email protected]>
 
         Make svn-apply re-write _javascript_Core/wtf to WTF/wtf

Modified: trunk/Tools/Scripts/webkitdirs.pm (111811 => 111812)


--- trunk/Tools/Scripts/webkitdirs.pm	2012-03-23 02:26:12 UTC (rev 111811)
+++ trunk/Tools/Scripts/webkitdirs.pm	2012-03-23 02:30:20 UTC (rev 111812)
@@ -1924,6 +1924,8 @@
     # WebKit is the default target, so we don't need to specify anything.
     if ($project eq "_javascript_Core") {
         $makeArgs .= " jsc";
+    } elsif ($project eq "WTF") {
+        $makeArgs .= " libWTF.la";
     }
 
     $prefix = $ENV{"WebKitInstallationPrefix"} if !defined($prefix);
@@ -2284,8 +2286,8 @@
 {
     my ($project, $clean, @buildArgs) = @_;
 
-    if ($project ne "WebKit" and $project ne "_javascript_Core") {
-        die "Unsupported project: $project. Supported projects: WebKit, _javascript_Core\n";
+    if ($project ne "WebKit" and $project ne "_javascript_Core" and $project ne "WTF") {
+        die "Unsupported project: $project. Supported projects: WebKit, _javascript_Core, WTF\n";
     }
 
     return buildAutotoolsProject($project, $clean, @buildArgs);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to