From patchwork Sat Dec 22 12:06:19 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 207927 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id E07D02C0092 for ; Sat, 22 Dec 2012 23:06:37 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 4025CA003F; Sat, 22 Dec 2012 12:06:35 +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 KXhwh3bjzaRk; Sat, 22 Dec 2012 12:06:33 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 6D34FA0057; Sat, 22 Dec 2012 12:06:33 +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 0FE7F8F74B for ; Sat, 22 Dec 2012 12:06:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 66DA9828F6 for ; Sat, 22 Dec 2012 12:06:31 +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 ExplpQ0Pb0pk for ; Sat, 22 Dec 2012 12:06:29 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 83580828D0 for ; Sat, 22 Dec 2012 12:06:28 +0000 (UTC) Received: from asgard (host39.190-136-127.telecom.net.ar [190.136.127.39]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id qBMC6LUb025609 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 22 Dec 2012 12:06:24 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1356177986; bh=JJws/m20xouwKq1cBUuDz8twxomHC5dja7GCWT/ZMXE=; h=From:To:Cc:Subject:Date; b=Oi1/P2YdPzT5PNuCbDr553MHRkpi4cm0L94wTX1TPamJ5H7pR1kkULuP6hiAxSla9 5SJf6T3oP51xzRvlLExggBEYAzeehXJZFKFxGNtTKD7U0y5iwYjPWfecorzMcCWFR7 3uF4063U6X4GIFWs6pcLkIqU5fwV6AGReNXb1g1Q= Received: by asgard (sSMTP sendmail emulation); Sat, 22 Dec 2012 09:06:19 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Sat, 22 Dec 2012 09:06:19 -0300 Message-Id: <1356177979-8784-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] pulseaudio: needs threads 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 Fixes: http://autobuild.buildroot.net/results/4d6a5793e475683fbc58ccaf03cf7816233a5052/ Signed-off-by: Gustavo Zacarias --- package/multimedia/gst-plugins-good/Config.in | 1 + package/multimedia/mpd/Config.in | 1 + package/multimedia/pulseaudio/Config.in | 5 +++-- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/package/multimedia/gst-plugins-good/Config.in b/package/multimedia/gst-plugins-good/Config.in index 33ecb5c..b5006e6 100644 --- a/package/multimedia/gst-plugins-good/Config.in +++ b/package/multimedia/gst-plugins-good/Config.in @@ -193,6 +193,7 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS4 bool "oss4 (Open Sound System 4)" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_PULSE + depends on BR2_TOOLCHAIN_HAS_THREADS # pulseaudio select BR2_PACKAGE_PULSEAUDIO bool "pulseaudio" diff --git a/package/multimedia/mpd/Config.in b/package/multimedia/mpd/Config.in index 5d08182..2e44741 100644 --- a/package/multimedia/mpd/Config.in +++ b/package/multimedia/mpd/Config.in @@ -40,6 +40,7 @@ config BR2_PACKAGE_MPD_AUDIOFILE config BR2_PACKAGE_MPD_PULSEAUDIO bool "pulseaudio" + depends on BR2_TOOLCHAIN_HAS_THREADS # pulseaudio select BR2_PACKAGE_PULSEAUDIO help Enable pulseaudio output support. diff --git a/package/multimedia/pulseaudio/Config.in b/package/multimedia/pulseaudio/Config.in index 6c767bb..eeb8b5a 100644 --- a/package/multimedia/pulseaudio/Config.in +++ b/package/multimedia/pulseaudio/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_PULSEAUDIO bool "pulseaudio" depends on BR2_USE_WCHAR + depends on BR2_TOOLCHAIN_HAS_THREADS select BR2_PACKAGE_LIBTOOL select BR2_PACKAGE_JSON_C select BR2_PACKAGE_LIBSNDFILE @@ -17,5 +18,5 @@ config BR2_PACKAGE_PULSEAUDIO http://pulseaudio.org -comment "pulseaudio requires a toolchain with WCHAR support" - depends on !BR2_USE_WCHAR +comment "pulseaudio requires a toolchain with WCHAR and threads support" + depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS