Commit 174b8469 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

ntfs-3g: uses dlopen(), not available on static builds

parent 0606cf10
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@ config BR2_PACKAGE_NTFS_3G
	depends on BR2_USE_WCHAR
	depends on BR2_TOOLCHAIN_HAS_THREADS
	depends on BR2_USE_MMU
	depends on !BR2_STATIC_LIBS
	help
	  The NTFS-3G driver is an open source, freely available
	  read/write NTFS driver for Linux, FreeBSD, Mac OS X, NetBSD,
@@ -29,6 +30,6 @@ config BR2_PACKAGE_NTFS_3G_NTFSPROGS

endif

comment "ntfs-3g needs a toolchain w/ wchar, threads"
comment "ntfs-3g needs a toolchain w/ wchar, threads, dynamic library"
	depends on BR2_USE_MMU
	depends on !(BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)
	depends on !(BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS && BR2_STATIC_LIBS)