From 67e3e6352a37026098019ed61e471e34b33207d4 Mon Sep 17 00:00:00 2001 From: Wichert Akkerman Date: Sun, 19 Aug 2001 11:43:17 +0000 Subject: [PATCH] do not include asm/sigcontext.h on Linux/IA64 since it gets the struct from bits/sigcontext.h already which signal.h includes --- ChangeLog | 5 +++++ signal.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 32bc8afa..1e924e0e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-08-19 Wichert Akkerman + + * signal.c: do not include asm/sigcontext.h on IA64 since it gets + the struct from bits/sigcontext.h already which signal.h includes. + 2001-08-03 Wichert Akkerman * linux/ioctlent.sh: change regexps so we catch sound ioctls as well in diff --git a/signal.c b/signal.c index 4ab56bba..8e3e3786 100644 --- a/signal.c +++ b/signal.c @@ -83,7 +83,7 @@ typedef struct { struct regs si_regs; int si_mask; } m_siginfo_t; -#else +#elif !defined(IA64) #include #endif /* SPARC */ #else /* !HAVE_ASM_SIGCONTEXT_H */ -- 2.40.0