Config.in 538 B

12345678910111213141516
  1. config BR2_PACKAGE_ORTP
  2. bool "oRTP"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_TOOLCHAIN_HAS_THREADS
  5. depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # bctoolbox
  6. select BR2_PACKAGE_BCTOOLBOX
  7. help
  8. oRTP, a Real-time Transport Protocol (RTP,RFC3550) library
  9. https://www.linphone.org/technical-corner/ortp
  10. comment "ortp needs a toolchain w/ C++, threads"
  11. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
  12. comment "ortp needs a toolchain not affected by GCC bug 64735"
  13. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735