Overview
Comment: | Updated to ignore "dynamictk" if Tk is not being built |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b0b6fbd5aa2313df29fd887e2b8c27bf |
User & Date: | rkeene on 2014-12-02 15:45:24 |
Other Links: | manifest | tags |
Context
2014-12-11
| ||
16:53 | Added option for minimal builds check-in: 85a43dd6cd user: rkeene tags: trunk | |
2014-12-02
| ||
15:45 | Updated to ignore "dynamictk" if Tk is not being built check-in: b0b6fbd5aa user: rkeene tags: trunk | |
2014-11-24
| ||
03:55 | Updated to output URLs to fetch for mass-build to pull things from KitCreator nightly build check-in: 6ae485c279 user: rkeene tags: trunk | |
Changes
Modified build/web/building.cgi from [8d9092ef0d] to [004f926c80].
︙ | ︙ | |||
42 43 44 45 46 47 48 | switch -- $option { "kitdll" { if {$value} { append description ", Built as a Library" } } "dynamictk" { | > | > | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | 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" } |
︙ | ︙ |
Modified build/web/process_queue from [8bca0940c8] to [13a499ffae].
︙ | ︙ | |||
78 79 80 81 82 83 84 | set ::env(STRIP) true } } "storage" { lappend args "--enable-kit-storage=$value" } "dynamictk" { | > | > | 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | set ::env(STRIP) true } } "storage" { lappend args "--enable-kit-storage=$value" } "dynamictk" { if {[lsearch -exact $buildinfo(packages) "tk"] != -1} { set ::env(STATICTK) -1 } } "staticmk4" { } } } catch { |
︙ | ︙ |