[pulseaudio-commits] configure.ac

Tanu Kaskinen tanuk at kemper.freedesktop.org
Mon Jan 5 06:15:17 PST 2015


 configure.ac |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit ce950b150d55159ef052a378ef3c99fe1e9665c7
Author: Tanu Kaskinen <tanu.kaskinen at linux.intel.com>
Date:   Mon Jan 5 15:44:15 2015 +0200

    build-sys: Don't enable libsamplerate by default
    
    The libsamplerate based resamplers have been deprecated, so it's best
    to not build them by default.

diff --git a/configure.ac b/configure.ac
index 6843729..2ccf094 100644
--- a/configure.ac
+++ b/configure.ac
@@ -673,9 +673,9 @@ fi
 #### Libsamplerate support (optional) ####
 
 AC_ARG_ENABLE([samplerate],
-    AS_HELP_STRING([--disable-samplerate],[Disable optional libsamplerate support]))
+    AS_HELP_STRING([--enable-samplerate],[Enable optional libsamplerate support (DEPRECATED)]))
 
-AS_IF([test "x$enable_samplerate" != "xno"],
+AS_IF([test "x$enable_samplerate" = "xyes"],
     [PKG_CHECK_MODULES(LIBSAMPLERATE, [ samplerate >= 0.1.0 ], HAVE_LIBSAMPLERATE=1, HAVE_LIBSAMPLERATE=0)],
     HAVE_LIBSAMPLERATE=0)
 



More information about the pulseaudio-commits mailing list