Révision | 25ae0a3f30c9651dd22507a66f7ddea009973154 (tree) |
---|---|
l'heure | 2018-02-01 03:43:04 |
Auteur | Bernd Kuhls <bernd.kuhls@t-on...> |
Commiter | Waldemar Brodkorb |
aarch64/sys/ucontext.h: include bits/sigcontext.h
Fixes a buildroot build error with ffmpeg
In file included from /home/bernd/buildroot/output/host/aarch64-buildroot-linux-uclibc/sysroot/usr/include/signal.h:329:0,
/home/bernd/buildroot/output/host/aarch64-buildroot-linux-uclibc/sysroot/usr/include/sys/ucontext.h:52:16:
using this defconfig:
BR2_aarch64=y
BR2_PACKAGE_FFMPEG=y
sys/ucontext.h for other archs already include bits/sigcontext.h,
on aarch64 this is needed as well.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
@@ -26,6 +26,10 @@ | ||
26 | 26 | |
27 | 27 | #include <sys/procfs.h> |
28 | 28 | |
29 | +/* We need the signal context definitions even if they are not used | |
30 | + included in <signal.h>. */ | |
31 | +#include <bits/sigcontext.h> | |
32 | + | |
29 | 33 | typedef elf_greg_t greg_t; |
30 | 34 | |
31 | 35 | /* Container for all general registers. */ |