Title: [202400] trunk/Source/WTF
Revision
202400
Author
[email protected]
Date
2016-06-23 15:52:00 -0700 (Thu, 23 Jun 2016)

Log Message

REGRESSION (r202380): iOS 9.x internal builds are broken

Follow-up fix for: Enable window.open() for existing versions of Secret Society
<https://webkit.org/b/159049>
<rdar://problem/26528349>

* wtf/spi/darwin/dyldSPI.h: Define DYLD_IOS_VERSION_10_0 when
building on internal SDKs older than iOS 10.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (202399 => 202400)


--- trunk/Source/WTF/ChangeLog	2016-06-23 22:46:28 UTC (rev 202399)
+++ trunk/Source/WTF/ChangeLog	2016-06-23 22:52:00 UTC (rev 202400)
@@ -1,3 +1,14 @@
+2016-06-23  David Kilzer  <[email protected]>
+
+        REGRESSION (r202380): iOS 9.x internal builds are broken
+
+        Follow-up fix for: Enable window.open() for existing versions of Secret Society
+        <https://webkit.org/b/159049>
+        <rdar://problem/26528349>
+
+        * wtf/spi/darwin/dyldSPI.h: Define DYLD_IOS_VERSION_10_0 when
+        building on internal SDKs older than iOS 10.
+
 2016-06-23  John Wilander  <[email protected]>
 
         Enable window.open() for existing versions of Secret Society

Modified: trunk/Source/WTF/wtf/spi/darwin/dyldSPI.h (202399 => 202400)


--- trunk/Source/WTF/wtf/spi/darwin/dyldSPI.h	2016-06-23 22:46:28 UTC (rev 202399)
+++ trunk/Source/WTF/wtf/spi/darwin/dyldSPI.h	2016-06-23 22:52:00 UTC (rev 202400)
@@ -29,6 +29,10 @@
 
 #include <mach-o/dyld_priv.h>
 
+#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED < 100000
+#define DYLD_IOS_VERSION_10_0 0x000A0000
+#endif
+
 #else
 
 #define DYLD_IOS_VERSION_3_0 0x00030000
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to