diff options
author | Ned Deily <nad@acm.org> | 2015-07-29 06:22:23 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2015-07-29 06:22:23 (GMT) |
commit | bb1c079657fa8f8f9d7ec537f83b1fed1d9b413c (patch) | |
tree | 9fb9447f53f64a60f2e5bcb678d5eb70702ab904 /Mac/BuildScript | |
parent | 1ee9283254446998c9f423896b1edffe42f246d3 (diff) | |
download | cpython-bb1c079657fa8f8f9d7ec537f83b1fed1d9b413c.zip cpython-bb1c079657fa8f8f9d7ec537f83b1fed1d9b413c.tar.gz cpython-bb1c079657fa8f8f9d7ec537f83b1fed1d9b413c.tar.bz2 |
Issue #19450: Update OS X installer builds to use SQLite 3.8.11.
Diffstat (limited to 'Mac/BuildScript')
-rw-r--r-- | Mac/BuildScript/README.txt | 4 | ||||
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Mac/BuildScript/README.txt b/Mac/BuildScript/README.txt index 8eb539c..db687be 100644 --- a/Mac/BuildScript/README.txt +++ b/Mac/BuildScript/README.txt @@ -33,7 +33,7 @@ package creation are the same as for 3.4.1 below. * 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 @@ package creation are the same as for 3.4.1 below. - 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 --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 74c9cfb..f363ebd 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -339,9 +339,9 @@ def library_recipes(): ), ), 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 ' |