From patchwork Sun May 12 22:46:05 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnout Vandecappelle X-Patchwork-Id: 243221 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 441E02C0098 for ; Mon, 13 May 2013 08:46:43 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 7FFA8101898; Sun, 12 May 2013 22:46:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DJDk7+Xwo69T; Sun, 12 May 2013 22:46:19 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 457E91018FD; Sun, 12 May 2013 22:46:19 +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 A51208F753 for ; Sun, 12 May 2013 22:46:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 19DD48A9CD for ; Sun, 12 May 2013 22:46:37 +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 HHdLvwRVD18G for ; Sun, 12 May 2013 22:46:33 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from viper.mind.be (132.79-246-81.adsl-static.isp.belgacom.be [81.246.79.132]) by whitealder.osuosl.org (Postfix) with ESMTPS id DACB88A9ED for ; Sun, 12 May 2013 22:46:23 +0000 (UTC) Received: from [172.16.2.6] (helo=vandecaa-laptop) by viper.mind.be with esmtp (Exim 4.69) (envelope-from ) id 1Ubf1Y-00058l-Og; Mon, 13 May 2013 00:45:51 +0200 Received: from arnout by vandecaa-laptop with local (Exim 4.80) (envelope-from ) id 1Ubf22-0005fX-HD; Mon, 13 May 2013 00:46:19 +0200 From: "Arnout Vandecappelle (Essensium/Mind)" To: buildroot@busybox.net Date: Mon, 13 May 2013 00:46:05 +0200 Message-Id: <1368398765-21744-1-git-send-email-arnout@mind.be> X-Mailer: git-send-email 1.8.2.1 In-Reply-To: <1368397257-3061-1-git-send-email-arnout@mind.be> References: <1368397257-3061-1-git-send-email-arnout@mind.be> Subject: [Buildroot] [PATCH v2] libsigsegv: fix build on x86_64 (probably others too) 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 From: "Arnout Vandecappelle (Essensium/Mind)" The configure script doesn't detect that the target is posix-compliant and tries to use a custom version of segfault analysis that actually doesn't build. Most likely, it's because the configure script doesn't support linux-3.x. Anyway, we can just tell configure that we're posix-compliant. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- v2: fix mistake in the variable name (forgot to commit) --- package/libsigsegv/libsigsegv.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/libsigsegv/libsigsegv.mk b/package/libsigsegv/libsigsegv.mk index b8f84da..ac72c6d 100644 --- a/package/libsigsegv/libsigsegv.mk +++ b/package/libsigsegv/libsigsegv.mk @@ -7,6 +7,7 @@ LIBSIGSEGV_VERSION = 2.6 LIBSIGSEGV_SITE = $(BR2_GNU_MIRROR)/libsigsegv LIBSIGSEGV_INSTALL_STAGING = YES +LIBSIGSEGV_CONF_ENV = sv_cv_fault_posix=yes LIBSIGSEGV_LICENSE = GPLv2+ LIBSIGSEGV_LICENSE_FILES = COPYING