Config.in 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. config 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. With linphone you can communicate freely with people over
  19. the internet, with voice, video, and text instant messaging.
  20. Linphone makes use of the SIP protocol, an open standard
  21. for internet telephony. You can use Linphone with any SIP
  22. VoIP operator, including our free SIP audio/video service.
  23. linphone is free-software (or open-source), you can download
  24. and redistribute it freely.
  25. Linphone is available for desktop computers: Linux, Windows,
  26. MacOSX, and for mobile phones: Android, iPhone, Blackberry.
  27. Linphone support in Buildroot is limited to the commandline
  28. client, linphonec, and video support is not enabled.
  29. http://www.linphone.org/
  30. comment "linphone needs a toolchain w/ threads, C++, dynamic library, wchar, gcc >= 5"
  31. depends on BR2_USE_MMU
  32. depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
  33. !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || \
  34. !BR2_TOOLCHAIN_GCC_AT_LEAST_5
  35. comment "linphone needs a toolchain not affected by GCC bug 64735"
  36. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735