0001-lib-getrandom.c-fix-build-with-uclibc-1.0.35.patch 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. From a0594387565e1e6b4a8a8ba04ad13b135cc1f0b5 Mon Sep 17 00:00:00 2001
  2. From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  3. Date: Thu, 1 Apr 2021 07:49:46 +0200
  4. Subject: [PATCH] lib/getrandom.c: fix build with uclibc < 1.0.35
  5. Fix the following build failure with uclibc < 1.0.35 which is raised
  6. since the addition of getrandom module in
  7. https://git.savannah.gnu.org/cgit/gnulib.git/commit/?id=682cc4e678aceff32dea2a84b6e5147bdf5a20a7:
  8. In file included from ./sys/random.h:40,
  9. from getrandom.c:22:
  10. /home/fabrice/buildroot/output/host/x86_64-buildroot-linux-uclibc/sysroot/usr/include/sys/random.h:27:35: error: unknown type name 'size_t'
  11. 27 | extern int getrandom(void *__buf, size_t count, unsigned int flags)
  12. | ^~~~~~
  13. /home/fabrice/buildroot/output/host/x86_64-buildroot-linux-uclibc/sysroot/usr/include/sys/random.h:8:1: note: 'size_t' is defined in header '<stddef.h>'; did you forget to '#include <stddef.h>'?
  14. 7 | #include <features.h>
  15. +++ |+#include <stddef.h>
  16. 8 |
  17. This patch is not upstreamable as it is only a workaround for
  18. uclibc < 1.0.35, upstream uclibc has been patched with
  19. https://github.com/wbx-github/uclibc-ng/commit/00972c02c2b6e0a95d5def4a71bdfb188e091782
  20. Fixes:
  21. - http://autobuild.buildroot.org/results/c69f5c8b8e53ed3de753f0c6d2cdd99497504b49
  22. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  23. ---
  24. lib/getrandom.c | 1 +
  25. 1 file changed, 1 insertion(+)
  26. diff --git a/lib/getrandom.c b/lib/getrandom.c
  27. index 41212fb32..0ad3f9648 100644
  28. --- a/lib/getrandom.c
  29. +++ b/lib/getrandom.c
  30. @@ -19,6 +19,7 @@
  31. #include <config.h>
  32. +#include <stddef.h>
  33. #include <sys/random.h>
  34. #include <errno.h>
  35. --
  36. 2.30.2