From fa240bc665801eda74ad5b8cc31e4569af30c9ef Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Wed, 14 Jan 2009 06:06:37 +0000 Subject: [PATCH] Really disable libass if --disable-libass is provided. Originally committed to SVN as r2693. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 9e2967d5f..bb31a185c 100644 --- a/configure.in +++ b/configure.in @@ -612,7 +612,7 @@ if test "$enable_libass" != "no"; then fi fi -if test "$with_libass" = "yes"; then +if test "$with_libass" = "yes" || test "$enable_libass" != "no"; then AC_DEFINE(WITH_LIBASS, 1, [Enable libass Subtitle Provider]) else with_libass="no"