Changes between Version 11 and Version 12 of Ticket #38582, comment 6
- Timestamp:
- Aug 6, 2013, 10:10:50 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #38582, comment 6
v11 v12 10 10 || `AC_CHECK_FUNCS([realpath])` || `src/pextlib1.0/realpath.c:67` || `res = realpath(path, rpath);` || the meat of a function || Allows for Tcl to have a wrapper function around `realpath`. Only worth having this wrapper function if there is a function to wrap in the first place. || 11 11 || `AC_CHECK_FUNCS([regcomp])` || `src/pextlib1.0/strsed.c:584` || `if (regcomp(&exp, from, 0) != 0){` || `ifdef`ed for use when `HS_REGEX` is defined. || Helps the `strsed` Pextlib function do regexes. It is already `ifdef`ed so the `ifdef` could simply be changed to `if defined(HS_REGEX) && defined(HAVE_REGCOMP)` instead. || 12 || `AC_CHECK_FUNCS([rmdir])` || `src/darwintracelib1.0/darwintrace.c:1183` || 12 || `AC_CHECK_FUNCS([rmdir])` || `src/darwintracelib1.0/darwintrace.c:1183` || `int rmdir(const char *path) {` || new function declaration || `/* Trap attempts to remove directories outside the sandbox. */` Make sure there are calls to `rmdir` to trap in the first place || 13 13 || `AC_CHECK_FUNCS([setenv])` || `src/pextlib1.0/Pextlib.c:409` || 14 14 || `AC_CHECK_FUNCS([socket])` || `src/darwintracelib1.0/darwintrace.c:589` ||