[vdr] [PATCH 3/4] i18n.c: _nl_msg_cat_cntr is an internal symbol of some intl implementation

2023-05-16 Thread Bernd Kuhls
ub libintl-musl implementation. Signed-off-by: Thomas Petazzoni Signed-off-by: Bernd Kuhls --- i18n.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/i18n.c b/i18n.c index d77e82c1..e4bc54f2 100644 --- a/i18n.c +++ b/i18n.c @@ -124,8 +124,10 @@ static const char *SkipContext(const char *s) s

[vdr] [PATCH 2/4] Include limits.h

2023-05-16 Thread Bernd Kuhls
Initial commits: https://git.alpinelinux.org/aports/commit/?id=c9d8942ccf4825fd734b5f37157a49fc4f0b4339 https://git.alpinelinux.org/aports/commit/?id=47965644c390b1be1117769b1e08b31858267e9a Signed-off-by: Bernd Kuhls --- config.h | 1 + tools.c | 1 + 2 files changed, 2 insertions(+) diff --git a

[vdr] [PATCH 4/4] Fix musl build

2023-05-16 Thread Bernd Kuhls
malloc_trim is a GNU extension and therefore not present in non-glibc C libraries such as musl. Wrapping this in an ifdef fixes musl builds. Signed-off-by: Bernd Kuhls --- vdr.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vdr.c b/vdr.c index 0f426e61..bc4902de 100644 --- a/vdr.c +++ b

[vdr] [PATCH 1/4] Fix musl build

2023-05-16 Thread Bernd Kuhls
From: Carlo Landmeter Downloaded from https://git.alpinelinux.org/aports/tree/community/vdr/musl-compat.patch Initial commit: https://git.alpinelinux.org/aports/commit/?id=140248605cee4a0160f80b47ce77a823be2f740a Signed-off-by: Bernd Kuhls --- i18n.h | 2 +- osd.c| 2 +- thread.c