Commit 16b98a97a95274a4e8522f0f6610ea7f71014c0c

Authored by malc
1 parent eec2743e

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
Showing 1 changed file with 4 additions and 0 deletions
configure
... ... @@ -828,6 +828,10 @@ for drv in $audio_drv_list; do
828 828 }
829 829 ;;
830 830  
  831 + oss|sdl|core|wav|dsound)
  832 + # XXX: Probes for CoreAudio, DirectSound, SDL(?)
  833 + ;;
  834 +
831 835 esac
832 836 done
833 837  
... ...