mediastreamer: requires toolchain with ipv6 support
authorGustavo Zacarias <gustavo@zacarias.com.ar>
Wed, 9 Oct 2013 12:22:37 +0000 (09:22 -0300)
committerPeter Korsgaard <peter@korsgaard.com>
Wed, 9 Oct 2013 19:23:34 +0000 (21:23 +0200)
Fixes:
http://autobuild.buildroot.net/results/b16/b164b87fefac67074d45a6413386f53a8ee47843/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/linphone/Config.in
package/mediastreamer/Config.in

index bd5141261b0b0a19631b1a90f0ee22e77dd283c2..1bced0ee34a9f844243e42dba6b8dcd0e5ac5004 100644 (file)
@@ -7,6 +7,7 @@ config BR2_PACKAGE_LINPHONE
        depends on BR2_INSTALL_LIBSTDCPP # mediastreamer
        depends on BR2_TOOLCHAIN_HAS_THREADS # ortp
        depends on BR2_USE_MMU # libeXosip2
+       depends on BR2_INET_IPV6 # mediastreamer
        help
          Linphone is an internet phone or Voice Over IP phone (VoIP).
 
@@ -25,5 +26,6 @@ config BR2_PACKAGE_LINPHONE
 
          http://www.linphone.org/
 
-comment "linphone requires a toolchain with threads and C++ support enabled"
-       depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
+comment "linphone requires a toolchain with threads, C++ and IPv6 support enabled"
+       depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
+               !BR2_INET_IPV6
index 477d4fab65c29d51cc08379cef337629571fdc6d..9b20307e470f35d8883c30716838c433befdc5a5 100644 (file)
@@ -3,6 +3,7 @@ config BR2_PACKAGE_MEDIASTREAMER
        select BR2_PACKAGE_ORTP
        depends on BR2_INSTALL_LIBSTDCPP # until fixed
        depends on BR2_TOOLCHAIN_HAS_THREADS # ortp
+       depends on BR2_INET_IPV6
        help
          Mediastreamer is a powerful and lightweighted streaming
          engine specialized for voice/video telephony applications.
@@ -13,5 +14,6 @@ config BR2_PACKAGE_MEDIASTREAMER
 
          http://www.linphone.org/eng/documentation/dev/mediastreamer2.html
 
-comment "mediastreamer requires a toolchain with threads and C++ support"
-       depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
+comment "mediastreamer requires a toolchain with threads, C++ and IPv6 support"
+       depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
+               !BR2_INET_IPV6