1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-18 17:40:30 +00:00

patch by Adam Di Carlo <adam@onshore-devel.com>:

1 more xanim path
  improved lirc autodetection


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3238 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
pl 2001-12-01 02:32:40 +00:00
parent 41d658fb35
commit 9d07c2e4cb

12
configure vendored
View File

@ -2115,7 +2115,7 @@ if test "$_xanim" = auto ; then
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 ; do
for I in /usr/local/lib/xanim/mods /usr/lib/xanim/mods /usr/lib/xanim ; do
if test -d "$I" ; then
_xanimlibdir="$I"
break;
@ -2125,7 +2125,7 @@ if test "$_xanim" = auto ; then
test "$_xanimlibdir" && _xanim=yes
echores "yes (found: $_xanimlibdir)"
else
echores "not supported on non x86"
echores "not supported on non-x86"
fi
else
echores "dl support needed"
@ -2289,7 +2289,13 @@ echores "$_mencoder"
echocheck "lirc"
if test "$_lirc" = auto ; then
_lirc=no
test -c /dev/lirc && _lirc=yes
if test -c /dev/lirc ; then
cat > $TMPC <<EOF
#include <lirc/lirc_client.h>
int main(void) { return 0; }
EOF
cc_check -llirc_client && _lirc=yes
fi
fi
if test "$_lirc" = yes ; then
_def_lirc='#define HAVE_LIRC 1'