Config.in 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. config BR2_PACKAGE_BOTAN_ARCH_SUPPORTS
  2. bool
  3. default y if BR2_aarch64 || BR2_aarch64_be
  4. default y if BR2_arm || BR2_armeb
  5. default y if BR2_i386 || BR2_x86_64
  6. default y if BR2_m68k
  7. default y if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el
  8. default y if BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le
  9. default y if BR2_riscv
  10. default y if BR2_sparc || BR2_sparc64
  11. default y if BR2_s390x
  12. default y if BR2_sh
  13. config BR2_PACKAGE_BOTAN
  14. bool "botan"
  15. depends on BR2_INSTALL_LIBSTDCPP
  16. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
  17. depends on BR2_TOOLCHAIN_HAS_THREADS
  18. depends on BR2_PACKAGE_BOTAN_ARCH_SUPPORTS
  19. depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # std::future
  20. select BR2_PACKAGE_BOOST_FILESYSTEM if BR2_PACKAGE_BOOST
  21. select BR2_PACKAGE_BOOST_SYSTEM if BR2_PACKAGE_BOOST
  22. help
  23. Botan is a crypto library for C++
  24. http://botan.randombit.net
  25. comment "botan needs a toolchain w/ C++, threads, gcc >= 4.8"
  26. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP \
  27. || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
  28. depends on BR2_PACKAGE_BOTAN_ARCH_SUPPORTS
  29. comment "botan needs a toolchain not affected by GCC bug 64735"
  30. depends on BR2_PACKAGE_BOTAN_ARCH_SUPPORTS
  31. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735