Dean Mumby wrote:
>
> Hi all
>
> I have run into a problem trying to install autorespond-1.0.0.tar.gz.
> The instruction just say to use
> gcc -Wall -o autorespond autorespond.c
>
> which i did and I keep getting they same error.
> ---snip--
> autorespond.c: In function 'send_message' :
> autorespond.c:212: warning: long unsigned int format, unsigned int arg (arg
> 10)
> autorespond.c: In function 'main' :
> autorespond.c:398: warning: long unsigned int format, unsigned arg (arg 3)
> ---snip--
>
> I have already installed qmail 1.03 , vpopmail, qmailadmin, sqwebmail,
> ezmlm, using tcpserver and everything is working perfectly I just cant get
> my autoresponding working which would be really great.
>
> I am not a programmer so if the solution involves something like like I
> would really appreaciate layman instructions.
>
> Thanks in advance
> Dean
It's a really good idea to read the messages produced by a compiler.
Let me illistrate:
> autorespond.c: In function 'send_message' :
> autorespond.c:212: warning: long unsigned int format, unsigned int arg
^^^^^^^
here is the key word -^
This is a warning, not an error ;] The program compiled just fine.
Ken Jones