diff options
author | William Pitcock <nenolod@dereferenced.org> | 2011-01-28 15:33:18 -0600 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2011-01-28 15:33:47 -0600 |
commit | 36554c047157fc5af2f23eb6d63020ae3527951a (patch) | |
tree | aa642ef69e8335100f37be641465e72a3b6825ca /main/mesa/mesa-7.10-uclibc-gallium.patch | |
parent | c2fe699c78fcfa81d89d454c2345516c502aeb8d (diff) | |
download | aports-36554c047157fc5af2f23eb6d63020ae3527951a.tar.bz2 aports-36554c047157fc5af2f23eb6d63020ae3527951a.tar.xz |
main/mesa: upgrade to 7.10
Diffstat (limited to 'main/mesa/mesa-7.10-uclibc-gallium.patch')
-rw-r--r-- | main/mesa/mesa-7.10-uclibc-gallium.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/main/mesa/mesa-7.10-uclibc-gallium.patch b/main/mesa/mesa-7.10-uclibc-gallium.patch new file mode 100644 index 0000000000..a14743bc17 --- /dev/null +++ b/main/mesa/mesa-7.10-uclibc-gallium.patch @@ -0,0 +1,20 @@ +--- Mesa-7.10.orig/src/gallium/auxiliary/util/u_debug_symbol.c ++++ Mesa-7.10/src/gallium/auxiliary/util/u_debug_symbol.c +@@ -145,7 +145,7 @@ + } + #endif + +-#ifdef __GLIBC__ ++#if defined(__GLIBC__) && !defined(__UCLIBC__) + #include <execinfo.h> + + /* This can only provide dynamic symbols, or binary offsets into a file. +@@ -171,7 +171,7 @@ + return; + #endif + +-#ifdef __GLIBC__ ++#if defined(__GLIBC__) && !defined(__UCLIBC__) + debug_symbol_name_glibc(addr, buf, size); + if(buf[0]) + return; |