@@ -8,11 +8,11 @@ If you need a specific version of SQLite, or specific SQLite compilation options
8
8
9
9
10
10
11
- ** September 10 , 2016: Update SQLite to 3.14.1 ** ([ changelog] ( CHANGELOG.md ) ).
11
+ ** September 29 , 2016: Update SQLite to 3.14.2 ** , fix for building on macOS Sierra ([ changelog] ( CHANGELOG.md ) ).
12
12
13
13
** Requirements** : iOS 8.0+ / OSX 10.9+, Xcode 7.3+
14
14
15
- ** SQLite Included:** 3.14.1
15
+ ** SQLite Included:** 3.14.2
16
16
17
17
18
18
@@ -65,7 +65,7 @@ There is no need to modify any other files.
65
65
66
66
#### Compiling a Specific Version of SQLite:
67
67
68
- SQLiteLib currently ships with the source for SQLite 3.14.1 .
68
+ SQLiteLib currently ships with the source for SQLite 3.14.2 .
69
69
70
70
If you'd like to compile a newer (or older) version, the process is simple:
71
71
@@ -127,7 +127,7 @@ The built-in OSX/iOS version of SQLite were built with the following compilation
127
127
128
128
SQLiteLib uses these settings with one exception - on iOS:
129
129
130
- The SQLite code (verified in: 3.14.1 ) uses a deprecated function (` gethostuuid() ` ).
130
+ The SQLite code (verified in: 3.14.2 ) uses a deprecated function (` gethostuuid() ` ).
131
131
132
132
D. Richard Hipp (SQLite architect), suggests working around this on iOS using ` -DSQLITE_ENABLE_LOCKING_STYLE=0 ` :
133
133
> "The SQLITE_ENABLE_LOCKING_STYLE thing is an apple-only extension that
@@ -140,7 +140,7 @@ D. Richard Hipp (SQLite architect), suggests working around this on iOS using `-
140
140
Thus, SQLiteLib uses ` SQLITE_ENABLE_LOCKING_STYLE=1 ` on OSX,
141
141
** but on iOS, SQLiteLib compiles with ` ENABLE_LOCKING_STYLE=0 ` ** .
142
142
143
- This removes the code that uses the deprecated function, but doesn't get rid of the warning that "` gethostuuid() is disabled ` " (as of 3.14.1 ).
143
+ This removes the code that uses the deprecated function, but doesn't get rid of the warning that "` gethostuuid() is disabled ` " (as of 3.14.2 ).
144
144
145
145
To prevent this warning, SQLiteLib separately specifies ` -Wno-#warnings ` when building for iOS.
146
146
0 commit comments