aboutsummaryrefslogtreecommitdiff
path: root/multimedia/transcode/files
diff options
context:
space:
mode:
authorWilliam Grzybowski <wg@FreeBSD.org>2013-09-02 16:23:41 +0000
committerWilliam Grzybowski <wg@FreeBSD.org>2013-09-02 16:23:41 +0000
commitfc2ecf59aef8dc9540fc5e78471d3e07b9d0de4d (patch)
tree596b869e829f7aa0222b34187882c953715786a6 /multimedia/transcode/files
parent839ef5dcc231d4578b27fddbf9ea3c594ccff39d (diff)
downloadports-fc2ecf59aef8dc9540fc5e78471d3e07b9d0de4d.tar.gz
ports-fc2ecf59aef8dc9540fc5e78471d3e07b9d0de4d.zip
multimedia/transcode: add V4L option
- Add V4L option [1] - Remove support for OS < 7.x - Remove leading article from COMMENT - Add LICENSE (GPLv2) - USES gmake PR: ports/179460 Submitted by: Naram Qashat <cyberbotx cyberbotx.com> (maintainer)
Notes
Notes: svn path=/head/; revision=326026
Diffstat (limited to 'multimedia/transcode/files')
-rw-r--r--multimedia/transcode/files/patch-import-v4l30
1 files changed, 30 insertions, 0 deletions
diff --git a/multimedia/transcode/files/patch-import-v4l b/multimedia/transcode/files/patch-import-v4l
new file mode 100644
index 000000000000..7017cc9c1f51
--- /dev/null
+++ b/multimedia/transcode/files/patch-import-v4l
@@ -0,0 +1,30 @@
+--- import/v4l/import_v4l.c.orig 2011-11-19 11:50:27.000000000 -0500
++++ import/v4l/import_v4l.c 2013-06-10 14:51:01.000000000 -0400
+@@ -29,7 +29,7 @@
+ #include <sys/ioctl.h>
+ #include <sys/mman.h>
+
+-#include "videodev.h"
++#include <linux/videodev.h>
+
+ #define MOD_NAME "import_v4l.so"
+ #define MOD_VERSION "v0.2.0 (2008-10-26)"
+--- import/probe_v4l.c.orig 2011-11-19 11:50:27.000000000 -0500
++++ import/probe_v4l.c 2013-06-10 14:54:28.000000000 -0400
+@@ -31,14 +31,12 @@
+
+ #include <sys/ioctl.h>
+
+-#include "v4l/videodev.h"
++#include <linux/videodev.h>
+
+ #if defined(HAVE_LINUX_VIDEODEV2_H) && defined(HAVE_STRUCT_V4L2_BUFFER)
+ #define _LINUX_TIME_H
+-#include <linux/videodev2.h>
+-#else
+-#include "v4l/videodev2.h"
+ #endif
++#include <linux/videodev2.h>
+
+
+ void probe_v4l(info_t *ipipe)