diff options
| author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-03-17 18:46:53 -0300 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2014-03-17 23:03:15 +0100 |
| commit | 118b5a051ed51eb8e8e0d83fa843b98c7005c35e (patch) | |
| tree | 86f68aa6700c15480fa2cd93f0304c0bfa9e3997 /package/dmraid | |
| parent | 221fd0cdac28e8b3448f4c640d3410abe40451e8 (diff) | |
| download | buildroot-118b5a051ed51eb8e8e0d83fa843b98c7005c35e.tar.gz buildroot-118b5a051ed51eb8e8e0d83fa843b98c7005c35e.zip | |
lvm2: needs threads
lvm2 needs threads because of commit
35d3713bdc20a3ac22537ca04b0c1c6deab625cc
Fixes:
http://autobuild.buildroot.net/results/b4d/b4dcd9e98c4ea61f81b28675c0f87cfb2341f091/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/dmraid')
| -rw-r--r-- | package/dmraid/Config.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package/dmraid/Config.in b/package/dmraid/Config.in index fc370bd57d..2e3a3fafb2 100644 --- a/package/dmraid/Config.in +++ b/package/dmraid/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_DMRAID bool "dmraid" depends on BR2_LARGEFILE + depends on BR2_TOOLCHAIN_HAS_THREADS # lvm2 depends on BR2_USE_MMU # lvm2 depends on !BR2_PREFER_STATIC_LIB # lvm2 select BR2_PACKAGE_LVM2 @@ -11,6 +12,7 @@ config BR2_PACKAGE_DMRAID dmraid uses the Linux device-mapper to create devices with respective mappings for the ATARAID sets discovered. -comment "dmraid needs a toolchain w/ largefile, dynamic library" +comment "dmraid needs a toolchain w/ largefile, threads, dynamic library" depends on BR2_USE_MMU - depends on !BR2_LARGEFILE || BR2_PREFER_STATIC_LIB + depends on !BR2_LARGEFILE || BR2_PREFER_STATIC_LIB || \ + !BR2_TOOLCHAIN_HAS_THREADS |

