44 | | || `AC_TYPE_SIZE_T` || `src/cregistry/entry.c:376` || |
45 | | || `AC_TYPE_SSIZE_T` || `src/darwintracelib1.0/darwintrace.c:996` || |
46 | | || `AC_TYPE_UID_T` || `src/pextlib1.0/Pextlib.c:465` || |
47 | | || `AC_TYPE_UINT32_T` || `src/darwintracelib1.0/darwintrace.c:126` || |
48 | | || `AC_TYPE_UINT8_T` || `src/machista1.0/libmachista.c:87` || |
| 44 | || `AC_TYPE_SIZE_T` || `src/cregistry/entry.c:376` || `size_t query_len, query_space;` || variable type || supplements the `MP_CHECK_READLINK_IS_P1003_1A` macro, which defines the variable "`READLINK_IS_NOT_P1003_1A`" to 1 "`if readlink does not conform with POSIX 1003.1a (where third argument is a size_t and return value is a ssize_t)`". Heck, instead of putting this in the main `configure.ac` file, you could just `AC_REQUIRE` it from your definition for your `MP_CHECK_READLINK_IS_P1003_1A` macro... || |
| 45 | || `AC_TYPE_SSIZE_T` || `src/darwintracelib1.0/darwintrace.c:996` || `ssize_t readlink(const char *path, char *buf, size_t bufsiz) {` || variable type (used conditionally) || see note for the `AC_TYPE_SIZE_T` macro above || |
| 46 | || `AC_TYPE_UID_T` || `src/pextlib1.0/Pextlib.c:465` || `if (lchown(path, (uid_t) user, (gid_t) group) != 0) {` || condition || good to check for user id types || |
| 47 | || `AC_TYPE_UINT32_T` || `src/darwintracelib1.0/darwintrace.c:126` || `static char *__send(const char *buf, uint32_t len, int answer);` || looks like another global variable definition... || Might want to `AC_CHECK_SIZEOF` it as well, in addition to checking for its existence... || |
| 48 | || `AC_TYPE_UINT8_T` || `src/machista1.0/libmachista.c:87` || `if ((((uint8_t *) address) - ((uint8_t *) input->data)) + length > input->length) {` || condition || See above || |