mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-45774: Fix SQLite load extension autodetection (GH-29659)
This commit is contained in:
parent
bc2bc0dbdb
commit
6d430ef5ab
3 changed files with 6 additions and 10 deletions
|
@ -3196,7 +3196,9 @@ AC_CHECK_HEADER([sqlite3.h], [
|
|||
], [])
|
||||
], [have_supported_sqlite3=yes], [have_supported_sqlite3=no])
|
||||
], [have_sqlite3=no])
|
||||
AC_CHECK_LIB([sqlite3], [sqlite3_load_extension])
|
||||
AC_CHECK_LIB([sqlite3], [sqlite3_load_extension],
|
||||
[have_sqlite3_load_extension=yes],
|
||||
[have_sqlite3_load_extension=no])
|
||||
])
|
||||
|
||||
AS_VAR_COPY([CFLAGS], [save_CFLAGS])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue