diff options
author | Stefan Eßer <se@FreeBSD.org> | 2021-05-01 19:43:12 +0200 |
---|---|---|
committer | Stefan Eßer <se@FreeBSD.org> | 2021-05-01 20:48:53 +0200 |
commit | 9df78543e018a28c73fc97caff2c3ac9cc7b62f7 (patch) | |
tree | 8a421e864e02588e99c236eaeffab67717edaec5 /multimedia/transcode/files/patch-import-v4l | |
parent | security/signify: Update keys for OpenBSD 6.9 (diff) |
multimedia: Revert removal of transcode and dependent ports
This is a partial revert of commit 60955c0a0956 which removed transcode
and ports depending on it for not building with -fno-common.
multimedia/transcode: Revert removal of port
The transcode port has been fixed to build with -fno-common by adding
1 "extern" and 3 "static" keywords to prevent some global symbols to
be defined in multiple files that are linked into one binary.
While here fix a few issues reported by "make stage-qa".
multimedia/dvdrip: remove DEPRECATED
multimedia/mkxvcd: remove DEPRECATED
multimedia/subtitleripper: remove DEPRECATED
While here add TIMESTAMP to distinfo of these ports and make portlint
and portclippy happy.
multimedia/transcode: Add TIMESTAMP to distinfo
Diffstat (limited to 'multimedia/transcode/files/patch-import-v4l')
-rw-r--r-- | multimedia/transcode/files/patch-import-v4l | 30 |
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) |