diff options
author | Tomi Vihria <tomi.vihria@nokia.com> | 2011-05-30 09:50:29 (GMT) |
---|---|---|
committer | Tomi Vihria <tomi.vihria@nokia.com> | 2011-05-30 09:50:29 (GMT) |
commit | f32377e2038369cbf2822875cd8836b1f70feb6e (patch) | |
tree | 4e2ae6d2d643be84d9cb85ab8292c1a4e189dd06 | |
parent | 1ad251132816e0cde703d41138a002b7b3b74867 (diff) | |
download | Qt-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.pro | 2 |
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 |