From patchwork Sat Aug 18 23:30:52 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 959276 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) 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 AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41tGXm5cXBz9s4c for ; Sun, 19 Aug 2018 09:31:04 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 015882151C; Sat, 18 Aug 2018 23:31:03 +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 CL32JKB+lcjz; Sat, 18 Aug 2018 23:31:02 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 0474920784; Sat, 18 Aug 2018 23:31:02 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 4229A1CF377 for ; Sat, 18 Aug 2018 23:31:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 4021587946 for ; Sat, 18 Aug 2018 23:31:00 +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 QdK6FHGeMudc for ; Sat, 18 Aug 2018 23:30:59 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout10.t-online.de (mailout10.t-online.de [194.25.134.21]) by hemlock.osuosl.org (Postfix) with ESMTPS id 203BE8780B for ; Sat, 18 Aug 2018 23:30:59 +0000 (UTC) Received: from fwd23.aul.t-online.de (fwd23.aul.t-online.de [172.20.26.128]) by mailout10.t-online.de (Postfix) with SMTP id 1081F41C0433; Sun, 19 Aug 2018 01:30:57 +0200 (CEST) Received: from fli4l.lan.fli4l (SOdCIZZerhJJnNJxySPe17E2uj23m1hp-cXW6B9-QYE59uA9rzEKOJWeRSozfSRwFr@[91.58.5.249]) by fwd23.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1frAgI-0RS8jg0; Sun, 19 Aug 2018 01:30:54 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:56632 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.91) (envelope-from ) id 1frAgH-0005Ct-TK; Sun, 19 Aug 2018 01:30:54 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sun, 19 Aug 2018 01:30:52 +0200 Message-Id: <20180818233052.30190-4-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180818233052.30190-1-bernd.kuhls@t-online.de> References: <20180818233052.30190-1-bernd.kuhls@t-online.de> X-ID: SOdCIZZerhJJnNJxySPe17E2uj23m1hp-cXW6B9-QYE59uA9rzEKOJWeRSozfSRwFr X-TOI-MSGID: a3f599f1-bd37-44e0-aa65-cf8d747be6c9 Subject: [Buildroot] [PATCH/next 4/4] package/botan: add optional dependency to xz 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Bernd Kuhls --- package/botan/botan.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package/botan/botan.mk b/package/botan/botan.mk index 984ecdc039..eb817f62d9 100644 --- a/package/botan/botan.mk +++ b/package/botan/botan.mk @@ -60,6 +60,11 @@ BOTAN_DEPENDENCIES += sqlite BOTAN_CONF_OPTS += --with-sqlite endif +ifeq ($(BR2_PACKAGE_XZ),y) +BOTAN_DEPENDENCIES += xz +BOTAN_CONF_OPTS += --with-lzma +endif + ifeq ($(BR2_PACKAGE_ZLIB),y) BOTAN_DEPENDENCIES += zlib BOTAN_CONF_OPTS += --with-zlib