From aff06750c0cd62e7276e3230fa5dd8220b903132 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sat, 4 Jan 2014 15:38:43 +0100 Subject: Disable/enable resample on compiletime. Enable/disable using env on runtime. --- configure.ac | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 820c627..7c3a0ed 100644 --- a/configure.ac +++ b/configure.ac @@ -301,10 +301,16 @@ dnl Check for sndfile dnl ====================== PKG_CHECK_MODULES(SNDFILE, sndfile >= 1.0.20) -dnl ====================== -dnl Check for libsamplerate -dnl ====================== -PKG_CHECK_MODULES(SAMPLERATE, samplerate >= 0.1.7) +AC_ARG_WITH(resample, [ --with-resample Build with resample support]) +if test x$with_resample == xyes; then + AC_MSG_WARN([*** Building resample support!]) + AC_DEFINE(WITH_RESAMPLE, [], [Use resample]) + + dnl ====================== + dnl Check for libsamplerate + dnl ====================== + PKG_CHECK_MODULES(SAMPLERATE, samplerate >= 0.1.7) +fi #dnl ====================== #dnl Check for libpng -- cgit v1.2.3