python-whoosh: bump to version 2.7.4
[buildroot-gz.git] / package / pptp-linux / 0003-pqueue.h-include-sys-types.h.patch
blobd6b5445fa97ac69b88634ddacdb226acd3adfb0a
1 From 060ad28b9ca5e99d7c6e8010132da58a3a8a0585 Mon Sep 17 00:00:00 2001
2 From: Gustavo Zacarias <gustavo@zacarias.com.ar>
3 Date: Fri, 22 Jan 2016 10:19:18 -0300
4 Subject: [PATCH] pqueue.h: include sys/types.h
6 We're using u_int32_t here, this breaks on musl libc builds otherwise.
8 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
9 ---
10 Patch status: sent upstream to the devel mailing list
11 (moderated, no archive link yet)
13 pqueue.h | 1 +
14 1 file changed, 1 insertion(+)
16 diff --git a/pqueue.h b/pqueue.h
17 index a56590f..8c60c62 100644
18 --- a/pqueue.h
19 +++ b/pqueue.h
20 @@ -3,6 +3,7 @@
22 #include <time.h>
23 #include <sys/time.h>
24 +#include <sys/types.h>
26 /* wait this many seconds for missing packets before forgetting about them */
27 #define DEFAULT_PACKET_TIMEOUT 0.3
28 --
29 2.4.10