diff options
author | Gareth Stockwell <ext-gareth.stockwell@nokia.com> | 2009-11-19 17:21:22 (GMT) |
---|---|---|
committer | Frans Englich <frans.englich@nokia.com> | 2009-11-19 18:42:48 (GMT) |
commit | f3118df6af745759a73d8a9f40d1fa1a90a4385a (patch) | |
tree | 2591ac0d90a0bd749575cea8123c3d5126cd9416 /src/plugins | |
parent | 041f7fc92959d4aefa88fca7a6f5d153faf4aa0a (diff) | |
download | Qt-f3118df6af745759a73d8a9f40d1fa1a90a4385a.zip Qt-f3118df6af745759a73d8a9f40d1fa1a90a4385a.tar.gz Qt-f3118df6af745759a73d8a9f40d1fa1a90a4385a.tar.bz2 |
Fix for compile error in Phonon MMF backend
This was introduced by d0b0b525de.
The use of QT_NO_DEBUG macros causes release-armv5 builds to fail
when the -release option is passed to configure.
This change causes the debugging code (ObjectDump and related
classes) to be included in release builds, although these functions
are not executed.
This is a temporary fix; task QTBUG-6012 has been created for
re-removing this code from release builds.
Reviewed-by: Frans Englich
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/phonon/mmf/mmf.pro | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/plugins/phonon/mmf/mmf.pro b/src/plugins/phonon/mmf/mmf.pro index c070605..854f893 100644 --- a/src/plugins/phonon/mmf/mmf.pro +++ b/src/plugins/phonon/mmf/mmf.pro @@ -39,7 +39,7 @@ HEADERS += \ $$PHONON_MMF_DIR/mmf_medianode.h \ $$PHONON_MMF_DIR/mmf_videoplayer.h \ $$PHONON_MMF_DIR/objectdump.h \ - $$PHONON_MMF_DIR/objectdump_global.h \ + $$PHONON_MMF_DIR/objectdump_symbian.h \ $$PHONON_MMF_DIR/objecttree.h \ $$PHONON_MMF_DIR/utils.h \ $$PHONON_MMF_DIR/videooutput.h \ @@ -61,14 +61,12 @@ SOURCES += \ $$PHONON_MMF_DIR/mmf_medianode.cpp \ $$PHONON_MMF_DIR/mmf_videoplayer.cpp \ $$PHONON_MMF_DIR/objectdump.cpp \ + $$PHONON_MMF_DIR/objectdump_symbian.cpp \ $$PHONON_MMF_DIR/objecttree.cpp \ $$PHONON_MMF_DIR/utils.cpp \ $$PHONON_MMF_DIR/videooutput.cpp \ $$PHONON_MMF_DIR/videowidget.cpp -HEADERS += $$PHONON_MMF_DIR/objectdump_symbian.h -SOURCES += $$PHONON_MMF_DIR/objectdump_symbian.cpp - LIBS += -lcone LIBS += -lws32 |