Title: [195464] trunk/Source/_javascript_Core
Revision
195464
Author
achristen...@apple.com
Date
2016-01-22 11:44:54 -0800 (Fri, 22 Jan 2016)

Log Message

Fix internal Windows build
https://bugs.webkit.org/show_bug.cgi?id=153364
<rdar://problem/24296328>

Reviewed by Brent Fulgham.

* PlatformWin.cmake:
The internal build does not build _javascript_Core with WTF, so it does not automatically link to winmm.lib
like it does when everything is built together.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (195463 => 195464)


--- trunk/Source/_javascript_Core/ChangeLog	2016-01-22 19:31:22 UTC (rev 195463)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-01-22 19:44:54 UTC (rev 195464)
@@ -1,3 +1,15 @@
+2016-01-22  Alex Christensen  <achristen...@webkit.org>
+
+        Fix internal Windows build
+        https://bugs.webkit.org/show_bug.cgi?id=153364
+        <rdar://problem/24296328>
+
+        Reviewed by Brent Fulgham.
+
+        * PlatformWin.cmake:
+        The internal build does not build _javascript_Core with WTF, so it does not automatically link to winmm.lib
+        like it does when everything is built together.
+
 2016-01-22  Keith Miller  <keith_mil...@apple.com>
 
         Equivalence PropertyCondition needs to check the offset it uses to load the value from is not invalidOffset

Modified: trunk/Source/_javascript_Core/PlatformWin.cmake (195463 => 195464)


--- trunk/Source/_javascript_Core/PlatformWin.cmake	2016-01-22 19:31:22 UTC (rev 195463)
+++ trunk/Source/_javascript_Core/PlatformWin.cmake	2016-01-22 19:44:54 UTC (rev 195464)
@@ -15,6 +15,7 @@
     list(APPEND _javascript_Core_LIBRARIES
         CoreFoundation${DEBUG_SUFFIX}
         ${ICU_LIBRARIES}
+        winmm
     )
 endif ()
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to