aboutsummaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2025-03-23 21:38:28 +0000
committerstephan <stephan@noemail.net>2025-03-23 21:38:28 +0000
commit8d80ca2d1cab1f42a2430e249adcee28c19fd587 (patch)
tree67726376b39154e5a4c14a5ee09e5ecda56f3435 /tool
parent75484481c7764e90b9b7133579fcfb832e641f39 (diff)
downloadsqlite-8d80ca2d1cab1f42a2430e249adcee28c19fd587.tar.gz
sqlite-8d80ca2d1cab1f42a2430e249adcee28c19fd587.zip
Internal configure refactoring to support an ongoing conversion of ./autoconf/tea to autosetup.
FossilOrigin-Name: e1d483e342670092c3579f2f0975e49a0c74516ae34103a63b4cde156bf5e92b
Diffstat (limited to 'tool')
-rw-r--r--tool/find_tclconfig.tcl24
1 files changed, 0 insertions, 24 deletions
diff --git a/tool/find_tclconfig.tcl b/tool/find_tclconfig.tcl
deleted file mode 100644
index c3d3df8ec..000000000
--- a/tool/find_tclconfig.tcl
+++ /dev/null
@@ -1,24 +0,0 @@
-#
-# Run this TCL script to find and print the pathname for the tclConfig.sh
-# file. Used by ../configure
-#
-if {[catch {
- set libdir [tcl::pkgconfig get libdir,install]
-}]} {
- puts stderr "tclsh too old: does not support tcl::pkgconfig"
- exit 1
-}
-if {![file exists $libdir]} {
- puts stderr "tclsh reported library directory \"$libdir\" does not exist"
- exit 1
-}
-if {![file exists $libdir/tclConfig.sh]} {
- set n1 $libdir/tcl$::tcl_version
- if {[file exists $n1/tclConfig.sh]} {
- set libdir $n1
- } else {
- puts stderr "cannot find tclConfig.sh in either $libdir or $n1"
- exit 1
- }
-}
-puts $libdir