From patchwork Fri Jul 7 02:22:38 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Carlos Santos X-Patchwork-Id: 785329 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 3x3dgv6ptPz9s06 for ; Fri, 7 Jul 2017 12:23:23 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C194188BCF; Fri, 7 Jul 2017 02:23: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 kO1aAkBoPKEu; Fri, 7 Jul 2017 02:23:06 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 9428E88CA7; Fri, 7 Jul 2017 02:23:06 +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 433261C42B0 for ; Fri, 7 Jul 2017 02:23:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 3E26389D20 for ; Fri, 7 Jul 2017 02:23: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 WgNMuUwcTdBP for ; Fri, 7 Jul 2017 02:22:58 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.datacom.ind.br (mx.datacom.ind.br [177.66.5.10]) by hemlock.osuosl.org (Postfix) with ESMTPS id 9BFFC8918B for ; Fri, 7 Jul 2017 02:22:58 +0000 (UTC) Received: from mail.datacom.ind.br (localhost [127.0.0.1]) by mail.datacom.ind.br (Postfix) with ESMTPS id 5F8D71A814A7; Thu, 6 Jul 2017 23:21:21 -0300 (BRT) Received: from localhost (localhost [127.0.0.1]) by mail.datacom.ind.br (Postfix) with ESMTP id 4F3DA1A80FFC; Thu, 6 Jul 2017 23:21:21 -0300 (BRT) Received: from mail.datacom.ind.br ([127.0.0.1]) by localhost (mail.datacom.ind.br [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id ywREsXiGZTjz; Thu, 6 Jul 2017 23:21:21 -0300 (BRT) Received: from p7-1130br.casantos.org (unknown [177.134.39.90]) by mail.datacom.ind.br (Postfix) with ESMTPSA id E2A021A80E77; Thu, 6 Jul 2017 23:21:20 -0300 (BRT) From: Carlos Santos To: buildroot@buildroot.org Date: Thu, 6 Jul 2017 23:22:38 -0300 Message-Id: <20170707022242.20128-4-casantos@datacom.ind.br> X-Mailer: git-send-email 2.9.4 In-Reply-To: <20170707022242.20128-1-casantos@datacom.ind.br> References: <20170707022242.20128-1-casantos@datacom.ind.br> Cc: Karoly Kasza , Ezequiel Garcia Subject: [Buildroot] [PATCH 3/7] openvmtools: use BR2_PACKAGE_LINUX_PAM_ARCH_SUPPORTS 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" Do not repeat linux-pam dependencies. Signed-off-by: Carlos Santos --- package/openvmtools/Config.in | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/package/openvmtools/Config.in b/package/openvmtools/Config.in index f76bdf2..d0bb27c 100644 --- a/package/openvmtools/Config.in +++ b/package/openvmtools/Config.in @@ -33,16 +33,13 @@ comment "procps support needs BR2_PACKAGE_BUSYBOX_SHOW_OTHERS" config BR2_PACKAGE_OPENVMTOOLS_PAM bool "PAM support" - # linux-pam needs locale and wchar, but we already have this - # dependency on the main symbol, above. - depends on !BR2_STATIC_LIBS - depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam + depends on BR2_PACKAGE_LINUX_PAM_ARCH_SUPPORTS select BR2_PACKAGE_LINUX_PAM help Support for PAM in openvmtools comment "PAM support needs a glibc toolchain w/ dynamic library" - depends on BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL + depends on !BR2_PACKAGE_LINUX_PAM_ARCH_SUPPORTS endif