From patchwork Thu Nov 19 10:03:41 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: kei-k@ca2.so-net.ne.jp X-Patchwork-Id: 546371 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 2AD2214141D for ; Thu, 19 Nov 2015 21:03:48 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=ca2.so-net.ne.jp header.i=@ca2.so-net.ne.jp header.b=YaBvta29; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 36F2431D9D; Thu, 19 Nov 2015 10:03:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RFIgIfrSCdko; Thu, 19 Nov 2015 10:03:45 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 4C1D93127B; Thu, 19 Nov 2015 10:03:45 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 229671C15DD for ; Thu, 19 Nov 2015 10:03:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 18DEF83C40 for ; Thu, 19 Nov 2015 10:03:44 +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 l+TasmUWzu6E for ; Thu, 19 Nov 2015 10:03:43 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from ms-omx03.so-net.ne.jp (ms-omx03.so-net.ne.jp [202.238.84.153]) by whitealder.osuosl.org (Postfix) with ESMTPS id 146A286BB1 for ; Thu, 19 Nov 2015 10:03:42 +0000 (UTC) Received: from localhost (p79672089.tkyea109.ap.so-net.ne.jp [121.103.32.137]) by ms-omx03.plus.so-net.ne.jp with ESMTP id tAJA3feM021882 for ; Thu, 19 Nov 2015 19:03:41 +0900 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ca2.so-net.ne.jp; s=sn2016; t=1447927421; bh=sV8zp/50LLCeu5nE6/XlDfxGYpbIqQ8/7OhnzglAODs=; h=To:From:Subject:Date; b=YaBvta29M5Mw9KcVQhmWSZT9huHZdH66xJ7Ly2DyJ+1uisPQ3yxt6WrenzOiLlK4p 4TcGcca5DTmJLsxaAnkwVZuAkDB4sA2znZGFC7HJNboywu5vXmclFcP51cmZhOLeIb F/S5lzbfyQ6zna1ChGPvBO3zGek+rpHi+YvcMM1EjfH4v14b452QuHtkE3QMK6tiOW 7uruweFAahdoBl38+sNLph0wau5ruEgUpH+opu7YBkDgtKsFNDdth1IyB4r9fJ/RJu slcXPJ21aHF3wxQmpYwYGQITLhx54Bk2MiM29fe3L65gaO6/opm350BinnIxxxHhep iYf/N+Ks6JECQ== Message-Id: <201511191003.tAJA3feM021882@ms-omx03.plus.so-net.ne.jp> To: buildroot@busybox.net From: Hiroshi Kawashima MIME-Version: 1.0 Content-ID: <15531.1447927421.1@roba> Date: Thu, 19 Nov 2015 19:03:41 +0900 X-Dispatcher: impost version 0.99i (Apr. 6, 1997) Lines: 36 Subject: [Buildroot] [PATCH v2] package/gauche: fix build error on BR2_STATIC_LIBS X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" Building gauche depends on dynamic link, so add dependency on !BR2_STATIC_LIBS. Signed-off-by: Hiroshi Kawashima --- Changes: v1 -> v2: previous patch conflict with latest master, so send again. --- package/gauche/Config.in | 2 ++ 1 file changed, 2 insertions(+) ============================================================ Hiroshi Kawashima diff --git a/package/gauche/Config.in b/package/gauche/Config.in index 54a0be2..fd0617a 100644 --- a/package/gauche/Config.in +++ b/package/gauche/Config.in @@ -13,6 +13,7 @@ config BR2_PACKAGE_GAUCHE depends on BR2_USE_MMU # fork() depends on BR2_ARCH_HAS_ATOMICS depends on BR2_PACKAGE_GAUCHE_ARCH_SUPPORTS + depends on !BR2_STATIC_LIBS help Gauche is an R7RS Scheme implementation developed to be a handy script interpreter, which allows programmers and @@ -23,8 +24,8 @@ config BR2_PACKAGE_GAUCHE http://practical-scheme.net/gauche/ -comment "gauche needs a toolchain w/ NPTL" +comment "gauche needs a toolchain w/ NPTL, dynamic library" depends on BR2_USE_MMU depends on BR2_ARCH_HAS_ATOMICS depends on BR2_PACKAGE_GAUCHE_ARCH_SUPPORTS - depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL + depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS