1config BR2_PACKAGE_BELLE_SIP 2 bool "belle-sip" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on !BR2_STATIC_LIBS # dlfcn.h 5 depends on BR2_TOOLCHAIN_HAS_THREADS 6 depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # bctoolbox 7 depends on BR2_USE_WCHAR 8 select BR2_PACKAGE_BCTOOLBOX 9 # needs crypto support in bctoolbox 10 select BR2_PACKAGE_MBEDTLS 11 help 12 Belle-sip is a modern library implementing SIP (RFC 3261) 13 transport, transaction and dialog layers. 14 15 http://www.linphone.org/technical-corner/belle-sip 16 17comment "belle-sip needs a toolchain w/ threads, C++, dynamic library, wchar" 18 depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \ 19 !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR 20 21comment "belle-sip needs a toolchain not affected by GCC bug 64735" 22 depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 23