Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b3b0767

Browse files
committedSep 6, 2016
Update OS X installer to use SQlite 3.14.1 and XZ 5.2.2.
1 parent bd63353 commit b3b0767

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed
 

‎Mac/BuildScript/build-installer.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -299,9 +299,9 @@ def library_recipes():
299299
if PYTHON_3:
300300
result.extend([
301301
dict(
302-
name="XZ 5.0.5",
303-
url="http://tukaani.org/xz/xz-5.0.5.tar.gz",
304-
checksum='19d924e066b6fff0bc9d1981b4e53196',
302+
name="XZ 5.2.2",
303+
url="http://tukaani.org/xz/xz-5.2.2.tar.gz",
304+
checksum='7cf6a8544a7dae8e8106fdf7addfa28c',
305305
configure_pre=[
306306
'--disable-dependency-tracking',
307307
]
@@ -344,10 +344,11 @@ def library_recipes():
344344
),
345345
),
346346
dict(
347-
name="SQLite 3.8.11",
348-
url="https://www.sqlite.org/2015/sqlite-autoconf-3081100.tar.gz",
349-
checksum='77b451925121028befbddbf45ea2bc49',
347+
name="SQLite 3.14.1",
348+
url="https://www.sqlite.org/2016/sqlite-autoconf-3140100.tar.gz",
349+
checksum='3634a90a3f49541462bcaed3474b2684',
350350
extra_cflags=('-Os '
351+
'-DSQLITE_ENABLE_FTS5 '
351352
'-DSQLITE_ENABLE_FTS4 '
352353
'-DSQLITE_ENABLE_FTS3_PARENTHESIS '
353354
'-DSQLITE_ENABLE_RTREE '

‎Misc/NEWS

+2
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,8 @@ Build
182182
- Issue #25825: Update references to the $(LIBPL) installation path on AIX.
183183
This path was changed in 3.2a4.
184184

185+
- Update OS X installer to use SQLite 3.14.1 and XZ 5.2.2.
186+
185187
Windows
186188
-------
187189

0 commit comments

Comments
 (0)
Please sign in to comment.