2010-12-30 Konstantin Tokarev <annulen@yandex.ru>
authorcommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Thu, 30 Dec 2010 23:47:48 +0000 (23:47 +0000)
committercommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Thu, 30 Dec 2010 23:47:48 +0000 (23:47 +0000)
        Reviewed by David Kilzer.

        [Qt] Don't build wtf/TCSystemAlloc.cpp if --system-malloc option is
        used
        https://bugs.webkit.org/show_bug.cgi?id=51672

        * WebKit.pri: Replaced USE_SYSTEM_MALLOC with USE_SYSTEM_MALLOC=1
2010-12-30  Konstantin Tokarev  <annulen@yandex.ru>

        Reviewed by David Kilzer.

        [Qt] Don't build wtf/TCSystemAlloc.cpp if --system-malloc option is
        used
        https://bugs.webkit.org/show_bug.cgi?id=51672

        * wtf/wtf.pri: Replaced USE_SYSTEM_MALLOC with USE_SYSTEM_MALLOC=1
2010-12-30  Konstantin Tokarev  <annulen@yandex.ru>

        Reviewed by David Kilzer.

        [Qt] Don't build wtf/TCSystemAlloc.cpp if --system-malloc option is
        used
        https://bugs.webkit.org/show_bug.cgi?id=51672

        * DumpRenderTree/qt/DumpRenderTree.pro: Replaced USE_SYSTEM_MALLOC
        with USE_SYSTEM_MALLOC=1
        * WebKitTestRunner/qt/WebKitTestRunner.pro: Replaced USE_SYSTEM_MALLOC
        with USE_SYSTEM_MALLOC=1

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74813 268f45cc-cd09-0410-ab3c-d52691b4dbfc

ChangeLog
JavaScriptCore/ChangeLog
JavaScriptCore/wtf/wtf.pri
Tools/ChangeLog
Tools/DumpRenderTree/qt/DumpRenderTree.pro
Tools/WebKitTestRunner/qt/WebKitTestRunner.pro
WebKit.pri

index 998f0a3..b12ab6f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2010-12-30  Konstantin Tokarev  <annulen@yandex.ru>
+
+        Reviewed by David Kilzer.
+
+        [Qt] Don't build wtf/TCSystemAlloc.cpp if --system-malloc option is
+        used
+        https://bugs.webkit.org/show_bug.cgi?id=51672
+
+        * WebKit.pri: Replaced USE_SYSTEM_MALLOC with USE_SYSTEM_MALLOC=1
+
 2010-12-29  Philippe Normand  <pnormand@igalia.com>
 
         Reviewed by Martin Robinson.
index 5b7aa2a..f8edc56 100644 (file)
@@ -1,3 +1,13 @@
+2010-12-30  Konstantin Tokarev  <annulen@yandex.ru>
+
+        Reviewed by David Kilzer.
+
+        [Qt] Don't build wtf/TCSystemAlloc.cpp if --system-malloc option is
+        used
+        https://bugs.webkit.org/show_bug.cgi?id=51672
+
+        * wtf/wtf.pri: Replaced USE_SYSTEM_MALLOC with USE_SYSTEM_MALLOC=1
+
 2010-12-30  Patrick Gansterer  <paroga@webkit.org>
 
         Reviewed by Darin Adler.
index c5617ce..c1af024 100644 (file)
@@ -41,7 +41,7 @@ contains(DEFINES, USE_GSTREAMER=1) {
     CONFIG += link_pkgconfig
 }
 
-!contains(DEFINES, USE_SYSTEM_MALLOC) {
+!contains(DEFINES, USE_SYSTEM_MALLOC=1) {
     SOURCES += wtf/TCSystemAlloc.cpp
 }
 
index bcf0e37..4b017be 100644 (file)
@@ -1,3 +1,16 @@
+2010-12-30  Konstantin Tokarev  <annulen@yandex.ru>
+
+        Reviewed by David Kilzer.
+
+        [Qt] Don't build wtf/TCSystemAlloc.cpp if --system-malloc option is
+        used
+        https://bugs.webkit.org/show_bug.cgi?id=51672
+
+        * DumpRenderTree/qt/DumpRenderTree.pro: Replaced USE_SYSTEM_MALLOC
+        with USE_SYSTEM_MALLOC=1
+        * WebKitTestRunner/qt/WebKitTestRunner.pro: Replaced USE_SYSTEM_MALLOC
+        with USE_SYSTEM_MALLOC=1
+
 2010-12-30  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
 
         Reviewed by David Kilzer.
index e8831a3..5060511 100644 (file)
@@ -50,4 +50,4 @@ wince*: {
     LIBS += $$WCECOMPAT/lib/wcecompat.lib
 }
 
-DEFINES+=USE_SYSTEM_MALLOC
+DEFINES += USE_SYSTEM_MALLOC=1
index cf5d5b8..3d8b76c 100644 (file)
@@ -14,7 +14,7 @@ include(../../../WebKit.pri)
     OBJECTS_DIR = obj/release
 }
 
-DEFINES += USE_SYSTEM_MALLOC
+DEFINES += USE_SYSTEM_MALLOC=1
 
 INCLUDEPATH += \
     $$BASEDIR \
index 6b01b49..aec91e5 100644 (file)
@@ -48,7 +48,7 @@ building-libs {
 }
 
 !mac:!unix|symbian {
-    DEFINES += USE_SYSTEM_MALLOC
+    DEFINES += USE_SYSTEM_MALLOC=1
 }
 
 CONFIG(release, debug|release) {
@@ -88,7 +88,7 @@ valgrind {
     contains(JAVASCRIPTCORE_JIT,yes): error("'JAVASCRIPTCORE_JIT=yes' not supported with valgrind")
     QMAKE_CXXFLAGS += -g
     QMAKE_LFLAGS += -g
-    DEFINES += USE_SYSTEM_MALLOC
+    DEFINES += USE_SYSTEM_MALLOC=1
     DEFINES += ENABLE_JIT=0
     JAVASCRIPTCORE_JIT = no
 }