Title: [195329] branches/safari-601.3.9.1-branch/Source/WebKit/win
Revision
195329
Author
[email protected]
Date
2016-01-19 17:05:29 -0800 (Tue, 19 Jan 2016)

Log Message

Merge patch for rdar://problem/23025615.

Modified Paths


Diff

Modified: branches/safari-601.3.9.1-branch/Source/WebKit/win/ChangeLog (195328 => 195329)


--- branches/safari-601.3.9.1-branch/Source/WebKit/win/ChangeLog	2016-01-20 01:03:45 UTC (rev 195328)
+++ branches/safari-601.3.9.1-branch/Source/WebKit/win/ChangeLog	2016-01-20 01:05:29 UTC (rev 195329)
@@ -2,6 +2,21 @@
 
         Merge patch for rdar://problem/23025615.
 
+    2015-10-09  Brent Fulgham  <[email protected]>
+
+            [Win] Load the proper library for _javascript_Core symbols
+            <rdar://problem/23025615>
+
+            Rubberstamped by Jer Noble.
+
+            * WebKitDLL.cpp:
+            (bindJavaScriptTrampoline): We need to use "_javascript_Core.dll",
+            not the LLVM library.
+
+2016-01-19  Babak Shafiei  <[email protected]>
+
+        Merge patch for rdar://problem/23025615.
+
     2015-09-10  Brent Fulgham  <[email protected]>
 
             [Win] Re-export a few symbols for backwards compatibility

Modified: branches/safari-601.3.9.1-branch/Source/WebKit/win/WebKitDLL.cpp (195328 => 195329)


--- branches/safari-601.3.9.1-branch/Source/WebKit/win/WebKitDLL.cpp	2016-01-20 01:03:45 UTC (rev 195328)
+++ branches/safari-601.3.9.1-branch/Source/WebKit/win/WebKitDLL.cpp	2016-01-20 01:05:29 UTC (rev 195329)
@@ -262,7 +262,7 @@
 
 void bindJavaScriptTrampoline()
 {
-    const wchar_t* libraryName = L"libllvmForJSC.dll";
+    const wchar_t* libraryName = L"_javascript_Core.dll";
 
     HMODULE library = ::LoadLibrary(libraryName);
     if (!library)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to