Config.in 580 B

12345678910111213141516171819
  1. config BR2_PACKAGE_LOG4CXX
  2. bool "log4cxx"
  3. # apr really needs shared library support
  4. depends on !BR2_STATIC_LIBS
  5. depends on BR2_INSTALL_LIBSTDCPP
  6. depends on BR2_TOOLCHAIN_HAS_THREADS
  7. depends on BR2_USE_MMU # apr
  8. select BR2_PACKAGE_APR
  9. select BR2_PACKAGE_APR_UTIL
  10. help
  11. Apache log4cxx is a logging framework for C++ patterned
  12. after Apache log4j.
  13. https://logging.apache.org/log4cxx/
  14. comment "log4cxx needs a toolchain w/ C++, threads, dynamic library"
  15. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
  16. BR2_STATIC_LIBS
  17. depends on BR2_USE_MMU