From: "Brad Nicholes" <[EMAIL PROTECTED]> Sent: Friday, November 30, 2001 1:43 PM
> According to the comment next to it, it is needed for gettimeofday(). > NetWare doesn't have the gettimeofday() function. We had to implement > that functionality in a totally different way. Also, we do have a > version of sys/time.h on NetWare so I would just leave it if it didn't > conflict with some of the Winsock headers. That is what Jeff is trying to tell you. #define APR_HAVE_SYS_TIME 0 and make this generic, please! If you can't use the sys/time.h header, you might as well treat it as non-existant. Bill > >>> Jeff Trawick <[EMAIL PROTECTED]> Friday, November 30, 2001 > 12:29:48 PM >>> > if NETWARE doesn't have it, please use > > #ifdef APR_HAVE_SYS_TIME_H > #include <sys/time.h> > #endif
