Overview
| Comment: | Updated to explicitly disable threads if it was not selected |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
f404c778a3bce09ade241f1cbb00b495 |
| User & Date: | rkeene on 2014-07-19 07:18:18 |
| Other Links: | manifest | tags |
Context
|
2014-07-19
| ||
| 07:23 | Updated to show page when completed check-in: 06b37e2ab1 user: rkeene tags: trunk | |
| 07:18 | Updated to explicitly disable threads if it was not selected check-in: f404c778a3 user: rkeene tags: trunk | |
| 07:14 | Updated to generate hash in a more future-proof way check-in: 67f2fd4d92 user: rkeene tags: trunk | |
Changes
Modified build/web/process_queue from [2f36355653] to [02e30b0d8d].
| ︙ | ︙ | |||
62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
if {$value} {
set ::env(KITCREATOR_PKGS) "$::env(KITCREATOR_PKGS) kitdll"
}
}
"threaded" {
if {$value} {
lappend args "--enable-threads"
}
}
}
}
catch {
exec ./build/pre.sh
| > > | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
if {$value} {
set ::env(KITCREATOR_PKGS) "$::env(KITCREATOR_PKGS) kitdll"
}
}
"threaded" {
if {$value} {
lappend args "--enable-threads"
} else {
lappend args "--disable-threads"
}
}
}
}
catch {
exec ./build/pre.sh
|
| ︙ | ︙ |