ntfs-3g: needs toolchain with threads support

Fixes:
http://autobuild.buildroot.org/results/ff10a72ac5836749155396e87f0cd32cd89f94c7

Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
gilles.talis@gmail.com 2013-04-16 14:39:27 +00:00 committed by Peter Korsgaard
parent af2522c07b
commit 7a35e3693c

View File

@ -2,6 +2,7 @@ config BR2_PACKAGE_NTFS_3G
bool "ntfs-3g"
depends on BR2_LARGEFILE
depends on BR2_USE_WCHAR
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_USE_MMU
help
The NTFS-3G driver is an open source, freely available
@ -29,5 +30,5 @@ config BR2_PACKAGE_NTFS_3G_NTFSPROGS
endif
comment "ntfs-3g requires a toolchain with LARGEFILE and WCHAR support"
depends on !(BR2_LARGEFILE && BR2_USE_WCHAR)
comment "ntfs-3g requires a toolchain with LARGEFILE, WCHAR and threads support"
depends on !(BR2_LARGEFILE && BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)