summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2006-04-06 17:37:13 +0200
committerTakashi Iwai <tiwai@suse.de>2006-04-06 17:37:13 +0200
commit74bdac50b257b986cea38a2c08134c430fc5654f (patch)
tree5e30207026f4f777edb21f6bd729087f5e0a3c4c /configure.in
parent423a6f3c7be331984ec74587bf278204d19a4467 (diff)
Add samplerate rate converter plugin
Added a rate converter pluging using libsamplerate. The plugin is built only when libsamplerate is detected by configure. See doc/samplerate.txt for usage. This plugin is released under GPL (to follow the license of libsamplerate), not LGPL.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index e2870ab..7691770 100644
--- a/configure.in
+++ b/configure.in
@@ -19,6 +19,9 @@ AM_CONDITIONAL(HAVE_JACK, test x$HAVE_JACK = xyes)
PKG_CHECK_MODULES(polypaudio, [polyplib], [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])
+AM_CONDITIONAL(HAVE_SAMPLERATE, test x$HAVE_SAMPLERATE = xyes)
+
SAVE_PLUGINS_VERSION
AC_OUTPUT([
@@ -27,5 +30,6 @@ AC_OUTPUT([
jack/Makefile
polyp/Makefile
mix/Makefile
+ rate/Makefile
doc/Makefile
])