Title: [102909] trunk/Source/WebKit2
- Revision
- 102909
- Author
- [email protected]
- Date
- 2011-12-15 02:06:22 -0800 (Thu, 15 Dec 2011)
Log Message
[Qt] r102849 broke the Qt build on Mac OS X.
https://bugs.webkit.org/show_bug.cgi?id=74594
Patch by Alexander Færøy <[email protected]> on 2011-12-15
Reviewed by Simon Hausmann.
The __APPLE__ macro is defined on all standard OS X compilers, which
leads to various CoreGraphics headers to be included in the Qt build.
* config.h:
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (102908 => 102909)
--- trunk/Source/WebKit2/ChangeLog 2011-12-15 09:59:23 UTC (rev 102908)
+++ trunk/Source/WebKit2/ChangeLog 2011-12-15 10:06:22 UTC (rev 102909)
@@ -1,3 +1,15 @@
+2011-12-15 Alexander Færøy <[email protected]>
+
+ [Qt] r102849 broke the Qt build on Mac OS X.
+ https://bugs.webkit.org/show_bug.cgi?id=74594
+
+ Reviewed by Simon Hausmann.
+
+ The __APPLE__ macro is defined on all standard OS X compilers, which
+ leads to various CoreGraphics headers to be included in the Qt build.
+
+ * config.h:
+
2011-12-14 Jing Zhao <[email protected]>
Opening two popup menus by dispatchEvent() makes problems.
Modified: trunk/Source/WebKit2/config.h (102908 => 102909)
--- trunk/Source/WebKit2/config.h 2011-12-15 09:59:23 UTC (rev 102908)
+++ trunk/Source/WebKit2/config.h 2011-12-15 10:06:22 UTC (rev 102909)
@@ -59,7 +59,7 @@
return name##Value; \
}
-#if defined(__APPLE__)
+#if PLATFORM(MAC)
#ifdef __OBJC__
#define OBJC_CLASS @class
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes