1From 3ab8bdc1c657f91a2a96f4e6db308d17098de0c4 Mon Sep 17 00:00:00 2001
2From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
3Date: Thu, 23 Feb 2023 12:09:11 +0100
4Subject: [PATCH] src/s6-linux-utils/rngseed.c: fix build with glibc <
5
6getrandom and sys/random.h are only available since glibc 2.25 resulting
7in the following build failure since version 2.6.0.0 and
8https://github.com/skarnet/s6-linux-utils/commit/ad5973028c42d947440cdae5e4f106152c3dda28:
9
10src/minutils/rngseed.c:15:24: fatal error: sys/random.h: No such file or directory
11 #include <sys/random.h>
12                        ^
13
14Fixes:
15 - http://autobuild.buildroot.org/results/214bcecfc389cb412b68627c831300478d614a3a
16
17Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
18[Upstream status: https://github.com/skarnet/s6-linux-utils/pull/2]
19---
20 src/s6-linux-utils/rngseed.c | 2 ++
21 1 file changed, 2 insertions(+)
22
23diff --git a/src/minutils/rngseed.c b/src/minutils/rngseed.c
24index 2b1772c..223f50a 100644
25--- a/src/minutils/rngseed.c
26+++ b/src/minutils/rngseed.c
27@@ -12,7 +12,9 @@
28 #include <unistd.h>
29 #include <sys/stat.h>
30 #include <sys/ioctl.h>
31+#ifdef SKALIBS_HASGETRANDOM
32 #include <sys/random.h>
33+#endif
34 #include <linux/random.h>
35
36 #include <skalibs/types.h>
37--
382.39.1
39
40