Hi.

I think I found another bug:

8<-------------------------------
#if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# if HAVE_SYS_TIME_H
#  include <sys/time.h>
# else
#  include <time.h>
# endif
#endif
-------------------------------->8

Should not it be:

#ifdef TIME_WITH_SYS_TIME
(...)
# ifdef HAVE_SYS_TIME_H

instead?

I think this one may be caused by a "copy-paste" from Autoconf documentation ;-)


--
David Rosal i Ricart
<[EMAIL PROTECTED]>



_______________________________________________
Bug-make mailing list
Bug-make@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-make

Reply via email to