diff options
author | Kurt Korbatits <kurt.korbatits@nokia.com> | 2010-02-01 04:42:47 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2010-02-01 09:14:25 (GMT) |
commit | 5ce59a5796cb4a252ca30e099fc8ff592d558d76 (patch) | |
tree | 586c41cd1111e91b81eb1962c5601c957512ebfd | |
parent | 547898e5cad3d0b55f7ee95601365b9c2da194d7 (diff) | |
download | Qt-5ce59a5796cb4a252ca30e099fc8ff592d558d76.zip Qt-5ce59a5796cb4a252ca30e099fc8ff592d558d76.tar.gz Qt-5ce59a5796cb4a252ca30e099fc8ff592d558d76.tar.bz2 |
audiodevices example: no devices available
audio-backend option was not being written out to qconfig.pri
Task-number:QTBUG-7782
Reviewed-by:Justin McPherson
(cherry picked from commit 65493e69454f8914d0ae1607e5a071ea07bb7017)
-rw-r--r-- | tools/configure/configureapp.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index 3f105b5..145b3ec 100644 --- a/tools/configure/configureapp.cpp +++ b/tools/configure/configureapp.cpp @@ -2535,8 +2535,11 @@ void Configure::generateOutputVars() qtConfig += "phonon-backend"; } - if (dictionary["MULTIMEDIA"] == "yes") + if (dictionary["MULTIMEDIA"] == "yes") { qtConfig += "multimedia"; + if (dictionary["AUDIO_BACKEND"] == "yes") + qtConfig += "audio-backend"; + } if (dictionary["WEBKIT"] == "yes") qtConfig += "webkit"; |