diff options
author | Avuton Olrich <avuton@gmail.com> | 2010-04-22 20:00:25 -0700 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2010-04-22 20:00:25 -0700 |
commit | 681128def43127d700a2b0adda473ed892f2f22f (patch) | |
tree | f090e73fd2ad779cdc171608cffc37a3f6f7cc1d | |
parent | f4f4a908bbc8c128e6383e9f45124dce83b1c391 (diff) | |
download | mpd-681128def43127d700a2b0adda473ed892f2f22f.tar.gz mpd-681128def43127d700a2b0adda473ed892f2f22f.tar.xz mpd-681128def43127d700a2b0adda473ed892f2f22f.zip |
configure.ac: Fix an omission during moving oggvorbis to decoder plugins.
-rw-r--r-- | configure.ac | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index 583659426..172e4decb 100644 --- a/configure.ac +++ b/configure.ac @@ -969,14 +969,10 @@ fi AM_CONDITIONAL(HAVE_OGGFLAC, test x$enable_oggflac = xyes) dnl -------------------------------- Ogg Vorbis ------------------------------- -if test x$enable_tremor != xyes && test x$enable_vorbis = xyes; then +if test x$enable_tremor != xno && test x$enable_vorbis = xyes; then PKG_CHECK_MODULES(VORBIS, [ogg vorbis vorbisfile], - -fi - -if test x$enable_vorbis = xyes; then - AC_DEFINE(ENABLE_VORBIS_DECODER, 1, [Define for Ogg Vorbis support]), - enable_vorbis=no) + AC_DEFINE(ENABLE_VORBIS_DECODER, 1, [Define for Ogg Vorbis support]), + enable_vorbis=no) fi AM_CONDITIONAL(ENABLE_VORBIS_DECODER, test x$enable_vorbis = xyes) |