mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-24 17:44:17 +01:00
0078721898
Changes at https://www.sqlite.org/releaselog/3_40_0.html Obtained from: https://www.sqlite.org/2022/sqlite-autoconf-3400000.tar.gz Merge commit 'ac50343d44f8dff1efe667b4713de4b1351a19e1' into main
11 lines
334 B
Tcl
11 lines
334 B
Tcl
# -*- tcl -*-
|
|
# Tcl package index file, version 1.1
|
|
#
|
|
if {[package vsatisfies [package provide Tcl] 9.0-]} {
|
|
package ifneeded sqlite3 @PACKAGE_VERSION@ \
|
|
[list load [file join $dir @PKG_LIB_FILE9@] sqlite3]
|
|
} else {
|
|
package ifneeded sqlite3 @PACKAGE_VERSION@ \
|
|
[list load [file join $dir @PKG_LIB_FILE8@] sqlite3]
|
|
}
|