mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
9df78543e0
This is a partial revert of commit 60955c0a09
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
14 lines
371 B
Plaintext
14 lines
371 B
Plaintext
--- filter/filter_pp.c
|
|
+++ filter/filter_pp.c
|
|
@@ -38,8 +38,8 @@
|
|
|
|
/* FIXME: these use the filter ID as an index--the ID can grow
|
|
* arbitrarily large, so this needs to be fixed */
|
|
-static pp_mode_t *mode[100];
|
|
-static pp_context_t *context[100];
|
|
+static pp_mode *mode[100];
|
|
+static pp_context *context[100];
|
|
static int width[100], height[100];
|
|
static int pre[100];
|
|
|