From 40171f36b31aee113375fe9ccbfcdec579b1355d Mon Sep 17 00:00:00 2001 From: Mikhael-Danilov Date: Thu, 25 Sep 2014 21:26:12 +0400 Subject: Add LFS_DO_NOT_USE_LARGE_FILE flag Which disables LARGE_FILE support --- src/lfs.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/lfs.c b/src/lfs.c index ec3544b..5461f82 100644 --- a/src/lfs.c +++ b/src/lfs.c @@ -20,6 +20,7 @@ ** $Id: lfs.c,v 1.61 2009/07/04 02:10:16 mascarenhas Exp $ */ +#ifndef LFS_DO_NOT_USE_LARGE_FILE #ifndef _WIN32 #ifndef _AIX #define _FILE_OFFSET_BITS 64 /* Linux, Solaris and HP-UX */ @@ -27,8 +28,11 @@ #define _LARGE_FILES 1 /* AIX */ #endif #endif +#endif +#ifndef LFS_DO_NOT_USE_LARGE_FILE #define _LARGEFILE64_SOURCE +#endif #include #include -- cgit v1.2.3-55-g6feb