]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/log4cplus/Config.in
log4cplus: add C++11 dependencies
[coffee/buildroot.git] / package / log4cplus / Config.in
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_7 # 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
16 comment "log4cplus needs a toolchain w/ C++, wchar, threads, gcc >= 4.7"
17         depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
18                 !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
19
20 comment "log4cplus needs a toolchain not affected by GCC bug 64735"
21         depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735