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


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

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #38582, comment 6

    v18 v19  
    2626|| `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 ||
    2727|| `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 ||
     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 ||
    3030|| `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` ||