comparison configure @ 3838:0fdab5847f76

fixes a problem with undefined types (harmless anyway)
author pl
date Fri, 28 Dec 2001 18:14:23 +0000
parents beba5552ed2d
children 25600d0bdc63
comparison
equal deleted inserted replaced
3837:6659db99f200 3838:0fdab5847f76
2437 if test "$_tv_v4l" = auto ; then 2437 if test "$_tv_v4l" = auto ; then
2438 _tv_v4l=no 2438 _tv_v4l=no
2439 if test "$_tv" = yes && linux ; then 2439 if test "$_tv" = yes && linux ; then
2440 if test -c /dev/video0 || test -c /dev/video ; then 2440 if test -c /dev/video0 || test -c /dev/video ; then
2441 cat > $TMPC <<EOF 2441 cat > $TMPC <<EOF
2442 #include <stdlib.h>
2442 #include <linux/videodev.h> 2443 #include <linux/videodev.h>
2443 int main(void) { return 0; } 2444 int main(void) { return 0; }
2444 EOF 2445 EOF
2445 cc_check && _tv_v4l=yes 2446 cc_check && _tv_v4l=yes
2446 fi 2447 fi