From patchwork Fri Jul 7 02:22:39 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Carlos Santos X-Patchwork-Id: 785334 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 3x3dhB1Ztxz9s06 for ; Fri, 7 Jul 2017 12:23:38 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 4F21488D54; Fri, 7 Jul 2017 02:23:25 +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 WcOCoIZPu3Hf; Fri, 7 Jul 2017 02:23:24 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id E58D488C28; Fri, 7 Jul 2017 02:23:23 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id DCFCC1C1677 for ; Fri, 7 Jul 2017 02:23:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id D8E4088964 for ; Fri, 7 Jul 2017 02:23:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id mZCVZq_M0uF2 for ; Fri, 7 Jul 2017 02:22:59 +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 fraxinus.osuosl.org (Postfix) with ESMTPS id 04A2C88961 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 C103F1A82817; 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 AD87A1A8197F; 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 YkGM9RTGwn2b; 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 4A1ED1A81686; Thu, 6 Jul 2017 23:21:21 -0300 (BRT) From: Carlos Santos To: buildroot@buildroot.org Date: Thu, 6 Jul 2017 23:22:39 -0300 Message-Id: <20170707022242.20128-5-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 4/7] python-pam: 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/python-pam/Config.in | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/package/python-pam/Config.in b/package/python-pam/Config.in index 02865d0..366492b 100644 --- a/package/python-pam/Config.in +++ b/package/python-pam/Config.in @@ -1,16 +1,11 @@ comment "python-pam needs a uClibc or glibc toolchain w/ wchar, locale, dynamic library" depends on BR2_PACKAGE_PYTHON - 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_PYTHON_PAM bool "python-pam" depends on BR2_PACKAGE_PYTHON # C extension not compatible with python3 - depends on BR2_ENABLE_LOCALE # linux-pam - depends on BR2_USE_WCHAR # linux-pam - depends on BR2_USE_MMU # linux-pam - depends on !BR2_STATIC_LIBS # linux-pam - depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam + depends on BR2_PACKAGE_LINUX_PAM_ARCH_SUPPORTS select BR2_PACKAGE_LINUX_PAM help PAM (Pluggable Authentication Module) bindings for Python.