1config BR2_PACKAGE_LINPHONE 2 bool "linphone" 3 depends on BR2_USE_MMU 4 depends on BR2_INSTALL_LIBSTDCPP 5 depends on !BR2_STATIC_LIBS # belle-sip, mediastreamer 6 depends on BR2_TOOLCHAIN_HAS_THREADS # belr, belle-sip, mediastreamer 7 # belr, belle-sip, mediastreamer 8 depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 9 depends on BR2_USE_WCHAR # belle-sip 10 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # mediastreamer 11 select BR2_PACKAGE_BELLE_SIP 12 select BR2_PACKAGE_BELR 13 select BR2_PACKAGE_LIBXML2 14 select BR2_PACKAGE_MEDIASTREAMER 15 select BR2_PACKAGE_SQLITE 16 help 17 Linphone is an internet phone or Voice Over IP phone (VoIP). 18 19 With linphone you can communicate freely with people over 20 the internet, with voice, video, and text instant messaging. 21 Linphone makes use of the SIP protocol, an open standard 22 for internet telephony. You can use Linphone with any SIP 23 VoIP operator, including our free SIP audio/video service. 24 linphone is free-software (or open-source), you can download 25 and redistribute it freely. 26 Linphone is available for desktop computers: Linux, Windows, 27 MacOSX, and for mobile phones: Android, iPhone, Blackberry. 28 29 Linphone support in Buildroot is limited to the commandline 30 client, linphonec, and video support is not enabled. 31 32 http://www.linphone.org/ 33 34comment "linphone needs a toolchain w/ threads, C++, dynamic library, wchar, gcc >= 5" 35 depends on BR2_USE_MMU 36 depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \ 37 !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || \ 38 !BR2_TOOLCHAIN_GCC_AT_LEAST_5 39 40comment "linphone needs a toolchain not affected by GCC bug 64735" 41 depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 42