Overview
| Comment: | Reverted cleanup of tclExecutableName | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 0368915b0d275f4f7a1248f27c33c1a1 | 
| User & Date: | rkeene on 2010-09-26 04:44:00 | 
| Other Links: | manifest | tags | 
Context
| 2010-09-26 | ||
| 04:44 | Added support for selecting which kit storage mechanism to use using
"--enable-kit-storage={zip|mk4}" Updated CPPFLAGS to include -I options for zlib, for consistencycheck-in: 2fded231c2 user: rkeene tags: trunk | |
| 04:44 | Reverted cleanup of tclExecutableName check-in: 0368915b0d user: rkeene tags: trunk | |
| 04:43 | Updated README check-in: dc273ce4f7 user: rkeene tags: trunk | |
Changes
Modified kitsh/buildsrc/kitsh-0.0/kitInit.c from [1ea5ee25a0] to [512beccb11].
| ︙ | ︙ | |||
| 58 59 60 61 62 63 64 | # ifdef KIT_INCLUDES_MK4TCL # define KIT_STORAGE_MK4 1 # else # define KIT_STORAGE_ZIP 1 # endif #endif | | | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | 
#  ifdef KIT_INCLUDES_MK4TCL
#    define KIT_STORAGE_MK4 1
#  else
#    define KIT_STORAGE_ZIP 1
#  endif
#endif
char *tclExecutableName;
    /*
     *  Attempt to load a "boot.tcl" entry from the embedded MetaKit file.
     *  If there isn't one, try to open a regular "setup.tcl" file instead.
     *  If that fails, this code will throw an error, using a message box.
     */
 | 
| ︙ | ︙ |