Config.in 707 B

12345678910111213141516171819
  1. config BR2_PACKAGE_BELR
  2. bool "belr"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # bctoolbox
  5. depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # bctoolbox
  6. select BR2_PACKAGE_BCTOOLBOX
  7. help
  8. Belr is Belledonne Communications' language recognition
  9. library, written in C++11. It parses text inputs formatted
  10. according to a language defined by an ABNF grammar, such as
  11. the protocols standardized at IETF.
  12. https://gitlab.linphone.org/BC/public/belr
  13. comment "belr needs a toolchain w/ threads, C++"
  14. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
  15. comment "belr needs a toolchain not affected by GCC bug 64735"
  16. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735