1config BR2_PACKAGE_CURLFTPFS 2 bool "curlftpfs (FUSE)" 3 depends on BR2_USE_WCHAR # glib2 4 depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse, glib2 5 depends on BR2_USE_MMU # libfuse, glib2 6 depends on !BR2_STATIC_LIBS # libfuse 7 select BR2_PACKAGE_LIBFUSE 8 select BR2_PACKAGE_LIBGLIB2 9 select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE 10 select BR2_PACKAGE_OPENSSL 11 select BR2_PACKAGE_LIBCURL 12 help 13 CurlFtpFS is a filesystem for accessing FTP hosts based on 14 FUSE and libcurl. 15 16 http://curlftpfs.sourceforge.net/ 17 18comment "curlftpfs needs a toolchain w/ wchar, threads, dynamic library" 19 depends on BR2_USE_MMU 20 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS 21