1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Only define _FILE_OFFSET_BITS if it is not already defined. Ticket #605. (CVS 1227)

FossilOrigin-Name: 300c5543dc83c6b7eacb0c81ed06f95004c0f6d8
This commit is contained in:
drh
2004-02-11 16:38:06 +00:00
parent eb8ed70db5
commit ab9426e242
3 changed files with 10 additions and 8 deletions

View File

@@ -39,7 +39,9 @@
*/
#ifndef SQLITE_DISABLE_LFS
# define _LARGE_FILE 1
# define _FILE_OFFSET_BITS 64
# ifndef _FILE_OFFSET_BITS
# define _FILE_OFFSET_BITS 64
# endif
# define _LARGEFILE_SOURCE 1
#endif