[vlc-commits] configure: sort of fix speexdsp

Pierre Ynard git at videolan.org
Mon Dec 19 03:39:33 CET 2011


vlc/vlc-1.2 | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Mon Dec 19 03:30:20 2011 +0100| [ffe0f9de8190292969902da1c2ae472c0d863f30] | committer: Pierre Ynard

configure: sort of fix speexdsp

$enable_speex can't be empty at this point so this check makes no sense
(cherry picked from commit c618458095cf74610053e9fe53e0a12ca7fc81c6)

Signed-off-by: Pierre Ynard <linkfanel at yahoo.fr>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.2.git/?a=commit;h=ffe0f9de8190292969902da1c2ae472c0d863f30
---

 configure.ac |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/configure.ac b/configure.ac
index 61d1d9b..057dc68 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2814,11 +2814,7 @@ AS_IF([test "${enable_speex}" != "no"], [
   PKG_CHECK_MODULES([SPEEXDSP], [speexdsp], [
     have_speexdsp="yes"
   ], [
-    AS_IF([test -n "${enable_speex}"], [
-      AC_MSG_ERROR([${SPEEXDSP_PKG_ERRORS}.])
-    ], [
-      AC_MSG_WARN([${SPEEXDSP_PKG_ERRORS}.])
-    ])
+    AC_MSG_WARN([${SPEEXDSP_PKG_ERRORS}.])
   ])
 ])
 AM_CONDITIONAL([HAVE_SPEEXDSP], [test "$have_speexdsp" = "yes"])



More information about the vlc-commits mailing list