Title: [93465] trunk/Source/_javascript_Core
Revision
93465
Author
[email protected]
Date
2011-08-19 18:47:51 -0700 (Fri, 19 Aug 2011)

Log Message

Don't include DisallowCType.h when building on QNX
https://bugs.webkit.org/show_bug.cgi?id=66616

Reviewed by Antonio Gomes.

* config.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (93464 => 93465)


--- trunk/Source/_javascript_Core/ChangeLog	2011-08-20 01:46:48 UTC (rev 93464)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-08-20 01:47:51 UTC (rev 93465)
@@ -1,5 +1,14 @@
 2011-08-19  Daniel Bates  <[email protected]>
 
+        Don't include DisallowCType.h when building on QNX
+        https://bugs.webkit.org/show_bug.cgi?id=66616
+
+        Reviewed by Antonio Gomes.
+
+        * config.h:
+
+2011-08-19  Daniel Bates  <[email protected]>
+
         Implement ExecutableAllocator::cacheFlush() for QNX
         https://bugs.webkit.org/show_bug.cgi?id=66611
 

Modified: trunk/Source/_javascript_Core/config.h (93464 => 93465)


--- trunk/Source/_javascript_Core/config.h	2011-08-20 01:46:48 UTC (rev 93464)
+++ trunk/Source/_javascript_Core/config.h	2011-08-20 01:47:51 UTC (rev 93465)
@@ -108,9 +108,9 @@
 #endif
 
 // this breaks compilation of <QFontDatabase>, at least, so turn it off for now
-// Also generates errors on wx on Windows, because these functions
-// are used from wx headers. 
-#if !PLATFORM(QT) && !PLATFORM(WX)
+// Also generates errors on wx on Windows and QNX, because these functions
+// are used from wx and QNX headers. 
+#if !PLATFORM(QT) && !PLATFORM(WX) && !OS(QNX)
 #include <wtf/DisallowCType.h>
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to