Re: [Queue-developers] Queue 1.40.1 beta released
Brought to you by:
wkrebs
From: Mike C. <da...@ix...> - 2001-05-10 00:15:38
|
queued.c STILL will not compile out of the box. I sent email on this a few days back actually. As I stated before, this section in defines.h does not make sense: #ifdef TM_WITH_SYS_TIME #ifdef HAVE_TIME_H #include <time.h> #endif #endif If TM_WITH_SYS_TIME is true, then why are you trying to include time.h? I think the follow patch is appropriate: --- define.h.orig Wed Apr 11 08:29:29 2001 +++ define.h Wed May 9 17:12:07 2001 @@ -134,7 +134,7 @@ #include <syslog.h> #endif #include <termios.h> -#ifdef TM_WITH_SYS_TIME +#ifndef TM_WITH_SYS_TIME #ifdef HAVE_TIME_H #include <time.h> #endif mrc -- Mike Castle Life is like a clock: You can work constantly da...@ix... and be right all the time, or not work at all www.netcom.com/~dalgoda/ and be right at least twice a day. -- mrc We are all of us living in the shadow of Manhattan. -- Watchmen |