sim-card
/
qemu
Archived
10
0
Fork 0

audio: link with -lpulse in addition to -lpulse-simple

Link with -lpulse in addition to -lpulse-simple, needed when --no-add-needed
is passed to the linker (gold default).

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
Aurelien Jarno 2009-11-16 17:52:03 +01:00
parent 9cf55765b9
commit 493abda627
1 changed files with 2 additions and 2 deletions

4
configure vendored
View File

@ -1165,9 +1165,9 @@ for drv in $audio_drv_list; do
;;
pa)
audio_drv_probe $drv pulse/simple.h -lpulse-simple \
audio_drv_probe $drv pulse/simple.h "-lpulse-simple -lpulse" \
"pa_simple *s = NULL; pa_simple_free(s); return 0;"
libs_softmmu="-lpulse-simple $libs_softmmu"
libs_softmmu="-lpulse -lpulse-simple $libs_softmmu"
audio_pt_int="yes"
;;