diff options
author | malc | 2008-08-13 23:48:01 +0200 |
---|---|---|
committer | malc | 2008-08-13 23:48:01 +0200 |
commit | 16b98a97a95274a4e8522f0f6610ea7f71014c0c (patch) | |
tree | b66c85336701a0a2bd1a0bea4dca0c906a78c3eb /configure | |
parent | Allow diskless operation for all mips platforms. (diff) | |
download | qemu-16b98a97a95274a4e8522f0f6610ea7f71014c0c.tar.gz qemu-16b98a97a95274a4e8522f0f6610ea7f71014c0c.tar.xz qemu-16b98a97a95274a4e8522f0f6610ea7f71014c0c.zip |
Handle remaining driver names when traversing audio_drv_list (Initial patch by BlueSwirl)
Probes for SDL/CoreAudio/DirectSound are probably needed there.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5002 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -828,6 +828,10 @@ for drv in $audio_drv_list; do } ;; + oss|sdl|core|wav|dsound) + # XXX: Probes for CoreAudio, DirectSound, SDL(?) + ;; + esac done |