Overview
| Comment: | Removed references to PATH_MAX |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
9fb1a353d1dbf548fa3407757ce5a546 |
| User & Date: | rkeene on 2010-09-26 04:45:52 |
| Other Links: | manifest | tags |
Context
|
2010-09-26
| ||
| 04:45 |
Updated to support patching Tcl using scripts
Created internal build script to create statically linked Diet Libc-based Tclkits check-in: e854407d3f user: rkeene tags: trunk | |
| 04:45 | Removed references to PATH_MAX check-in: 9fb1a353d1 user: rkeene tags: trunk | |
| 04:45 | Updated to use Tcl_FindExecutable() to set executable path check-in: 719fef74cb user: rkeene tags: trunk | |
Changes
Modified kitsh/buildsrc/kitsh-0.0/kitInit.c from [e36e6b04a3] to [04a2d744f1].
| ︙ | ︙ | |||
177 178 179 180 181 182 183 |
static void FindAndSetExecName(Tcl_Interp *interp) {
int len = 0;
Tcl_Obj *execNameObj;
Tcl_Obj *lobjv[1];
#if defined(HAVE_READLINK)
ssize_t readlink_ret;
| | | | 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
static void FindAndSetExecName(Tcl_Interp *interp) {
int len = 0;
Tcl_Obj *execNameObj;
Tcl_Obj *lobjv[1];
#if defined(HAVE_READLINK)
ssize_t readlink_ret;
char procpath[4096];
char exe_buf[4096];
int snprintf_ret;
if (Tcl_GetNameOfExecutable() == NULL) {
snprintf_ret = snprintf(procpath, sizeof(procpath), "/proc/%lu/exe", (unsigned long) getpid());
if (snprintf_ret < sizeof(procpath)) {
readlink_ret = readlink(procpath, exe_buf, sizeof(exe_buf) - 1);
|
| ︙ | ︙ |