diff options
author | drh <drh@noemail.net> | 2015-01-14 17:16:23 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-01-14 17:16:23 +0000 |
commit | 7a20f698dfa00d012f7742b0d8c2ca0d5a1ae41a (patch) | |
tree | a94425cfb168f06c47a06af4a683f31b3fc791d6 /src/sqliteInt.h | |
parent | f7af7a17b9a8a1e623604972399711271e1b903a (diff) | |
parent | 068a251d9982d7f57694d5b901078b94dc5b0ad0 (diff) | |
download | sqlite-7a20f698dfa00d012f7742b0d8c2ca0d5a1ae41a.tar.gz sqlite-7a20f698dfa00d012f7742b0d8c2ca0d5a1ae41a.zip |
Merge trunk 3.8.8 beta changes into the sessions branch
FossilOrigin-Name: 0ba124540b5b2a9ceda0f4f4a46e6be54edad813
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index eb99c4224..b2d2b9a99 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -16,6 +16,14 @@ #define _SQLITEINT_H_ /* +** Include the header file used to customize the compiler options for MSVC. +** This should be done first so that it can successfully prevent spurious +** compiler warnings due to subsequent content in this file and other files +** that are included by this file. +*/ +#include "msvc.h" + +/* ** These #defines should enable >2GB file support on POSIX if the ** underlying operating system supports it. If the OS lacks ** large file support, or if the OS is windows, these should be no-ops. @@ -2989,7 +2997,7 @@ int sqlite3CantopenError(int); ** the SQLITE_ENABLE_FTS4 macro to serve as an alias for SQLITE_ENABLE_FTS3. */ #if defined(SQLITE_ENABLE_FTS4) && !defined(SQLITE_ENABLE_FTS3) -# define SQLITE_ENABLE_FTS3 +# define SQLITE_ENABLE_FTS3 1 #endif /* |