Config.in 780 B

123456789101112131415161718192021222324
  1. config 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. Use the idle time on your computer to cure diseases, study
  14. global warming, discover pulsars, and do many other types of
  15. scientific research.
  16. https://boinc.berkeley.edu
  17. comment "boinc needs a toolchain w/ dynamic library, C++, threads, gcc >= 4.8"
  18. depends on BR2_USE_MMU
  19. depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP \
  20. || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 \
  21. || !BR2_TOOLCHAIN_HAS_THREADS