Title: [157622] trunk/Source/WebKit2
Revision
157622
Author
[email protected]
Date
2013-10-17 21:41:49 -0700 (Thu, 17 Oct 2013)

Log Message

Fixed a typo in the definition of WK_API_ENABLED.

* Shared/API/Cocoa/WKFoundation.h: It’s 101000, not 10100.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (157621 => 157622)


--- trunk/Source/WebKit2/ChangeLog	2013-10-18 04:32:26 UTC (rev 157621)
+++ trunk/Source/WebKit2/ChangeLog	2013-10-18 04:41:49 UTC (rev 157622)
@@ -1,5 +1,11 @@
 2013-10-17  Dan Bernstein  <[email protected]>
 
+        Fixed a typo in the definition of WK_API_ENABLED.
+
+        * Shared/API/Cocoa/WKFoundation.h: It’s 101000, not 10100.
+
+2013-10-17  Dan Bernstein  <[email protected]>
+
         Add and deploy WK_API_ENABLED guards
         https://bugs.webkit.org/show_bug.cgi?id=123008
 

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


--- trunk/Source/WebKit2/Shared/API/Cocoa/WKFoundation.h	2013-10-18 04:32:26 UTC (rev 157621)
+++ trunk/Source/WebKit2/Shared/API/Cocoa/WKFoundation.h	2013-10-18 04:41:49 UTC (rev 157622)
@@ -28,5 +28,5 @@
 #if TARGET_OS_IPHONE
 #define WK_API_ENABLED 1
 #else
-#define WK_API_ENABLED (defined(__clang__) && defined(__APPLE__) && defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 10100 && !defined(__i386__))
+#define WK_API_ENABLED (defined(__clang__) && defined(__APPLE__) && defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000 && !defined(__i386__))
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to