blob: e42f9e0eef8c8a979cfa445828522db3904a5dad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
config BR2_PACKAGE_LIBFUSE
bool "libfuse"
# Really doesn't like static, see fuse/lib/fuse.c
depends on !BR2_PREFER_STATIC_LIB
depends on BR2_LARGEFILE
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_USE_MMU # fork()
help
FUSE (Filesystem in UserSpacE)
http://fuse.sourceforge.net/
comment "libfuse requires a toolchain with LARGEFILE, threads and dyanmic library support"
depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS || BR2_PREFER_STATIC_LIB
|