git: 275b35b570bd - main - multimedia/totem-pl-parser: fix build with lld 17
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 26 Oct 2023 16:38:11 UTC
The branch main has been updated by dim:
URL: https://cgit.FreeBSD.org/ports/commit/?id=275b35b570bdb46a16d3b87cf7c06ffaa97ff0fd
commit 275b35b570bdb46a16d3b87cf7c06ffaa97ff0fd
Author: Dimitry Andric <dim@FreeBSD.org>
AuthorDate: 2023-10-21 12:24:48 +0000
Commit: Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2023-10-26 16:37:05 +0000
multimedia/totem-pl-parser: fix build with lld 17
Building multimedia/totem-pl-parser with lld 17 results in the following
link errors:
ld: error: version script assignment of 'LIBTOTEM_PL_PARSER_MINI_1.0' to symbol 'totem_disc_media_type_get_type' failed: symbol not defined
ld: error: version script assignment of 'LIBTOTEM_PL_PARSER_MINI_1.0' to symbol 'totemplparser_marshal_VOID__STRING_STRING_STRING' failed: symbol not defined
The mentioned symbols no longer exist in libtotem-pl-parser, and can be
deleted from the linker version script.
PR: 274626
Approved by: gnome (blanket)
MFH: 2023Q4
---
.../totem-pl-parser/files/patch-plparse_plparser.map | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/multimedia/totem-pl-parser/files/patch-plparse_plparser.map b/multimedia/totem-pl-parser/files/patch-plparse_plparser.map
new file mode 100644
index 000000000000..7ba241e291b3
--- /dev/null
+++ b/multimedia/totem-pl-parser/files/patch-plparse_plparser.map
@@ -0,0 +1,18 @@
+--- plparse/plparser.map.orig 2021-06-25 12:17:41 UTC
++++ plparse/plparser.map
+@@ -6,7 +6,6 @@ LIBTOTEM_PL_PARSER_MINI_1.0 {
+ totem_cd_get_human_readable_name;
+ totem_cd_has_medium;
+ totem_cd_mrl_from_type;
+- totem_disc_media_type_get_type;
+ totem_disc_media_type_quark;
+ totem_pl_parser_add_ignored_mimetype;
+ totem_pl_parser_add_ignored_scheme;
+@@ -17,7 +16,6 @@ LIBTOTEM_PL_PARSER_MINI_1.0 {
+ totem_pl_parser_error_get_type;
+ totem_pl_parser_error_quark;
+ totem_pl_parser_get_type;
+- totemplparser_marshal_VOID__STRING_STRING_STRING;
+ totem_pl_parser_new;
+ totem_pl_parser_parse;
+ totem_pl_parser_parse_async;