1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-25 04:38:01 +00:00

Print which of Tremor, internal Tremor or libvorbis has been enabled.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14632 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2005-02-01 11:54:50 +00:00
parent 0e85a7ebb2
commit d06bb5b31b

4
configure vendored
View File

@ -5125,14 +5125,16 @@ if test "$_vorbis" = yes ; then
else
_tremor_flags=''
fi
_codecmodules="tremor(internal) $_codecmodules"
elif test "$_tremor" = yes ; then
_def_tremor='#define TREMOR 1'
_ld_vorbis='-lvorbisidec'
_codecmodules="tremor $_codecmodules"
else
_def_tremor='#undef TREMOR'
_ld_vorbis='-lvorbis -logg'
_codecmodules="libvorbis $_codecmodules"
fi
_codecmodules="libvorbis $_codecmodules"
else
_def_vorbis='#undef HAVE_OGGVORBIS'
_def_tremor='#undef TREMOR'