d69bdfc1ba
Fix the following build failure raised since bump to version 2.17.12 in commit50ba0b0a40
and517d3ea036
: src/random.c:1:23: fatal error: stdatomic.h: No such file or directory #include <stdatomic.h> ^ Fixes: - http://autobuild.buildroot.org/results/ca62edddd42252bf21caa8243f8aaba38992fc68 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com> (cherry picked from commitc098306444
) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
13 lines
366 B
Plaintext
13 lines
366 B
Plaintext
config BR2_PACKAGE_AXEL
|
|
bool "axel"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C11/stdatomic.h
|
|
help
|
|
HTTP/FTP download accelerator.
|
|
|
|
https://github.com/axel-download-accelerator/axel/
|
|
|
|
comment "axel needs a toolchain w/ threads, gcc >= 4.9"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|