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-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,
>
> 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 -I../libclamav -I../shared    -g -O2 -c `test -f 'clamav-milter.c' ||
echo
> './
> '`clamav-milter.c
> /bin/sh ../libtool --mode=link gcc  -g -O2   -o clamav-milter  cfgparser.o
> getop
> t.o memory.o
> clamav-milter.o  -L../libclamav -lclamav -L/usr/lib/libmilter -lmil
> ter  -lwrap -lpthread
> gcc -g -O2 -o .libs/clamav-milter cfgparser.o getopt.o memory.o
> clamav-milter.o
>  -L/usr/local/src/clamav-0.70/libclamav
> /usr/local/src/clamav-0.70/libclamav/.li
>
bs/libclamav.so -lz -lbz2 -lgmp -lnsl -L/usr/lib/libmilter -lmilter -lwrap -
> lpth
> read
> /usr/lib/gcc-lib/i386-redhat-linux/2.96/../../../libmilter.a(main.o): In
> functio
> n `smfi_register':
> main.o(.text+0x74): undefined reference to `strlcpy'
> /usr/lib/gcc-lib/i386-redhat-linux/2.96/../../../libmilter.a(main.o): In
> functio
> n `smfi_setconn':
> main.o(.text+0x12f): undefined reference to `strlcpy'
> /usr/lib/gcc-lib/i386-redhat-linux/2.96/../../../libmilter.a(listener.o):
In
> fun
> ction `mi_milteropen':
> listener.o(.text+0x184): undefined reference to `strlcpy'
> /usr/lib/gcc-lib/i386-redhat-linux/2.96/../../../libmilter.a(engine.o): In
> funct
> ion `st_connectinfo':
> engine.o(.text+0x83a): undefined reference to `strlcpy'
> collect2: ld returned 1 exit status
> make[2]: *** [clamav-milter] Error 1
> make[2]: Leaving directory `/usr/local/src/clamav-0.70/clamav-milter'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory `/usr/local/src/clamav-0.70'
> make: *** [all] Error 2
>
>
>



-------------------------------------------------------
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g.
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id149&alloc_id66&op=click
_______________________________________________
Clamav-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/clamav-users

Reply via email to