From 74bdac50b257b986cea38a2c08134c430fc5654f Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Thu, 6 Apr 2006 17:37:13 +0200 Subject: 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. --- configure.in | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'configure.in') 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 ]) -- cgit