From patchwork Wed Sep 13 12:29:56 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 813415 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.138; helo=whitealder.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) 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 3xsgwr1D7Sz9sNr for ; Wed, 13 Sep 2017 22:30:20 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 52EB688910; Wed, 13 Sep 2017 12:30:14 +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 J0s7GvFqzpJy; Wed, 13 Sep 2017 12:30:08 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 5109088940; Wed, 13 Sep 2017 12:30:08 +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 9348C1C3F96 for ; Wed, 13 Sep 2017 12:30:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 8E69B83AD7 for ; Wed, 13 Sep 2017 12:30:05 +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 PhTSLGMs3wah for ; Wed, 13 Sep 2017 12:30:05 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by hemlock.osuosl.org (Postfix) with ESMTPS id E5A6283A51 for ; Wed, 13 Sep 2017 12:30:04 +0000 (UTC) Received: from fwd33.aul.t-online.de (fwd33.aul.t-online.de [172.20.27.144]) by mailout03.t-online.de (Postfix) with SMTP id 1CA244269EF6 for ; Wed, 13 Sep 2017 14:30:03 +0200 (CEST) Received: from fli4l.lan.fli4l (GnWGy2ZeYhu03B4Im+KLQ-p-7LKDMMkLbcBRvIRTnJTAetkvf7uRsXK8ylnt1mFgaR@[79.228.1.99]) by fwd33.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1ds6no-45ftJ20; Wed, 13 Sep 2017 14:30:00 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:38228 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.89) (envelope-from ) id 1ds6nn-0005C2-Tw for buildroot@buildroot.org; Wed, 13 Sep 2017 14:30:00 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Wed, 13 Sep 2017 14:29:56 +0200 Message-Id: <20170913122958.11805-3-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170913122958.11805-1-bernd.kuhls@t-online.de> References: <20170913122958.11805-1-bernd.kuhls@t-online.de> X-ID: GnWGy2ZeYhu03B4Im+KLQ-p-7LKDMMkLbcBRvIRTnJTAetkvf7uRsXK8ylnt1mFgaR X-TOI-MSGID: fad7752e-febf-4369-adff-991056c15d87 Subject: [Buildroot] [PATCH 3/5] package/ngircd: 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" openssl and gnutls can not be enabled at the same time: https://github.com/ngircd/ngircd/blob/master/configure.ng#L449 Signed-off-by: Bernd Kuhls --- package/ngircd/ngircd.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/package/ngircd/ngircd.mk b/package/ngircd/ngircd.mk index 2ab9187c8e..06318a9df3 100644 --- a/package/ngircd/ngircd.mk +++ b/package/ngircd/ngircd.mk @@ -16,6 +16,12 @@ NGIRCD_CONF_OPTS += --with-openssl=$(STAGING_DIR)/usr NGIRCD_DEPENDENCIES += openssl else NGIRCD_CONF_OPTS += --without-openssl +ifeq ($(BR2_PACKAGE_GNUTLS),y) +NGIRCD_CONF_OPTS += --with-gnutls=$(STAGING_DIR)/usr +NGIRCD_DEPENDENCIES += gnutls +else +NGIRCD_CONF_OPTS += --without-gnutls +endif endif $(eval $(autotools-package))