Differences From Artifact [0c7aa42b6c]:
- File
kitsh/buildsrc/kitsh-0.0/mk4tcl.tcl
— part of check-in
[32589cdef2]
at
2010-09-26 04:41:40
on branch trunk
— Fixed issue with kitcreator including excluded packages after building with
them and then building without them
Fixed issue with Tcl pure-Tcl Metakit and Tcl 8.4 (user: rkeene, size: 17861) [annotate] [blame] [check-ins using]
To Artifact [4aa4852a38]:
- File
kitsh/buildsrc/kitsh-0.0/mk4tcl.tcl
— part of check-in
[66930bd6ef]
at
2010-09-26 04:42:08
on branch trunk
— Added support for minimal builds
Fixed potential loading issue for zlib in pure Tcl metakit (user: rkeene, size: 17871) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
proc lassign {l args} {
foreach v $l a $args { uplevel 1 [list set $a $v] }
}
}
catch {
load {} zlib
package require zlib
}
if {[info comm mmap] == ""} {
# mmap and mvec primitives in pure Tcl (a C version is present in critlib)
namespace export mmap mvec
| > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
proc lassign {l args} {
foreach v $l a $args { uplevel 1 [list set $a $v] }
}
}
catch {
load {} zlib
}
catch {
package require zlib
}
if {[info comm mmap] == ""} {
# mmap and mvec primitives in pure Tcl (a C version is present in critlib)
namespace export mmap mvec
|
| ︙ | ︙ |