diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-05-03 00:37:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-03 00:37:35 (GMT) |
commit | 555cbbe7c10c29ec4358c66c247b8d7e871a5f7b (patch) | |
tree | 12c6281e6e4c50156144df879bc7074c72da2765 | |
parent | 870317825822c856490a32eee037fec8057690b1 (diff) | |
download | cpython-555cbbe7c10c29ec4358c66c247b8d7e871a5f7b.zip cpython-555cbbe7c10c29ec4358c66c247b8d7e871a5f7b.tar.gz cpython-555cbbe7c10c29ec4358c66c247b8d7e871a5f7b.tar.bz2 |
bpo-43851: Build SQLite with SQLITE_OMIT_AUTOINIT on macOS (GH-25413)
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/macOS/2021-04-15-01-20-45.bpo-43851.sDI60Y.rst | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index b07def1..15a45b9 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -363,6 +363,7 @@ def library_recipes(): '-DSQLITE_ENABLE_FTS3_PARENTHESIS ' '-DSQLITE_ENABLE_JSON1 ' '-DSQLITE_ENABLE_RTREE ' + '-DSQLITE_OMIT_AUTOINIT ' '-DSQLITE_TCL=0 ' '%s' % ('','-DSQLITE_WITHOUT_ZONEMALLOC ')[LT_10_5]), configure_pre=[ diff --git a/Misc/NEWS.d/next/macOS/2021-04-15-01-20-45.bpo-43851.sDI60Y.rst b/Misc/NEWS.d/next/macOS/2021-04-15-01-20-45.bpo-43851.sDI60Y.rst new file mode 100644 index 0000000..0febfb0 --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2021-04-15-01-20-45.bpo-43851.sDI60Y.rst @@ -0,0 +1 @@ +Build SQLite with ``SQLITE_OMIT_AUTOINIT`` on macOS. Patch by Erlend E. Aasland. |