mirror of https://github.com/odrling/Aegisub
Fix conditional for libass support in Makefiles.
Originally committed to SVN as r2100.
This commit is contained in:
parent
65e92e8e3c
commit
879db30e21
|
@ -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"])
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue