dragora-installer: Auto determine height for initial dialog
[dragora.git] / patches / libelf / musl-tests.patch
blobbe35791b1af1d02eced2dd956a797bb7028d9da6
1 Fix error on musl:
3 | ../../elfutils-0.176/tests/elfstrmerge.c: In function 'main':
4 | ../../elfutils-0.176/tests/elfstrmerge.c:370:60: error: 'ALLPERMS' undeclared (first use in this function); did you mean 'EPERM'?
5 | fdnew = open (fnew, O_WRONLY | O_CREAT, st.st_mode & ALLPERMS);
6 | ^~~~~~~~
7 | EPERM
8 | ../../elfutils-0.176/tests/elfstrmerge.c:370:60: note: each undeclared identifier is reported only once for each function it appears in
10 Upstream-Status: Inappropriate [workaround in musl]
12 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 Index: elfutils-0.176/tests/elfstrmerge.c
15 ===================================================================
16 --- elfutils-0.176.orig/tests/elfstrmerge.c
17 +++ elfutils-0.176/tests/elfstrmerge.c
18 @@ -33,6 +33,11 @@
19 #include ELFUTILS_HEADER(dwelf)
20 #include "elf-knowledge.h"
22 +/* for musl */
23 +#ifndef ALLPERMS
24 +# define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)/* 07777 */
25 +#endif
27 /* The original ELF file. */
28 static int fd = -1;
29 static Elf *elf = NULL;