diff options
-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], |