File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
Sqlite3 built as follows:
2
2
3
- 1. Download recent version from http://www.sqlite.org/sqlite-amalgamation-3070900 .zip
3
+ 1. Download recent version from http://www.sqlite.org/sqlite-amalgamation-3071400 .zip
4
4
5
5
2. Unzip the file
6
6
@@ -14,7 +14,7 @@ sqlite3ext.h
14
14
3. Edit: sqlite3.c and add the following lines to the start of it:
15
15
16
16
// These first few lines added by NJG
17
- // version 3.7.9
17
+ // version 3.7.14
18
18
# pragma warning (disable : 4018) // signed/unsigned mismatch
19
19
# pragma warning (disable : 4022) // pointer mismatch for actual parameter x
20
20
# pragma warning (disable : 4047) // 'void ** ' differs in levels of indirection from 'long *'
@@ -24,6 +24,7 @@ sqlite3ext.h
24
24
# pragma warning (disable : 4115) // named type definition in parentheses
25
25
# pragma warning (disable : 4127) // conditional expression is constant
26
26
# pragma warning (disable : 4132) // const object should be initialized
27
+ # pragma warning (disable : 4232) // address of dllimport 'x' is not static, identity not guaranteed
27
28
# pragma warning (disable : 4244) // conversion from 'int ' to 'char ', possible loss of data
28
29
# pragma warning (disable : 4305) // truncation from 'int ' to 'short '
29
30
# pragma warning (disable : 4701) // 'xxx' may be used without having been initialized
You can’t perform that action at this time.
0 commit comments