Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the path for building toadkit |
|---|---|
| Timelines: | family | ancestors | descendants | both | autosetup |
| Files: | files | file ages | folders |
| SHA1: |
d421d45771f4858450b9ebe64ca2f95f |
| User & Date: | hypnotoad 2015-03-24 15:30:06 |
Context
|
2015-03-24
| ||
| 21:20 | Formalizing on ::project(srcdir) as the appropriate flag for file directories Adapted the tea-like template building mechanism from odielib into a general purpose tool check-in: a69c0492a6 user: hypnotoad tags: autosetup | |
| 15:30 | Fix the path for building toadkit check-in: d421d45771 user: hypnotoad tags: autosetup | |
| 14:10 | Fixed the path for where odie seeks sources check-in: 737166e23a user: hypnotoad tags: autosetup | |
Changes
Changes to src/toadkit/configure.tcl.
| ︙ | ︙ | |||
97 98 99 100 101 102 103 |
#cthulhu_include_directory [file join $::odie_build(sandbox) tcl unix]
cthulhu_add_csource [file join $::project(src) unix tclsh_packages.c] {scan 0}
cthulhu_add_csource [file join $::odie(sandbox) tcl unix tclAppInit.c] {scan 0 extra {-DTCL_LOCAL_APPINIT=Toadkit_AppInit -DTCL_LOCAL_MAIN_HOOK=Toadkit_MainHook}}
}
if {$::odie(windows)} {
if {![file exists [file join $::odie(sandbox) odielib cmodules odieutil password.c]]} {
puts "BUILDING PASSWORD (toadkit)"
| | | 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
#cthulhu_include_directory [file join $::odie_build(sandbox) tcl unix]
cthulhu_add_csource [file join $::project(src) unix tclsh_packages.c] {scan 0}
cthulhu_add_csource [file join $::odie(sandbox) tcl unix tclAppInit.c] {scan 0 extra {-DTCL_LOCAL_APPINIT=Toadkit_AppInit -DTCL_LOCAL_MAIN_HOOK=Toadkit_MainHook}}
}
if {$::odie(windows)} {
if {![file exists [file join $::odie(sandbox) odielib cmodules odieutil password.c]]} {
puts "BUILDING PASSWORD (toadkit)"
source [file join $::odie(sandbox) odielib cmodules odieutil mkPassword.tcl]
}
cthulhu_add_csource [file join $::odie(sandbox) odielib cmodules odieutil password.c]
cthulhu_add_csource [file join $::odie(sandbox) odielib cmodules odieutil memory.c]
cthulhu_add_csource [file join $::odie(sandbox) odielib cmodules odieutil md5.c]
cthulhu_add_csource [file join $::odie(sandbox) odielib cmodules odieutil rc4.c]
cthulhu_add_csource [file join $::odie(sandbox) odielib cmodules odieutil tclextra.c]
} else {
|
| ︙ | ︙ |