Title: [212506] branches/safari-603-branch/Source

Diff

Modified: branches/safari-603-branch/Source/WTF/ChangeLog (212505 => 212506)


--- branches/safari-603-branch/Source/WTF/ChangeLog	2017-02-17 00:57:03 UTC (rev 212505)
+++ branches/safari-603-branch/Source/WTF/ChangeLog	2017-02-17 00:57:05 UTC (rev 212506)
@@ -1,5 +1,18 @@
 2017-02-16  Matthew Hanson  <matthew_han...@apple.com>
 
+        Merge r212256. rdar://problem/30313696
+
+    2017-02-13  Brady Eidson  <beid...@apple.com>
+
+            Followup to: Replace all WebKit Library Version checks in WK2 with SDK version checks.
+            https://bugs.webkit.org/show_bug.cgi?id=168124
+
+            Reviewed by Geoffrey Garen.
+
+            * wtf/spi/darwin/dyldSPI.h:
+
+2017-02-16  Matthew Hanson  <matthew_han...@apple.com>
+
         Merge r212000. rdar://problem/30313696
 
     2017-02-09  Brady Eidson  <beid...@apple.com>

Modified: branches/safari-603-branch/Source/WTF/wtf/spi/darwin/dyldSPI.h (212505 => 212506)


--- branches/safari-603-branch/Source/WTF/wtf/spi/darwin/dyldSPI.h	2017-02-17 00:57:03 UTC (rev 212505)
+++ branches/safari-603-branch/Source/WTF/wtf/spi/darwin/dyldSPI.h	2017-02-17 00:57:05 UTC (rev 212506)
@@ -37,12 +37,12 @@
 #define DYLD_MACOSX_VERSION_10_12 0x000A0C00
 #endif
 
-#ifndef DYLD_IOS_VERSION_10_3
-#define DYLD_IOS_VERSION_10_3 0x000A0300
+#ifndef DYLD_IOS_VERSION_11_0
+#define DYLD_IOS_VERSION_11_0 0x000B0000
 #endif
 
-#ifndef DYLD_MACOSX_VERSION_10_12_4
-#define DYLD_MACOSX_VERSION_10_12_4 0x000A0C04
+#ifndef DYLD_MACOSX_VERSION_10_13
+#define DYLD_MACOSX_VERSION_10_13 0x000A0D00
 #endif
 
 #else
@@ -54,11 +54,11 @@
 #define DYLD_IOS_VERSION_7_0 0x00070000
 #define DYLD_IOS_VERSION_9_0 0x00090000
 #define DYLD_IOS_VERSION_10_0 0x000A0000
-#define DYLD_IOS_VERSION_10_3 0x000A0300
+#define DYLD_IOS_VERSION_11_0 0x000B0000
 
 #define DYLD_MACOSX_VERSION_10_11 0x000A0B00
 #define DYLD_MACOSX_VERSION_10_12 0x000A0C00
-#define DYLD_MACOSX_VERSION_10_12_4 0x000A0C04
+#define DYLD_MACOSX_VERSION_10_13 0x000A0D00
 
 #endif
 

Modified: branches/safari-603-branch/Source/WebKit2/ChangeLog (212505 => 212506)


--- branches/safari-603-branch/Source/WebKit2/ChangeLog	2017-02-17 00:57:03 UTC (rev 212505)
+++ branches/safari-603-branch/Source/WebKit2/ChangeLog	2017-02-17 00:57:05 UTC (rev 212506)
@@ -1,5 +1,18 @@
 2017-02-16  Matthew Hanson  <matthew_han...@apple.com>
 
+        Merge r212256. rdar://problem/30313696
+
+    2017-02-13  Brady Eidson  <beid...@apple.com>
+
+            Followup to: Replace all WebKit Library Version checks in WK2 with SDK version checks.
+            https://bugs.webkit.org/show_bug.cgi?id=168124
+
+            Reviewed by Geoffrey Garen.
+
+            * UIProcess/Cocoa/VersionChecks.h:
+
+2017-02-16  Matthew Hanson  <matthew_han...@apple.com>
+
         Merge r212134. rdar://problem/30313696
 
     2017-02-10  Brady Eidson  <beid...@apple.com>

Modified: branches/safari-603-branch/Source/WebKit2/UIProcess/Cocoa/VersionChecks.h (212505 => 212506)


--- branches/safari-603-branch/Source/WebKit2/UIProcess/Cocoa/VersionChecks.h	2017-02-17 00:57:03 UTC (rev 212505)
+++ branches/safari-603-branch/Source/WebKit2/UIProcess/Cocoa/VersionChecks.h	2017-02-17 00:57:05 UTC (rev 212506)
@@ -33,10 +33,10 @@
 #if PLATFORM(IOS)
     FirstWithNetworkCache = DYLD_IOS_VERSION_9_0,
     FirstWithMediaTypesRequiringUserActionForPlayback = DYLD_IOS_VERSION_10_0,
-    FirstWithExceptionsForDuplicateCompletionHandlerCalls = DYLD_IOS_VERSION_10_3,
+    FirstWithExceptionsForDuplicateCompletionHandlerCalls = DYLD_IOS_VERSION_11_0,
 #elif PLATFORM(MAC)
     FirstWithNetworkCache = DYLD_MACOSX_VERSION_10_11,
-    FirstWithExceptionsForDuplicateCompletionHandlerCalls = DYLD_MACOSX_VERSION_10_12_4,
+    FirstWithExceptionsForDuplicateCompletionHandlerCalls = DYLD_MACOSX_VERSION_10_13,
 #endif
 };
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to