[MPlayer-cvslog] r33251 - trunk/configure
diego
subversion at mplayerhq.hu
Mon Apr 11 15:10:04 CEST 2011
Author: diego
Date: Mon Apr 11 15:10:03 2011
New Revision: 33251
Log:
Fix typo in v4l2 check.
The sys_videoio_h variable was being set instead of read in the V4L2 check,
resulting in V4L2 getting enabled unconditionally.
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Sun Apr 10 13:12:45 2011 (r33250)
+++ trunk/configure Mon Apr 11 15:10:03 2011 (r33251)
@@ -7393,7 +7393,7 @@ if test "$_tv_v4l2" = auto ; then
_tv_v4l2=no
if test "$_tv" = yes && linux ; then
header_check_broken sys/time.h linux/videodev2.h && _tv_v4l2=yes
- elif test "$_tv" = yes && sys_videoio_h=yes ; then
+ elif test "$_tv" = yes && test "$sys_videoio_h" = "yes" ; then
_tv_v4l2=yes
fi
fi
More information about the MPlayer-cvslog
mailing list