xref: /OK3568_Linux_fs/buildroot/package/git-crypt/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyunconfig BR2_PACKAGE_GIT_CRYPT
2*4882a593Smuzhiyun	bool "git-crypt"
3*4882a593Smuzhiyun	depends on BR2_INSTALL_LIBSTDCPP
4*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
5*4882a593Smuzhiyun	depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr
6*4882a593Smuzhiyun	depends on BR2_USE_MMU # git
7*4882a593Smuzhiyun	select BR2_PACKAGE_GIT # runtime
8*4882a593Smuzhiyun	select BR2_PACKAGE_OPENSSL
9*4882a593Smuzhiyun	help
10*4882a593Smuzhiyun	  git-crypt enables transparent encryption and decryption of
11*4882a593Smuzhiyun	  files in a git repository.
12*4882a593Smuzhiyun
13*4882a593Smuzhiyun	  https://www.agwa.name/projects/git-crypt/
14*4882a593Smuzhiyun
15*4882a593Smuzhiyuncomment "git-crypt needs a toolchain w/ C++, gcc >= 4.9"
16*4882a593Smuzhiyun	depends on !BR2_INSTALL_LIBSTDCPP \
17*4882a593Smuzhiyun		|| !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
18*4882a593Smuzhiyun	depends on BR2_USE_MMU
19*4882a593Smuzhiyun
20*4882a593Smuzhiyuncomment "git-crypt needs a toolchain not affected by GCC bug 64735"
21*4882a593Smuzhiyun	depends on BR2_USE_MMU
22*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735
23