Differences From
Artifact [f2fd1993e0]:
104 104 }
105 105 "option_dynamictk" {
106 106 set build_options(dynamictk) 1
107 107 }
108 108 "option_minbuild" {
109 109 set build_options(minbuild) 1
110 110 }
111 + "option_staticlibssl" {
112 + set build_options(staticlibssl) 1
113 + }
111 114 "option_storage" {
112 115 switch -- $args($arg) {
113 116 "mk4" - "zip" - "cvfs" {
114 117 set build_options(storage) $args($arg)
115 118 }
116 119 }
117 120 }
................................................................................
333 336 <? foreach package [lsort -dictionary [array names packages]] { ?>
334 337 <input type="checkbox" name="option_package_<? puts -nonewline $package ?>" id="option_package_<? puts -nonewline $package ?>">Package: <? puts -nonewline $packages($package) ?><br>
335 338 <? } ?>
336 339 <input type="checkbox" name="option_threaded">Kit: Threaded<br>
337 340 <input type="checkbox" name="option_debug">Kit: Debugging Build<br>
338 341 <input type="checkbox" name="option_kitdll" id="option_kitdll">Kit: Build Library (KitDLL)<br>
339 342 <input type="checkbox" name="option_dynamictk" id="option_dynamictk">Kit: Always link Tk dynamically (if Tk is built)<br>
340 - <input type="checkbox" name="option_minbuild">Kit: "Minimal" build (remove extra packages shipped as part of Tcl and reduce encodings)
343 + <input type="checkbox" name="option_minbuild">Kit: "Minimal" build (remove extra packages shipped as part of Tcl and reduce encodings)<br>
344 + <input type="checkbox" name="option_staticlibssl">TLS: Statically link to LibSSL
341 345 </td>
342 346 </tr>
343 347 <tr>
344 348 <td>Kit Storage:</td>
345 349 <td>
346 350 <select name="option_storage">
347 351 <option value="auto">Automatically Determined</option>