Title: [222892] trunk/Source/WebCore
Revision
222892
Author
[email protected]
Date
2017-10-04 19:57:01 -0700 (Wed, 04 Oct 2017)

Log Message

Link WebCore against CFNetwork in the CMake build
https://bugs.webkit.org/show_bug.cgi?id=177910

Reviewed by Ryosuke Niwa.

* PlatformMac.cmake:
This is enough to get WebKit1 MiniBrowser running; otherwise, we
crash trying to access the public suffix list.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (222891 => 222892)


--- trunk/Source/WebCore/ChangeLog	2017-10-05 02:47:59 UTC (rev 222891)
+++ trunk/Source/WebCore/ChangeLog	2017-10-05 02:57:01 UTC (rev 222892)
@@ -1,3 +1,14 @@
+2017-10-04  Tim Horton  <[email protected]>
+
+        Link WebCore against CFNetwork in the CMake build
+        https://bugs.webkit.org/show_bug.cgi?id=177910
+
+        Reviewed by Ryosuke Niwa.
+
+        * PlatformMac.cmake:
+        This is enough to get WebKit1 MiniBrowser running; otherwise, we
+        crash trying to access the public suffix list.
+
 2017-10-04  Daniel Bates  <[email protected]>
 
         Have TextDecorationPainter hold an OptionSet of decorations

Modified: trunk/Source/WebCore/PlatformMac.cmake (222891 => 222892)


--- trunk/Source/WebCore/PlatformMac.cmake	2017-10-05 02:47:59 UTC (rev 222891)
+++ trunk/Source/WebCore/PlatformMac.cmake	2017-10-05 02:57:01 UTC (rev 222892)
@@ -12,6 +12,7 @@
 find_library(AUDIOTOOLBOX_LIBRARY AudioToolbox)
 find_library(AUDIOUNIT_LIBRARY AudioUnit)
 find_library(CARBON_LIBRARY Carbon)
+find_library(CFNETWORK_LIBRARY CFNetwork)
 find_library(COCOA_LIBRARY Cocoa)
 find_library(COREAUDIO_LIBRARY CoreAudio)
 find_library(CORESERVICES_LIBRARY CoreServices)
@@ -34,6 +35,7 @@
     ${AUDIOUNIT_LIBRARY}
     ${AVFOUNDATION_LIBRARY}
     ${CARBON_LIBRARY}
+    ${CFNETWORK_LIBRARY}
     ${COCOA_LIBRARY}
     ${COREAUDIO_LIBRARY}
     ${CORESERVICES_LIBRARY}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to