diff options
author | Matt Weber <matthew.weber@rockwellcollins.com> | 2018-08-14 08:38:32 -0500 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-08-14 15:51:39 +0200 |
commit | 1f3f1fb8c7324c9a50383b1cafcbd2f9d74a91f9 (patch) | |
tree | d5cad63fdc030b2f3aef19b70fdd41a4cdb0d94c | |
parent | 6d944d1523108a13c446917d2ed55cc6dedab1f0 (diff) | |
download | buildroot-1f3f1fb8c7324c9a50383b1cafcbd2f9d74a91f9.tar.gz buildroot-1f3f1fb8c7324c9a50383b1cafcbd2f9d74a91f9.zip |
package/aircrack-ng: powerpc arch requires altivec
The powerpc support in this package currently requires an arch with
altivec accelerator support. This is a bug and the the powerpc arch
should have a non-simd option like ARM/x86.
Upstream issue: https://github.com/aircrack-ng/aircrack-ng/issues/1941
Fixes
http://autobuild.buildroot.net/results/87e82a5e8d0b1c1ff10ec3e59d25bcd56b329075
Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/aircrack-ng/Config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/aircrack-ng/Config.in b/package/aircrack-ng/Config.in index f3e2bc4ef1..d821c5a0a2 100644 --- a/package/aircrack-ng/Config.in +++ b/package/aircrack-ng/Config.in @@ -4,6 +4,9 @@ config BR2_PACKAGE_AIRCRACK_NG depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_INSTALL_LIBSTDCPP depends on !BR2_STATIC_LIBS # dlfcn.h + # https://github.com/aircrack-ng/aircrack-ng/issues/1941 + depends on BR2_POWERPC_CPU_HAS_ALTIVEC || \ + !(BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le) select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_LIBGCRYPT help A set of tools for auditing wireless networks |