From patchwork Fri Jul 7 02:22:40 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Carlos Santos X-Patchwork-Id: 785330 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 3x3dgy2y6xz9s06 for ; Fri, 7 Jul 2017 12:23:26 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 6B9E788C7A; Fri, 7 Jul 2017 02:23:11 +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 VAt3YNHqRQlk; Fri, 7 Jul 2017 02:23:10 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id DE4AD88CCC; Fri, 7 Jul 2017 02:23:09 +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 710061C1677 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 6C3D38918B 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 g8wKMOESFSy4 for ; Fri, 7 Jul 2017 02:23:00 +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 C285C89C94 for ; Fri, 7 Jul 2017 02:22:59 +0000 (UTC) Received: from mail.datacom.ind.br (localhost [127.0.0.1]) by mail.datacom.ind.br (Postfix) with ESMTPS id 29A281A80FFC; Thu, 6 Jul 2017 23:21:22 -0300 (BRT) Received: from localhost (localhost [127.0.0.1]) by mail.datacom.ind.br (Postfix) with ESMTP id 153DE1A82CA0; Thu, 6 Jul 2017 23:21:22 -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 r6Xgpklka-aj; 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 A1FD91A80FFC; Thu, 6 Jul 2017 23:21:21 -0300 (BRT) From: Carlos Santos To: buildroot@buildroot.org Date: Thu, 6 Jul 2017 23:22:40 -0300 Message-Id: <20170707022242.20128-6-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 5/7] rsh-redone: 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/rsh-redone/Config.in | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/package/rsh-redone/Config.in b/package/rsh-redone/Config.in index 6a8aec0..4042f39 100644 --- a/package/rsh-redone/Config.in +++ b/package/rsh-redone/Config.in @@ -14,29 +14,21 @@ config BR2_PACKAGE_RSH_REDONE_RLOGIN config BR2_PACKAGE_RSH_REDONE_RLOGIND bool "rlogind" - depends on !BR2_STATIC_LIBS - depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR - depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam - depends on BR2_USE_MMU # linux-pam + depends on BR2_PACKAGE_LINUX_PAM_ARCH_SUPPORTS select BR2_PACKAGE_LINUX_PAM comment "rlogind needs a uClibc or glibc toolchain w/ wchar, locale, dynamic library" - depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \ - || BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL + depends on !BR2_PACKAGE_LINUX_PAM_ARCH_SUPPORTS config BR2_PACKAGE_RSH_REDONE_RSH bool "rsh" config BR2_PACKAGE_RSH_REDONE_RSHD bool "rshd" - depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR - depends on !BR2_STATIC_LIBS - depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam - depends on BR2_USE_MMU # linux-pam + depends on BR2_PACKAGE_LINUX_PAM_ARCH_SUPPORTS select BR2_PACKAGE_LINUX_PAM comment "rshd needs a uClibc or glibc toolchain w/ wchar, locale, dynamic library" - depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \ - || BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL + depends on !BR2_PACKAGE_LINUX_PAM_ARCH_SUPPORTS endif