42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
switch -- $option {
"kitdll" {
if {$value} {
append description ", Built as a Library"
}
}
"dynamictk" {
if {[lsearch -exact $buildinfo(packages) "tk"] != -1} {
append description ", Forced Tk Dynamic Linking"
}
}
"threaded" {
if {$value} {
append description ", Threaded"
} else {
append description ", Unthreaded"
}
}
"debug" {
if {$value} {
append description ", With Symbols"
}
}
"minbuild" {
if {$value} {
append description ", Without Tcl pkgs/ and all encodings"
}
}
"storage" {
switch -- $value {
"mk4" {
append description ", Metakit-based"
}
"zip" {
|
>
|
|
>
>
>
>
>
>
|
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
switch -- $option {
"kitdll" {
if {$value} {
append description ", Built as a Library"
}
}
"dynamictk" {
if {$value} {
if {[lsearch -exact $buildinfo(packages) "tk"] != -1} {
append description ", Forced Tk Dynamic Linking"
}
}
}
"threaded" {
if {$value} {
append description ", Threaded"
} else {
append description ", Unthreaded"
}
}
"debug" {
if {$value} {
append description ", With Symbols"
}
}
"minbuild" {
if {$value} {
append description ", Without Tcl pkgs/ and all encodings"
}
}
"staticlibssl" {
if {$value} {
append description ", Statically linked to LibSSL"
}
}
"storage" {
switch -- $value {
"mk4" {
append description ", Metakit-based"
}
"zip" {
|