From 6c9c636c00223a7f9328172a8ef9b1891af9cced Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingo=20Br=C3=BCckl?= Date: Thu, 24 Oct 2013 20:26:36 +0200 Subject: [PATCH] lavd/fbdev_common: fix compilation with older kernels MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will avoid errors due to conflicting declarations with linux kernels prior to 2.6.30. Reviewed-by: Lukasz M Signed-off-by: Ingo Brückl --- libavdevice/fbdev_common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libavdevice/fbdev_common.h b/libavdevice/fbdev_common.h index ecbb8250f1..b6eea2f1c1 100644 --- a/libavdevice/fbdev_common.h +++ b/libavdevice/fbdev_common.h @@ -23,6 +23,7 @@ #ifndef AVDEVICE_FBDEV_COMMON_H #define AVDEVICE_FBDEV_COMMON_H +#include #include #include "libavutil/pixfmt.h"