Commit c6184580 authored by Pierre Ynard's avatar Pierre Ynard

configure: sort of fix speexdsp

$enable_speex can't be empty at this point so this check makes no sense
parent ca3f97a5
......@@ -2744,13 +2744,9 @@ have_speexdsp="no"
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}.])
])
])
])
AM_CONDITIONAL([HAVE_SPEEXDSP], [test "$have_speexdsp" = "yes"])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment