X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/7627372e9d5ad3283bfaace12bc9ae2b2e57c23b..79ab6bd2e660cc9808602045b1673a80f4ffae9d:/configure.ac diff --git a/configure.ac b/configure.ac index 80cc04f..e48cce2 100644 --- a/configure.ac +++ b/configure.ac @@ -438,6 +438,8 @@ if test $want_alsa = yes; then AC_CHECK_LIB([asound], [snd_pcm_open], [AC_SUBST(LIBASOUND,[-lasound])]) fi +AC_CHECK_LIB([samplerate],[src_new], + [AC_SUBST([LIBSAMPLERATE],[-lsamplerate])]) if test $want_server = yes; then RJK_CHECK_LIB(db, db_create, [#include ], [AC_SUBST(LIBDB,[-ldb])], @@ -523,6 +525,7 @@ AC_CHECK_HEADERS([dlfcn.h gcrypt.h \ syslog.h unistd.h],[:],[ missing_headers="$missing_headers $ac_header" ]) +AC_CHECK_HEADERS([samplerate.h]) if test ! -z "$missing_headers"; then AC_MSG_ERROR([missing headers:$missing_headers]) @@ -838,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