Config.in 819 B

123456789101112131415161718192021
  1. config BR2_PACKAGE_LOG4CPLUS
  2. bool "log4cplus"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_USE_WCHAR
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
  7. depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # std::future
  8. help
  9. log4cplus is a simple to use C++ logging API providing
  10. thread-safe, flexible, and arbitrarily granular control
  11. over log management and configuration. It is modelled
  12. after the Java log4j API.
  13. http://sourceforge.net/projects/log4cplus
  14. comment "log4cplus needs a toolchain w/ C++, wchar, threads, gcc >= 4.8"
  15. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
  16. !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
  17. comment "log4cplus needs a toolchain not affected by GCC bug 64735"
  18. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735