From patchwork Tue Dec 11 10:39:00 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 205155 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 2B0B02C0085 for ; Tue, 11 Dec 2012 21:39:18 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 70DF0100FF4; Tue, 11 Dec 2012 10:39:08 +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 czifeJlqomL2; Tue, 11 Dec 2012 10:39:05 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id EECF8100787; Tue, 11 Dec 2012 10:39:04 +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 390738F74B for ; Tue, 11 Dec 2012 10:39:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 9057F8060A for ; Tue, 11 Dec 2012 10:39:11 +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 Up4p5QxRV14a for ; Tue, 11 Dec 2012 10:39:09 +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 DEAB2805F3 for ; Tue, 11 Dec 2012 10:39:08 +0000 (UTC) Received: from asgard (host201.201-252-64.telecom.net.ar [201.252.64.201]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id qBBAd1tT009296 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 11 Dec 2012 10:39:04 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1355222346; bh=ohSc2zutIDpY+aNKW9OJh+2uhlJ4EckojKxttSrkydo=; h=From:To:Cc:Subject:Date; b=Q+9A388ISYVoYx7z3l196okZ34lP3yQvvpkI38x2hBDzQy23d0c836btCSNAh738s H8M9flwQ/AQjYCn6vZCEudmH/Hegg1rwUJrIh2uVlIB5goh2iLZLCAFtKtqcle4VMm cvdqWytfhBOljscPxTCvFrdHN4ZLN5HdGEfPCF3A= Received: by asgard (sSMTP sendmail emulation); Tue, 11 Dec 2012 07:39:00 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Tue, 11 Dec 2012 07:39:00 -0300 Message-Id: <1355222340-6759-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] ortp: requires 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/4252c2f0f85c27af0d814d8c9a4a5b4d74f4dac1/ Signed-off-by: Gustavo Zacarias --- package/linphone/Config.in | 5 +++-- package/mediastreamer/Config.in | 5 +++-- package/ortp/Config.in | 4 ++++ 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/package/linphone/Config.in b/package/linphone/Config.in index 1a6cfdb..a2866a6 100644 --- a/package/linphone/Config.in +++ b/package/linphone/Config.in @@ -5,6 +5,7 @@ config BR2_PACKAGE_LINPHONE select BR2_PACKAGE_ORTP select BR2_PACKAGE_MEDIASTREAMER depends on BR2_INSTALL_LIBSTDCPP # mediastreamer + depends on BR2_TOOLCHAIN_HAS_THREADS # ortp help Linphone is an internet phone or Voice Over IP phone (VoIP). @@ -23,5 +24,5 @@ config BR2_PACKAGE_LINPHONE http://www.linphone.org/ -comment "linphone requires a toolchain with C++ support enabled" - depends on !BR2_INSTALL_LIBSTDCPP +comment "linphone requires a toolchain with threads and C++ support enabled" + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS diff --git a/package/mediastreamer/Config.in b/package/mediastreamer/Config.in index 2e1af93..477d4fa 100644 --- a/package/mediastreamer/Config.in +++ b/package/mediastreamer/Config.in @@ -2,6 +2,7 @@ config BR2_PACKAGE_MEDIASTREAMER bool "mediastreamer" select BR2_PACKAGE_ORTP depends on BR2_INSTALL_LIBSTDCPP # until fixed + depends on BR2_TOOLCHAIN_HAS_THREADS # ortp help Mediastreamer is a powerful and lightweighted streaming engine specialized for voice/video telephony applications. @@ -12,5 +13,5 @@ config BR2_PACKAGE_MEDIASTREAMER http://www.linphone.org/eng/documentation/dev/mediastreamer2.html -comment "mediastreamer requires a toolchain with C++ support enabled" - depends on !BR2_INSTALL_LIBSTDCPP +comment "mediastreamer requires a toolchain with threads and C++ support" + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS diff --git a/package/ortp/Config.in b/package/ortp/Config.in index 39d9c9a..ab9cab4 100644 --- a/package/ortp/Config.in +++ b/package/ortp/Config.in @@ -1,6 +1,10 @@ config BR2_PACKAGE_ORTP bool "oRTP" + depends on BR2_TOOLCHAIN_HAS_THREADS help oRTP, a Real-time Transport Protocol (RTP,RFC3550) library http://www.linphone.org/eng/documentation/dev/ortp.html + +comment "ortp requires a toolchain with threads support" + depends on !BR2_TOOLCHAIN_HAS_THREADS