Changeset 249340 in webkit


Ignore:
Timestamp:
Aug 30, 2019, 1:18:48 PM (6 years ago)
Author:
achristensen@apple.com
Message:

Fix non-iOS iOS-family and catalyst builds after r249019
https://bugs.webkit.org/show_bug.cgi?id=200945

  • wtf/Platform.h:

State that they have tls_protocol_version_t

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r249336 r249340  
     12019-08-30  Alex Christensen  <achristensen@webkit.org>
     2
     3        Fix non-iOS iOS-family and catalyst builds after r249019
     4        https://bugs.webkit.org/show_bug.cgi?id=200945
     5
     6        * wtf/Platform.h:
     7        State that they have tls_protocol_version_t
     8
    192019-08-30  Simon Fraser  <simon.fraser@apple.com>
    210
  • trunk/Source/WTF/wtf/Platform.h

    r249304 r249340  
    16111611#endif
    16121612
    1613 #if (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 130000 || PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101500)
     1613#if (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 130000 || PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101500) || PLATFORM(WATCHOS) || PLATFORM(APPLETV) || PLATFORM(MACCATALYST)
    16141614#define HAVE_TLS_PROTOCOL_VERSION_T 1
    16151615#endif
Note: See TracChangeset for help on using the changeset viewer.