Move toolame vs twolame logic into the $_toolame=auto case.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21927 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-01-14 22:58:25 +00:00
parent 46305348a7
commit a6cc078d26
1 changed files with 5 additions and 2 deletions

7
configure vendored
View File

@ -5659,15 +5659,18 @@ fi
echores "$_twolame"
echocheck "Toolame"
test "$_twolame" = yes && _toolame=no && _res_comment="disabled by twolame"
if test "$_toolame" = auto ; then
_toolame=no
if test "$_twolame" = yes ; then
_res_comment="disabled by twolame"
else
cat > $TMPC <<EOF
#include <toolame.h>
int main(void) { toolame_init(); return 0; }
EOF
_toolame=no
cc_check -ltoolame $_ld_lm && _toolame=yes
fi
fi
if test "$_toolame" = yes ; then
_def_toolame='#define HAVE_TOOLAME 1'
_libs_mencoder="$_libs_mencoder -ltoolame"