Remove BR2_DEPRECATED
[buildroot-gz.git] / package / putty / 0001-uxcons-Fix-on-musl-libc.patch
blob5f43af0d0555b3cb78b7dcee2ce0a3855c52e56d
1 From 4ae1577b432c1859704d2763f70a764dee23bd98 Mon Sep 17 00:00:00 2001
2 From: Kylie McClain <somasis@exherbo.org>
3 Date: Thu, 28 Apr 2016 22:40:32 -0400
4 Subject: [PATCH] uxcons: Fix on musl libc
6 musl libc exports FD_SET and friends in sys/select.h.
8 Signed-off-by: Baruch Siach <baruch@tkos.co.il>
9 ---
10 Patch status: upstream commit 4ae1577b432c
12 unix/uxcons.c | 1 +
13 1 file changed, 1 insertion(+)
15 diff --git a/unix/uxcons.c b/unix/uxcons.c
16 index b9fd67fe9274..f2a25f3fed70 100644
17 --- a/unix/uxcons.c
18 +++ b/unix/uxcons.c
19 @@ -12,6 +12,7 @@
20 #include <termios.h>
21 #include <unistd.h>
22 #include <fcntl.h>
23 +#include <sys/select.h>
25 #include "putty.h"
26 #include "storage.h"
27 --
28 2.8.1