From 806ba1eb5a6d4d5c659e005ca87015382fe11327 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Sun, 13 Apr 2008 17:00:23 +0000 Subject: [PATCH] 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. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 4a8e7d6e5..a0e4caee4 100644 --- a/configure.in +++ b/configure.in @@ -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