From patchwork Sat Dec 29 01:45:53 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [5/5] mesa3d: bumped to 8.0.5 X-Patchwork-Submitter: =?utf-8?q?Stefan_Fr=C3=B6berg?= X-Patchwork-Id: 208612 Message-Id: <1356745553-15362-6-git-send-email-stefan.froberg@petroprogram.com> To: buildroot@busybox.net Date: Sat, 29 Dec 2012 03:45:53 +0200 From: =?UTF-8?q?Stefan=20Fr=C3=B6berg?= List-Id: Discussion and development of buildroot uClibc does not have execinfo.h Signed-off-by: Stefan Fröberg --- package/x11r7/mesa3d/mesa3d-execinfo.patch | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) create mode 100644 package/x11r7/mesa3d/mesa3d-execinfo.patch diff --git a/package/x11r7/mesa3d/mesa3d-execinfo.patch b/package/x11r7/mesa3d/mesa3d-execinfo.patch new file mode 100644 index 0000000..8baba63 --- /dev/null +++ b/package/x11r7/mesa3d/mesa3d-execinfo.patch @@ -0,0 +1,21 @@ +diff -Naur mesa3d-8.0.5.org/src/gallium/auxiliary/util/u_debug_symbol.c mesa3d-8.0.5/src/gallium/auxiliary/util/u_debug_symbol.c +--- mesa3d-8.0.5.org/src/gallium/auxiliary/util/u_debug_symbol.c 2012-12-29 00:23:42.597893058 +0200 ++++ mesa3d-8.0.5/src/gallium/auxiliary/util/u_debug_symbol.c 2012-12-29 00:26:08.639454184 +0200 +@@ -151,7 +151,7 @@ + } + #endif + +-#ifdef __GLIBC__ ++#if defined(__GLIBC__) && !defined(__UCLIBC__) + #include + + /* This can only provide dynamic symbols, or binary offsets into a file. +@@ -177,7 +177,7 @@ + return; + #endif + +-#ifdef __GLIBC__ ++#if defined(__GLIBC__) && !defined(__UCLIBC__) + debug_symbol_name_glibc(addr, buf, size); + if(buf[0]) + return;