1
mirror of https://github.com/mpv-player/mpv synced 2024-08-24 07:21:49 +02:00

trivial but nice fix for /dev/video? detection by "Julian J.M."

<bandit@telecable.es>


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6592 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-06-28 19:30:10 +00:00
parent d8fd7131bb
commit 18ef05cc25

2
configure vendored
View File

@ -3710,7 +3710,7 @@ echocheck "Video 4 Linux TV interface"
if test "$_tv_v4l" = auto ; then
_tv_v4l=no
if test "$_tv" = yes && linux ; then
if test -c /dev/video0 || test -c /dev/video ; then
if test -c /dev/video? || test -c /dev/video ; then
cat > $TMPC <<EOF
#include <stdlib.h>
#include <linux/videodev.h>