From patchwork Mon Aug 11 16:03:51 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnaud Aujon Chevallier X-Patchwork-Id: 379085 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id C1D2714013F for ; Tue, 12 Aug 2014 02:04:06 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 4941230C4A; Mon, 11 Aug 2014 16:04:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PgfLvFVoK-91; Mon, 11 Aug 2014 16:04:03 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 5CB2E30373; Mon, 11 Aug 2014 16:04:03 +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 019791C107B for ; Mon, 11 Aug 2014 16:04:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id F22BF8A92F for ; Mon, 11 Aug 2014 16:04:01 +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 qIdJTH3OE6YE for ; Mon, 11 Aug 2014 16:04:01 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from intelibre.fr (intelibre.fr [176.31.190.98]) by whitealder.osuosl.org (Postfix) with ESMTPS id 3C0018A8C0 for ; Mon, 11 Aug 2014 16:04:01 +0000 (UTC) Received: from localhost.localdomain (252-87-190-213.intermediasud.com [213.190.87.252]) by intelibre.fr (Postfix) with ESMTPA id B945B1A0041A; Mon, 11 Aug 2014 18:03:58 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=intelibre.fr; s=opendkimdefault; t=1407773038; bh=TS0Gwa1m2SopYgEaOj5k1Hn/RPrzl7GU8fVShLtwpdg=; h=From:To:Cc:Subject:Date; b=HYIQkq1JIbQrN0+jsYAAXgJ/QwVjmLkZlS6kxyYlTBmEUggg6ugTEwYYM45r+R9Qz MAhCUB61AUwKhZ5S3z8NfvLQBvOoU2P3X6Ebitl9wn2na0xng+kGfuWgdq4x4qkrJR EIz1Dk2Avk/KEdas52jvKjvf4Nokl5y5zCOz+mSQ= From: arnaud@intelibre.fr To: buildroot@busybox.net Date: Mon, 11 Aug 2014 18:03:51 +0200 Message-Id: <1407773031-12872-1-git-send-email-arnaud@intelibre.fr> X-Mailer: git-send-email 1.9.3 Subject: [Buildroot] [PATCH v2] espeak : depends on MMU 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 From: Arnaud Aujon Fixes http://autobuild.buildroot.net/results/dae/dae5c59dfa127e1c3f9e3885cdd1b97e54d8fe41/ and http://autobuild.buildroot.net/results/fa0/fa04a0fe7d7a201c5f733bd798c0da50ffb81271/ espeak uses fork(), don't work on non-MMU platforms Signed-off-by: Arnaud Aujon --- Changes v1 -> v2 - Move comment to head of file --- package/espeak/Config.in | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/package/espeak/Config.in b/package/espeak/Config.in index ec81893..e57f0c7 100644 --- a/package/espeak/Config.in +++ b/package/espeak/Config.in @@ -1,11 +1,13 @@ comment "espeak needs a toolchain w/ C++, wchar, threads" - depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR + depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR + depends on BR2_USE_MMU config BR2_PACKAGE_ESPEAK bool "espeak" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR depends on BR2_TOOLCHAIN_HAS_THREADS + depends on BR2_USE_MMU # fork() help espeak is a speech synthesizer software for English and other languages. @@ -26,14 +28,14 @@ config BR2_PACKAGE_ESPEAK_AUDIO_BACKEND_ALSA select BR2_PACKAGE_PORTAUDIO select BR2_PACKAGE_PORTAUDIO_CXX -comment "pulseaudio backend needs a toolchain with largefile" - depends on !BR2_LARGEFILE - config BR2_PACKAGE_ESPEAK_AUDIO_BACKEND_PULSEAUDIO bool "pulseaudio" select BR2_PACKAGE_PULSEAUDIO depends on BR2_LARGEFILE # pulseaudio +comment "pulseaudio backend needs a toolchain with largefile" + depends on !BR2_LARGEFILE + endchoice endif # BR2_PACKAGE_ESPEAK