xref: /OK3568_Linux_fs/buildroot/package/sshfs/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_SSHFS
2	bool "sshfs (FUSE)"
3	depends on BR2_USE_WCHAR # glib2
4	depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse3, glib2
5	depends on BR2_USE_MMU # libfuse3, glib2
6	depends on !BR2_STATIC_LIBS # libfuse3
7	select BR2_PACKAGE_LIBFUSE3
8	select BR2_PACKAGE_LIBGLIB2
9	select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
10	select BR2_PACKAGE_OPENSSH
11	help
12	  FUSE filesystem client based on the SSH File Transfer
13	  Protocol.
14
15	  https://github.com/libfuse/sshfs
16
17comment "sshfs needs a toolchain w/ wchar, threads, dynamic library"
18	depends on BR2_USE_MMU
19	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
20