]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - API/WebKitAvailability.h
JavaScriptCore-7601.1.46.3.tar.gz
[apple/javascriptcore.git] / API / WebKitAvailability.h
index 24695ed9a8bec99daf204f0310264709f6f693bd..250d4108e930d5dd4c01a9e8e39a9f675ad4ed9e 100644 (file)
 #include <AvailabilityMacros.h>
 #include <CoreFoundation/CoreFoundation.h>
 
-#if !TARGET_OS_IPHONE && __MAC_OS_X_VERSION_MIN_REQUIRED <= 1090
+#if !TARGET_OS_IPHONE && __MAC_OS_X_VERSION_MIN_REQUIRED < 101100
 /* To support availability macros that mention newer OS X versions when building on older OS X versions,
    we provide our own definitions of the underlying macros that the availability macros expand to. We're
    free to expand the macros as no-ops since frameworks built on older OS X versions only ship bundled with
    an application rather than as part of the system.
 */
 
-#ifndef __NSi_10_10
-#define __NSi_10_10 introduced=10.0
+#ifndef __NSi_10_10 // Building from trunk rather than SDK.
+#define __NSi_10_10 introduced=10.0 // Use 10.0 to indicate that everything is available.
+#endif
+
+#ifndef __NSi_10_11 // Building from trunk rather than SDK.
+#define __NSi_10_11 introduced=10.0 // Use 10.0 to indicate that everything is available.
 #endif
 
 #ifndef __AVAILABILITY_INTERNAL__MAC_10_9
@@ -58,7 +62,7 @@
 #define AVAILABLE_MAC_OS_X_VERSION_10_10_AND_LATER
 #endif
 
-#endif /* __MAC_OS_X_VERSION_MIN_REQUIRED <= 1090 */
+#endif /* __MAC_OS_X_VERSION_MIN_REQUIRED <= 101100 */
 
 #else
 #define CF_AVAILABLE(_mac, _ios)