summaryrefslogtreecommitdiffstats
path: root/tools/configure/configureapp.cpp
diff options
context:
space:
mode:
authorKurt Korbatits <kurt.korbatits@nokia.com>2010-02-01 04:42:47 (GMT)
committerKurt Korbatits <kurt.korbatits@nokia.com>2010-02-01 04:42:47 (GMT)
commit65493e69454f8914d0ae1607e5a071ea07bb7017 (patch)
tree439fa00a2e9fe66cfb89bdfc3c0366d27440151e /tools/configure/configureapp.cpp
parent21e5e4657cef2c050513819b53f295c4272f5218 (diff)
downloadQt-65493e69454f8914d0ae1607e5a071ea07bb7017.zip
Qt-65493e69454f8914d0ae1607e5a071ea07bb7017.tar.gz
Qt-65493e69454f8914d0ae1607e5a071ea07bb7017.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
Diffstat (limited to 'tools/configure/configureapp.cpp')
-rw-r--r--tools/configure/configureapp.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index 7751143..abf81bd 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";