From patchwork Sat May 17 14:02:23 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 349908 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id BD3E61400BD for ; Sun, 18 May 2014 00:02:47 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1073B8C160; Sat, 17 May 2014 14:02:47 +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 MJGudbB8lkww; Sat, 17 May 2014 14:02:41 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 5CADE8C142; Sat, 17 May 2014 14:02:38 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id B0CC21BFA57 for ; Sat, 17 May 2014 14:02:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id ADD468BFBF for ; Sat, 17 May 2014 14:02:34 +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 8LpteCqVHTsp for ; Sat, 17 May 2014 14:02:29 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (top.free-electrons.com [176.31.233.9]) by whitealder.osuosl.org (Postfix) with ESMTP id 58E1B8BA9F for ; Sat, 17 May 2014 14:02:29 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id AAFB2811; Sat, 17 May 2014 16:02:29 +0200 (CEST) Received: from localhost (AToulouse-651-1-158-31.w92-136.abo.wanadoo.fr [92.136.201.31]) by mail.free-electrons.com (Postfix) with ESMTPSA id 70ECA15C; Sat, 17 May 2014 16:02:29 +0200 (CEST) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Sat, 17 May 2014 16:02:23 +0200 Message-Id: <1400335344-8531-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.9.3 Cc: Thomas Petazzoni Subject: [Buildroot] [PATCH 1/2] zyre: propagate missing BR2_USE_MMU dependency X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 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-bounces@busybox.net zyre selects filemq, and filemq 'depends on BR2_USE_MMU', but this dependency was not propagated to zyre. This commit fixes that. Signed-off-by: Thomas Petazzoni --- package/zyre/Config.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/zyre/Config.in b/package/zyre/Config.in index 5833ccc..31e1d6f 100644 --- a/package/zyre/Config.in +++ b/package/zyre/Config.in @@ -5,6 +5,7 @@ config BR2_PACKAGE_ZYRE depends on BR2_LARGEFILE # filemq depends on BR2_USE_WCHAR # filemq depends on BR2_TOOLCHAIN_HAS_THREADS # filemq + depends on BR2_USE_MMU # filemq -> czmq # uClibc toolchains provided by ADI don't have AI_ADDRCONFIG # support, needed by filemq -> czmq depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && \ @@ -17,6 +18,7 @@ config BR2_PACKAGE_ZYRE http://zyre.org comment "zyre needs a toolchain w/ C++, IPv6, largefile, wchar, threads" + depends on BR2_USE_MMU depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && \ !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R1 depends on !(BR2_INSTALL_LIBSTDCPP && BR2_INET_IPV6 && BR2_LARGEFILE \