Title: [259133] trunk/Source/WebKit
Revision
259133
Author
timothy_hor...@apple.com
Date
2020-03-27 12:43:36 -0700 (Fri, 27 Mar 2020)

Log Message

Unable to build WebKit with iOS 13.4 SDK
https://bugs.webkit.org/show_bug.cgi?id=209317

Reviewed by Dean Jackson.

* Platform/spi/ios/UIKitSPI.h:
One more attempt. __IPHONE_OS_VERSION_MAX_ALLOWED is inaccurate.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (259132 => 259133)


--- trunk/Source/WebKit/ChangeLog	2020-03-27 19:12:03 UTC (rev 259132)
+++ trunk/Source/WebKit/ChangeLog	2020-03-27 19:43:36 UTC (rev 259133)
@@ -1,3 +1,13 @@
+2020-03-27  Tim Horton  <timothy_hor...@apple.com>
+
+        Unable to build WebKit with iOS 13.4 SDK
+        https://bugs.webkit.org/show_bug.cgi?id=209317
+
+        Reviewed by Dean Jackson.
+
+        * Platform/spi/ios/UIKitSPI.h:
+        One more attempt. __IPHONE_OS_VERSION_MAX_ALLOWED is inaccurate.
+
 2020-03-27  Daniel Bates  <daba...@apple.com>
 
         Use -_hasFocusedElement in -_didUpdateInputMode

Modified: trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h (259132 => 259133)


--- trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h	2020-03-27 19:12:03 UTC (rev 259132)
+++ trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h	2020-03-27 19:43:36 UTC (rev 259133)
@@ -231,7 +231,7 @@
     kUIKeyboardInputPreProcessed           = 1 << 7,
 } UIKeyboardInputFlags;
 
-#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MAX_ALLOWED < 130400
+#if PLATFORM(IOS) && !defined(__IPHONE_13_4)
 typedef NS_OPTIONS(NSInteger, UIEventButtonMask) {
     UIEventButtonMaskPrimary = 1 << 0,
     UIEventButtonMaskSecondary = 1 << 1,
@@ -382,7 +382,7 @@
     UIScrollViewIndicatorInsetAdjustmentNever
 };
 
-#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MAX_ALLOWED < 130400
+#if PLATFORM(IOS) && !defined(__IPHONE_13_4)
 typedef enum {
     UIAxisNeither = 0,
     UIAxisHorizontal = 1 << 0,
@@ -416,7 +416,7 @@
 @end
 
 @interface UIGestureRecognizer ()
-#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MAX_ALLOWED < 130400
+#if PLATFORM(IOS) && !defined(__IPHONE_13_4)
 @property (nonatomic, readonly, getter=_modifierFlags) UIKeyModifierFlags modifierFlags;
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to