From patchwork Wed Sep 13 12:29:55 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 813418 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.136; helo=silver.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) 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 3xsgx03c2nz9sNr for ; Wed, 13 Sep 2017 22:30:28 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 6D18330C18; Wed, 13 Sep 2017 12:30:23 +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 NOgDz4iOQ0TW; Wed, 13 Sep 2017 12:30:21 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 7A0F230C28; Wed, 13 Sep 2017 12:30:20 +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 A51C61C3F96 for ; Wed, 13 Sep 2017 12:30:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 97E9E8896D for ; Wed, 13 Sep 2017 12:30:12 +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 GJnUkDWuTv4e for ; Wed, 13 Sep 2017 12:30:09 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout07.t-online.de (mailout07.t-online.de [194.25.134.83]) by whitealder.osuosl.org (Postfix) with ESMTPS id DBBFA88910 for ; Wed, 13 Sep 2017 12:30:08 +0000 (UTC) Received: from fwd39.aul.t-online.de (fwd39.aul.t-online.de [172.20.27.138]) by mailout07.t-online.de (Postfix) with SMTP id 079354232B62 for ; Wed, 13 Sep 2017 14:30:06 +0200 (CEST) Received: from fli4l.lan.fli4l (XLK7vEZOohHwPQLtSuP-spvTz2F8EOZirqJdvkGcs8gKiypR4IsTOteYSk06bEVwJy@[79.228.1.99]) by fwd39.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1ds6no-2bxo000; 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-IN for buildroot@buildroot.org; Wed, 13 Sep 2017 14:29:59 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Wed, 13 Sep 2017 14:29:55 +0200 Message-Id: <20170913122958.11805-2-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: XLK7vEZOohHwPQLtSuP-spvTz2F8EOZirqJdvkGcs8gKiypR4IsTOteYSk06bEVwJy X-TOI-MSGID: 4cdb7f9c-39d4-4be5-8960-cfc2ff03de4e Subject: [Buildroot] [PATCH 2/5] package/ngircd: add optional dependency to openssl 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/ngircd/ngircd.mk | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package/ngircd/ngircd.mk b/package/ngircd/ngircd.mk index 5f03b66001..2ab9187c8e 100644 --- a/package/ngircd/ngircd.mk +++ b/package/ngircd/ngircd.mk @@ -11,4 +11,11 @@ NGIRCD_DEPENDENCIES = zlib NGIRCD_LICENSE = GPL-2.0+ NGIRCD_LICENSE_FILES = COPYING +ifeq ($(BR2_PACKAGE_OPENSSL),y) +NGIRCD_CONF_OPTS += --with-openssl=$(STAGING_DIR)/usr +NGIRCD_DEPENDENCIES += openssl +else +NGIRCD_CONF_OPTS += --without-openssl +endif + $(eval $(autotools-package))