Changes between Version 10 and Version 11 of Ticket #38582, comment 6


Ignore:
Timestamp:
Aug 6, 2013, 10:06:36 PM (11 years ago)
Author:
cooljeanius (Eric Gallager)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #38582, comment 6

    v10 v11  
    88|| `AC_CHECK_FUNCS([mkdir])` || `src/darwintracelib1.0/darwintrace.c:1153` || `int mkdir(const char *path, mode_t mode) {` || new function declaration || `/* Trap attempts to create directories outside the sandbox. */` Make sure there are calls to `mkdir` to trap in the first place ||
    99|| `AC_CHECK_FUNCS([munmap])` || `src/machista1.0/libmachista.c:499` || `munmap(data, st.st_size);` || at the end of a function || `/* Cleanup */` Another one that's just good to check for ||
    10 || `AC_CHECK_FUNCS([realpath])` || `src/pextlib1.0/realpath.c:67` ||
    11 || `AC_CHECK_FUNCS([regcomp])` || `src/pextlib1.0/strsed.c:584` ||
     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|| `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. ||
    1212|| `AC_CHECK_FUNCS([rmdir])` || `src/darwintracelib1.0/darwintrace.c:1183` ||
    1313|| `AC_CHECK_FUNCS([setenv])` || `src/pextlib1.0/Pextlib.c:409` ||