xref: /OK3568_Linux_fs/buildroot/package/log4cplus/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyunconfig BR2_PACKAGE_LOG4CPLUS
2*4882a593Smuzhiyun	bool "log4cplus"
3*4882a593Smuzhiyun	depends on BR2_INSTALL_LIBSTDCPP
4*4882a593Smuzhiyun	depends on BR2_USE_WCHAR
5*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_HAS_THREADS
6*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
7*4882a593Smuzhiyun	depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # std::future
8*4882a593Smuzhiyun	help
9*4882a593Smuzhiyun	  log4cplus is a simple to use C++ logging API providing
10*4882a593Smuzhiyun	  thread-safe, flexible, and arbitrarily granular control
11*4882a593Smuzhiyun	  over log management and configuration. It is modelled
12*4882a593Smuzhiyun	  after the Java log4j API.
13*4882a593Smuzhiyun
14*4882a593Smuzhiyun	  http://sourceforge.net/projects/log4cplus
15*4882a593Smuzhiyun
16*4882a593Smuzhiyuncomment "log4cplus needs a toolchain w/ C++, wchar, threads, gcc >= 4.8"
17*4882a593Smuzhiyun	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
18*4882a593Smuzhiyun		!BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
19*4882a593Smuzhiyun
20*4882a593Smuzhiyuncomment "log4cplus needs a toolchain not affected by GCC bug 64735"
21*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735
22