mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
ebe4ac7369
dump1090 needs threads and gcc >= 4.9 since bump to version 7.2 in
commit e80c99e151
to avoid the following
build failures:
In file included from dump1090.c:50:
dump1090.h:69:10: fatal error: pthread.h: No such file or directory
69 | #include <pthread.h>
| ^~~~~~~~~~~
In file included from dump1090.c:50:0:
dump1090.h:68:23: fatal error: stdatomic.h: No such file or directory
#include <stdatomic.h>
^
Fixes:
- http://autobuild.buildroot.org/results/a8993d9a09c79231358f50d2c1eb2e08cf7d5fd6
- http://autobuild.buildroot.org/results/7367abae7dc8187e4a2aae5397618c6e1b7aa521
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14 lines
419 B
Plaintext
14 lines
419 B
Plaintext
config BR2_PACKAGE_DUMP1090
|
|
bool "dump1090"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C11/stdatomic.h
|
|
select BR2_PACKAGE_NCURSES
|
|
help
|
|
Dump1090 is a simple Mode S decoder for RTLSDR devices
|
|
|
|
https://github.com/flightaware/dump1090
|
|
|
|
comment "dump1090 needs a toolchain w/ threads, gcc >= 4.9"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|