Changes between Version 17 and Version 18 of Ticket #38582, comment 6


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

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #38582, comment 6

    v17 v18  
    1919|| `AC_CHECK_FUNCS([strstr])` || `src/machista1.0/machista_wrap.c:1383` || `where = strstr(where, meth->name);` || idk || I don't get this file; just check the `strstr` function anyways... ||
    2020|| `AC_CHECK_FUNCS([strtol])` || `src/pextlib1.0/Pextlib.c:206` || `pwent = getpwuid(strtol(user, 0, 0));` || in the `ExistsuserCmd` function || There is no commentary around this, but it would probably be a good idea to check for the `strtol` function anyways... ||
    21 || `AC_CHECK_FUNCS([strtoul])` || `src/machista1.0/machista_wrap.c:1820` ||
    22 || `AC_CHECK_FUNCS([utime])` || `src/pextlib1.0/curl.c:438` ||
    23 || `AC_CHECK_HEADERS([mach/mach.h])` || `src/programs/daemondo/main.c:66` ||
    24 || `AC_CHECK_HEADERS([netdb.h])` || `src/pextlib1.0/Pextlib.c:49` ||
    25 || `AC_CHECK_HEADERS([stddef.h])` || `src/pextlib1.0/strlcat.c:23` ||
    26 || `AC_CHECK_HEADERS([sys/ioctl.h])` || `src/pextlib1.0/tty.c:41` ||
    27 || `AC_CHECK_HEADERS([sys/mount.h])` || `src/pextlib1.0/xinstall.c:50` ||
    28 || `AC_CHECK_HEADERS([sys/param.h])` || `src/darwintracelib1.0/darwintrace.c:75` ||
    29 || `AC_CHECK_HEADERS([sys/time.h])` || `src/pextlib1.0/sha2.c:38` ||
    30 || `AC_CHECK_HEADER_STDBOOL` || `src/machista1.0/libmachista.c:247` ||
     21|| `AC_CHECK_FUNCS([strtoul])` || `src/machista1.0/machista_wrap.c:1820` || `v = strtoul(nptr, &endptr,0);` || something swiggy || `/* If v is negative, then this could be a negative number, or an unsigned value which doesn't fit in a signed long, so try to get it as a string so we can distinguish these cases. */` Just check for `strtoul` for this ||
     22|| `AC_CHECK_FUNCS([utime])` || `src/pextlib1.0/curl.c:438` || `utime(theFilePath, &times); /* set the time we got */` || For checking `curl` times || Checking for `utime` would be good for `curl` ||
     23|| `AC_CHECK_HEADERS([mach/mach.h])` || `src/programs/daemondo/main.c:66` || `#include <mach/mach.h>` || an included header || `daemondo` does not say what it needs this header for, but I'm assuming it is something important... ||
     24|| `AC_CHECK_HEADERS([netdb.h])` || `src/pextlib1.0/Pextlib.c:49` || `#include <netdb.h>` || an included header || ? ||
     25|| `AC_CHECK_HEADERS([stddef.h])` || `src/pextlib1.0/strlcat.c:23` || `#include <stddef.h>` || an included header || Just one of those headers that it's good to check for ||
     26|| `AC_CHECK_HEADERS([sys/ioctl.h])` || `src/pextlib1.0/tty.c:41` || `#include <sys/ioctl.h>` || an included header || Check for this header to improve terminal support ||
     27|| `AC_CHECK_HEADERS([sys/mount.h])` || `src/pextlib1.0/xinstall.c:50` || `#include <sys/mount.h>` || an included header || something useful ||
     28|| `AC_CHECK_HEADERS([sys/param.h])` || `src/darwintracelib1.0/darwintrace.c:75` || #include <sys/param.h> || an included header || something useful ||
     29|| `AC_CHECK_HEADERS([sys/time.h])` || `src/pextlib1.0/sha2.c:38` || #include <sys/time.h> || an included header || something useful ||
     30|| `AC_CHECK_HEADER_STDBOOL` || `src/machista1.0/libmachista.c:247` || `bool universal = false;` || In a mach-o parsing function || `/* Parse the Mach-O header */` I do not get why `autoscan` says this macro is needed for this line instead of line 33 which has the actual `#include <stdbool.h>` on it, but whatever... ||
    3131|| `AC_C_INLINE` || `src/darwintracelib1.0/darwintrace.c:117` ||
    3232|| `AC_C_RESTRICT` || `src/darwintracelib1.0/darwintrace.c:774` ||