Overview
Comment: | Started work on supporting alternate roots |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | support-altroot |
Files: | files | file ages | folders |
SHA1: |
975c25c1939dfc3da6050ec187f05bc5 |
User & Date: | rkeene on 2017-10-17 04:02:12 |
Other Links: | branch diff | manifest | tags |
Context
2017-10-17
| ||
04:02 | Started work on supporting alternate roots Leaf check-in: 975c25c193 user: rkeene tags: support-altroot | |
04:01 | Removed obsolete files from initialization check-in: 3d037ffb60 user: rkeene tags: trunk | |
Changes
Modified kitsh/buildsrc/kitsh-0.0/kitInit.c from [4efdf6eacc] to [b6990a4d65].
︙ | ︙ | |||
83 84 85 86 87 88 89 | Tcl_AppInitProc Dde_Init, Registry_Init; #endif #ifdef TCLKIT_DLL # define TCLKIT_MOUNTPOINT "/.KITDLL_TCL" # define TCLKIT_VFSSOURCE "$::tclKitFilename" #else | > | | > > > > | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | Tcl_AppInitProc Dde_Init, Registry_Init; #endif #ifdef TCLKIT_DLL # define TCLKIT_MOUNTPOINT "/.KITDLL_TCL" # define TCLKIT_VFSSOURCE "$::tclKitFilename" #else # if 0 # define TCLKIT_MOUNTPOINT "[info nameofexecutable]" # define TCLKIT_VFSSOURCE "[info nameofexecutable]" # else # define TCLKIT_MOUNTPOINT "/.TCLKIT" # define TCLKIT_VFSSOURCE "[info nameofexecutable]" # endif #endif /* TCLKIT_DLL */ #ifndef TCLKIT_DLL # ifdef HAVE_ACCEPTABLE_DLADDR # ifdef KITSH_NEED_WINMAIN # ifdef _WIN32_WCE int wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdLine, int nCmdShow); |
︙ | ︙ |