Config.in 722 B

12345678910111213141516171819202122
  1. config BR2_PACKAGE_GIT_CRYPT
  2. bool "git-crypt"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
  5. depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr
  6. depends on BR2_USE_MMU # git
  7. select BR2_PACKAGE_GIT # runtime
  8. select BR2_PACKAGE_OPENSSL
  9. help
  10. git-crypt enables transparent encryption and decryption of
  11. files in a git repository.
  12. https://www.agwa.name/projects/git-crypt/
  13. comment "git-crypt needs a toolchain w/ C++, gcc >= 4.9"
  14. depends on !BR2_INSTALL_LIBSTDCPP \
  15. || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
  16. depends on BR2_USE_MMU
  17. comment "git-crypt needs a toolchain not affected by GCC bug 64735"
  18. depends on BR2_USE_MMU
  19. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735