From de60cf611b1b7dcad53f21728360dff1792ab4fc Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sun, 30 Aug 2009 11:42:28 -0700 Subject: Build posix_fadvice{64} only when UCLIBC_HAS_ADVANCED_REALTIME is set. Right now for ARM, MIPS, Xtensa and powerpc posix_fadvise routines are included conditionally. They should only be enabled when UCLIBC_HAS_ADVANCED_REALTIME is set. Also fix code style in powerpc/posix_fadvise64.c Signed-off-by: Khem Raj --- libc/sysdeps/linux/mips/Makefile.arch | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'libc/sysdeps/linux/mips/Makefile.arch') diff --git a/libc/sysdeps/linux/mips/Makefile.arch b/libc/sysdeps/linux/mips/Makefile.arch index ce80c7590..2570a6988 100644 --- a/libc/sysdeps/linux/mips/Makefile.arch +++ b/libc/sysdeps/linux/mips/Makefile.arch @@ -8,7 +8,11 @@ CSRC := \ __longjmp.c brk.c setjmp_aux.c mmap.c __syscall_error.c \ cacheflush.c pread_write.c sysmips.c _test_and_set.c sigaction.c \ - readahead.c posix_fadvise.c posix_fadvise64.c + readahead.c + +ifeq ($(UCLIBC_HAS_ADVANCED_REALTIME),y) + CSRC += posix_fadvise.c posix_fadvise64.c +endif SSRC := bsd-_setjmp.S bsd-setjmp.S setjmp.S clone.S syscall.S pipe.S -- cgit v1.2.3