From patchwork Mon Mar 16 19:15:27 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 1255795 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.136; helo=silver.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=t-online.de Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 48h5cC1fMhz9sPF for ; Tue, 17 Mar 2020 06:15:38 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 36CEC2272C; Mon, 16 Mar 2020 19:15:36 +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 QO62KTXuFA-Z; Mon, 16 Mar 2020 19:15:34 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 4A55720406; Mon, 16 Mar 2020 19:15:34 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id C9E501BF3C6 for ; Mon, 16 Mar 2020 19:15:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id C7626870A4 for ; Mon, 16 Mar 2020 19:15:32 +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 qBC8w3QctIp9 for ; Mon, 16 Mar 2020 19:15:31 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout12.t-online.de (mailout12.t-online.de [194.25.134.22]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 501E78708D for ; Mon, 16 Mar 2020 19:15:31 +0000 (UTC) Received: from fwd11.aul.t-online.de (fwd11.aul.t-online.de [172.20.27.152]) by mailout12.t-online.de (Postfix) with SMTP id A0CE341CEA45 for ; Mon, 16 Mar 2020 20:15:28 +0100 (CET) Received: from fli4l.lan.fli4l (GE6YnEZOrhTijMZTS-UazB9DJPlS8jWyzRlz9CD5rBOSxl2eomkKFpS2CQyAsSMw6r@[79.214.199.114]) by fwd11.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1jDvCy-1I3ysK0; Mon, 16 Mar 2020 20:15:28 +0100 Received: from mahler.lan.fli4l ([192.168.1.1]:35270) by fli4l.lan.fli4l with esmtp (Exim 4.92.3) (envelope-from ) id 1jDvCx-0008JD-Od for buildroot@buildroot.org; Mon, 16 Mar 2020 20:15:28 +0100 From: Bernd Kuhls To: buildroot@buildroot.org Date: Mon, 16 Mar 2020 20:15:27 +0100 Message-Id: <20200316191527.551576-1-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.25.0 MIME-Version: 1.0 X-ID: GE6YnEZOrhTijMZTS-UazB9DJPlS8jWyzRlz9CD5rBOSxl2eomkKFpS2CQyAsSMw6r X-TOI-MSGID: 248c421d-1885-41ad-a6b5-d123a750f1f8 Subject: [Buildroot] [PATCH 1/1] package/wget: add optional dependency to libiconv X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 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" wget has an optional dependency to libiconv: http://git.savannah.gnu.org/cgit/wget.git/tree/configure.ac#n344 Signed-off-by: Bernd Kuhls --- package/wget/wget.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/wget/wget.mk b/package/wget/wget.mk index 7b9c3e75d9..ed3f1fdff9 100644 --- a/package/wget/wget.mk +++ b/package/wget/wget.mk @@ -21,6 +21,10 @@ else WGET_CONF_OPTS += --without-ssl endif +ifeq ($(BR2_PACKAGE_LIBICONV),y) +WGET_DEPENDENCIES += libiconv +endif + ifeq ($(BR2_PACKAGE_LIBIDN2),y) WGET_CONF_OPTS += --with-libidn WGET_DEPENDENCIES += libidn2