diff options
author | Marc-André Lureau | 2012-04-17 14:32:42 +0200 |
---|---|---|
committer | malc | 2012-04-17 14:57:58 +0200 |
commit | a394aed235d6b3f048eeae83289f4d21eca7023c (patch) | |
tree | 28db6f9f2cb04435e05d69f84497230df626adda /configure | |
parent | Do not use pa_simple PulseAudio API (diff) | |
download | qemu-a394aed235d6b3f048eeae83289f4d21eca7023c.tar.gz qemu-a394aed235d6b3f048eeae83289f4d21eca7023c.tar.xz 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>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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" ;; |