Overview
Comment: | Fixed missing newline |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 2c3a155971e8ebaa49ff024c26c3ebccb345328c |
User & Date: | rkeene on 2014-12-11 16:54:08 |
Other Links: | manifest | tags |
Context
2014-12-11
| ||
16:55 | Added start of completely-static-pkgs check-in: 1c46fbeaaf user: rkeene tags: trunk | |
16:54 | Fixed missing newline check-in: 2c3a155971 user: rkeene tags: trunk | |
16:53 | Added option for minimal builds check-in: 85a43dd6cd user: rkeene tags: trunk | |
Changes
Modified build/web/kitcreator.vfs/index.rvt from [0e1f9c72e8] to [c5465a7b68].
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
<td> <? foreach package [lsort -dictionary [array names packages]] { ?> <input type="checkbox" name="option_package_<? puts -nonewline $package ?>" id="option_package_<? puts -nonewline $package ?>">Package: <? puts -nonewline $packages($package) ?><br> <? } ?> <input type="checkbox" name="option_threaded">Kit: Threaded<br> <input type="checkbox" name="option_debug">Kit: Debugging Build<br> <input type="checkbox" name="option_kitdll" id="option_kitdll">Kit: Build Library (KitDLL)<br> <input type="checkbox" name="option_dynamictk" id="option_dynamictk">Kit: Always link Tk dynamically (if Tk is built) <input type="checkbox" name="option_minbuild">Kit: "Minimal" build (remove extra packages shipped as part of Tcl and reduce encodings) </td> </tr> <tr> <td>Kit Storage:</td> <td> <select name="option_storage"> |
| |
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
<td>
<? foreach package [lsort -dictionary [array names packages]] { ?>
<input type="checkbox" name="option_package_<? puts -nonewline $package ?>" id="option_package_<? puts -nonewline $package ?>">Package: <? puts -nonewline $packages($package) ?><br>
<? } ?>
<input type="checkbox" name="option_threaded">Kit: Threaded<br>
<input type="checkbox" name="option_debug">Kit: Debugging Build<br>
<input type="checkbox" name="option_kitdll" id="option_kitdll">Kit: Build Library (KitDLL)<br>
<input type="checkbox" name="option_dynamictk" id="option_dynamictk">Kit: Always link Tk dynamically (if Tk is built)<br>
<input type="checkbox" name="option_minbuild">Kit: "Minimal" build (remove extra packages shipped as part of Tcl and reduce encodings)
</td>
</tr>
<tr>
<td>Kit Storage:</td>
<td>
<select name="option_storage">
|