blob: ab907fca0c4b30cfb15a8b9925d7dd20429939e6 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001From 829a89e7f5785239a9384e3afd46c900f9d76ada Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 31 Aug 2015 19:55:32 +0000
4Subject: [PATCH] fix build with musl
5
6signal.h already includes bits/sigcontext.h
7Documentation seems to indicate that if you need the definitions in
8sigcontext.h, you are supposed to include signal.h and not sigcontext.h.
9
10a good fix should be to remove glibc
11specific understanding, in those ifdef's
12
13Signed-off-by: Khem Raj <raj.khem@gmail.com>
14---
15Upstream-Status: Pending
16
17 os_dep.c | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20diff --git a/os_dep.c b/os_dep.c
21index 08c501d..5cb7873 100644
22--- a/os_dep.c
23+++ b/os_dep.c
24@@ -41,7 +41,7 @@
25 # else /* __GLIBC__ < 2 */
26 /* libc5 doesn't have <sigcontext.h>: go directly with the kernel */
27 /* one. Check LINUX_VERSION_CODE to see which we should reference. */
28-# include <asm/sigcontext.h>
29+# include <signal.h>
30 # endif /* __GLIBC__ < 2 */
31 # endif
32 #endif /* LINUX && !POWERPC */
33--
342.5.1
35