python-pyroute2: bump to version 0.3.16
[buildroot-gz.git] / package / musepack / 0004-missing-sys-select.patch
blob1e3a4b1140557d3d26589f06055861e6210d3de5
1 Add missing <sys/select.h> include
3 This header is needed when types like fd_set are used. This fixes a
4 build issue occuring on the musl C library.
6 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
7 [Thomas: better commit log.]
8 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 Index: b/mpcenc/mpcenc.h
11 ===================================================================
12 --- a/mpcenc/mpcenc.h
13 +++ b/mpcenc/mpcenc.h
14 @@ -34,6 +34,7 @@
15 //// portable system includes //////////////////////////////////////
16 #include <stddef.h>
17 #include <math.h>
18 +#include <sys/select.h>
20 //// system dependent system includes //////////////////////////////
21 // low level I/O, where are prototypes and constants?