summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomi Vihria <tomi.vihria@nokia.com>2011-05-30 09:50:29 (GMT)
committerTomi Vihria <tomi.vihria@nokia.com>2011-05-30 09:50:29 (GMT)
commitf32377e2038369cbf2822875cd8836b1f70feb6e (patch)
tree4e2ae6d2d643be84d9cb85ab8292c1a4e189dd06
parent1ad251132816e0cde703d41138a002b7b3b74867 (diff)
downloadQt-f32377e2038369cbf2822875cd8836b1f70feb6e.zip
Qt-f32377e2038369cbf2822875cd8836b1f70feb6e.tar.gz
Qt-f32377e2038369cbf2822875cd8836b1f70feb6e.tar.bz2
Fixed contains check casing in mmf.pro file
Contains check in mmf.pro was spelled in upper case, but qmake's internal contains function isn't case-insensitive and needs to be spelled in lower case. Reviewed-by: Miikka Heikkinen
-rw-r--r--src/plugins/phonon/mmf/mmf.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/phonon/mmf/mmf.pro b/src/plugins/phonon/mmf/mmf.pro
index 75e42af..752c403 100644
--- a/src/plugins/phonon/mmf/mmf.pro
+++ b/src/plugins/phonon/mmf/mmf.pro
@@ -129,7 +129,7 @@ symbian {
LIBS += -lmediaclientaudiostream # For CMdaAudioOutputStream
# These are for effects.
- CONTAINS(config, is_using_gnupoc) {
+ contains(CONFIG, is_using_gnupoc) {
LIBS += -laudioequalizereffect -lbassboosteffect -ldistanceattenuationeffect -ldopplerbase -leffectbase -lenvironmentalreverbeffect -llistenerdopplereffect -llistenerlocationeffect -llistenerorientationeffect -llocationbase -lloudnesseffect -lorientationbase -lsourcedopplereffect -lsourcelocationeffect -lsourceorientationeffect -lstereowideningeffect
} else {
LIBS += -lAudioEqualizerEffect -lBassBoostEffect -lDistanceAttenuationEffect -lDopplerbase -lEffectBase -lEnvironmentalReverbEffect -lListenerDopplerEffect -lListenerLocationEffect -lListenerOrientationEffect -lLocationBase -lLoudnessEffect -lOrientationBase -lSourceDopplerEffect -lSourceLocationEffect -lSourceOrientationEffect -lStereoWideningEffect