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/2014 /sqlite-amalgamation-3080702 .zip
3
+ 1. Download recent version from https ://www.sqlite.org/2015 /sqlite-amalgamation-3080803 .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.8.7.2
17
+ // version 3.8.8.3
18
18
19
19
# pragma warning (disable : 4018) // signed/unsigned mismatch
20
20
# pragma warning (disable : 4022) // pointer mismatch for actual parameter x
@@ -23,6 +23,7 @@ sqlite3ext.h
23
23
# pragma warning (disable : 4056) // overflow in floating-point constant arithmetic
24
24
# pragma warning (disable : 4090) // 'function' : different 'volatile' qualifiers
25
25
# pragma warning (disable : 4100) // unreferenced formal parameter
26
+ # pragma warning (disable : 4101) // unreferenced local variable
26
27
# pragma warning (disable : 4115) // named type definition in parentheses
27
28
# pragma warning (disable : 4127) // conditional expression is constant
28
29
# pragma warning (disable : 4132) // const object should be initialized
You can’t perform that action at this time.
0 commit comments