Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch kitscript Excluding Merge-Ins
This is equivalent to a diff from 572d26a300 to 11180b89ba
|
2016-02-18
| ||
| 15:36 | Pulling in the kitscript branch check-in: bc81bcba25 user: hypnotoad tags: trunk | |
|
2016-02-17
| ||
| 20:34 | Fixes to condense all kitbuilding activity to a single Tcl scripts Closed-Leaf check-in: 11180b89ba user: hypnotoad tags: kitscript | |
|
2015-09-25
| ||
| 15:34 | Updates some file paths check-in: c49d6db579 user: hypnotoad tags: trunk | |
|
2015-08-10
| ||
| 13:20 | Updates to the window build process check-in: 572d26a300 user: hypnotoad tags: trunk | |
|
2015-06-01
| ||
| 18:27 | Fixed the "install sherpa" command check-in: 5e24e26760 user: hypnotoad tags: trunk | |
Changes to Makefile.
| ︙ | |||
14 15 16 17 18 19 20 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | - + - + - + - + - + | install: sherpa $(SHELL) scripts/make_skel.sh $(SHELL) scripts/make_tcl.sh ODIE_BUILD_TCLSH=`autosetup/find-tclsh` $(ODIE_BUILD_TCLSH) scripts/make_sherpa.tcl $(SHERPA) upgrade sqlite odielib tcllib |
| ︙ |
Changes to autosetup/lib/cthulhu.tcl.
| ︙ | |||
516 517 518 519 520 521 522 | 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 | + - - + + + |
while {[gets $fin line]>=0} {
if {[regexp TCL_MODULE $line] || [regexp DLLEXPORT $line]} {
foreach regexp {
{(.*) ([a-zA-Z_][a-zA-Z0-9_]*) *\((.*)\)}
{(.*) (\x2a[a-zA-Z_][a-zA-Z0-9_]*) *\((.*)\)}
} {
if {[regexp $regexp $line all keywords funcname arglist]} {
if {[lindex [split $funcname _] end] eq "Init"} {
|
| ︙ |
Changes to odie.komodoproject.
1 2 3 | 1 2 3 4 5 6 7 8 9 10 | - + - + + | <?xml version="1.0" encoding="UTF-8"?> <!-- Komodo Project File - DO NOT EDIT --> <project id="6beb12f5-4b92-1c42-8a7b-0fff2e8fc0a7" kpf_version="5" name="odie.komodoproject"> |
Deleted scripts/make_basekit.tcl.
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
|
Changes to scripts/make_tcl.sh.
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | - - + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - + + | #! /bin/bash source odieConfig.sh |
| ︙ | |||
59 60 61 62 63 64 65 | 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | - - + + |
fi
make clean
make binaries
make install
if [ "${TK_FOSSIL_BRANCH}" != "none" ] ; then
echo "Building Local Tk"
|
| ︙ |
Deleted src/toadkit/Makefile.in.
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
|
Added src/toadkit/build.tcl.