diff options
author | Marc-Antoine Perennou | 2011-04-29 07:59:19 +0200 |
---|---|---|
committer | Stefan Hajnoczi | 2011-06-24 16:36:14 +0200 |
commit | 20fa53ece42bec6ce5db801bead125277b26ab8a (patch) | |
tree | defe1fae5beb21887414db6e9a6dae1d0d699b72 /configure | |
parent | exec: last_first_tb was only used in !ONLY_USER case (diff) | |
download | qemu-20fa53ece42bec6ce5db801bead125277b26ab8a.tar.gz qemu-20fa53ece42bec6ce5db801bead125277b26ab8a.tar.xz qemu-20fa53ece42bec6ce5db801bead125277b26ab8a.zip |
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>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" ;; |