12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- From a0450f7909348e7ff1d58adc0aee4119a0519c1f Mon Sep 17 00:00:00 2001
- From: Chen Qi <Qi.Chen@windriver.com>
- Date: Mon, 25 Feb 2019 15:00:06 +0800
- Subject: [PATCH] add missing FTW_ macros for musl
- This is to avoid build failures like below for musl.
- locale-util.c:296:24: error: 'FTW_STOP' undeclared
- Upstream-Status: Inappropriate [musl specific]
- Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
- ---
- src/basic/missing_type.h | 4 ++++
- src/test/test-recurse-dir.c | 1 +
- 2 files changed, 5 insertions(+)
- diff --git a/src/basic/missing_type.h b/src/basic/missing_type.h
- index 6c0456349d..73a5b90e3c 100644
- --- a/src/basic/missing_type.h
- +++ b/src/basic/missing_type.h
- @@ -14,3 +14,7 @@
- #ifndef __GLIBC__
- typedef int (*comparison_fn_t)(const void *, const void *);
- #endif
- +
- +#ifndef FTW_CONTINUE
- +#define FTW_CONTINUE 0
- +#endif
- diff --git a/src/test/test-recurse-dir.c b/src/test/test-recurse-dir.c
- index 2c2120b136..bc60a178a2 100644
- --- a/src/test/test-recurse-dir.c
- +++ b/src/test/test-recurse-dir.c
- @@ -6,6 +6,7 @@
- #include "recurse-dir.h"
- #include "strv.h"
- #include "tests.h"
- +#include "missing_type.h"
-
- static char **list_nftw = NULL;
-
|