From 493abda627c95d2a2f3bb3757eff527d226d2b38 Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Mon, 16 Nov 2009 17:52:03 +0100 Subject: [PATCH] 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 --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 278966d6b6..e108dfb18c 100755 --- a/configure +++ b/configure @@ -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" ;; -- 2.11.4.GIT