changeset: 97116:33dbcde76b3f branch: 3.4 parent: 97113:1123de53195e user: Ned Deily date: Tue Jul 28 23:22:23 2015 -0700 files: Mac/BuildScript/README.txt Mac/BuildScript/build-installer.py Misc/NEWS description: Issue #19450: Update OS X installer builds to use SQLite 3.8.11. diff -r 1123de53195e -r 33dbcde76b3f Mac/BuildScript/README.txt --- a/Mac/BuildScript/README.txt Wed Jul 29 12:52:40 2015 +1200 +++ b/Mac/BuildScript/README.txt Tue Jul 28 23:22:23 2015 -0700 @@ -33,7 +33,7 @@ * libcrypto and libssl from OpenSSL 1.0.1 (new, as of 3.4.3) * NCurses 5.9 (http://bugs.python.org/issue15037) - * SQLite 3.8.3.1 + * SQLite 3.8.11 * XZ 5.0.5 - uses system-supplied versions of third-party libraries @@ -68,7 +68,7 @@ - builds the following third-party libraries * NCurses 5.9 (http://bugs.python.org/issue15037) - * SQLite 3.8.3.1 + * SQLite 3.8.11 * XZ 5.0.5 - uses system-supplied versions of third-party libraries diff -r 1123de53195e -r 33dbcde76b3f Mac/BuildScript/build-installer.py --- a/Mac/BuildScript/build-installer.py Wed Jul 29 12:52:40 2015 +1200 +++ b/Mac/BuildScript/build-installer.py Tue Jul 28 23:22:23 2015 -0700 @@ -339,9 +339,9 @@ ), ), dict( - name="SQLite 3.8.3.1", - url="http://www.sqlite.org/2014/sqlite-autoconf-3080301.tar.gz", - checksum='509ff98d8dc9729b618b7e96612079c6', + name="SQLite 3.8.11", + url="https://www.sqlite.org/2015/sqlite-autoconf-3081100.tar.gz", + checksum='77b451925121028befbddbf45ea2bc49', extra_cflags=('-Os ' '-DSQLITE_ENABLE_FTS4 ' '-DSQLITE_ENABLE_FTS3_PARENTHESIS ' diff -r 1123de53195e -r 33dbcde76b3f Misc/NEWS --- a/Misc/NEWS Wed Jul 29 12:52:40 2015 +1200 +++ b/Misc/NEWS Tue Jul 28 23:22:23 2015 -0700 @@ -69,7 +69,7 @@ - Issue #23254: Document how to close the TCPServer listening socket. Patch from Martin Panter. -- Issue #19450: Update Windows builds to use SQLite 3.8.11.0 +- Issue #19450: Update Windows and OS X installer builds to use SQLite 3.8.11. - Issue #23441: rcompleter now prints a tab character instead of displaying possible completions for an empty word. Initial patch by Martin Sekera.