dbus: bump to version 1.10.14
[buildroot-gz.git] / package / trousers / 0003-tsp_tcsi_param-include-limits.h-to-fix-musl-build.patch
blobf88e47ac27d17f2225a48430b05f576fcdaf5c1f
1 From 66bbe0a87818a1e3c721780dc33b2d81fdf4a774 Mon Sep 17 00:00:00 2001
2 From: Romain Naour <romain.naour@gmail.com>
3 Date: Sun, 21 Aug 2016 23:32:10 +0200
4 Subject: [PATCH] tsp_tcsi_param: include limits.h to fix musl build
6 The musl libc doesn't provide <bits/local_lim.h>, use <limits.h>
7 instead.
9 Signed-off-by: Romain Naour <romain.naour@gmail.com>
10 ---
11 src/tspi/tsp_tcsi_param.c | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
14 diff --git a/src/tspi/tsp_tcsi_param.c b/src/tspi/tsp_tcsi_param.c
15 index 670f86f..8f2b4e4 100644
16 --- a/src/tspi/tsp_tcsi_param.c
17 +++ b/src/tspi/tsp_tcsi_param.c
18 @@ -11,7 +11,7 @@
19 #include <stdlib.h>
20 #include <string.h>
21 #include <stdio.h>
22 -#include <bits/local_lim.h>
23 +#include <limits.h>
24 #include "trousers/tss.h"
25 #include "trousers/trousers.h"
26 #include "trousers_types.h"
27 --
28 2.5.5