diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2009-10-17 14:36:17 -0700 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-10-17 14:36:17 -0700 |
commit | 93e6d12ea06dc489cde0d96f78d623410703d33e (patch) | |
tree | 19121aa9c0d47330cff946467d148247cff6023b /libc/signal | |
parent | 57e8823548ad6e65d33b2153edeb18fb0edc20e6 (diff) |
nptl provides sigaction and raise
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc/signal')
-rw-r--r-- | libc/signal/Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/signal/Makefile.in b/libc/signal/Makefile.in index f768b7019..be9ddac94 100644 --- a/libc/signal/Makefile.in +++ b/libc/signal/Makefile.in @@ -21,6 +21,10 @@ ifeq ($(UCLIBC_SUSV4_LEGACY),y) CSRC += sigintr.c endif +ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y) +CSRC:=$(filter-out raise.c sigaction.c,$(CSRC)) +endif + ifneq ($(strip $(ARCH_OBJS)),) CSRC := $(filter-out $(notdir $(ARCH_OBJS:.o=.c)),$(CSRC)) endif |