diff options
author | Avuton Olrich <avuton@gmail.com> | 2010-09-11 19:28:30 -0700 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2010-09-11 19:28:30 -0700 |
commit | 27d3340af20b125cabcbf881cef94a17a2cf8589 (patch) | |
tree | f9086fe21a0524e1e624f853868d0b5f8e6e3b22 | |
parent | d953225531b69839b4f28a3c797abe64916611e4 (diff) | |
download | mpd-27d3340af20b125cabcbf881cef94a17a2cf8589.tar.gz mpd-27d3340af20b125cabcbf881cef94a17a2cf8589.tar.xz mpd-27d3340af20b125cabcbf881cef94a17a2cf8589.zip |
configure.ac: Fix OggFLAC/tremor test.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b96fe0a07..2cb379119 100644 --- a/configure.ac +++ b/configure.ac @@ -951,7 +951,7 @@ AC_SUBST(TREMOR_LIBS) dnl --------------------------------- OggFLAC --------------------------------- dnl OggFLAC must go after Ogg Tremor -if test x$use_tremor = xyes && test $xenable_oggflac = xyes; then +if test x$use_tremor = xyes && test x$enable_oggflac = xyes; then AC_MSG_WARN([disabling OggFLAC support because it is incompatible with tremor]) enable_oggflac=no fi |