
4 May
2011
4 May
'11
4:16 p.m.
On 04-05-2011 19:08:23 +0300, Michael Sioutis wrote:
429: /* Define to 1 if you have the
header file. */ 430: #define HAVE_SYS_PARAM_H 1 . . . 441: /* Define to 1 if you have the header file. */ 442: /* #undef HAVE_SYS_SYSCTL_H */ Also in the configuration.log: checking sys/sysctl.h usability... no
So they're not in the correct order or sth? Cause sys/param.h seems ok but sys/sysctl.h not.
configure checks for this header in separation, hence sys/sysctl.h bombs out. We need to adopt this to a check that first includes sys/param.h (if found) and then tests sys/sysctl.h