Title: [187075] branches/safari-601.1-branch/Source/WebCore
Revision
187075
Author
matthew_han...@apple.com
Date
2015-07-20 21:37:46 -0700 (Mon, 20 Jul 2015)

Log Message

Merge r186990. rdar://problem/21643094

Modified Paths

Diff

Modified: branches/safari-601.1-branch/Source/WebCore/ChangeLog (187074 => 187075)


--- branches/safari-601.1-branch/Source/WebCore/ChangeLog	2015-07-21 04:37:43 UTC (rev 187074)
+++ branches/safari-601.1-branch/Source/WebCore/ChangeLog	2015-07-21 04:37:46 UTC (rev 187075)
@@ -1,5 +1,19 @@
 2015-07-20  Matthew Hanson  <matthew_han...@apple.com>
 
+        Merge r186990. rdar://problem/21643094
+
+    2015-07-18  David Kilzer  <ddkil...@apple.com>
+
+            REGRESSION (r186976): Windows build broke due to missing definition of M_PI
+
+            Attempt to fix the following build failure:
+
+                PathUtilities.cpp(182): error C2065: 'M_PI' : undeclared identifier [...\Source\WebCore\WebCore.vcxproj\WebCore.vcxproj]
+
+            * platform/graphics/PathUtilities.cpp: Include <wtf/MathExtras.h>.
+
+2015-07-20  Matthew Hanson  <matthew_han...@apple.com>
+
         Merge r186982. rdar://problem/21567820
 
     2015-07-17  Andy Estes  <aes...@apple.com>

Modified: branches/safari-601.1-branch/Source/WebCore/platform/graphics/PathUtilities.cpp (187074 => 187075)


--- branches/safari-601.1-branch/Source/WebCore/platform/graphics/PathUtilities.cpp	2015-07-21 04:37:43 UTC (rev 187074)
+++ branches/safari-601.1-branch/Source/WebCore/platform/graphics/PathUtilities.cpp	2015-07-21 04:37:46 UTC (rev 187075)
@@ -31,6 +31,7 @@
 #include "FloatRect.h"
 #include "GeometryUtilities.h"
 #include <math.h>
+#include <wtf/MathExtras.h>
 
 namespace WebCore {
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to