From 24716d7c88408d6929fc33d74d38c2490e2dd371 Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Thu, 18 Aug 2016 14:38:14 +0200 Subject: [PATCH] elf: add more pango mappings --- lib/sp-elf-symbol-resolver.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/sp-elf-symbol-resolver.c b/lib/sp-elf-symbol-resolver.c index a2ea7c9c..8d78d86d 100644 --- a/lib/sp-elf-symbol-resolver.c +++ b/lib/sp-elf-symbol-resolver.c @@ -189,6 +189,18 @@ guess_tag (SpElfSymbolResolver *self, else if (strstr (map->filename, "/libpango-1.0.")) tag = g_quark_from_static_string ("Pango"); + else if (strstr (map->filename, "/libpangocairo-1.0.")) + tag = g_quark_from_static_string ("Pango"); + + else if (strstr (map->filename, "/libpangomm-1.4.")) + tag = g_quark_from_static_string ("Pango"); + + else if (strstr (map->filename, "/libpangoft2-1.0")) + tag = g_quark_from_static_string ("Pango"); + + else if (strstr (map->filename, "/libpangoxft-1.0.")) + tag = g_quark_from_static_string ("Pango"); + else if (strstr (map->filename, "/libclutter-")) tag = g_quark_from_static_string ("Clutter");