OSDN Git Service

NPTL: needs madvise internally
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 12 May 2011 08:30:48 +0000 (10:30 +0200)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 12 May 2011 08:30:48 +0000 (10:30 +0200)
This fixes 8d09a50a044638fde2ed3e1a1c4d3c7c5a3cce5c since NPTL also uses
madvise internally.

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
libc/sysdeps/linux/common/Makefile.in

index d97c73d..27cbbf4 100644 (file)
@@ -19,15 +19,14 @@ CSRC-$(UCLIBC_LINUX_MODULE_24) += create_module.c query_module.c \
        get_kernel_syms.c
 # we need these internally: fstatfs.c statfs.c
 CSRC-$(UCLIBC_LINUX_SPECIFIC) += capget.c capset.c inotify.c ioperm.c iopl.c \
-       madvise.c modify_ldt.c pipe2.c personality.c ppoll.c prctl.c \
+       modify_ldt.c pipe2.c personality.c ppoll.c prctl.c \
        readahead.c reboot.c \
        remap_file_pages.c sched_getaffinity.c sched_setaffinity.c \
        sendfile64.c sendfile.c setfsgid.c setfsuid.c setresuid.c \
        splice.c vmsplice.c tee.c signalfd.c swapoff.c swapon.c \
        sync_file_range.c sysctl.c sysinfo.c timerfd.c uselib.c vhangup.c
-ifeq ($(UCLIBC_LINUX_SPECIFIC)$(UCLIBC_HAS_THREADS_NATIVE),yy)
-CSRC-y += madvise.c
-endif
+# NPTL needs these internally: madvise.c
+CSRC-$(findstring y,$(UCLIBC_LINUX_SPECIFIC)$(UCLIBC_HAS_THREADS_NATIVE)) += madvise.c
 ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
 CSRC- += fork.c getpid.c raise.c open.c close.c read.c write.c
 CSRC- += $(if $(findstring =arm=,=$(TARGET_ARCH)=),vfork.c)