Overview
| Comment: | Corrected an issue where the KitDLL file cannot be located cause initialization to fail |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
9c7bd6cad1ea64d45e93e4ae36763db2 |
| User & Date: | rkeene on 2016-02-24 21:45:22 |
| Other Links: | manifest | tags |
Context
|
2016-03-03
| ||
| 03:21 | Updated with support for a "make-kit-remote" and using a new Mac OS X build box check-in: 5c3ab2400a user: rkeene tags: trunk | |
|
2016-02-24
| ||
| 21:45 | Corrected an issue where the KitDLL file cannot be located cause initialization to fail check-in: 9c7bd6cad1 user: rkeene tags: trunk | |
| 20:52 | Merged in support for creating a static KitDLL check-in: 3fc6a2107a user: rkeene tags: trunk | |
Changes
Modified kitsh/buildsrc/kitsh-0.0/kitInit.c from [f888dda2c4] to [4efdf6eacc].
| ︙ | ︙ | |||
205 206 207 208 209 210 211 | "}\n" #ifdef TCLKIT_DLL "set ::TCLKIT_TYPE \"kitdll\"\n" #else "set ::TCLKIT_TYPE \"tclkit\"\n" #endif /* TCLKIT_DLL */ "set ::TCLKIT_MOUNTPOINT " TCLKIT_MOUNTPOINT "\n" | | | 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
"}\n"
#ifdef TCLKIT_DLL
"set ::TCLKIT_TYPE \"kitdll\"\n"
#else
"set ::TCLKIT_TYPE \"tclkit\"\n"
#endif /* TCLKIT_DLL */
"set ::TCLKIT_MOUNTPOINT " TCLKIT_MOUNTPOINT "\n"
"catch { set ::TCLKIT_VFSSOURCE " TCLKIT_VFSSOURCE " }\n"
"set ::TCLKIT_MOUNTPOINT_VAR {" TCLKIT_MOUNTPOINT "}\n"
"set ::TCLKIT_VFSSOURCE_VAR {" TCLKIT_VFSSOURCE "}\n"
"uplevel #0 $s\n"
#if defined(KIT_INCLUDES_TK) && defined(KIT_TK_VERSION)
"package ifneeded Tk " KIT_TK_VERSION " {\n"
"load {} Tk\n"
"}\n"
|
| ︙ | ︙ |