From: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
Date: Fri, 29 Apr 2011 05:59:19 +0000 (+0000)
Subject: qemu-kvm: fix pulseaudio detection in configure
X-Git-Tag: v0.15.0-rc0~125^2
X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=20fa53ece42bec6ce5db801bead125277b26ab8a;p=users%2Fdwmw2%2Fqemu.git

qemu-kvm: fix pulseaudio detection in configure

pulse/simple.h does not include stdlib.h
We cannot use NULL since it may not be defined
Use 0 instead

Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
---

diff --git a/configure b/configure
index 4fa9a5734b..a3110711d1 100755
--- a/configure
+++ b/configure
@@ -1638,7 +1638,7 @@ for drv in $audio_drv_list; do
 
     pa)
     audio_drv_probe $drv pulse/simple.h "-lpulse-simple -lpulse" \
-        "pa_simple *s = NULL; pa_simple_free(s); return 0;"
+        "pa_simple *s = 0; pa_simple_free(s); return 0;"
     libs_softmmu="-lpulse -lpulse-simple $libs_softmmu"
     audio_pt_int="yes"
     ;;