bpo-43851: Build SQLite with SQLITE_OMIT_AUTOINIT on macOS (GH-25413)

This commit is contained in:
Erlend Egeberg Aasland 2021-05-03 02:37:35 +02:00 committed by GitHub
parent 8703178258
commit 555cbbe7c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -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=[

View File

@ -0,0 +1 @@
Build SQLite with ``SQLITE_OMIT_AUTOINIT`` on macOS. Patch by Erlend E. Aasland.