[vlc-commits] configure: sort of fix speexdsp
Pierre Ynard
git at videolan.org
Mon Dec 19 03:31:50 CET 2011
vlc | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Mon Dec 19 03:30:20 2011 +0100| [c618458095cf74610053e9fe53e0a12ca7fc81c6] | committer: Pierre Ynard
configure: sort of fix speexdsp
$enable_speex can't be empty at this point so this check makes no sense
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c618458095cf74610053e9fe53e0a12ca7fc81c6
---
configure.ac | 6 +-----
1 files changed, 1 insertions(+), 5 deletions(-)
diff --git a/configure.ac b/configure.ac
index 53abe65..a3176c1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2745,11 +2745,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