mirror of https://github.com/odrling/Aegisub
Make CSRI disabled by default, it leaks memory and is outdated, use libass.
Originally committed to SVN as r3956.
This commit is contained in:
parent
7fa045b84d
commit
8b516b4301
|
@ -725,9 +725,10 @@ AC_SUBST(LIBASS_CFLAGS)
|
|||
|
||||
|
||||
|
||||
AC_ARG_ENABLE(csri, [ --disable-csri disable CSRI (ASA) support (default=enabled)], csri_disabled="(disabled)")
|
||||
AC_ARG_ENABLE(csri, [ --enable-csri enable CSRI (ASA) support THIS IS BROKEN
|
||||
(default=disabled)])
|
||||
|
||||
if test "$enable_csri" != "no"; then
|
||||
if test "$enable_csri" = "yes"; then
|
||||
PKG_CHECK_MODULES(CSRI, csri >= 0.1.0, with_csri="yes", with_csri="no")
|
||||
PKG_CHECK_MODULES(ASA, asa >= 0.3.2, with_asa="yes", with_asa="no")
|
||||
if test "$with_csri" = "yes" && test "$with_asa" = "yes"; then
|
||||
|
|
Loading…
Reference in New Issue