mirror of https://github.com/python/cpython
bpo-43851: Build SQLite with SQLITE_OMIT_AUTOINIT on macOS (GH-25413)
This commit is contained in:
parent
8703178258
commit
555cbbe7c1
|
@ -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=[
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Build SQLite with ``SQLITE_OMIT_AUTOINIT`` on macOS. Patch by Erlend E. Aasland.
|
Loading…
Reference in New Issue