From patchwork Fri Jun 24 16:56:49 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [13/13] qemu-kvm: fix pulseaudio detection in configure X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 101876 Message-Id: <1308934609-20824-14-git-send-email-stefanha@linux.vnet.ibm.com> To: Cc: Anthony Liguori , Marc-Antoine Perennou , Stefan Hajnoczi Date: Fri, 24 Jun 2011 17:56:49 +0100 From: Stefan Hajnoczi List-Id: From: Marc-Antoine Perennou 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 Reviewed-by: Peter Maydell Signed-off-by: Stefan Hajnoczi --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/configure index 4fa9a57..a311071 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" ;;