Fix with_csri test, I typoed it without spaces which test requires. This was

forcing CSRI on in every condition.

Originally committed to SVN as r2179.
This commit is contained in:
Amar Takhar 2008-04-13 17:00:23 +00:00
parent dc404a954e
commit 806ba1eb5a
1 changed files with 1 additions and 1 deletions

View File

@ -471,7 +471,7 @@ AC_ARG_ENABLE(csri, [ --disable-csri disable CSRI (ASA) support (defau
if test "$enable_csri" != "no"; then
PKG_CHECK_MODULES(CSRI, csri >= 0.1.0, with_csri="yes", with_csri="no")
if test "$with_csri"="yes"; then
if test "$with_csri" = "yes"; then
AC_DEFINE(WITH_CSRI, 1, [Enable CSRI (ASA) Subtitle Provider])
fi
else