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 <gustavo@zacarias.com.ar>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
Gustavo Zacarias 2016-12-21 19:46:34 -03:00 committed by Takashi Iwai
parent 6ad2a9763d
commit 9ed4075f05

View file

@ -32,6 +32,7 @@
#include "ucm_local.h"
#include <dirent.h>
#include <limits.h>
/** The name of the environment variable containing the UCM directory */
#define ALSA_CONFIG_UCM_VAR "ALSA_CONFIG_UCM"