On Wed, Oct 04, 2000 at 05:28:42PM -0400, Todd Cohen wrote:
> Hi,
> I'm trying to compile version 0.61.0 on AIX 4.2.1. I get the
> error below.. any ideas before I look more into this?
>
> BaseDisplay.cc: In method `void BaseDisplay::eventLoop()':
> BaseDisplay.cc:435: implicit declaration of function `int bzero(...)'
Seems like it's got a problem with the FD_ZERO macro, which I'd
guess is responsible for trying to use bzero...
If you could track down where the FD_ZERO macro and bzero are
defined (maybe /usr/include/sys/select.h and /usr/include/string.h)
and see if FD_ZERO does in fact call bzero, it might help. I'd have
expected the include file containing the select macros to take care
of including bzero if they use it, but who knows?
Jeff Raven