Title: [151271] trunk/Tools
Revision
151271
Author
[email protected]
Date
2013-06-06 07:42:09 -0700 (Thu, 06 Jun 2013)

Log Message

[WinCairo] Fix build-webkit to build WinCairo under VS2010.
https://bugs.webkit.org/show_bug.cgi?id=117255

Patch by [email protected] <[email protected]> on 2013-06-06
Reviewed by Daniel Bates.

Need to update configuration names according to solution file.

* Scripts/webkitdirs.pm:
(determineConfiguration):
(determinePassedConfiguration):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (151270 => 151271)


--- trunk/Tools/ChangeLog	2013-06-06 14:41:13 UTC (rev 151270)
+++ trunk/Tools/ChangeLog	2013-06-06 14:42:09 UTC (rev 151271)
@@ -1,3 +1,16 @@
+2013-06-06  [email protected]  <[email protected]>
+
+        [WinCairo] Fix build-webkit to build WinCairo under VS2010.
+        https://bugs.webkit.org/show_bug.cgi?id=117255
+
+        Reviewed by Daniel Bates.
+
+        Need to update configuration names according to solution file.
+
+        * Scripts/webkitdirs.pm:
+        (determineConfiguration):
+        (determinePassedConfiguration):
+
 2013-06-06  Ryosuke Niwa  <[email protected]>
 
         Remove run-performance-tests

Modified: trunk/Tools/Scripts/webkitdirs.pm (151270 => 151271)


--- trunk/Tools/Scripts/webkitdirs.pm	2013-06-06 14:41:13 UTC (rev 151270)
+++ trunk/Tools/Scripts/webkitdirs.pm	2013-06-06 14:42:09 UTC (rev 151271)
@@ -282,8 +282,8 @@
     }
 
     if ($configuration && isWinCairo()) {
-        unless ($configuration =~ /_Cairo_CFLite$/) {
-            $configuration .= "_Cairo_CFLite";
+        unless ($configuration =~ /_WinCairo$/) {
+            $configuration .= "_WinCairo";
         }
     }
 }
@@ -619,19 +619,19 @@
         if ($opt =~ /^--debug$/i) {
             splice(@ARGV, $i, 1);
             $passedConfiguration = "Debug";
-            $passedConfiguration .= "_Cairo_CFLite" if (isWinCairo() && isCygwin());
+            $passedConfiguration .= "_WinCairo" if (isWinCairo() && isCygwin());
             return;
         }
         if ($opt =~ /^--release$/i) {
             splice(@ARGV, $i, 1);
             $passedConfiguration = "Release";
-            $passedConfiguration .= "_Cairo_CFLite" if (isWinCairo() && isCygwin());
+            $passedConfiguration .= "_WinCairo" if (isWinCairo() && isCygwin());
             return;
         }
         if ($opt =~ /^--profil(e|ing)$/i) {
             splice(@ARGV, $i, 1);
             $passedConfiguration = "Profiling";
-            $passedConfiguration .= "_Cairo_CFLite" if (isWinCairo() && isCygwin());
+            $passedConfiguration .= "_WinCairo" if (isWinCairo() && isCygwin());
             return;
         }
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to