diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index df262cc26..5317a4be1 100644 --- a/configure.ac +++ b/configure.ac @@ -1262,10 +1262,10 @@ dnl check for libFLAC dnl --------------------------------------------- AC_ARG_WITH([libflac], - AS_HELP_STRING([--with-libflac], [build libFLAC-based decoder and demuxer])) + AS_HELP_STRING([--without-libflac], [don't build libFLAC-based decoder and demuxer])) have_libflac="no" -if test "x$with_libflac" = "xyes"; then +if test "x$with_libflac" != "xno"; then AM_PATH_LIBFLAC([have_libflac="yes"]) fi |