From 841b9b3d637f591ba73123ffccbf3c094f1ff2ae Mon Sep 17 00:00:00 2001 From: Avuton Olrich Date: Sat, 11 Sep 2010 20:07:55 -0700 Subject: configure.ac: Move use_tremor to enable_tremor. --- configure.ac | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 68f40190e..8b54846a0 100644 --- a/configure.ac +++ b/configure.ac @@ -916,13 +916,13 @@ AM_CONDITIONAL(HAVE_MPCDEC, test x$enable_mpc = xyes) dnl -------------------------------- Ogg Tremor ------------------------------- if test x$with_tremor = xyes || test x$with_tremor = xno; then - use_tremor="$with_tremor" + enable_tremor="$with_tremor" else tremor_prefix="$with_tremor" - use_tremor=yes + enable_tremor=yes fi -if test x$use_tremor = xyes; then +if test x$enable_tremor = xyes; then if test "x$tremor_libraries" != "x" ; then TREMOR_LIBS="-L$tremor_libraries" elif test "x$tremor_prefix" != "x" ; then @@ -953,7 +953,7 @@ AC_SUBST(TREMOR_LIBS) dnl --------------------------------- OggFLAC --------------------------------- dnl OggFLAC must go after Ogg Tremor -if test x$use_tremor = xyes && test x$enable_oggflac = xyes; then +if test x$enable_tremor = xyes && test x$enable_oggflac = xyes; then AC_MSG_WARN([disabling OggFLAC support because it is incompatible with tremor]) enable_oggflac=no fi @@ -971,7 +971,7 @@ AM_CONDITIONAL(HAVE_OGGFLAC, test x$enable_oggflac = xyes) dnl -------------------------------- Ogg Vorbis ------------------------------- if test x$enable_vorbis = xyes; then - if test x$use_tremor = xyes; then + if test x$enable_tremor = xyes; then AC_MSG_WARN(["OggTremor detected, could not enable Vorbis."]) enable_vorbis=no elif test x$enable_ogg = xyes; then @@ -1511,7 +1511,7 @@ results(mp4, [MP4]) results(mpc, [Musepack]) results(oggflac, [OggFLAC], flac) echo -ne '\n\t' -results(with_tremor, [OggTremor]) +results(tremor, [OggTremor]) results(vorbis, [OggVorbis]) results(audiofile, [WAVE]) results(wavpack, [WavPack]) -- cgit v1.2.3