From patchwork Wed Sep 13 12:29:58 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 813414 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 3xsgwn5XJXz9sNr for ; Wed, 13 Sep 2017 22:30:16 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 5633B888E2; Wed, 13 Sep 2017 12:30:09 +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 0B+kMS-BanM8; Wed, 13 Sep 2017 12:30:07 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 20278888CF; Wed, 13 Sep 2017 12:30:07 +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 45AA61C3F96 for ; Wed, 13 Sep 2017 12:30:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 3EC65888CA for ; Wed, 13 Sep 2017 12:30:05 +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 QKxzyCOUBCdg for ; Wed, 13 Sep 2017 12:30:04 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by whitealder.osuosl.org (Postfix) with ESMTPS id D3483888C7 for ; Wed, 13 Sep 2017 12:30:03 +0000 (UTC) Received: from fwd12.aul.t-online.de (fwd12.aul.t-online.de [172.20.26.241]) by mailout04.t-online.de (Postfix) with SMTP id ADB4C419936E for ; Wed, 13 Sep 2017 14:30:01 +0200 (CEST) Received: from fli4l.lan.fli4l (S8ZJmsZbghbzlmP8DV6Keqp2NP5aMvjPAYDA2ouGalnh+766HkTdykzxSGoBrhSwMn@[79.228.1.99]) by fwd12.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1ds6np-1Mqge80; Wed, 13 Sep 2017 14:30:01 +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 1ds6no-0005C2-Nq for buildroot@buildroot.org; Wed, 13 Sep 2017 14:30:01 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Wed, 13 Sep 2017 14:29:58 +0200 Message-Id: <20170913122958.11805-5-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: S8ZJmsZbghbzlmP8DV6Keqp2NP5aMvjPAYDA2ouGalnh+766HkTdykzxSGoBrhSwMn X-TOI-MSGID: e5a8b349-56a5-48f8-914b-1bd2549e0d73 Subject: [Buildroot] [PATCH 5/5] package/ngircd: add optional support for linux-pam 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 9fa30da24c..37c4f87d43 100644 --- a/package/ngircd/ngircd.mk +++ b/package/ngircd/ngircd.mk @@ -10,6 +10,13 @@ NGIRCD_SITE = https://arthur.barton.de/pub/ngircd NGIRCD_LICENSE = GPL-2.0+ NGIRCD_LICENSE_FILES = COPYING +ifeq ($(BR2_PACKAGE_LINUX_PAM),y) +NGIRCD_CONF_OPTS += --with-pam=$(STAGING_DIR)/usr +NGIRCD_DEPENDENCIES += linux-pam +else +NGIRCD_CONF_OPTS += --with-pam +endif + ifeq ($(BR2_PACKAGE_OPENSSL),y) NGIRCD_CONF_OPTS += --with-openssl=$(STAGING_DIR)/usr NGIRCD_DEPENDENCIES += openssl