mirror of https://github.com/odrling/Aegisub
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:
parent
dc404a954e
commit
806ba1eb5a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue