From 4197e23817cdd691d3e39ee8990d604a4acf2e64 Mon Sep 17 00:00:00 2001 From: Sean Burke Date: Sat, 6 May 2006 01:10:49 +0000 Subject: [PATCH] Fix compiling with vorbis support --- stepmania/autoconf/m4/audio.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/autoconf/m4/audio.m4 b/stepmania/autoconf/m4/audio.m4 index 00ee4b1ebf..4c26803c57 100644 --- a/stepmania/autoconf/m4/audio.m4 +++ b/stepmania/autoconf/m4/audio.m4 @@ -1,6 +1,6 @@ AC_DEFUN([SM_AUDIO], [ -AC_ARG_WITH(vorbis, AC_HELP_STRING([--without-vorbis], [Disable Vorbis support]), with_vorbis=$enableval, with_vorbis=yes) +AC_ARG_WITH(vorbis, AC_HELP_STRING([--without-vorbis], [Disable Vorbis support]), with_vorbis=$withval, with_vorbis=yes) # This is used to force the integer decoder, on systems that prefer it. AC_ARG_WITH(integer-vorbis, AC_HELP_STRING([--with-integer-vorbis], [Integer vorbis decoding only]), with_int_vorbis=$withval, with_int_vorbis=no)