Hi,
I am having this problem to compile clamav, the problem comes when i
do --enable-milter in the ./configure then make. If i dont use that, it
compile with no problem.
Any hint or help?
Regards...
-=Raul=-
gcc -DHAVE_CONFIG_H -DSENDMAIL_BIN=\"/usr/sbin/sendmail\" -I. -I. -I.. -I../
clam
d -
On Monday 03 May 2004 7:27 pm, Raul Elizondo wrote:
> I am having this problem to compile clamav, the problem comes when i
> do --enable-milter in the ./configure then make. If i dont use that, it
> compile with no problem.
Have you followed the instructions in the INSTALL document, including
in
Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Joe Maimon
Sent: Monday, May 03, 2004 1:19 PM
To: [EMAIL PROTECTED]
Subject: Re: [Clamav-users] problems compiling on rh7.3
looks like libsm from sendmail
Try downloading and installing the sendmail-devel kit
Or
down
e-1);
dst[dstsize-1] = '\0';
}
return strlen(src);
}
Roberto
- Original Message -
From: "Raul Elizondo" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, May 03, 2004 1:27 PM
Subject: [Clamav-users] problems compiling on rh7.3
> Hi,
>
>
looks like libsm from sendmail
Try downloading and installing the sendmail-devel kit
Or
downloading and compiling libmilter from sendmail source distribution
and using that path to the configure script
Raul Elizondo wrote:
Hi,
I am having this problem to compile clamav, the problem comes whe
Hi
Te problems is that you don´t have strlcpy function. You can resolve it
adding it to ./clamav-0.70/clamav-milter/clamav-milter.c
size_t strlcpy(char *dst, const char *src, size_t dstsize) {
if (strlen(src) < dstsize) {
strcpy(dst,src);
} else {
strncpy(dst,src,dstsize-
> Hi
>
> Te problems is that you don´t have strlcpy function. You can resolve it
> adding it to ./clamav-0.70/clamav-milter/clamav-milter.c
>
> size_t strlcpy(char *dst, const char *src, size_t dstsize) {
> if (strlen(src) < dstsize) {
> strcpy(dst,src);
> } else {
> strncpy(dst,src
On Monday 03 May 2004 10:21 pm, Raul Elizondo wrote:
> main.o(.text+0x74): undefined reference to `strlcpy'
Try the latest version of clamav from CVS.
-Nigel
--
Nigel Horne. Arranger, Composer, Typesetter.
NJH Music, Barnsley, UK. ICQ#20252325
[EMAIL PROTECTED] http://www.bandsman.co.uk
--