From patchwork Sat Feb 3 17:05:55 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mario Lang X-Patchwork-Id: 868926 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 3zYgH653JTz9ryQ for ; Sun, 4 Feb 2018 04:06:10 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id DF69B8996B; Sat, 3 Feb 2018 17:06:07 +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 RrMhIBiHXKXk; Sat, 3 Feb 2018 17:06:07 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 3127D8995B; Sat, 3 Feb 2018 17:06:07 +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 0122E1C40B1 for ; Sat, 3 Feb 2018 17:06:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id F23B688719 for ; Sat, 3 Feb 2018 17:06:04 +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 J-BuJcRzuZUA for ; Sat, 3 Feb 2018 17:06:03 +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 whitealder.osuosl.org (Postfix) with ESMTPS id 8220F88573 for ; Sat, 3 Feb 2018 17:06:03 +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 865633FCE6; Sat, 3 Feb 2018 18:05:58 +0100 (CET) Received: from mlang by fx.tugraz.at with local (Exim 4.90) (envelope-from ) id 1ei1GG-0000Nn-Nl; Sat, 03 Feb 2018 18:05:56 +0100 From: Mario Lang To: buildroot@buildroot.org Date: Sat, 3 Feb 2018 18:05:55 +0100 Message-Id: <20180203170555.1431-1-mlang@blind.guru> X-Mailer: git-send-email 2.15.1 Subject: [Buildroot] [PATCH] package/lynx: depends on dynamic lib 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 fixes the following autobuild errors: http://autobuild.buildroot.net/results/9a7b37264d592add75dd2a0f233a2de4eba4f489 http://autobuild.buildroot.net/results/d3ecc533b5c5a33a9385e7f1f689ddf9bfa6fd43 Signed-off-by: Mario Lang --- package/lynx/Config.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/lynx/Config.in b/package/lynx/Config.in index a338f83616..570d3fd15d 100644 --- a/package/lynx/Config.in +++ b/package/lynx/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_LYNX bool "lynx" + depends on !BR2_STATIC_LIBS depends on BR2_USE_MMU select BR2_PACKAGE_SLANG if !BR2_PACKAGE_NCURSES select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_GNUTLS @@ -7,3 +8,6 @@ config BR2_PACKAGE_LYNX The Text Web-Browser. http://lynx.invisible-island.net/ + +comment "lynx needs a toolchain w/ dynamic lib" + depends on BR2_STATIC_LIBS