Differences From Artifact [734aa55ae1]:
- File
kitsh/buildsrc/kitsh-0.0/zipvfs.tcl
— part of check-in
[66535d6924]
at
2010-09-26 04:43:48
on branch trunk
— KitCreator 0.3.0.x
Added support for using ZIP archives if MK4 fails to build Removed support for pure-Tcl MK4 (it didn't work) (user: rkeene, size: 15026) [annotate] [blame] [check-ins using] 
To Artifact [952d380c4b]:
- File kitsh/buildsrc/kitsh-0.0/zipvfs.tcl — part of check-in [6e6c5fd01a] at 2010-09-26 04:45:20 on branch trunk — Corrected typo in ZipVFS (user: rkeene, size: 14006) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
| 235 236 237 238 239 240 241 | 
    proc u_short {n}  { return [expr { ($n+0x10000)%0x10000 }] }
}
proc zip::DosTime {date time} {
    # The pre-VFS environment will not have access to "clock", so don't even
    # bother
    return 0
 | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | 
    proc u_short {n}  { return [expr { ($n+0x10000)%0x10000 }] }
}
proc zip::DosTime {date time} {
    # The pre-VFS environment will not have access to "clock", so don't even
    # bother
    return 0
}
proc zip::Data {fd arr {varPtr ""} {verify 0}} {
    upvar 1 $arr sb
    if { $varPtr != "" } {
 | 
| ︙ | ︙ |