]> git.alsa-project.org Git - alsa-lib.git/commit
ucm_exec.c: Include limits.h explicitly to fix build on musl
authorAndreas Müller <schnitzeltony@gmail.com>
Thu, 3 Jun 2021 10:29:03 +0000 (12:29 +0200)
committerJaroslav Kysela <perex@perex.cz>
Fri, 4 Jun 2021 07:26:36 +0000 (09:26 +0200)
commitabe805ed6c7f38e48002e575535afd1f673b9bcd
treeec62702d56c223afdf3ca64d1c3ff0167702227c
parent0325f4357d25f262400038f074512e1887c8e5f1
ucm_exec.c: Include limits.h explicitly to fix build on musl

Fixes:
| ../../../alsa-lib-1.2.5/src/ucm/ucm_exec.c: In function 'find_exec':
| ../../../alsa-lib-1.2.5/src/ucm/ucm_exec.c:43:18: error: 'PATH_MAX' undeclared (first use in this function)
|    43 |         char bin[PATH_MAX];
|       |                  ^~~~~~~~
| ../../../alsa-lib-1.2.5/src/ucm/ucm_exec.c:43:18: note: each undeclared identifier is reported only once for each function it appears in
| ../../../alsa-lib-1.2.5/src/ucm/ucm_exec.c: In function 'uc_mgr_exec':
| ../../../alsa-lib-1.2.5/src/ucm/ucm_exec.c:177:18: error: 'PATH_MAX' undeclared (first use in this function)
|   177 |         char bin[PATH_MAX];
|       |                  ^~~~~~~~

Fixes: https://github.com/alsa-project/alsa-lib/pull/145
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
src/ucm/ucm_exec.c