Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes:
| >>>>> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes:
|
| Lars> | Maybe the right solution is to see which of these header files
| Lars> are needed | to make FD_ZERO work: sys/time.h, stdlib.h,
| Lars> strings.h. (After all, it is | FD_ZERO we want, not bzero.)
| Lars> Since the set of header files you are | already using is working
| Lars> for most systems, this ought to do the trick. | This could be
| Lars> done in configure.
|
| Lars> Should be cone in configure.
|
| I don't really see what to do, and since I can't try it out here, I'd
| be glad to have a patch :)
In configure we check for bzero and memset.
if bzero is not present but memset is we can define bzero in terms of
memset, and I am not sure if the oposite will work.
we could also have checks for the return type of the functions.
Lgb