aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/dropbear/patches/001-backport_GNU_SOURCE-for-random.patch
blob: d9b13d77dd96699f8901f20a8aa9e283a69583a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From 3f5c106a880a02b21739f2022746e6aa7672474c Mon Sep 17 00:00:00 2001
From: Matt Johnston <matt@ucc.asn.au>
Date: Tue, 23 Jun 2020 21:38:46 +0800
Subject: [PATCH] _GNU_SOURCE for random

---
 includes.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/includes.h b/includes.h
index e8c3e18..2789f23 100644
--- a/includes.h
+++ b/includes.h
@@ -125,6 +125,8 @@
 #endif
 
 #ifdef HAVE_SYS_RANDOM_H
+/* uclibc needs _GNU_SOURCE */
+#define _GNU_SOURCE
 #include <sys/random.h>
 #endif
 
-- 
2.25.1