package/dhcp/S80dhcp-server: allow empty INTERFACES
[buildroot-gz.git] / package / imlib2 / 0007-fix-compilation-issues-with-musl.patch
blob50e88a230f7bcf690e44081078b276e786d7baab
1 From bdfa1169c549122a8dc848b84469458101adeb20 Mon Sep 17 00:00:00 2001
2 From: Brendan Heading <brendanheading@gmail.com>
3 Date: Mon, 3 Aug 2015 12:44:55 +0100
4 Subject: [PATCH 1/1] fix compilation issues with musl
6 Using time_t strictly requires time.h to be included.
8 NOTE I've stuck to the convention on this project where most of the
9 files appear to pick up most of their headers by including "common.h".
11 Upstream-status: pending
12 Signed-off-by: Brendan Heading <brendanheading@gmail.com>
13 ---
14 src/lib/common.h | 1 +
15 1 file changed, 1 insertion(+)
17 diff --git a/src/lib/common.h b/src/lib/common.h
18 index 798965f..9053826 100644
19 --- a/src/lib/common.h
20 +++ b/src/lib/common.h
21 @@ -9,6 +9,7 @@
22 #include <config.h>
23 #include <string.h>
24 #include <math.h>
25 +#include <time.h>
26 #ifdef WITH_DMALLOC
27 #include <dmalloc.h>
28 #endif
29 --
30 2.4.3