From 681128def43127d700a2b0adda473ed892f2f22f Mon Sep 17 00:00:00 2001
From: Avuton Olrich <avuton@gmail.com>
Date: Thu, 22 Apr 2010 20:00:25 -0700
Subject: [PATCH] configure.ac: Fix an omission during moving oggvorbis to
 decoder plugins.

---
 configure.ac | 10 +++-------
 1 file 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)