diff options
Diffstat (limited to 'library/init.tcl')
-rw-r--r-- | library/init.tcl | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/library/init.tcl b/library/init.tcl index f07ad79..87e12ef 100644 --- a/library/init.tcl +++ b/library/init.tcl @@ -798,20 +798,3 @@ proc tcl::CopyDirectory {action src dest} { } return } -set isafe [interp issafe] -### -# Package manifest for all Tcl packages included in the /library file system -### -set isafe [interp issafe] -set dir [file dirname [info script]] -foreach {safe package version file} { - 0 http 2.9.0 {http http.tcl} - 1 msgcat 1.7.0 {msgcat msgcat.tcl} - 1 opt 0.4.7 {opt optparse.tcl} - 0 platform 1.0.14 {platform platform.tcl} - 0 platform::shell 1.1.4 {platform shell.tcl} - 1 tcltest 2.5.0 {tcltest tcltest.tcl} -} { - if {$isafe && !$safe} continue - package ifneeded $package $version [list source [file join $dir {*}$file]] -} |