summaryrefslogtreecommitdiff
path: root/debian/patches/dyson-use-system-malloc.patch
blob: 5022176d68389414ecc4e7ee29ab9725d31c5223 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: fix crash on Dyson
Index: qt5webkit/Source/WTF/wtf/Platform.h
===================================================================
--- qt5webkit.orig/Source/WTF/wtf/Platform.h	2014-04-29 22:18:20.566403388 +0400
+++ qt5webkit/Source/WTF/wtf/Platform.h	2014-04-30 13:15:11.003435201 +0400
@@ -698,7 +698,7 @@
 #if PLATFORM(QT)
 /* We must not customize the global operator new and delete for the Qt port. */
 #define ENABLE_GLOBAL_FASTMALLOC_NEW 0
-#if !OS(UNIX)
+#if !OS(UNIX) || OS(SOLARIS)
 #define USE_SYSTEM_MALLOC 1
 #endif
 #endif