Source/WTF/ChangeLog

 12019-10-09 Keith Rollin <krollin@apple.com>
 2
 3 Remove some support for < iOS 13
 4 https://bugs.webkit.org/show_bug.cgi?id=202371
 5 <rdar://problem/55853960>
 6
 7 Reviewed by Youenn Fablet.
 8
 9 Remove some support for iOS versions less than 13.0.
 10
 11 Update conditionals that reference __IPHONE_OS_VERSION_MIN_REQUIRED
 12 and __IPHONE_OS_VERSION_MAX_ALLOWED, assuming that they both have
 13 values >= 130000. This means that expressions like
 14 "__IPHONE_OS_VERSION_MIN_REQUIRED < 101300" are always False and
 15 "__IPHONE_OS_VERSION_MIN_REQUIRED >= 101300" are always True.
 16
 17 This removal is part of a series of patches effecting the removal of
 18 dead code for old versions of iOS. This particular pass involves
 19 changes in which Dean Jackson was involved. These changes are isolated
 20 from other similar changes in order to facilitate the reviewing
 21 process.
 22
 23 * wtf/FeatureDefines.h:
 24 * wtf/Platform.h:
 25
1262019-10-09 Daniel Bates <dabates@apple.com>
227
328 Add support for CompactPointerTuple<..., OptionSet<...>>

Source/WTF/wtf/FeatureDefines.h

@@the public iOS SDK. See <https://webkit.org/b/179167>. */
179179#endif
180180#endif
181181
182 #if PLATFORM(MACCATALYST) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 130000)
 182#if PLATFORM(MACCATALYST) || PLATFORM(IOS)
183183#if !defined(USE_UIKIT_KEYBOARD_ADDITIONS)
184184#define USE_UIKIT_KEYBOARD_ADDITIONS 1
185185#endif

Source/WTF/wtf/Platform.h

14441444#define HAVE_CG_FONT_RENDERING_GET_FONT_SMOOTHING_DISABLED 1
14451445#endif
14461446
1447 #if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101500) || (PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 130000)
 1447#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101500) || PLATFORM(IOS_FAMILY)
14481448#define HAVE_CA_WHERE_ADDITIVE_TRANSFORMS_ARE_REVERSED 1
14491449#endif
14501450

16151615#define HAVE_TLS_PROTOCOL_VERSION_T 1
16161616#endif
16171617
1618 #if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 130000
 1618#if PLATFORM(IOS) || PLATFORM(MACCATALYST)
16191619#define USE_UICONTEXTMENU 1
16201620#endif
16211621