diff options
author | Kővágó, Zoltán | 2015-06-03 23:03:46 +0200 |
---|---|---|
committer | Gerd Hoffmann | 2015-06-15 10:50:31 +0200 |
commit | 3cec7cc22f95ce31565e8e2c03b06a2f7ae8bc6f (patch) | |
tree | 0a17f6d4669619cbfb78bff62fd34b84832bb6e7 /configure | |
parent | audio: remove fmod backend (diff) | |
download | qemu-3cec7cc22f95ce31565e8e2c03b06a2f7ae8bc6f.tar.gz qemu-3cec7cc22f95ce31565e8e2c03b06a2f7ae8bc6f.tar.xz qemu-3cec7cc22f95ce31565e8e2c03b06a2f7ae8bc6f.zip |
audio: remove winwave audio driver
DirectSound should be a superior choice on Windows.
Signed-off-by: Kővágó, Zoltán <DirtY.iCE.hu@gmail.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 13 |
1 files changed, 4 insertions, 9 deletions
@@ -562,13 +562,13 @@ case $targetos in CYGWIN*) mingw32="yes" QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS" - audio_possible_drivers="winwave sdl" - audio_drv_list="winwave" + audio_possible_drivers="sdl" + audio_drv_list="sdl" ;; MINGW32*) mingw32="yes" - audio_possible_drivers="winwave dsound sdl" - audio_drv_list="winwave" + audio_possible_drivers="dsound sdl" + audio_drv_list="dsound" ;; GNU/kFreeBSD) bsd="yes" @@ -2634,11 +2634,6 @@ for drv in $audio_drv_list; do # XXX: Probes for CoreAudio, DirectSound, SDL(?) ;; - winwave) - libs_softmmu="-lwinmm $libs_softmmu" - audio_win_int="yes" - ;; - *) echo "$audio_possible_drivers" | grep -q "\<$drv\>" || { error_exit "Unknown driver '$drv' selected" \ |