Title: [112275] trunk/Source/WebCore
Revision
112275
Author
[email protected]
Date
2012-03-27 08:44:16 -0700 (Tue, 27 Mar 2012)

Log Message

[BlackBerry] Disable DisallowCType.h usage
https://bugs.webkit.org/show_bug.cgi?id=82211

Patch by Ming Xie <[email protected]> on 2012-03-27
Reviewed by Rob Buis.

Build fix: QNX port does use ctype.h, so we should not
include <wtf/DisallowCType.h> in WebCore/config.h

No new tests - Build Fix

* config.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (112274 => 112275)


--- trunk/Source/WebCore/ChangeLog	2012-03-27 15:41:04 UTC (rev 112274)
+++ trunk/Source/WebCore/ChangeLog	2012-03-27 15:44:16 UTC (rev 112275)
@@ -1,3 +1,17 @@
+2012-03-27  Ming Xie  <[email protected]>
+
+        [BlackBerry] Disable DisallowCType.h usage
+        https://bugs.webkit.org/show_bug.cgi?id=82211
+
+        Reviewed by Rob Buis.
+
+        Build fix: QNX port does use ctype.h, so we should not
+        include <wtf/DisallowCType.h> in WebCore/config.h
+
+        No new tests - Build Fix
+
+        * config.h:
+
 2012-03-27  Hao Zheng  <[email protected]>
 
         Change default position attribute of media control panel to relative for Android.

Modified: trunk/Source/WebCore/config.h (112274 => 112275)


--- trunk/Source/WebCore/config.h	2012-03-27 15:41:04 UTC (rev 112274)
+++ trunk/Source/WebCore/config.h	2012-03-27 15:44:16 UTC (rev 112275)
@@ -92,7 +92,7 @@
 // are used from wx headers. On GTK+ for Mac many GTK+ files include <libintl.h>
 // or <glib/gi18n-lib.h>, which in turn include <xlocale/_ctype.h> which uses
 // isacii(). 
-#if !PLATFORM(QT) && !PLATFORM(WX) && !PLATFORM(CHROMIUM) && !(OS(DARWIN) && PLATFORM(GTK)) && !defined(_LIBCPP_VERSION)
+#if !PLATFORM(QT) && !PLATFORM(WX) && !PLATFORM(CHROMIUM) && !(OS(DARWIN) && PLATFORM(GTK)) && !OS(QNX) && !defined(_LIBCPP_VERSION)
 #include <wtf/DisallowCType.h>
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to