diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2012-06-27 22:35:25 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-07-30 21:27:10 +0200 |
commit | 09a29b6a897158070e87493935aba817a58c33fd (patch) | |
tree | b9a35f8215d3c9f2d4c35df9abf9b7f7c3cd3f9d /package/usbutils | |
parent | 99492e0dfacc53d1fbfa50ac10dac35630e120a1 (diff) | |
download | buildroot-novena-09a29b6a897158070e87493935aba817a58c33fd.tar.gz buildroot-novena-09a29b6a897158070e87493935aba817a58c33fd.zip |
libusb: needs thread support
libusb needs thread support, and so do other packages that depend on it.
[thomas.petazzoni@free-electrons.com: adds threads dependency to
libnfc-llp, which selects libnfc.]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/usbutils')
-rw-r--r-- | package/usbutils/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/usbutils/Config.in b/package/usbutils/Config.in index 23004d952..fd9926c4b 100644 --- a/package/usbutils/Config.in +++ b/package/usbutils/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_USBUTILS bool "usbutils" + depends on BR2_TOOLCHAIN_HAS_THREADS # libusb select BR2_PACKAGE_LIBUSB help USB enumeration utilities @@ -15,3 +16,6 @@ config BR2_PACKAGE_USBUTILS_ZLIB This makes the data file smaller if you're not using a compressed filesystem, but it also makes lsusb slower since it has to decompress the file every time it's run. + +comment "usbutils needs a toolchain with thread support" + depends on !BR2_TOOLCHAIN_HAS_THREADS |