summaryrefslogtreecommitdiff
path: root/package/MesaLib
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-10-11 11:42:58 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2013-10-11 11:42:58 +0200
commit633388aa0d49b87d723ed7475e434a514bd391bd (patch)
treef1c3ff55066d4632665569c2203d9336d1522ffc /package/MesaLib
parent5fd4ed6e780f365e56c4b67172cf08ddd8221cc1 (diff)
add latest version of firefox, update dependencies and fix nss package to include all necessary libraries for https support, tested only in qemu-i686 glibc for now
Diffstat (limited to 'package/MesaLib')
-rw-r--r--package/MesaLib/patches/patch-src_gallium_auxiliary_util_u_debug_symbol_c15
1 files changed, 14 insertions, 1 deletions
diff --git a/package/MesaLib/patches/patch-src_gallium_auxiliary_util_u_debug_symbol_c b/package/MesaLib/patches/patch-src_gallium_auxiliary_util_u_debug_symbol_c
index f1d92ca8c..b5da190a5 100644
--- a/package/MesaLib/patches/patch-src_gallium_auxiliary_util_u_debug_symbol_c
+++ b/package/MesaLib/patches/patch-src_gallium_auxiliary_util_u_debug_symbol_c
@@ -1,5 +1,5 @@
--- Mesa-8.0.5.orig/src/gallium/auxiliary/util/u_debug_symbol.c 2012-10-24 21:03:59.000000000 +0200
-+++ Mesa-8.0.5/src/gallium/auxiliary/util/u_debug_symbol.c 2013-09-25 17:45:12.000000000 +0200
++++ Mesa-8.0.5/src/gallium/auxiliary/util/u_debug_symbol.c 2013-10-08 12:13:11.000000000 +0200
@@ -151,23 +151,6 @@ debug_symbol_name_dbghelp(const void *ad
}
#endif
@@ -24,3 +24,16 @@
void
debug_symbol_name(const void *addr, char* buf, unsigned size)
{
+@@ -176,12 +159,6 @@ debug_symbol_name(const void *addr, char
+ if(buf[0])
+ return;
+ #endif
+-
+-#ifdef __GLIBC__
+- debug_symbol_name_glibc(addr, buf, size);
+- if(buf[0])
+- return;
+-#endif
+
+ util_snprintf(buf, size, "%p", addr);
+ buf[size - 1] = 0;