⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 249211 in webkit


Ignore:
Timestamp:
Aug 28, 2019, 12:19:41 PM (7 years ago)
Author:
dino@apple.com
Message:

GenerateTAPI WebKitLegacy.tbd fails on internal iOS Simulator builds
https://bugs.webkit.org/show_bug.cgi?id=201200

Reviewed by Simon Fraser.

We want to include Foundation/NSURLDownload.h if we're on
a newer iOS.

  • Misc/WebDownload.h:
Location:
trunk/Source/WebKitLegacy/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKitLegacy/mac/ChangeLog

    r249208 r249211  
     12019-08-28  Dean Jackson  <dino@apple.com>
     2
     3        GenerateTAPI WebKitLegacy.tbd fails on internal iOS Simulator builds
     4        https://bugs.webkit.org/show_bug.cgi?id=201200
     5
     6        Reviewed by Simon Fraser.
     7
     8        We want to include Foundation/NSURLDownload.h if we're on
     9        a newer iOS.
     10
     11        * Misc/WebDownload.h:
     12
    1132019-08-28  Keith Rollin  <krollin@apple.com>
    214
  • trunk/Source/WebKitLegacy/mac/Misc/WebDownload.h

    r245862 r249211  
    3535#if (defined TARGET_OS_IOSMAC && TARGET_OS_IOSMAC) || (defined(TARGET_OS_WATCH) && TARGET_OS_WATCH)
    3636#import <CFNetwork/CFNSURLConnection.h>
    37 #elif !TARGET_OS_IPHONE || (defined USE_APPLE_INTERNAL_SDK && USE_APPLE_INTERNAL_SDK)
     37#elif !TARGET_OS_IPHONE || (TARGET_OS_IPHONE && __IPHONE_OS_VERSION_MIN_REQUIRED >= 130000) || (defined(USE_APPLE_INTERNAL_SDK) && USE_APPLE_INTERNAL_SDK)
    3838#import <Foundation/NSURLDownload.h>
    3939#else
Note: See TracChangeset for help on using the changeset viewer.