Title: [213569] trunk/Source/WebKit2
Revision
213569
Author
[email protected]
Date
2017-03-07 23:52:12 -0800 (Tue, 07 Mar 2017)

Log Message

WebKit should not export dyld install name hints on watchOS and tvOS
https://bugs.webkit.org/show_bug.cgi?id=169342

Reviewed by Dan Bernstein.

* Shared/API/Cocoa/WebKit.m:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (213568 => 213569)


--- trunk/Source/WebKit2/ChangeLog	2017-03-08 07:32:49 UTC (rev 213568)
+++ trunk/Source/WebKit2/ChangeLog	2017-03-08 07:52:12 UTC (rev 213569)
@@ -1,3 +1,12 @@
+2017-03-08  Alexey Proskuryakov  <[email protected]>
+
+        WebKit should not export dyld install name hints on watchOS and tvOS
+        https://bugs.webkit.org/show_bug.cgi?id=169342
+
+        Reviewed by Dan Bernstein.
+
+        * Shared/API/Cocoa/WebKit.m:
+
 2017-03-07  Simon Fraser  <[email protected]>
 
         Have fixedPositionCreatesStackingContext be on by default everywhere

Modified: trunk/Source/WebKit2/Shared/API/Cocoa/WebKit.m (213568 => 213569)


--- trunk/Source/WebKit2/Shared/API/Cocoa/WebKit.m	2017-03-08 07:32:49 UTC (rev 213568)
+++ trunk/Source/WebKit2/Shared/API/Cocoa/WebKit.m	2017-03-08 07:52:12 UTC (rev 213569)
@@ -25,7 +25,7 @@
 
 #import "config.h"
 
-#if PLATFORM(IOS)
+#if PLATFORM(IOS) && !PLATFORM(WATCHOS) && !PLATFORM(APPLETV)
 
 #define DEFINE_INSTALL_NAME(major, minor) \
     extern __attribute__((visibility ("default"))) const char install_name_ ##major## _ ##minor __asm("$ld$install_name$os" #major "." #minor "$/System/Library/PrivateFrameworks/WebKit.framework/WebKit"); \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to