mirror of
https://github.com/qemu/qemu.git
synced 2024-11-24 11:23:43 +08:00
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>
This commit is contained in:
parent
4429ab4419
commit
20fa53ece4
2
configure
vendored
2
configure
vendored
@ -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"
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user