Differences From Artifact [b893b1086f]:
- Executable file build/web/building.cgi — part of check-in [0478a7f8f6] at 2014-07-23 04:59:33 on branch trunk — Moved description (user: rkeene, size: 2757) [annotate] [blame] [check-ins using] [more...]
To Artifact [8d9092ef0d]:
- Executable file build/web/building.cgi — part of check-in [2ffc7ae71a] at 2014-10-27 05:31:19 on branch trunk — Added support for specifying that Tk should be linked dynamically (user: rkeene, size: 2832) [annotate] [blame] [check-ins using]
| ︙ | |||
41 42 43 44 45 46 47 48 49 50 51 52 53 54 | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | + + + |
foreach {option value} $buildinfo(options) {
switch -- $option {
"kitdll" {
if {$value} {
append description ", Built as a Library"
}
}
"dynamictk" {
append description ", Forced Tk Dynamic Linking"
}
"threaded" {
if {$value} {
append description ", Threaded"
} else {
append description ", Unthreaded"
}
}
|
| ︙ |