From: Gustavo Zacarias Date: Wed, 21 Dec 2016 22:46:34 +0000 (-0300) Subject: ucm: parser needs limits.h X-Git-Tag: v1.1.4~58 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=9ed4075f05a4242f32331f7f2c365767970f5003;p=alsa-lib.git ucm: parser needs limits.h It's using PATH_MAX which is defined there, otherwise the build fails on musl libc. Signed-off-by: Gustavo Zacarias Signed-off-by: Takashi Iwai --- diff --git a/src/ucm/parser.c b/src/ucm/parser.c index c98373a9..f520abc5 100644 --- a/src/ucm/parser.c +++ b/src/ucm/parser.c @@ -32,6 +32,7 @@ #include "ucm_local.h" #include +#include /** The name of the environment variable containing the UCM directory */ #define ALSA_CONFIG_UCM_VAR "ALSA_CONFIG_UCM"