Changeset 94342 in webkit for trunk/Source/JavaScriptCore/wtf


Ignore:
Timestamp:
Sep 1, 2011, 2:06:26 PM (14 years ago)
Author:
[email protected]
Message:

QNX GCC distribution doesn't support vasprintf()
https://bugs.webkit.org/show_bug.cgi?id=67423

Reviewed by Antonio Gomes.

  • wtf/Platform.h: Don't enable HAVE_VASPRINTF when building with GCC on QNX.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/wtf/Platform.h

    r94251 r94342  
    683683
    684684#if !defined(HAVE_VASPRINTF)
    685 #if !COMPILER(MSVC) && !COMPILER(RVCT) && !COMPILER(MINGW)
     685#if !COMPILER(MSVC) && !COMPILER(RVCT) && !COMPILER(MINGW) && !(COMPILER(GCC) && OS(QNX))
    686686#define HAVE_VASPRINTF 1
    687687#endif
Note: See TracChangeset for help on using the changeset viewer.