From patchwork Sat Dec 30 10:48:04 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mario Lang X-Patchwork-Id: 854092 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.133; helo=hemlock.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3z80YG2hdWz9t3B for ; Sat, 30 Dec 2017 21:48:18 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id CB9D8874CB; Sat, 30 Dec 2017 10:48:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3dIsWN5YohIS; Sat, 30 Dec 2017 10:48:14 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id EDCFF87491; Sat, 30 Dec 2017 10:48:13 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 8774F1CEFE5 for ; Sat, 30 Dec 2017 10:48:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 82CC528F9F for ; Sat, 30 Dec 2017 10:48:11 +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 C+zYGyojjTaI for ; Sat, 30 Dec 2017 10:48:10 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from ns3035380.ip-37-187-20.eu (familiekainz.at [37.187.20.171]) by silver.osuosl.org (Postfix) with ESMTP id 303CD2480E for ; Sat, 30 Dec 2017 10:48:10 +0000 (UTC) Received: from fx.tugraz.at (84-115-55-45.cable.dynamic.surfer.at [84.115.55.45]) by ns3035380.ip-37-187-20.eu (Postfix) with ESMTPS id 19BD03FC32; Sat, 30 Dec 2017 11:48:09 +0100 (CET) Received: from mlang by fx.tugraz.at with local (Exim 4.89) (envelope-from ) id 1eVEgS-0004In-NH; Sat, 30 Dec 2017 11:48:08 +0100 From: Mario Lang To: buildroot@buildroot.org Date: Sat, 30 Dec 2017 11:48:04 +0100 Message-Id: <20171230104804.16489-3-mlang@blind.guru> X-Mailer: git-send-email 2.15.0 In-Reply-To: <20171230104804.16489-1-mlang@blind.guru> References: <20171230104804.16489-1-mlang@blind.guru> Subject: [Buildroot] [PATCH 3/3] package/brltty: depends on !BR2_STATIC_LIBS X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.24 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Mario Lang MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" This requirement is likely to go away in the future. However, declaring this fact explicitly for now fixes a number of test-pkg failures. Signed-off-by: Mario Lang Acked-by: "Yann E. MORIN" --- package/brltty/Config.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package/brltty/Config.in b/package/brltty/Config.in index dfd2ff4428..288d9b56d8 100644 --- a/package/brltty/Config.in +++ b/package/brltty/Config.in @@ -2,6 +2,7 @@ config BR2_PACKAGE_BRLTTY bool "brltty" depends on BR2_USE_WCHAR depends on BR2_TOOLCHAIN_HAS_THREADS + depends on !BR2_STATIC_LIBS help A daemon providing access to the Linux console for a blind person using a refreshable braille display. @@ -15,5 +16,5 @@ config BR2_PACKAGE_BRLTTY_TEXT_TABLE endif -comment "brltty needs a toolchain w/ threads, wchar" - depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR +comment "brltty needs a toolchain w/ dynamic lib, threads, wchar" + depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR