1config 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 14 http://sourceforge.net/projects/log4cplus 15 16comment "log4cplus needs a toolchain w/ C++, wchar, threads, gcc >= 4.8" 17 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \ 18 !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 19 20comment "log4cplus needs a toolchain not affected by GCC bug 64735" 21 depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 22