aboutsummaryrefslogtreecommitdiffstats
path: root/fsoaudiod/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'fsoaudiod/configure.ac')
-rw-r--r--fsoaudiod/configure.ac18
1 files changed, 18 insertions, 0 deletions
diff --git a/fsoaudiod/configure.ac b/fsoaudiod/configure.ac
index 50772de1..98208e83 100644
--- a/fsoaudiod/configure.ac
+++ b/fsoaudiod/configure.ac
@@ -94,6 +94,22 @@ fi
AM_CONDITIONAL( [WANT_CMTSPEECHDATA], [test x"$cmtspeechdata" = x"yes"])
##############################################################################
+# optional feature: GSM voice call audio forwarding using libsamplerate
+AC_ARG_ENABLE(samplerate,
+ [ --enable-samplerate Enable building the gsm voicecall plugin using libsamplerate (default=disabled)],
+ [samplerate=$enableval],
+ [samplerate="no"])
+
+if test x$samplerate = "xyes"; then
+ PKG_CHECK_MODULES(SAMPLERATE,
+ [samplerate])
+AC_SUBST(SAMPLERATE_CFLAGS)
+AC_SUBST(SAMPLERATE_LIBS)
+
+fi
+AM_CONDITIONAL( [WANT_SAMPLERATE], [test x"$samplerate" = x"yes"])
+
+##############################################################################
# check for debugging
AC_ARG_ENABLE(debug,
[ --enable-debug Enable debug build (default=disabled)],
@@ -159,6 +175,8 @@ echo "Configuration Options:"
echo
echo " gsmvoice_alsa_cmtspeechdata:.........: $cmtspeechdata"
echo
+echo " gsmvoice_alsa_forwarder:.............: $samplerate"
+echo
echo " debug build..........................: $debug"
echo
echo " prefix...............................: $prefix"