changeset 276:d7d55903124c

Changed --enable-vorbis to --enable-ogg, made other format tweaks.
author Ryan C. Gordon <icculus@icculus.org>
date Thu, 14 Mar 2002 16:16:53 +0000
parents da9c762c55e4
children d52d2166f43d
files configure.in
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in	Sun Mar 10 19:16:28 2002 +0000
+++ b/configure.in	Thu Mar 14 16:16:53 2002 +0000
@@ -128,7 +128,7 @@
 
 dnl Check for au decoder inclusion
 AC_ARG_ENABLE(au,
-[  --enable-au              enable AU decoding [default=yes]],
+[  --enable-au                enable AU decoding [default=yes]],
               , enable_au=yes)
 if test x$enable_au = xyes; then
     AC_DEFINE(SOUND_SUPPORTS_AU)
@@ -213,11 +213,11 @@
   fi
 fi
 
-dnl Check for vorbis
-AC_ARG_ENABLE(vorbis,
-[  --enable-vorbis            enable OGG decoding via vorbis [default=yes]],
-              , enable_vorbis=yes)
-if test x$enable_vorbis = xyes; then
+dnl Check for ogg
+AC_ARG_ENABLE(ogg,
+[  --enable-ogg               enable OGG decoding via libvorbis [default=yes]],
+              , enable_ogg=yes)
+if test x$enable_ogg = xyes; then
   AM_PATH_VORBIS
   if test "x$no_vorbis" = "x" ; then
     CFLAGS="$CFLAGS $VORBIS_CFLAGS"