From patchwork Tue Sep 3 13:51:35 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 272261 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 0A02B2C00A6 for ; Tue, 3 Sep 2013 23:51:53 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B8D7D8AC9E; Tue, 3 Sep 2013 13:51:51 +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 bDCjWMZL7IHv; Tue, 3 Sep 2013 13:51:50 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id A82C68AC75; Tue, 3 Sep 2013 13:51:50 +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 173491BF9ED for ; Tue, 3 Sep 2013 13:51:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0FBDD8AC75 for ; Tue, 3 Sep 2013 13:51:49 +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 VADVVJdkAm4I for ; Tue, 3 Sep 2013 13:51:48 +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 A8F228AC64 for ; Tue, 3 Sep 2013 13:51:47 +0000 (UTC) Received: from asgard (host126.190-136-121.telecom.net.ar [190.136.121.126]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.7/8.14.7) with ESMTP id r83Dpf1j018556 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 3 Sep 2013 13:51:43 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1378216305; bh=OVYaA+4Fo24z8+JRJvS7PDLWAfuL9UccpNkJu0rRLs4=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=pnPAOQpJgUfdDTmszfs7vHzH9uSgV9pOVBCCfEXky+lB1JMG38LvBHoVtcEv/ZYY5 XUIoAeThSMkdKedtosSrKDk5E6lks/0KvnF3rjTWNU75A/wUjGcH8MDHqRFDHTpqNo om0LOIGr+0VhI0nXPcvWVJClcJPtStSdHr0lES1c= Received: by asgard (sSMTP sendmail emulation); Tue, 03 Sep 2013 10:51:35 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Tue, 3 Sep 2013 10:51:35 -0300 Message-Id: <1378216295-6264-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.1.5 In-Reply-To: References: X-Virus-Scanned: clamav-milter 0.97.7 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] libcec: needs wchar 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/dae/dae6ec4f75b2aeb793b88567f48d94b07a6a59da/ Signed-off-by: Gustavo Zacarias --- package/libcec/Config.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package/libcec/Config.in b/package/libcec/Config.in index 7a67952..256c6d6 100644 --- a/package/libcec/Config.in +++ b/package/libcec/Config.in @@ -2,6 +2,7 @@ config BR2_PACKAGE_LIBCEC bool "libcec" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_TOOLCHAIN_HAS_THREADS + depends on BR2_USE_WCHAR help libcec allows you in combination with the right hardware to control your home theater devices with your TV remote @@ -9,5 +10,6 @@ config BR2_PACKAGE_LIBCEC http://libcec.pulse-eight.com -comment "libcec requires C++ and threading support in toolchain" - depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS +comment "libcec requires C++, WCHAR and threading support in toolchain" + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ + !BR2_USE_WCHAR