Title: [259030] trunk/Source/WebKit
Revision
259030
Author
timothy_hor...@apple.com
Date
2020-03-25 20:26:41 -0700 (Wed, 25 Mar 2020)

Log Message

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

* Platform/spi/ios/UIKitSPI.h:
Address post-landing review comment; use SDK conditionals, not deployment
target conditionals, since SPI headers are mimicing SDK content.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (259029 => 259030)


--- trunk/Source/WebKit/ChangeLog	2020-03-26 02:24:29 UTC (rev 259029)
+++ trunk/Source/WebKit/ChangeLog	2020-03-26 03:26:41 UTC (rev 259030)
@@ -1,3 +1,12 @@
+2020-03-25  Timothy Horton  <timothy_hor...@apple.com>
+
+        Unable to build WebKit with iOS 13.4 SDK
+        https://bugs.webkit.org/show_bug.cgi?id=209317
+
+        * Platform/spi/ios/UIKitSPI.h:
+        Address post-landing review comment; use SDK conditionals, not deployment
+        target conditionals, since SPI headers are mimicing SDK content.
+
 2020-03-25  Ryosuke Niwa  <rn...@webkit.org>
 
         Mini browser immediately hit an assertion in debug build

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


--- trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h	2020-03-26 02:24:29 UTC (rev 259029)
+++ trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h	2020-03-26 03:26:41 UTC (rev 259030)
@@ -230,7 +230,7 @@
     kUIKeyboardInputPreProcessed           = 1 << 7,
 } UIKeyboardInputFlags;
 
-#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED < 130400
+#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MAX_ALLOWED < 130400
 typedef NS_OPTIONS(NSInteger, UIEventButtonMask) {
     UIEventButtonMaskPrimary = 1 << 0,
     UIEventButtonMaskSecondary = 1 << 1,
@@ -381,7 +381,7 @@
     UIScrollViewIndicatorInsetAdjustmentNever
 };
 
-#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED < 130400
+#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MAX_ALLOWED < 130400
 typedef enum {
     UIAxisNeither = 0,
     UIAxisHorizontal = 1 << 0,
@@ -415,7 +415,7 @@
 @end
 
 @interface UIGestureRecognizer ()
-#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED < 130400
+#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MAX_ALLOWED < 130400
 @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