From 161e8252ad1c855c60cf926ad79ef9111e64e2c3 Mon Sep 17 00:00:00 2001 From: Thierry Reding Date: Thu, 23 Feb 2012 09:11:55 +0100 Subject: [PATCH] Allow speex support to be explicitly disabled --- configure.ac | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index c8e06342d..13f386bbc 100644 --- a/configure.ac +++ b/configure.ac @@ -330,13 +330,17 @@ fi AC_WORDS_BIGENDIAN -dnl normaly this should only by done by mediastreamer2/configure.ac -dnl but to workaround bugs when cross-compiling for arm-linux, -dnl we need to have SPEEX_LIBS defined -dnl Furthermore it is good to repeat here all mediastreamer2 toggles -dnl since top-level configure --help will not print them. - -PKG_CHECK_MODULES(SPEEX, speex >= 1.1.6, build_speex=yes) +AC_ARG_ENABLE([speex], + AS_HELP_STRING([--disable-speex], [Disable speex support]), + [], [enable_speex=yes]) +if test "x$enable_speex" = "xyes"; then + dnl normaly this should only by done by mediastreamer2/configure.ac + dnl but to workaround bugs when cross-compiling for arm-linux, + dnl we need to have SPEEX_LIBS defined + dnl Furthermore it is good to repeat here all mediastreamer2 toggles + dnl since top-level configure --help will not print them. + PKG_CHECK_MODULES(SPEEX, speex >= 1.1.6, build_speex=yes) +fi dnl conditionnal build of video support AC_ARG_ENABLE(video,