Title: [125553] trunk/Source/WTF
Revision
125553
Author
commit-qu...@webkit.org
Date
2012-08-14 05:52:56 -0700 (Tue, 14 Aug 2012)

Log Message

[Qt] QNX build fails due to reference to MADV_FREE_REUSE and MADV_FREE_REUSABLE
https://bugs.webkit.org/show_bug.cgi?id=93843

Patch by Milian Wolff <milian.wo...@kdab.com> on 2012-08-14
Reviewed by Simon Hausmann.

QNX does not implement MADV_FREE_REUSE nor MADV_FREE_REUSABLE.
The Blackberry port already sets the define to use the system
malloc, which is now also done for QNX in general.

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (125552 => 125553)


--- trunk/Source/WTF/ChangeLog	2012-08-14 12:39:17 UTC (rev 125552)
+++ trunk/Source/WTF/ChangeLog	2012-08-14 12:52:56 UTC (rev 125553)
@@ -1,3 +1,16 @@
+2012-08-14  Milian Wolff  <milian.wo...@kdab.com>
+
+        [Qt] QNX build fails due to reference to MADV_FREE_REUSE and MADV_FREE_REUSABLE
+        https://bugs.webkit.org/show_bug.cgi?id=93843
+
+        Reviewed by Simon Hausmann.
+
+        QNX does not implement MADV_FREE_REUSE nor MADV_FREE_REUSABLE.
+        The Blackberry port already sets the define to use the system
+        malloc, which is now also done for QNX in general.
+
+        * wtf/Platform.h:
+
 2012-08-13  Raphael Kubo da Costa  <rak...@webkit.org>
 
         [CMake] Remove glib-related Find modules and write single new one instead.

Modified: trunk/Source/WTF/wtf/Platform.h (125552 => 125553)


--- trunk/Source/WTF/wtf/Platform.h	2012-08-14 12:39:17 UTC (rev 125552)
+++ trunk/Source/WTF/wtf/Platform.h	2012-08-14 12:52:56 UTC (rev 125553)
@@ -480,8 +480,11 @@
 #endif
 #endif
 
+#if OS(QNX)
+#define USE_SYSTEM_MALLOC 1
+#endif
+
 #if PLATFORM(BLACKBERRY)
-#define USE_SYSTEM_MALLOC 1
 #define WTF_USE_MERSENNE_TWISTER_19937 1
 #define WTF_USE_SKIA 1
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to