Commit 09a29b6a authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Thomas Petazzoni
Browse files

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: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 99492e0d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@ config BR2_PACKAGE_BLUEZ_UTILS_AUDIO

config BR2_PACKAGE_BLUEZ_UTILS_USB
	bool "USB support"
	depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
	select BR2_PACKAGE_LIBUSB
	help
	  USB support
+4 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBFREEFARE
	bool "libfreefare"
	depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
	select BR2_PACKAGE_OPENSSL
	select BR2_PACKAGE_LIBNFC
	help
	  Library for high level manipulation of MIFARE cards.

	  http://code.google.com/p/nfc-tools/wiki/libfreefare

comment "libfreefare needs a toolchain with thread support"
	depends on !BR2_TOOLCHAIN_HAS_THREADS
+4 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBFTDI
	bool "libftdi"
	depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
	select BR2_PACKAGE_LIBUSB
	select BR2_PACKAGE_LIBUSB_COMPAT
	help
@@ -16,3 +17,6 @@ config BR2_PACKAGE_LIBTFDI_CPP
	  C++ bindings for libftdi

endif # BR2_PACKAGE_LIBFTDI

comment "libftdi needs a toolchain with thread support"
	depends on !BR2_TOOLCHAIN_HAS_THREADS
+4 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBHID
	bool "libhid"
	depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
	select BR2_PACKAGE_LIBUSB
	select BR2_PACKAGE_LIBUSB_COMPAT
	help
	  Userspace library for accessing USB HID devices

	  http://libhid.alioth.debian.org

comment "libhid needs a toolchain with thread support"
	depends on !BR2_TOOLCHAIN_HAS_THREADS
+4 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBIQRF
	bool "libiqrf"
	depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
	select BR2_PACKAGE_LIBUSB
	help
	  This library implement specific protocol
@@ -8,3 +9,6 @@ config BR2_PACKAGE_LIBIQRF
	  libusb library.

	  https://github.com/nandra/libiqrf

comment "libiqrf needs a toolchain with thread support"
	depends on !BR2_TOOLCHAIN_HAS_THREADS
Loading