Changeset 93465 in webkit


Ignore:
Timestamp:
Aug 19, 2011 6:47:51 PM (13 years ago)
Author:
dbates@webkit.org
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:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r93462 r93465  
     12011-08-19  Daniel Bates  <dbates@webkit.org>
     2
     3        Don't include DisallowCType.h when building on QNX
     4        https://bugs.webkit.org/show_bug.cgi?id=66616
     5
     6        Reviewed by Antonio Gomes.
     7
     8        * config.h:
     9
    1102011-08-19  Daniel Bates  <dbates@webkit.org>
    211
  • trunk/Source/JavaScriptCore/config.h

    r90649 r93465  
    109109
    110110// this breaks compilation of <QFontDatabase>, at least, so turn it off for now
    111 // Also generates errors on wx on Windows, because these functions
    112 // are used from wx headers.
    113 #if !PLATFORM(QT) && !PLATFORM(WX)
     111// Also generates errors on wx on Windows and QNX, because these functions
     112// are used from wx and QNX headers.
     113#if !PLATFORM(QT) && !PLATFORM(WX) && !OS(QNX)
    114114#include <wtf/DisallowCType.h>
    115115#endif
Note: See TracChangeset for help on using the changeset viewer.