fixed xanim detection (also present on non-x86 too - look at xanim homepage) and added tv into _inputmodules

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3242 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2001-12-01 14:41:54 +00:00
parent 6db942a8e6
commit b4ed51ce6f
1 changed files with 5 additions and 8 deletions

13
configure vendored
View File

@ -2113,20 +2113,16 @@ echocheck "XAnim DLL"
if test "$_xanim" = auto ; then
_xanim=no
if test "$_dl" = yes ; then
if x86 ; then
if test -z "$_xanimlibdir" ; then
for I in /usr/local/lib/xanim/mods /usr/lib/xanim/mods /usr/lib/xanim ; do
if test -z "$_xanimlibdir" ; then
for I in /usr/local/lib/xanim/mods /usr/lib/xanim/mods /usr/lib/xanim ; do
if test -d "$I" ; then
_xanimlibdir="$I"
break;
fi;
done
fi
test "$_xanimlibdir" && _xanim=yes
echores "yes (found: $_xanimlibdir)"
else
echores "not supported on non-x86"
fi
test "$_xanimlibdir" && _xanim=yes
echores "yes (found: $_xanimlibdir)"
else
echores "dl support needed"
fi
@ -2320,6 +2316,7 @@ echocheck "TV interface"
# FIXME tv check
if test "$_tv" = yes ; then
_def_tv='#define USE_TV 1'
_inputmodules="tv $_inputmodules"
else
_def_tv='#undef USE_TV'
fi