Skip to content

Commit

Permalink
Changed --enable-vorbis to --enable-ogg, made other format tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Mar 14, 2002
1 parent 758f573 commit 0bd343e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions configure.in
Expand Up @@ -128,7 +128,7 @@ fi

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)
Expand Down Expand Up @@ -213,11 +213,11 @@ if test x$enable_modplug = xyes; then
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"
Expand Down

0 comments on commit 0bd343e

Please sign in to comment.