From fdae0a848747a5c34f89d7e37f2c63e51f67b1be Mon Sep 17 00:00:00 2001 From: Joseph Lee Date: Tue, 20 May 2003 00:28:53 +0000 Subject: [PATCH] add GCC build flags for largefile >2GB support --- dtool/Config.Linux.pp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dtool/Config.Linux.pp b/dtool/Config.Linux.pp index 3f4e0e0c05..18d8dd7873 100644 --- a/dtool/Config.Linux.pp +++ b/dtool/Config.Linux.pp @@ -127,3 +127,7 @@ // What is the syntax of the STL allocator declaration? See // LocalSetup.pp for allowable values. #define STL_ALLOCATOR GNU + +// large file >2GB support +#define _LARGEFILE_SOURCE 1 +#define _FILE_OFFSET_BITS 64