Title: [226900] trunk/Source/WebCore
Revision
226900
Author
commit-qu...@webkit.org
Date
2018-01-12 10:52:26 -0800 (Fri, 12 Jan 2018)

Log Message

[WinCairo][CMake] Use ${CURL_LIBRARY} instead of specifying the library name libcurl_imp explicitly
https://bugs.webkit.org/show_bug.cgi?id=181578

Patch by Fujii Hironori <hironori.fu...@sony.com> on 2018-01-12
Reviewed by Alex Christensen.

vcpkg has libcurl.lib, not libcurl_imp.lib.

No new tests because no behavior change.

* PlatformWinCairo.cmake: Link ${CURL_LIBRARY} instead of libcurl_imp.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (226899 => 226900)


--- trunk/Source/WebCore/ChangeLog	2018-01-12 18:49:11 UTC (rev 226899)
+++ trunk/Source/WebCore/ChangeLog	2018-01-12 18:52:26 UTC (rev 226900)
@@ -1,3 +1,16 @@
+2018-01-12  Fujii Hironori  <hironori.fu...@sony.com>
+
+        [WinCairo][CMake] Use ${CURL_LIBRARY} instead of specifying the library name libcurl_imp explicitly
+        https://bugs.webkit.org/show_bug.cgi?id=181578
+
+        Reviewed by Alex Christensen.
+
+        vcpkg has libcurl.lib, not libcurl_imp.lib.
+
+        No new tests because no behavior change.
+
+        * PlatformWinCairo.cmake: Link ${CURL_LIBRARY} instead of libcurl_imp.
+
 2018-01-12  Jer Noble  <jer.no...@apple.com>
 
         WebGL video texture black in Safari 11.0.2 and wrong colored in Safari Preview 11.1

Modified: trunk/Source/WebCore/PlatformWinCairo.cmake (226899 => 226900)


--- trunk/Source/WebCore/PlatformWinCairo.cmake	2018-01-12 18:49:11 UTC (rev 226899)
+++ trunk/Source/WebCore/PlatformWinCairo.cmake	2018-01-12 18:52:26 UTC (rev 226900)
@@ -35,12 +35,12 @@
 )
 
 list(APPEND WebCore_LIBRARIES
+    ${CURL_LIBRARY}
     ${DirectX_LIBRARIES}
     CFLite
     comctl32
     crypt32
     iphlpapi
-    libcurl_imp
     rpcrt4
     shlwapi
     usp10
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to