1
mirror of https://github.com/mpv-player/mpv synced 2024-08-04 14:59:58 +02:00

Allow compilation with gcc 2.95.3 if videodev2.h does not support it.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29516 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
cehoyos 2009-08-14 09:31:16 +00:00
parent 28b847afce
commit b3506ab290

2
configure vendored
View File

@ -7692,7 +7692,7 @@ if test "$_pvr" = auto ; then
#include <inttypes.h>
#include <linux/types.h>
#include <linux/videodev2.h>
int main(void) { struct v4l2_ext_controls ext; return 0; }
int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
EOF
cc_check && _pvr=yes
fi