From patchwork Sun Mar 12 11:33:28 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 737811 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3vgzR54rVmz9s7L for ; Sun, 12 Mar 2017 22:33:53 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 5E45D89B72; Sun, 12 Mar 2017 11:33:48 +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 VjR-alkUTerQ; Sun, 12 Mar 2017 11:33:44 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 7EFBA89BAB; Sun, 12 Mar 2017 11:33:44 +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 E8F781BFECD for ; Sun, 12 Mar 2017 11:33:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D8FC389AF8 for ; Sun, 12 Mar 2017 11:33:39 +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 vz0JwL4bYuML for ; Sun, 12 Mar 2017 11:33:37 +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 whitealder.osuosl.org (Postfix) with ESMTPS id 825D789ADB for ; Sun, 12 Mar 2017 11:33:37 +0000 (UTC) Received: from fwd39.aul.t-online.de (fwd39.aul.t-online.de [172.20.27.138]) by mailout10.t-online.de (Postfix) with SMTP id 758BE41ECC07; Sun, 12 Mar 2017 12:33:35 +0100 (CET) Received: from fli4l.lan.fli4l (SIWfCEZSZhyt09xjOILTZOI6dtjFrZzD-abJZ3s0ir3mpKVsajXGf-v9Mt5L62FgnG@[79.228.21.189]) by fwd39.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1cn1kh-0RrREe0; Sun, 12 Mar 2017 12:33:31 +0100 Received: from mahler.lan.fli4l ([192.168.1.1]:45326 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.89) (envelope-from ) id 1cn1kg-0004zv-PK; Sun, 12 Mar 2017 12:33:31 +0100 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sun, 12 Mar 2017 12:33:28 +0100 Message-Id: <20170312113328.5745-5-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170312113328.5745-1-bernd.kuhls@t-online.de> References: <20170312113328.5745-1-bernd.kuhls@t-online.de> X-ID: SIWfCEZSZhyt09xjOILTZOI6dtjFrZzD-abJZ3s0ir3mpKVsajXGf-v9Mt5L62FgnG X-TOI-MSGID: ef994c6e-b8f5-4181-94c0-49464ca9726f Subject: [Buildroot] [PATCH 5/5] package/gnupg2: add optional support for gnutls 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Bernd Kuhls --- package/gnupg2/gnupg2.mk | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package/gnupg2/gnupg2.mk b/package/gnupg2/gnupg2.mk index d7f277cdf..5815e7003 100644 --- a/package/gnupg2/gnupg2.mk +++ b/package/gnupg2/gnupg2.mk @@ -35,6 +35,13 @@ else GNUPG2_CONF_OPTS += --disable-bzip2 endif +ifeq ($(BR2_PACKAGE_GNUTLS),y) +GNUPG2_CONF_OPTS += --enable-gnutls +GNUPG2_DEPENDENCIES += gnutls +else +GNUPG2_CONF_OPTS += --disable-gnutls +endif + ifeq ($(BR2_PACKAGE_LIBUSB_COMPAT),y) GNUPG2_CONF_OPTS += --enable-ccid-driver GNUPG2_DEPENDENCIES += libusb-compat