From 2c20597657d269d5f61592278d589dd35cd040f2 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Wed, 29 Nov 2006 21:10:04 +0000 Subject: - honor __UCLIBC_HAS_LFS__ --- include/features.h | 6 ++++-- libc/sysdeps/linux/common/bits/posix_opt.h | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/include/features.h b/include/features.h index c94d531e8..46a94f7f4 100644 --- a/include/features.h +++ b/include/features.h @@ -176,8 +176,10 @@ # define _XOPEN_SOURCE 600 # undef _XOPEN_SOURCE_EXTENDED # define _XOPEN_SOURCE_EXTENDED 1 -# undef _LARGEFILE64_SOURCE -# define _LARGEFILE64_SOURCE 1 +# ifdef __UCLIBC_HAS_LFS__ +# undef _LARGEFILE64_SOURCE +# define _LARGEFILE64_SOURCE 1 +# endif /* __UCLIBC_HAS_LFS__ */ # undef _BSD_SOURCE # define _BSD_SOURCE 1 # undef _SVID_SOURCE diff --git a/libc/sysdeps/linux/common/bits/posix_opt.h b/libc/sysdeps/linux/common/bits/posix_opt.h index 92c2d3282..dfe259b7c 100644 --- a/libc/sysdeps/linux/common/bits/posix_opt.h +++ b/libc/sysdeps/linux/common/bits/posix_opt.h @@ -96,10 +96,12 @@ /* The LFS support in asynchronous I/O is also available. */ #define _LFS64_ASYNCHRONOUS_IO 1 +#ifdef __UCLIBC_HAS_LFS__ /* The rest of the LFS is also available. */ #define _LFS_LARGEFILE 1 #define _LFS64_LARGEFILE 1 #define _LFS64_STDIO 1 +#endif /* POSIX shared memory objects are implemented. */ #define _POSIX_SHARED_MEMORY_OBJECTS 200112L -- cgit v1.2.3