summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorUoti Urpala <uau@mplayer2.org>2011-07-06 20:41:48 +0300
committerUoti Urpala <uau@mplayer2.org>2011-07-06 20:41:48 +0300
commitdb6b74e807b003fab59e54d60fbce8673c3b6596 (patch)
treeae498eaee9e0dea2eaec35e48841c63db0e0595e /configure
parent00ec1a40f13f17d05df499dae2505f4edd2e82cf (diff)
downloadmpv-db6b74e807b003fab59e54d60fbce8673c3b6596.tar.bz2
mpv-db6b74e807b003fab59e54d60fbce8673c3b6596.tar.xz
configure: rename "--disable-ass" to "--disable-libass"
The name of the project is "libass". "ASS" alone refers only to the subtitle format, not the library, and --disable-ass did not completely disable handling of subtitles in this format - only advanced rendering with libass. Thus --disable-libass is a better name.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 8fb2698e70..e2cc811987 100755
--- a/configure
+++ b/configure
@@ -347,7 +347,7 @@ Optional features:
--disable-vstream disable TiVo vstream client support [autodetect]
--disable-pthreads disable Posix threads support [autodetect]
--disable-w32threads disable Win32 threads support [autodetect]
- --disable-ass disable internal SSA/ASS subtitle support [autodetect]
+ --disable-libass disable subtitle rendering with libass [autodetect]
--enable-rpath enable runtime linker path for extra libs [disabled]
Codecs:
@@ -1096,8 +1096,8 @@ for ac_option do
--disable-pthreads) _pthreads=no ;;
--enable-w32threads) _w32threads=yes ;;
--disable-w32threads) _w32threads=no ;;
- --enable-ass) _ass=yes ;;
- --disable-ass) _ass=no ;;
+ --enable-libass) _ass=yes ;;
+ --disable-libass) _ass=no ;;
--enable-rpath) _rpath=yes ;;
--disable-rpath) _rpath=no ;;
@@ -5472,7 +5472,7 @@ if test "$_ass" = auto -o "$_ass" = yes ; then
extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
else
- die "Unable to find development files for libass. Aborting. If you really mean to compile without libass support use --disable-ass."
+ die "Unable to find development files for libass. Aborting. If you really mean to compile without libass support use --disable-libass."
fi
else
def_ass='#undef CONFIG_ASS'