From: Erlend Egeberg Aasland Date: Mon, 3 May 2021 00:37:35 +0000 (+0200) Subject: bpo-43851: Build SQLite with SQLITE_OMIT_AUTOINIT on macOS (GH-25413) X-Git-Tag: v3.10.0b1~23 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=555cbbe7c10c29ec4358c66c247b8d7e871a5f7b;p=thirdparty%2FPython%2Fcpython.git bpo-43851: Build SQLite with SQLITE_OMIT_AUTOINIT on macOS (GH-25413) --- diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index b07def17476a..15a45b95a23c 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 000000000000..0febfb02315e --- /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.