summaryrefslogtreecommitdiff
path: root/debian/patches/dyson-use-system-malloc.patch
blob: d5208da096ba669cdb80cca2ee684044a96d4cf5 (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
+++ qt5webkit/Source/WTF/wtf/Platform.h
@@ -691,7 +691,7 @@
 /* Include feature macros */
 #include <wtf/FeatureDefines.h>
 
-#if OS(WINDOWS) && !PLATFORM(QT)
+#if (OS(WINDOWS) && !PLATFORM(QT)) || OS(SOLARIS)
 #define USE_SYSTEM_MALLOC 1
 #endif