On 27 Dec 2001 at 19:57, Andrew M. Bishop wrote: > The configure script On FreeBSD 4.5 and on (linux with egcs-1.x) there was a missing sys/time.h include (size of tv unknown) ...
I made a quick and dirty fix to scr/autoconfig.h.in.in: --- src/autoconfig.h.in.in.orig Sun Oct 7 20:22:54 2001 +++ src/autoconfig.h.in.in Sat Dec 29 02:00:20 2001 @@ -92,6 +92,10 @@ /* Define if the <time.h> and <sys/time.h> header files can both be included. */ #undef TIME_WITH_SYS_TIME +#ifdef TIME_WITH_SYS_TIME +#include <sys/time.h> +#endif + /* Define if you have the <sys/param.h> header file. */ #undef HAVE_SYS_PARAM_H and now it runs on both systems. On FreeBSD I missed "make all" (which would be called by the ports mechanismen), so I made a qad patch to Makefile.in also: --- Makefile.in.orig Sun Sep 16 17:01:51 2001 +++ Makefile.in Sat Dec 29 02:09:53 2001 @@ -26,4 +26,6 @@ ######## COMPILATION ######## +all: compile + compile : In the hmtl pages are some typos which will be eliminated when I see them, but the rest went fine. Klaus. KluWare - Ittner EDV-Service ! http://www.kluware.de/ Ruedesheimer Platz 7 ! D 14197 Berlin-Wilmersdorf ! [EMAIL PROTECTED] --------------------------------+----------------------------- ---- *** X-Virus-Scanned by AMaViS perl-11@techno Sat Dec 29 12:51:15 CET 2001
