summaryrefslogtreecommitdiff
path: root/media-video/motion/files/motion-3.2.12-workaround-v4l1_deprecation.patch
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2016-07-31 07:50:49 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2016-07-31 07:50:49 +0300
commitb2908b16cbed6d0117855e607ea2f7c348163703 (patch)
tree9de904f4b332614be8933945ae3f659a1c54ec56 /media-video/motion/files/motion-3.2.12-workaround-v4l1_deprecation.patch
parent547e41db486eb1853a1db18ecddf4cc96a8395c5 (diff)
motion: used more recent fork
Diffstat (limited to 'media-video/motion/files/motion-3.2.12-workaround-v4l1_deprecation.patch')
-rw-r--r--media-video/motion/files/motion-3.2.12-workaround-v4l1_deprecation.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/media-video/motion/files/motion-3.2.12-workaround-v4l1_deprecation.patch b/media-video/motion/files/motion-3.2.12-workaround-v4l1_deprecation.patch
deleted file mode 100644
index 04a18dc..0000000
--- a/media-video/motion/files/motion-3.2.12-workaround-v4l1_deprecation.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-motion has both v4l1 and v4l2 support but they are not separate except in upstream version control.
-so, temporarily use the libv4l1-videodev.h from libv4l to allow succesful build of the v4l2 (pay attention here!) backend.
-
---- motion.h
-+++ motion.h
-@@ -40,7 +40,7 @@
-
- #define _LINUX_TIME_H 1
- #if !defined(WITHOUT_V4L) && !defined(BSD)
--#include <linux/videodev.h>
-+#include <libv4l1-videodev.h>
- #endif
-
- #include <pthread.h>
---- track.c
-+++ track.c
-@@ -11,6 +11,7 @@
- #include "motion.h"
-
- #ifndef WITHOUT_V4L
-+#include <linux/videodev2.h>
- #include "pwc-ioctl.h"
- #endif
-
---- video.h
-+++ video.h
-@@ -12,7 +12,7 @@
-
- #define _LINUX_TIME_H 1
- #ifndef WITHOUT_V4L
--#include <linux/videodev.h>
-+#include <libv4l1-videodev.h>
- #include <sys/mman.h>
- #include "pwc-ioctl.h"
- #endif