xref: /OK3568_Linux_fs/buildroot/package/cctz/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyunconfig BR2_PACKAGE_CCTZ
2*4882a593Smuzhiyun	bool "cctz"
3*4882a593Smuzhiyun	depends on BR2_INSTALL_LIBSTDCPP
4*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_HAS_THREADS
5*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
6*4882a593Smuzhiyun	select BR2_TARGET_TZ_INFO # runtime dependency
7*4882a593Smuzhiyun	help
8*4882a593Smuzhiyun	  CCTZ is a C++ library for translating between absolute
9*4882a593Smuzhiyun	  and civil times using the rules of a time zone.
10*4882a593Smuzhiyun
11*4882a593Smuzhiyun	  https://github.com/google/cctz
12*4882a593Smuzhiyun
13*4882a593Smuzhiyunif BR2_PACKAGE_CCTZ
14*4882a593Smuzhiyun
15*4882a593Smuzhiyunconfig BR2_PACKAGE_CCTZ_INSTALL_TOOLS
16*4882a593Smuzhiyun	bool "Install tools"
17*4882a593Smuzhiyun	help
18*4882a593Smuzhiyun	  This option allows installing CCTZ tools.
19*4882a593Smuzhiyun
20*4882a593Smuzhiyunconfig BR2_PACKAGE_CCTZ_INSTALL_EXAMPLES
21*4882a593Smuzhiyun	bool "Install example programs"
22*4882a593Smuzhiyun	help
23*4882a593Smuzhiyun	  This option allows installing CCTZ example programs.
24*4882a593Smuzhiyun
25*4882a593Smuzhiyunendif
26*4882a593Smuzhiyun
27*4882a593Smuzhiyuncomment "cctz needs a toolchain w/ C++, threads, gcc >= 4.8"
28*4882a593Smuzhiyun	depends on !BR2_INSTALL_LIBSTDCPP || \
29*4882a593Smuzhiyun		!BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
30