Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-45774: Autoconfiscate SQLite detection (GH-29507) #29507

Merged
merged 18 commits into from
Nov 19, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Address review: don't abort on failure to enable loadable SQLite exte…
…nsions

Co-authored-by: Christian Heimes <christian@python.org>
  • Loading branch information
Erlend Egeberg Aasland and tiran committed Nov 18, 2021
commit b8fb844f779b189ca69c768427116a750341694b
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3203,7 +3203,7 @@ AC_ARG_ENABLE(loadable-sqlite-extensions,
AS_HELP_STRING([--enable-loadable-sqlite-extensions],
[support loadable extensions in _sqlite module, see Doc/library/sqlite3.rst (default is no)]),
[AS_VAR_IF([have_sqlite3_load_extension], [no],
[AC_MSG_ERROR([Your version of SQLite does not support loadable extensions])])],
[AC_MSG_WARN([Your version of SQLite does not support loadable extensions])])],
[enable_loadable_sqlite_extensions=no])
AC_MSG_RESULT($enable_loadable_sqlite_extensions)

Expand Down