diff options
author | Guillaume W. Bres <guillaume.bressaix@gmail.com> | 2018-04-18 16:33:53 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-18 17:14:29 +0200 |
commit | 56823d613cb232d6f9413d98aa5fdf3477f4e9ed (patch) | |
tree | 88268aad751906677df87807e89584e35b922bd8 | |
parent | 6766ff9d12c628332170098de9cff42625a2d0a3 (diff) | |
download | buildroot-56823d613cb232d6f9413d98aa5fdf3477f4e9ed.tar.gz buildroot-56823d613cb232d6f9413d98aa5fdf3477f4e9ed.zip |
pixiewps: add missing dependency on threads
Fixes:
http://autobuild.buildroot.net/results/0c8d0eeb693ac29739845f489caffc2f9fa3b262/
Signed-off-by: Guillaume W. Bres <guillaume.bressaix@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/pixiewps/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/pixiewps/Config.in b/package/pixiewps/Config.in index 97240f5c87..05719f4211 100644 --- a/package/pixiewps/Config.in +++ b/package/pixiewps/Config.in @@ -1,7 +1,11 @@ config BR2_PACKAGE_PIXIEWPS bool "pixiewps" + depends on BR2_TOOLCHAIN_HAS_THREADS help Pixie WPS is a C based tool to audit networks against the so called "Pixie Dust" attack. https://github.com/wiire-a/pixiewps/wiki + +comment "pixiewps needs a toolchain w/ threads" + depends on !BR2_TOOLCHAIN_HAS_THREADS |