Commit 6e3bd4f6 authored by Victor A. Safronov's avatar Victor A. Safronov Committed by Max Kellermann

Incorrect identifying of --with-tremor option in configure.ac

[mk: moved check out of the AC_ARG_WITH block]
parent a2de0f0f
...@@ -475,9 +475,15 @@ dnl Ogg Tremor ...@@ -475,9 +475,15 @@ dnl Ogg Tremor
dnl ### dnl ###
AC_ARG_WITH(tremor, AC_ARG_WITH(tremor,
AS_HELP_STRING([--with-tremor=PFX], AS_HELP_STRING([--with-tremor=PFX],
[use Tremor (vorbisidec) integer Ogg Vorbis decoder (with optional prefix)]), [use Tremor (vorbisidec) integer Ogg Vorbis decoder (with optional prefix)]),,
use_tremor=yes; test x$withval != xyes && tremor_prefix="$withval", with_tremor=no)
)
if test x$with_tremor = xyes || test x$with_tremor = xno; then
use_tremor="$with_tremor"
else
tremor_prefix="$with_tremor"
use_tremor=yes
fi
AC_ARG_WITH(tremor-libraries, AC_ARG_WITH(tremor-libraries,
AS_HELP_STRING([--with-tremor-libraries=DIR], AS_HELP_STRING([--with-tremor-libraries=DIR],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment