summaryrefslogtreecommitdiffstats
path: root/package/linphone
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2012-12-11 00:39:00 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2012-12-11 21:27:26 +0100
commit3cc823d4be81fa41b2d0b5ada494f2c2001caf32 (patch)
tree2a6afd98b63f715f6125fdbce759e370afcc601f /package/linphone
parent121de4819d0be56f014aea9db275392ebd2f60da (diff)
downloadbuildroot-novena-3cc823d4be81fa41b2d0b5ada494f2c2001caf32.tar.gz
buildroot-novena-3cc823d4be81fa41b2d0b5ada494f2c2001caf32.zip
ortp: requires threads
Fixes http://autobuild.buildroot.net/results/4252c2f0f85c27af0d814d8c9a4a5b4d74f4dac1/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/linphone')
-rw-r--r--package/linphone/Config.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/linphone/Config.in b/package/linphone/Config.in
index 1a6cfdb00..a2866a6fb 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