Title: [170237] trunk/Source/WebKit2
Revision
170237
Author
[email protected]
Date
2014-06-21 07:43:35 -0700 (Sat, 21 Jun 2014)

Log Message

Commit queue has been failing due to a build failure in WKFoundation.h
https://bugs.webkit.org/show_bug.cgi?id=134152

Patch by Ryosuke Niwa <[email protected]> on 2014-06-21
Reviewed by Csaba Osztrogonác.
Landed by Brady Eidson.

The build failure was caused by WKFoundation.h erroneously redefining
NSURLSessionAuthChallengeDisposition even when building with 10.9 SDK.

The availability of this type depends on the version of SDK,
not the target operating system.

* Shared/API/Cocoa/WKFoundation.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (170236 => 170237)


--- trunk/Source/WebKit2/ChangeLog	2014-06-21 08:53:20 UTC (rev 170236)
+++ trunk/Source/WebKit2/ChangeLog	2014-06-21 14:43:35 UTC (rev 170237)
@@ -1,3 +1,19 @@
+2014-06-21  Ryosuke Niwa  <[email protected]>
+
+        Commit queue has been failing due to a build failure in WKFoundation.h
+        https://bugs.webkit.org/show_bug.cgi?id=134152
+
+        Reviewed by Csaba Osztrogonác.
+        Landed by Brady Eidson.
+
+        The build failure was caused by WKFoundation.h erroneously redefining
+        NSURLSessionAuthChallengeDisposition even when building with 10.9 SDK.
+
+        The availability of this type depends on the version of SDK,
+        not the target operating system.
+
+        * Shared/API/Cocoa/WKFoundation.h:
+
 2014-06-21  Eva Balazsfalvi  <[email protected]>
 
         Removing PAGE_VISIBILITY_API compile guard.

Modified: trunk/Source/WebKit2/Shared/API/Cocoa/WKFoundation.h (170236 => 170237)


--- trunk/Source/WebKit2/Shared/API/Cocoa/WKFoundation.h	2014-06-21 08:53:20 UTC (rev 170236)
+++ trunk/Source/WebKit2/Shared/API/Cocoa/WKFoundation.h	2014-06-21 14:43:35 UTC (rev 170237)
@@ -54,7 +54,7 @@
 #import <Foundation/Foundation.h>
 typedef NSUInteger NSEventModifierFlags;
 
-#if __MAC_OS_X_VERSION_MIN_REQUIRED < 1090
+#if __MAC_OS_X_VERSION_MAX_ALLOWED < 1090
 typedef NSInteger NSURLSessionAuthChallengeDisposition;
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to