From a19aff42f016c18d2e0f437d56788ae34f40500b Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sat, 21 Nov 2009 10:29:10 +0000 Subject: [PATCH] Warn that libsamplerate will become non-optional (for server builds) Organization: Straylight/Edgeware From: Richard Kettlewell --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index f527fff..e48cce2 100644 --- a/configure.ac +++ b/configure.ac @@ -841,6 +841,9 @@ fi if test $want_python = no; then AC_MSG_WARN([cannot run the test suit without Python]) fi +if test $want_server = yes && test "$ac_cv_lib_samplerate_src_new" != yes; then + AC_MSG_WARN([libsamplerate will be required in a future version]) +fi # Local Variables: # indent-tabs-mode:nil -- [mdw]