diff options
author | Kurt Korbatits <kurt.korbatits@nokia.com> | 2010-02-01 04:42:47 (GMT) |
---|---|---|
committer | Kurt Korbatits <kurt.korbatits@nokia.com> | 2010-02-01 04:42:47 (GMT) |
commit | 65493e69454f8914d0ae1607e5a071ea07bb7017 (patch) | |
tree | 439fa00a2e9fe66cfb89bdfc3c0366d27440151e /tools | |
parent | 21e5e4657cef2c050513819b53f295c4272f5218 (diff) | |
download | Qt-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')
-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 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"; |