Title: [94342] trunk/Source/_javascript_Core
Revision
94342
Author
[email protected]
Date
2011-09-01 14:06:26 -0700 (Thu, 01 Sep 2011)

Log 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.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (94341 => 94342)


--- trunk/Source/_javascript_Core/ChangeLog	2011-09-01 20:46:32 UTC (rev 94341)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-09-01 21:06:26 UTC (rev 94342)
@@ -1,3 +1,12 @@
+2011-09-01  Daniel Bates  <[email protected]>
+
+        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.
+
 2011-09-01  Michael Saboff  <[email protected]>
 
         Remove simple usage of UString::characters() from _javascript_Core

Modified: trunk/Source/_javascript_Core/wtf/Platform.h (94341 => 94342)


--- trunk/Source/_javascript_Core/wtf/Platform.h	2011-09-01 20:46:32 UTC (rev 94341)
+++ trunk/Source/_javascript_Core/wtf/Platform.h	2011-09-01 21:06:26 UTC (rev 94342)
@@ -682,7 +682,7 @@
 #endif
 
 #if !defined(HAVE_VASPRINTF)
-#if !COMPILER(MSVC) && !COMPILER(RVCT) && !COMPILER(MINGW)
+#if !COMPILER(MSVC) && !COMPILER(RVCT) && !COMPILER(MINGW) && !(COMPILER(GCC) && OS(QNX))
 #define HAVE_VASPRINTF 1
 #endif
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to