From patchwork Sat Dec 29 01:45:53 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Stefan_Fr=C3=B6berg?= X-Patchwork-Id: 208612 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 14FD72C00F4 for ; Sat, 29 Dec 2012 13:00:35 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 03CFF8B0B8; Sat, 29 Dec 2012 02:00:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yU2QsIoIA7P6; Sat, 29 Dec 2012 02:00:32 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 2B63082030; Sat, 29 Dec 2012 02:00:31 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id B834F8F74B for ; Sat, 29 Dec 2012 01:59:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id DB04A8082B for ; Sat, 29 Dec 2012 01:59:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DEdKowoPo+Sr for ; Sat, 29 Dec 2012 01:59:22 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.petroprogram.com (mail.petroprogram.com [194.89.34.74]) by whitealder.osuosl.org (Postfix) with ESMTPS id 5FE27814B4 for ; Sat, 29 Dec 2012 01:59:22 +0000 (UTC) Received: from localhost.fi (unknown [194.89.34.74]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: stefan.froberg@petroprogram.com) by mail.petroprogram.com (Postfix) with ESMTPSA id E2F124FAE8; Sat, 29 Dec 2012 03:49:57 +0200 (EET) From: =?UTF-8?q?Stefan=20Fr=C3=B6berg?= To: buildroot@busybox.net Date: Sat, 29 Dec 2012 03:45:53 +0200 Message-Id: <1356745553-15362-6-git-send-email-stefan.froberg@petroprogram.com> X-Mailer: git-send-email 1.7.7.6 In-Reply-To: <1356745553-15362-1-git-send-email-stefan.froberg@petroprogram.com> References: <1356745553-15362-1-git-send-email-stefan.froberg@petroprogram.com> MIME-Version: 1.0 Subject: [Buildroot] [PATCH 5/5] mesa3d: bumped to 8.0.5 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net 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;