diff options
| author | Marc-André Lureau <marcandre.lureau@gmail.com> | 2012-04-17 14:32:42 +0200 |
|---|---|---|
| committer | malc <av1474@comtv.ru> | 2012-04-17 16:57:58 +0400 |
| commit | a394aed235d6b3f048eeae83289f4d21eca7023c (patch) | |
| tree | 28db6f9f2cb04435e05d69f84497230df626adda | |
| parent | ea9ebc2ce69198f7aca4b43652824c5d621ac978 (diff) | |
| download | focaccia-qemu-a394aed235d6b3f048eeae83289f4d21eca7023c.tar.gz focaccia-qemu-a394aed235d6b3f048eeae83289f4d21eca7023c.zip | |
configure: pa_simple is not needed anymore
Signed-off-by: Marc-Andr? Lureau <marcandre.lureau@redhat.com> Signed-off-by: malc <av1474@comtv.ru>
| -rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure index 1d94acda2c..2d62d12796 100755 --- a/configure +++ b/configure @@ -1855,9 +1855,9 @@ for drv in $audio_drv_list; do ;; pa) - audio_drv_probe $drv pulse/simple.h "-lpulse-simple -lpulse" \ - "pa_simple *s = 0; pa_simple_free(s); return 0;" - libs_softmmu="-lpulse -lpulse-simple $libs_softmmu" + audio_drv_probe $drv pulse/mainloop.h "-lpulse" \ + "pa_mainloop *m = 0; pa_mainloop_free (m); return 0;" + libs_softmmu="-lpulse $libs_softmmu" audio_pt_int="yes" ;; |