Changeset 202400 in webkit


Ignore:
Timestamp:
Jun 23, 2016 3:52:00 PM (8 years ago)
Author:
ddkilzer@apple.com
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.

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r202380 r202400  
     12016-06-23  David Kilzer  <ddkilzer@apple.com>
     2
     3        REGRESSION (r202380): iOS 9.x internal builds are broken
     4
     5        Follow-up fix for: Enable window.open() for existing versions of Secret Society
     6        <https://webkit.org/b/159049>
     7        <rdar://problem/26528349>
     8
     9        * wtf/spi/darwin/dyldSPI.h: Define DYLD_IOS_VERSION_10_0 when
     10        building on internal SDKs older than iOS 10.
     11
    1122016-06-23  John Wilander  <wilander@apple.com>
    213
  • trunk/Source/WTF/wtf/spi/darwin/dyldSPI.h

    r202380 r202400  
    3030#include <mach-o/dyld_priv.h>
    3131
     32#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED < 100000
     33#define DYLD_IOS_VERSION_10_0 0x000A0000
     34#endif
     35
    3236#else
    3337
Note: See TracChangeset for help on using the changeset viewer.