Skip to content

Commit 19f1ff8

Browse files
committed
Updated SQLite3 library from 3.7.9 to 3.7.14
1 parent c91ff45 commit 19f1ff8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

sqlite3/readme.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Sqlite3 built as follows:
22

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
44

55
2. Unzip the file
66

@@ -14,7 +14,7 @@ sqlite3ext.h
1414
3. Edit: sqlite3.c and add the following lines to the start of it:
1515

1616
// These first few lines added by NJG
17-
// version 3.7.9
17+
// version 3.7.14
1818
# pragma warning (disable : 4018) // signed/unsigned mismatch
1919
# pragma warning (disable : 4022) // pointer mismatch for actual parameter x
2020
# pragma warning (disable : 4047) // 'void ** ' differs in levels of indirection from 'long *'
@@ -24,6 +24,7 @@ sqlite3ext.h
2424
# pragma warning (disable : 4115) // named type definition in parentheses
2525
# pragma warning (disable : 4127) // conditional expression is constant
2626
# pragma warning (disable : 4132) // const object should be initialized
27+
# pragma warning (disable : 4232) // address of dllimport 'x' is not static, identity not guaranteed
2728
# pragma warning (disable : 4244) // conversion from 'int ' to 'char ', possible loss of data
2829
# pragma warning (disable : 4305) // truncation from 'int ' to 'short '
2930
# pragma warning (disable : 4701) // 'xxx' may be used without having been initialized

0 commit comments

Comments
 (0)