xref: /OK3568_Linux_fs/buildroot/package/boinc/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_BOINC
2	bool "boinc"
3	depends on BR2_USE_MMU # fork()
4	depends on !BR2_STATIC_LIBS # dlfcn.h
5	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
6	depends on BR2_TOOLCHAIN_HAS_THREADS
7	depends on BR2_INSTALL_LIBSTDCPP
8	select BR2_PACKAGE_LIBCURL
9	select BR2_PACKAGE_OPENSSL
10	help
11	  Open-source software for volunteer computing and grid
12	  computing.
13
14	  Use the idle time on your computer to cure diseases, study
15	  global warming, discover pulsars, and do many other types of
16	  scientific research.
17
18	  https://boinc.berkeley.edu
19
20comment "boinc needs a toolchain w/ dynamic library, C++, threads, gcc >= 4.8"
21	depends on BR2_USE_MMU
22	depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP \
23		|| !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 \
24		|| !BR2_TOOLCHAIN_HAS_THREADS
25