summaryrefslogtreecommitdiffstats
path: root/package/ntfs-3g
diff options
context:
space:
mode:
authorPeter Korsgaard2009-03-30 13:53:48 +0200
committerPeter Korsgaard2009-03-30 13:53:48 +0200
commit32417137bef0a2a8143ff881ca32c33204f67881 (patch)
treef020801089bfe9682dbcbec84bf3ec63c2693604 /package/ntfs-3g
parentntfs-3g: fix avr32 comment dependency (NTFS-3G, not NTFS_3G) (diff)
downloadbuildroot-32417137bef0a2a8143ff881ca32c33204f67881.tar.gz
buildroot-32417137bef0a2a8143ff881ca32c33204f67881.tar.xz
buildroot-32417137bef0a2a8143ff881ca32c33204f67881.zip
ntfs-3g: needs wchar support in toolchain
Closes #187.
Diffstat (limited to 'package/ntfs-3g')
-rw-r--r--package/ntfs-3g/Config.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/ntfs-3g/Config.in b/package/ntfs-3g/Config.in
index f8e345958..08ee6d4cd 100644
--- a/package/ntfs-3g/Config.in
+++ b/package/ntfs-3g/Config.in
@@ -5,6 +5,7 @@ config BR2_PACKAGE_NTFS-3G
bool "ntfs-3g"
select BR2_PACKAGE_LIBFUSE
depends on BR2_LARGEFILE
+ depends on BR2_WCHAR
help
The NTFS-3G driver is an open source, freely available
read/write NTFS driver for Linux, FreeBSD, Mac OS X, NetBSD,
@@ -15,5 +16,5 @@ config BR2_PACKAGE_NTFS-3G
http://www.ntfs-3g.org/
-comment "ntfs-3g requires a toolchain with LARGEFILE support"
- depends on !BR2_LARGEFILE
+comment "ntfs-3g requires a toolchain with LARGEFILE and WCHAR support"
+ depends on !(BR2_LARGEFILE && BR2_WCHAR)