From 5bd495e48fd148bf73befc5763f8d29c5b2558ee Mon Sep 17 00:00:00 2001 From: Angel Carpintero Date: Mon, 9 May 2011 21:43:42 +0200 Subject: [PATCH] Fix workaround for missing videodev.h --- video.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/video.c b/video.c index c656452..5b3018e 100644 --- a/video.c +++ b/video.c @@ -7,12 +7,12 @@ * See also the file 'COPYING'. * */ -#if (!defined(WITHOUT_V4L)) && (defined(HAVE_LINUX_VIDEODEV_H)) - /* Common stuff: */ #include "rotate.h" /* already includes motion.h */ #include "video.h" +#if defined(HAVE_LINUX_VIDEODEV_H) && !defined(WITHOUT_V4L) + /** * v4l_picture_controls */