Differences From Artifact [6ced29f464]:
- File generic/tclLoad.c — part of check-in [80cf092cc7] at 2014-02-10 11:59:22 on branch trunk — Eliminate all usage of WIN32 and __WIN32__ macros: Some compilers (e.g. Clang/LLVM) don't define it, and _WIN32 is much more portable anyway. See: [http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system#WindowsCygwinnonPOSIXandMinGW] (user: jan.nijtmans size: 33170) [more...]
To Artifact [488705ecc0]:
- File generic/tclLoad.c — part of check-in [35ac7f7ade] at 2016-05-09 09:42:02 on branch androwish — Fix [5c7578d0f2958bfd]: Tclkits producing temporary directories on Windows (user: jan.nijtmans size: 33194)
| ︙ | ︙ | |||
1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 |
}
#endif
ckfree(pkgPtr->fileName);
ckfree(pkgPtr->packageName);
ckfree(pkgPtr);
}
}
/*
* Local Variables:
* mode: c
* c-basic-offset: 4
* fill-column: 78
| > | 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 |
}
#endif
ckfree(pkgPtr->fileName);
ckfree(pkgPtr->packageName);
ckfree(pkgPtr);
}
TclpFinalizeLoad();
}
/*
* Local Variables:
* mode: c
* c-basic-offset: 4
* fill-column: 78
|
| ︙ | ︙ |