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, ×); /* 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... || |