From 879db30e21aaf03e4cdcd2fd8aba0fa8c017155f Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Sat, 22 Mar 2008 08:23:54 +0000 Subject: [PATCH] Fix conditional for libass support in Makefiles. Originally committed to SVN as r2100. --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index ef11f9040..bd49282ec 100644 --- a/configure.in +++ b/configure.in @@ -328,8 +328,8 @@ fi AC_SUBST(LIBASS_LIBS) AC_SUBST(LIBASS_CFLAGS) -AM_CONDITIONAL([WITH_INTERNAL_LIBASS], [test "$with_libass" != "no" ]) -AM_CONDITIONAL([HAVE_LIBASS], [test "$with_libass" != "no" ]) +AM_CONDITIONAL([WITH_INTERNAL_LIBASS], [test "$with_libass" = "yes" || test "$with_internal_libass" = "yes"]) +AM_CONDITIONAL([HAVE_LIBASS], [test "$with_libass" = "yes" || test "$with_internal_libass" = "yes"])