Title: [209221] trunk/Source/WebCore
Revision
209221
Author
bb...@apple.com
Date
2016-12-01 16:47:45 -0800 (Thu, 01 Dec 2016)

Log Message

Fix the Windows Release build after r209198
https://bugs.webkit.org/show_bug.cgi?id=165285

Unreviewed build fix.

* Modules/webdriver/NavigatorWebDriver.cpp:
Brute force include all the inlines to work around a JSC issue.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (209220 => 209221)


--- trunk/Source/WebCore/ChangeLog	2016-12-02 00:24:17 UTC (rev 209220)
+++ trunk/Source/WebCore/ChangeLog	2016-12-02 00:47:45 UTC (rev 209221)
@@ -1,3 +1,13 @@
+2016-12-01  Brian Burg  <bb...@apple.com>
+
+        Fix the Windows Release build after r209198
+        https://bugs.webkit.org/show_bug.cgi?id=165285
+
+        Unreviewed build fix.
+
+        * Modules/webdriver/NavigatorWebDriver.cpp:
+        Brute force include all the inlines to work around a JSC issue.
+
 2016-12-01  Dave Hyatt  <hy...@apple.com>
 
         [CSS Parser] Only allow a single font-family in @font-face

Modified: trunk/Source/WebCore/Modules/webdriver/NavigatorWebDriver.cpp (209220 => 209221)


--- trunk/Source/WebCore/Modules/webdriver/NavigatorWebDriver.cpp	2016-12-02 00:24:17 UTC (rev 209220)
+++ trunk/Source/WebCore/Modules/webdriver/NavigatorWebDriver.cpp	2016-12-02 00:47:45 UTC (rev 209221)
@@ -31,6 +31,9 @@
 #include "Navigator.h"
 #include "Page.h"
 
+// FIXME: somewhere in JSC, we are not including proper inlines. It causes linker trouble way up here.
+#include <_javascript_Core/JSCInlines.h>
+
 using namespace JSC;
 
 namespace WebCore {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to