[vlc-devel] [PATCH] v4l2: check if kernel headers are recent enough
Rafaël Carré
funman at videolan.org
Thu Jan 19 02:06:21 CET 2012
V4L2_FIELD_INTERLACED_BT was introduced in v2.6.25-3581-g26d507f
---
configure.ac | 13 ++++++++++++-
1 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac
index 8489a90..557ffe1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1845,7 +1845,18 @@ AC_ARG_ENABLE(pvr, [AS_HELP_STRING([--enable-pvr],
[support PVR V4L2 cards (default disabled)])])
have_v4l2="no"
AC_CHECK_HEADERS([linux/videodev2.h sys/videoio.h], [
- have_v4l2="yes"
+ AC_PREPROC_IFELSE([
+ #ifdef __linux__
+ # include <linux/version.h>
+ # if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26)
+ # error Kernel headers too old
+ # endif
+ #endif
+ ], [
+ have_v4l2="yes"
+ ], [
+ AC_MSG_WARN([Kernel headers too old for V4L2 module. You need at least 2.6.22])
+ ])
])
AS_IF([test "$have_v4l2" = "yes"], [
AS_IF([test "${enable_libv4l2}" != "no"], [
--
1.7.8.3
More information about the vlc-devel
mailing list