@@ -8,11 +8,11 @@ If you need a specific version of SQLite, or specific SQLite compilation options
88
99
1010
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 ) ).
1212
1313** Requirements** : iOS 8.0+ / OSX 10.9+, Xcode 7.3+
1414
15- ** SQLite Included:** 3.14.1
15+ ** SQLite Included:** 3.14.2
1616
1717
1818
@@ -65,7 +65,7 @@ There is no need to modify any other files.
6565
6666#### Compiling a Specific Version of SQLite:
6767
68- SQLiteLib currently ships with the source for SQLite 3.14.1 .
68+ SQLiteLib currently ships with the source for SQLite 3.14.2 .
6969
7070If you'd like to compile a newer (or older) version, the process is simple:
7171
@@ -127,7 +127,7 @@ The built-in OSX/iOS version of SQLite were built with the following compilation
127127
128128SQLiteLib uses these settings with one exception - on iOS:
129129
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() ` ).
131131
132132D. Richard Hipp (SQLite architect), suggests working around this on iOS using ` -DSQLITE_ENABLE_LOCKING_STYLE=0 ` :
133133> "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 `-
140140Thus, SQLiteLib uses ` SQLITE_ENABLE_LOCKING_STYLE=1 ` on OSX,
141141** but on iOS, SQLiteLib compiles with ` ENABLE_LOCKING_STYLE=0 ` ** .
142142
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 ).
144144
145145To prevent this warning, SQLiteLib separately specifies ` -Wno-#warnings ` when building for iOS.
146146
0 commit comments