diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-12-24 03:53:15 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-12-24 03:53:15 +0000 |
commit | f8aa696f9fde35ea7d5a42ef3fb65a5771fe02cc (patch) | |
tree | 727a2e15c0d079c67a602d1b685e65134c62fca5 /configure | |
parent | 6cf161d21ec309b50830e3b5c864f1ecacc31b80 (diff) | |
download | ffmpeg-f8aa696f9fde35ea7d5a42ef3fb65a5771fe02cc.tar.gz |
Properly check for all required bktr headers.
inspired by a patch from Tatu Kilappa, trilkk iki fi
Originally committed as revision 7374 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -455,6 +455,11 @@ HAVE_LIST=' beosthreads byteswap_h dcbzl + dev_bktr_ioctl_bt848_h + dev_bktr_ioctl_meteor_h + dev_ic_bt8xx_h + dev_video_meteor_ioctl_meteor_h + dev_video_bktr_ioctl_bt848_h dlfcn_h dlopen freetype2 @@ -463,6 +468,8 @@ HAVE_LIST=' inet_aton localtime_r lrintf + machine_ioctl_bt848_h + machine_ioctl_meteor_h malloc_h memalign mlib @@ -1660,6 +1667,20 @@ int dummy = V4L2_PIX_FMT_YUV420; struct v4l2_buffer dummy1; EOF +# check for ioctl_meteor.h, ioctl_bt848.h and alternatives +if enabled bktr; then + check_header dev/bktr/ioctl_meteor.h + check_header dev/bktr/ioctl_bt848.h + + check_header machine/ioctl_meteor.h + check_header machine/ioctl_bt848.h + + check_header dev/video/meteor/ioctl_meteor.h + check_header dev/video/bktr/ioctl_bt848.h + + check_header dev/ic/bt8xx.h +fi + # Deal with the x11 frame grabber enabled x11grab && enabled gpl && |