diff options
author | drh <drh@noemail.net> | 2014-02-07 19:33:31 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-02-07 19:33:31 +0000 |
commit | dddf6978d21314e1835630f0e02c65fc231dbec9 (patch) | |
tree | 4364f6fa4615a05b6a74f7041e117891140e981b /src/sqliteInt.h | |
parent | a198f2b55d716dd03b4a18b4b361c7e092797f3d (diff) | |
download | sqlite-dddf6978d21314e1835630f0e02c65fc231dbec9.tar.gz sqlite-dddf6978d21314e1835630f0e02c65fc231dbec9.zip |
Fix redundant definitions of _LARGE_FILE and _LARGEFILE_SOURCE.
FossilOrigin-Name: 4043d879795bfad55af35e9cb48e0a42eb4087ae
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 7c5e1e3ed..45a3986d8 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -33,6 +33,11 @@ ** in Red Hat 6.0, so the code won't work. Hence, for maximum binary ** portability you should omit LFS. ** +** The previous paragraph was written in 2005. (This paragraph is written +** on 2008-11-28.) These days, all Linux kernels support large files, so +** you should probably leave LFS enabled. But some embedded platforms might +** lack LFS in which case the SQLITE_DISABLE_LFS macro might still be useful. +** ** Similar is true for Mac OS X. LFS is only supported on Mac OS X 9 and later. */ #ifndef SQLITE_DISABLE_LFS |