board/csky: fixup gdb instructions in readme.txt
[buildroot-gz.git] / package / alsa-lib / 0006-ucm-parser-needs-limits.h.patch
blobb47dedb3a977f46ef09cfc45c53c565e1e6718db
1 From 13a796b4bd00defa9f9297fd23d508b430682aed Mon Sep 17 00:00:00 2001
2 From: Gustavo Zacarias <gustavo@zacarias.com.ar>
3 Date: Wed, 21 Dec 2016 19:41:26 -0300
4 Subject: [PATCH] ucm: parser needs limits.h
6 It's using PATH_MAX which is defined there, otherwise the build fails on
7 musl libc.
9 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
10 ---
11 Patch status: sent to alsa-devel ML.
13 src/ucm/parser.c | 1 +
14 1 file changed, 1 insertion(+)
16 diff --git a/src/ucm/parser.c b/src/ucm/parser.c
17 index c98373a..f520abc 100644
18 --- a/src/ucm/parser.c
19 +++ b/src/ucm/parser.c
20 @@ -32,6 +32,7 @@
22 #include "ucm_local.h"
23 #include <dirent.h>
24 +#include <limits.h>
26 /** The name of the environment variable containing the UCM directory */
27 #define ALSA_CONFIG_UCM_VAR "ALSA_CONFIG_UCM"
28 --
29 2.10.2