diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-07-31 03:10:31 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-07-31 03:10:31 +0000 |
commit | 5907a96392145dcc56d004010f54fbe935e40841 (patch) | |
tree | 92fc29cd3bec42a6aebed7a9ff8074d26c850977 /libc/stdlib | |
parent | 6191b96c53ba2498b029b5556ecd21c16fefa85d (diff) | |
download | uClibc-alpine-5907a96392145dcc56d004010f54fbe935e40841.tar.bz2 uClibc-alpine-5907a96392145dcc56d004010f54fbe935e40841.tar.xz |
Disable compilation of 'thread-freeres.c' until we sort out the start
and stop functions lists for threads.
Diffstat (limited to 'libc/stdlib')
-rw-r--r-- | libc/stdlib/malloc-standard/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/stdlib/malloc-standard/Makefile b/libc/stdlib/malloc-standard/Makefile index 738b337c9..b5f53f2bf 100644 --- a/libc/stdlib/malloc-standard/Makefile +++ b/libc/stdlib/malloc-standard/Makefile @@ -32,10 +32,10 @@ endif # calloc.c can be found at uClibc/libc/stdlib/calloc.c # valloc.c can be found at uClibc/libc/stdlib/valloc.c CSRC=malloc.c calloc.c realloc.c free.c memalign.c mallopt.c mallinfo.c -ifeq ($(PTHREADS_NATIVE),y) -CSRC+=thread-freeres.c -CFLAGS += -I$(TOPDIR)/libpthread/nptl/compat -endif +#ifeq ($(PTHREADS_NATIVE),y) +#CSRC+=thread-freeres.c +#CFLAGS += -I$(TOPDIR)/libpthread/nptl/compat +#endif COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(COBJS) |