Skip to content

Commit

Permalink
multimedia/totem-pl-parser: fix build with lld 17
Browse files Browse the repository at this point in the history
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
  • Loading branch information
DimitryAndric committed Oct 26, 2023
1 parent 3a703f2 commit 275b35b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions 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;

0 comments on commit 275b35b

Please sign in to comment.