Changeset 112275 in webkit


Ignore:
Timestamp:
Mar 27, 2012 8:44:16 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[BlackBerry] Disable DisallowCType.h usage
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:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r112272 r112275  
     12012-03-27  Ming Xie  <mxie@rim.com>
     2
     3        [BlackBerry] Disable DisallowCType.h usage
     4        https://bugs.webkit.org/show_bug.cgi?id=82211
     5
     6        Reviewed by Rob Buis.
     7
     8        Build fix: QNX port does use ctype.h, so we should not
     9        include <wtf/DisallowCType.h> in WebCore/config.h
     10
     11        No new tests - Build Fix
     12
     13        * config.h:
     14
    1152012-03-27  Hao Zheng  <zhenghao@chromium.org>
    216
  • trunk/Source/WebCore/config.h

    r108179 r112275  
    9393// or <glib/gi18n-lib.h>, which in turn include <xlocale/_ctype.h> which uses
    9494// isacii().
    95 #if !PLATFORM(QT) && !PLATFORM(WX) && !PLATFORM(CHROMIUM) && !(OS(DARWIN) && PLATFORM(GTK)) && !defined(_LIBCPP_VERSION)
     95#if !PLATFORM(QT) && !PLATFORM(WX) && !PLATFORM(CHROMIUM) && !(OS(DARWIN) && PLATFORM(GTK)) && !OS(QNX) && !defined(_LIBCPP_VERSION)
    9696#include <wtf/DisallowCType.h>
    9797#endif
Note: See TracChangeset for help on using the changeset viewer.