diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lfs.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -20,6 +20,7 @@ | |||
20 | ** $Id: lfs.c,v 1.61 2009/07/04 02:10:16 mascarenhas Exp $ | 20 | ** $Id: lfs.c,v 1.61 2009/07/04 02:10:16 mascarenhas Exp $ |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #ifndef LFS_DO_NOT_USE_LARGE_FILE | ||
23 | #ifndef _WIN32 | 24 | #ifndef _WIN32 |
24 | #ifndef _AIX | 25 | #ifndef _AIX |
25 | #define _FILE_OFFSET_BITS 64 /* Linux, Solaris and HP-UX */ | 26 | #define _FILE_OFFSET_BITS 64 /* Linux, Solaris and HP-UX */ |
@@ -27,8 +28,11 @@ | |||
27 | #define _LARGE_FILES 1 /* AIX */ | 28 | #define _LARGE_FILES 1 /* AIX */ |
28 | #endif | 29 | #endif |
29 | #endif | 30 | #endif |
31 | #endif | ||
30 | 32 | ||
33 | #ifndef LFS_DO_NOT_USE_LARGE_FILE | ||
31 | #define _LARGEFILE64_SOURCE | 34 | #define _LARGEFILE64_SOURCE |
35 | #endif | ||
32 | 36 | ||
33 | #include <errno.h> | 37 | #include <errno.h> |
34 | #include <stdio.h> | 38 | #include <stdio.h> |