From fdbd1d9f7f3e0b98c57439c7d11b33be0b0fdbad Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 13 Sep 2003 05:08:17 +0000 Subject: [PATCH] NO_VORBIS_SUPPORT --- stepmania/configure.ac | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stepmania/configure.ac b/stepmania/configure.ac index f1b89e3d99..7dcaf7b974 100644 --- a/stepmania/configure.ac +++ b/stepmania/configure.ac @@ -67,6 +67,11 @@ if test "$with_vorbis" = "yes" -a "$have_vorbis" = "no"; then fi fi +if test "$have_vorbis" = "no"; then + AC_DEFINE(NO_VORBIS_SUPPORT, 1, [Vorbis support not available]) +fi + + AM_CONDITIONAL(HAVE_VORBIS, test "$have_vorbis" = "yes" )