View | Details | Raw Unified | Return to bug 10874
Collapse All | Expand All

(-)mpd-0.12.1.orig/configure (-1 / +7 lines)
Lines 18970-18976 Link Here
18970
# Check whether --with-tremor or --without-tremor was given.
18970
# Check whether --with-tremor or --without-tremor was given.
18971
if test "${with_tremor+set}" = set; then
18971
if test "${with_tremor+set}" = set; then
18972
  withval="$with_tremor"
18972
  withval="$with_tremor"
18973
  use_tremor=yes; test x$withval != xyes && tremor_prefix="$withval"
18973
  if test "x$withval" = xyes -o "x$withval" = xno; then
18974
    use_tremor="$withval"
18975
  else
18976
    use_tremor=yes
18977
    tremor_prefix="$withval"
18978
  fi
18979
18974
fi;
18980
fi;
18975
18981
18976
# Check whether --with-tremor-libraries or --without-tremor-libraries was given.
18982
# Check whether --with-tremor-libraries or --without-tremor-libraries was given.
(-)mpd-0.12.1.orig/configure.ac (-1 / +8 lines)
Lines 81-87 Link Here
81
AC_ARG_ENABLE(mpc,[  --disable-mpc           disable musepack (MPC) support (default: enable)],[enable_mpc=$enableval],[enable_mpc=yes])
81
AC_ARG_ENABLE(mpc,[  --disable-mpc           disable musepack (MPC) support (default: enable)],[enable_mpc=$enableval],[enable_mpc=yes])
82
AC_ARG_ENABLE(id3,[  --disable-id3           disable id3 support (default: enable)],[enable_id3=$enableval],[enable_id3=yes])
82
AC_ARG_ENABLE(id3,[  --disable-id3           disable id3 support (default: enable)],[enable_id3=$enableval],[enable_id3=yes])
83
83
84
AC_ARG_WITH(tremor,[[  --with-tremor[=PFX]         Use Tremor(vorbisidec) integer Ogg-Vorbis decoder (with optional prefix)]], use_tremor=yes; test x$withval != xyes && tremor_prefix="$withval",)
84
AC_ARG_WITH(tremor,[[  --with-tremor[=PFX]         Use Tremor(vorbisidec) integer Ogg-Vorbis decoder (with optional prefix)]],
85
  if test "x$withval" = xyes -o "x$withval" = xno; then
86
    use_tremor="$withval"
87
  else
88
    use_tremor=yes
89
    tremor_prefix="$withval"
90
  fi
91
,)
85
AC_ARG_WITH(tremor-libraries,[  --with-tremor-libraries=DIR Directory where Tremor library is installed (optional)], tremor_libraries="$withval", tremor_libraries="")
92
AC_ARG_WITH(tremor-libraries,[  --with-tremor-libraries=DIR Directory where Tremor library is installed (optional)], tremor_libraries="$withval", tremor_libraries="")
86
AC_ARG_WITH(tremor-includes,[  --with-tremor-includes=DIR  Directory where Tremor header files are installed (optional)], tremor_includes="$withval", tremor_includes="")
93
AC_ARG_WITH(tremor-includes,[  --with-tremor-includes=DIR  Directory where Tremor header files are installed (optional)], tremor_includes="$withval", tremor_includes="")
87
94

Return to bug 10874