> *** socket.c.orig Tue Oct 24 00:16:47 2006
> --- socket.c Sat Dec 23 19:36:39 2006
> ***************
> *** 24,29 ****
> --- 24,30 ----
> #include <string.h> /* for memset */
> #if defined(TM_IN_SYS_TIME)
> #include <sys/time.h>
> + #include <time.h>
> #else
Here should be the line (after the above else line)
#include <sys/time.h>
> #include <time.h>
> #endif /* defined(TM_IN_SYS_TIME) */
>
Now I have another error:
After an error by indirectly linking to libssl I have added -lssl to
the makefile. Then I get this error:
ld: Undefined symbols:
_CONNLOCK_ACQUIRE
_CONNLOCK_RELEASE
_INIT_CONNLOCK
Where are these functions ?
Thanks, Lothar