summaryrefslogtreecommitdiff
path: root/package/quota
diff options
context:
space:
mode:
authorSamuel Martin <s.martin49@gmail.com>2013-09-13 12:41:20 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2013-09-20 15:20:04 +0200
commitc64fc7690641cc1de9cd240c8626369c90712e3c (patch)
tree77e60273588cbde9eab2bb5c43dfebb0b734b73b /package/quota
parent98fe337d193d57ad18f330286570748e0fec0461 (diff)
libtirpc: requires toolchain with threading support
Fixes: http://autobuild.buildroot.org/results/8ba720f47f74df94b8c70ac4befd47c47ce65f2f Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: "Samuel Martin" <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/quota')
-rw-r--r--package/quota/Config.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/package/quota/Config.in b/package/quota/Config.in
index 5127a9a9c..57cf57d97 100644
--- a/package/quota/Config.in
+++ b/package/quota/Config.in
@@ -4,6 +4,7 @@ config BR2_PACKAGE_QUOTA
depends on BR2_USE_WCHAR
depends on BR2_USE_MMU # fork()
depends on !(BR2_microblazeel || BR2_microblazebe) # util-linux
+ depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC || BR2_TOOLCHAIN_HAS_THREADS # libtirpc
select BR2_PACKAGE_UTIL_LINUX
select BR2_PACKAGE_UTIL_LINUX_BINARIES
select BR2_PACKAGE_UTIL_LINUX_MOUNT
@@ -14,5 +15,7 @@ config BR2_PACKAGE_QUOTA
http://sourceforge.net/projects/linuxquota/
-comment "quota requires a toolchain with LARGEFILE + WCHAR support"
- depends on !(BR2_LARGEFILE && BR2_USE_WCHAR)
+comment "quota requires a toolchain with LARGEFILE, WCHAR and threading support"
+ depends on !BR2_LARGEFILE || \
+ !BR2_USE_WCHAR || \
+ !(BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_HAS_NATIVE_RPC)