Do not check for the existence of LIRC devices during autodetection.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20359 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-10-22 13:19:15 +00:00
parent d8875d803c
commit 35783a93d0
1 changed files with 0 additions and 2 deletions

2
configure vendored
View File

@ -7368,13 +7368,11 @@ echores "$_joystick"
echocheck "lirc"
if test "$_lirc" = auto ; then
_lirc=no
if test -c /dev/lirc -o -c /dev/lirc/0 ; 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'