From patchwork Sun Jan 6 15:22:51 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 209771 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 502652C0040 for ; Mon, 7 Jan 2013 02:24:48 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 56EDD30EEA; Sun, 6 Jan 2013 15:24:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UrE7jRoka34k; Sun, 6 Jan 2013 15:24:37 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 1728F30F1F; Sun, 6 Jan 2013 15:23:52 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id AEDCA8F753 for ; Sun, 6 Jan 2013 15:23:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 5D5271016B6 for ; Sun, 6 Jan 2013 15:23:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GpkOVqGYr2Fe for ; Sun, 6 Jan 2013 15:23:12 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (mail.free-electrons.com [94.23.32.191]) by fraxinus.osuosl.org (Postfix) with ESMTP id AE707101655 for ; Sun, 6 Jan 2013 15:23:12 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 167BE161; Sun, 6 Jan 2013 16:23:22 +0100 (CET) Received: from localhost (humanoidz.org [82.247.183.72]) by mail.free-electrons.com (Postfix) with ESMTPSA id CCAE3138 for ; Sun, 6 Jan 2013 16:23:21 +0100 (CET) From: Thomas Petazzoni To: buildroot@busybox.net Date: Sun, 6 Jan 2013 16:22:51 +0100 Message-Id: X-Mailer: git-send-email 1.7.9.5 In-Reply-To: References: In-Reply-To: References: Subject: [Buildroot] [PATCH 11/15] elfutils: towards uClibc support: requires largefile 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net elfutils unconditionally uses off64_t for example, so largefile is needed. Signed-off-by: Thomas Petazzoni --- package/elfutils/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/elfutils/Config.in b/package/elfutils/Config.in index ee1e4ab..5ec4ca9 100644 --- a/package/elfutils/Config.in +++ b/package/elfutils/Config.in @@ -12,6 +12,7 @@ config BR2_PACKAGE_ELFUTILS BR2_TOOLCHAIN_BUILDROOT || \ BR2_TOOLCHAIN_CTNG_uClibc || \ BR2_TOOLCHAIN_EXTERNAL_UCLIBC + depends on BR2_LARGEFILE help Libraries/utilities to handle ELF objects (drop in replacement for libelf).