summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2006-05-29 12:19:46 +0200
committerTakashi Iwai <tiwai@suse.de>2006-05-29 12:19:46 +0200
commite945a42f2c28c271a56ce0546d38f0c33c4b8125 (patch)
tree245157d31dbe9aa7427f52b782c0d2cf3cd60390 /configure.in
parenta80fb39fa7cfdf1a5b157b526d3eebe0cd73716e (diff)
Update Polypaudio plug-in to the 0.9.0 API
The new version of Polypaudio includes a threading abstraction that allows application of a more synchronous nature to use the API more easily. Using this, the complexity of the Polypaudio plug-in is greatly reduced and also removes the risk of stalling the communications layer. Signed-off-by: Pierre Ossman <ossman@cendio.se>
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 178d1e4..9c779e2 100644
--- a/configure.in
+++ b/configure.in
@@ -16,7 +16,7 @@ AC_CHECK_LIB(asound, snd_pcm_ioplug_create,,
PKG_CHECK_MODULES(JACK, jack >= 0.98, [HAVE_JACK=yes], [HAVE_JACK=no])
AM_CONDITIONAL(HAVE_JACK, test x$HAVE_JACK = xyes)
-PKG_CHECK_MODULES(polypaudio, [polyplib], [HAVE_POLYP=yes], [HAVE_POLYP=no])
+PKG_CHECK_MODULES(polypaudio, [polyplib >= 0.9.0], [HAVE_POLYP=yes], [HAVE_POLYP=no])
AM_CONDITIONAL(HAVE_POLYP, test x$HAVE_POLYP = xyes)
PKG_CHECK_MODULES(samplerate, [samplerate], [HAVE_SAMPLERATE=yes], [HAVE_SAMPLERATE=no])