qmail and Redhat 7.1

2001-07-27 Thread Alex Leyva

Hi, im triying to install qmail 1.03 on a Redhat 7.1, when i compile
daemontools i get the following errors:

./compile tai64nlocal.c
tai64nlocal.c: In function `main':
tai64nlocal.c:54: warning: assignment makes pointer from integer without a
cast
tai64nlocal.c:55: dereferencing pointer to incomplete type
tai64nlocal.c:56: dereferencing pointer to incomplete type
tai64nlocal.c:57: dereferencing pointer to incomplete type
tai64nlocal.c:58: dereferencing pointer to incomplete type
tai64nlocal.c:59: dereferencing pointer to incomplete type
tai64nlocal.c:60: dereferencing pointer to incomplete type
make: *** [tai64nlocal.o] Error 1

I've tried this with 3 different boxes.
I've checked tai64nlocal.c and i cant find anything wrong.
Thanks.




qmail and Redhat 7.1 SOLVED

2001-07-27 Thread Alex Leyva

In Life with qmail i read:
Note: Under some versions of Linux, such as Red Hat 7, you'll probably
receive an error during the make step like:

./compile tai64nlocal.c
tai64nlocal.c: In function `main':
tai64nlocal.c:54: warning: assignment makes pointer from integer
without a cast
tai64nlocal.c:55: dereferencing pointer to incomplete type
etc...

To fix this, edit tai64nlocal.c and change the second line from:

#include sys/time.h

to:

#include time.h




Thanks anyway =)