Config.in 801 B

12345678910111213141516171819202122
  1. config 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. http://www.linphone.org/technical-corner/belle-sip
  15. comment "belle-sip needs a toolchain w/ threads, C++, dynamic library, wchar"
  16. depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
  17. !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
  18. comment "belle-sip needs a toolchain not affected by GCC bug 64735"
  19. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735