diff options
author | Christian Heimes <christian@python.org> | 2022-05-31 19:23:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-31 19:23:49 (GMT) |
commit | 8a5e3c2ec6254b2ce06d17545f58a6719e0c8fdb (patch) | |
tree | b7ab8ca4dd43cb98b8ad6f70deced34d89e7b6c7 | |
parent | 07df8d5b2c715c9aa770c47986d59e272bf049f0 (diff) | |
download | cpython-8a5e3c2ec6254b2ce06d17545f58a6719e0c8fdb.zip cpython-8a5e3c2ec6254b2ce06d17545f58a6719e0c8fdb.tar.gz cpython-8a5e3c2ec6254b2ce06d17545f58a6719e0c8fdb.tar.bz2 |
gh-69093: Fix Setup.local.in rule for _sqlite3 (GH-93380)
-rw-r--r-- | Misc/NEWS.d/next/Build/2022-05-31-18-04-58.gh-issue-69093.6lSa0C.rst | 1 | ||||
-rw-r--r-- | Modules/Setup.stdlib.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS.d/next/Build/2022-05-31-18-04-58.gh-issue-69093.6lSa0C.rst b/Misc/NEWS.d/next/Build/2022-05-31-18-04-58.gh-issue-69093.6lSa0C.rst new file mode 100644 index 0000000..b061d6c --- /dev/null +++ b/Misc/NEWS.d/next/Build/2022-05-31-18-04-58.gh-issue-69093.6lSa0C.rst @@ -0,0 +1 @@ +Fix ``Modules/Setup.stdlib.in`` rule for ``_sqlite3`` extension. diff --git a/Modules/Setup.stdlib.in b/Modules/Setup.stdlib.in index 22c0b14..2730030 100644 --- a/Modules/Setup.stdlib.in +++ b/Modules/Setup.stdlib.in @@ -143,7 +143,7 @@ # needs -lncurses and -lpanel #@MODULE__CURSES_PANEL_TRUE@_curses_panel _curses_panel.c -@MODULE__SQLITE3_TRUE@_sqlite3 _sqlite/connection.c _sqlite/cursor.c _sqlite/microprotocols.c _sqlite/module.c _sqlite/prepare_protocol.c _sqlite/row.c _sqlite/statement.c _sqlite/util.c +@MODULE__SQLITE3_TRUE@_sqlite3 _sqlite/blob.c _sqlite/connection.c _sqlite/cursor.c _sqlite/microprotocols.c _sqlite/module.c _sqlite/prepare_protocol.c _sqlite/row.c _sqlite/statement.c _sqlite/util.c # needs -lssl and -lcrypt @MODULE__SSL_TRUE@_ssl _ssl.c |