aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authormalc <malc@c046a42c-6fe2-441c-8c8c-71466251a162>2008-07-02 21:03:08 +0000
committermalc <malc@c046a42c-6fe2-441c-8c8c-71466251a162>2008-07-02 21:03:08 +0000
commitb8e59f18de9ebd0286e14ff42db217b34d4f8272 (patch)
treed085e213979b94d8924a441e3b5fcb574c84e410 /configure
parent923e45211c783bbcd307e7074eccc0f27faddc65 (diff)
Pulseaudio driver
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4827 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 7 insertions, 1 deletions
diff --git a/configure b/configure
index 110ae823a6..51be6e7ff4 100755
--- a/configure
+++ b/configure
@@ -196,7 +196,7 @@ SunOS)
;;
*)
audio_drv_list="oss"
-audio_possible_drivers="oss alsa sdl esd"
+audio_possible_drivers="oss alsa sdl esd pa"
linux="yes"
linux_user="yes"
if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
@@ -767,6 +767,12 @@ for drv in $audio_drv_list; do
esd)
audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
;;
+
+ pa)
+ audio_drv_probe $drv pulse/simple.h -lpulse-simple \
+ "pa_simple *s = NULL; pa_simple_free(s); return 0;"
+ ;;
+
esac
done