https://bugs.webkit.org/show_bug.cgi?id=82211
Patch by Ming Xie <mxie@rim.com> 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:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@112275
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2012-03-27 Ming Xie <mxie@rim.com>
+
+ [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 <zhenghao@chromium.org>
Change default position attribute of media control panel to relative for Android.
// 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