summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-01 14:41:54 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-01 14:41:54 +0000
commitb4ed51ce6f3c0ac639c8e35a51cdf8ed67514ab5 (patch)
tree9c6600bbe7b0171402f14c3675dc71bdadf0ebcc
parent6db942a8e6c5af61c333ee55cb862d13eb583264 (diff)
downloadmpv-b4ed51ce6f3c0ac639c8e35a51cdf8ed67514ab5.tar.bz2
mpv-b4ed51ce6f3c0ac639c8e35a51cdf8ed67514ab5.tar.xz
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
-rwxr-xr-xconfigure13
1 files changed, 5 insertions, 8 deletions
diff --git a/configure b/configure
index d37a3c9032..a06a7762eb 100755
--- a/configure
+++ b/configure
@@ -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