1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Changes to the TCL extension and how it is built, suggested by Jan Nijtmans.

FossilOrigin-Name: 9c0690193200551a3218c576b19eaf40e330dc252d67b430204ff44495e4793e
This commit is contained in:
drh
2024-10-09 13:19:21 +00:00
parent 4b0a2e0106
commit 50bb0aaa2c
8 changed files with 22 additions and 20 deletions

View File

@ -95,7 +95,7 @@ proc run_thread_tests {{print_warning 0}} {
if {[info commands sqlthread] eq ""} {
set zProblem "SQLite build is not threadsafe"
}
if {![info exists ::tcl_platform(threaded)]} {
if {![tcl::pkgconfig get threaded]} {
set zProblem "Linked against a non-threadsafe Tcl build"
}
if {[info exists zProblem]} {
@ -107,4 +107,3 @@ proc run_thread_tests {{print_warning 0}} {
}
return 0