Overview
| Comment: | Updated to support building libssl from the WebUI |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
8082796226b607da576e15ff1d1d4b13 |
| User & Date: | rkeene on 2016-07-08 22:00:59 |
| Other Links: | manifest | tags |
Context
|
2016-08-02
| ||
| 03:19 | Fix typos causing --disable-threads to fail to work sometimes and the "thread" package to not be included when --enable-threads is passed sometimes check-in: b7219bed1a user: rkeene tags: trunk | |
|
2016-07-08
| ||
| 22:00 | Updated to support building libssl from the WebUI check-in: 8082796226 user: rkeene tags: trunk | |
| 21:56 | Updated to try to use pkg-config to determine additional libraries for libssl check-in: 8edfc5151b user: rkeene tags: trunk | |
Changes
Modified build/web/kitcreator.vfs/index.rvt from [72c38390f4] to [3f7e9d34fb].
| ︙ | ︙ | |||
120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
}
"option_minbuild" {
set build_options(minbuild) 1
}
"option_staticlibssl" {
set build_options(staticlibssl) 1
}
"option_staticpkgs" {
set build_options(staticpkgs) 1
}
"option_tclutfmax6" {
set build_options(tclutfmax6) 1
}
"option_storage" {
| > > > | 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
}
"option_minbuild" {
set build_options(minbuild) 1
}
"option_staticlibssl" {
set build_options(staticlibssl) 1
}
"option_buildlibssl" {
set build_options(buildlibssl) 1
}
"option_staticpkgs" {
set build_options(staticpkgs) 1
}
"option_tclutfmax6" {
set build_options(tclutfmax6) 1
}
"option_storage" {
|
| ︙ | ︙ | |||
367 368 369 370 371 372 373 |
<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)<br>
<input type="checkbox" name="option_staticpkgs">Kit: Statically link packages in pkgs directory<br>
<input type="checkbox" name="option_tclutfmax6">Kit: TCL_UTF_MAX=6 (incompatibility with standard Tcl)<br>
| | > | 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 |
<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)<br>
<input type="checkbox" name="option_staticpkgs">Kit: Statically link packages in pkgs directory<br>
<input type="checkbox" name="option_tclutfmax6">Kit: TCL_UTF_MAX=6 (incompatibility with standard Tcl)<br>
<input type="checkbox" name="option_staticlibssl">TLS: Statically link to LibSSL<br>
<input type="checkbox" name="option_buildlibssl">TLS: Build LibreSSL for this platform
</td>
</tr>
<tr>
<td>Kit Storage:</td>
<td>
<select name="option_storage">
<option value="auto">Automatically Determined</option>
|
| ︙ | ︙ |
Modified build/web/process_queue from [611cdd4af4] to [5643d5fd0a].
| ︙ | ︙ | |||
104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
set ::env(KITCREATOR_MINBUILD) 1
}
}
"staticlibssl" {
if {$value} {
set ::env(KC_TLS_LINKSSLSTATIC) 1
}
}
"staticpkgs" {
if {$value} {
set ::env(KC_TCL_STATICPKGS) 1
}
}
"tclutfmax6" {
| > > > > > | 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
set ::env(KITCREATOR_MINBUILD) 1
}
}
"staticlibssl" {
if {$value} {
set ::env(KC_TLS_LINKSSLSTATIC) 1
}
}
"buildlibssl" {
if {$value} {
set ::env(KC_TLS_BUILDSSL) 1
}
}
"staticpkgs" {
if {$value} {
set ::env(KC_TCL_STATICPKGS) 1
}
}
"tclutfmax6" {
|
| ︙ | ︙ | |||
133 134 135 136 137 138 139 |
}
catch {
set cmd [list $script $buildinfo(tcl_version) {*}$args]
set fd [open "${outfile}.log" w+]
puts $fd "Running: export KITCREATOR_PKGS=\"$::env(KITCREATOR_PKGS)\""
| | | 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
}
catch {
set cmd [list $script $buildinfo(tcl_version) {*}$args]
set fd [open "${outfile}.log" w+]
puts $fd "Running: export KITCREATOR_PKGS=\"$::env(KITCREATOR_PKGS)\""
foreach variable [list STRIP STATICTK KITCREATOR_MINENCODINGS KITCREATOR_MINBUILD KC_TLS_LINKSSLSTATIC KC_TLS_BUILDSSL KC_TCL_STATICPKGS KC_TCL_UTF_MAX] {
if {[info exists ::env($variable)]} {
puts $fd "Running: export $variable=\"$::env($variable)\""
}
}
puts $fd "Running: $cmd"
close $fd
|
| ︙ | ︙ |