diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-01-18 14:31:37 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-01-18 14:31:37 +0000 |
commit | 2e6cd812d583d95d9a34059277174f62351b64eb (patch) | |
tree | 56a43fff30043f5dfb6892984fa5d0ed86988507 | |
parent | 25593cf777d64f48110ed11231c15680aaa22a4c (diff) | |
download | xine-lib-2e6cd812d583d95d9a34059277174f62351b64eb.tar.gz xine-lib-2e6cd812d583d95d9a34059277174f62351b64eb.tar.bz2 |
Enable the FLAC decoder by default.
-rw-r--r-- | m4/decoders.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/decoders.m4 b/m4/decoders.m4 index 4c7f36d7d..465784fb8 100644 --- a/m4/decoders.m4 +++ b/m4/decoders.m4 @@ -150,10 +150,10 @@ AC_DEFUN([XINE_DECODER_PLUGINS], [ AM_CONDITIONAL([WITH_EXTERNAL_LIBDTS], [test x"$have_external_dts" = x"yes"]) - dnl libFLAC (optional; disabled by default) + dnl libFLAC (optional; enabled by default) AC_ARG_WITH([libflac], - [AS_HELP_STRING([--with-libflac], [build libFLAC-based decoder and demuxer])], - [test x"$withval" != x"no" && with_libflac="yes"], [with_libflac="no"]) + [AS_HELP_STRING([--with-libflac], [build libFLAC-based decoder and demuxer (default: enabled)])], + [test x"$withval" != x"no" && with_libflac="yes"]) AC_ARG_WITH([libFLAC-prefix], [AS_HELP_STRING([--with-libFLAC-prefix=DIR], [prefix where libFLAC is installed (optional)])]) AC_ARG_WITH([libFLAC-libraries], |