[Clamav-users] ClamAV compile problem on Sol9 with Sun Studio 10

2005-08-10 Thread popelov
Hello, I have a problem with compiling ClamAV 0.85 with Sun CC (Studio10). During compile, when linking libclamav, I receive following error: /usr/ccs/bin/ld -G -z defs -h libclamav.so.1 -o .libs/libclamav.so.1.0.11 matcher-ac.lo matcher-bm.lo matcher.lo md5.lo others.lo read

Re: [Clamav-users] ERROR: Can't initialize the virus database

2005-08-10 Thread Susemail
On Tuesday 09 August 2005 15:59, John Jolet wrote: > who is clam running as? who owns the directories? > > On Tuesday 09 August 2005 07:43 pm, Susemail wrote: > > I have just installed clamav on Suse 9.2 and 9.3 using #:apt-get install > > clamav. > > file:/var/log/apt.log: > > Mon 08 Aug 2005 07:

RE: [Clamav-users] Re: Scan of Microsoft Office files

2005-08-10 Thread Andrés Yacopino
René first of all thanks for your answer, so clamav can detects virus in office files without ripole? Thanks, Andrés. >From: René Berber <[EMAIL PROTECTED]>>Reply-To: ClamAV users ML >To: clamav-users@lists.clamav.net>Subject: [Clamav-users] Re: Scan of Microsof

RE: [Clamav-users] ClamAV compile problem on Sol9 with Sun Studio 10

2005-08-10 Thread Andrés Yacopino
I have solaris too and compiled with gcc, this works great. I compiled it with this parameters: First i do: in /usr/local/lib ln -s /opt/sfw/gcc-3/lib/libgcc_s.so.1 libgcc_s.so.1 Then ./configure --build=sparc-sun-solaris2.9 LDFLAGS='-L/usr/local/lib' Greetings, Andres >From: <[EMAIL PROT

Re: [Clamav-users] ClamAV compile problem on Sol9 with Sun Studio 10

2005-08-10 Thread Dale Walsh
On Aug 10, 2005, at 08:12 AM, Andrés Yacopino wrote: I have solaris too and compiled with gcc, this works great. I compiled it with this parameters: First i do: in /usr/local/lib ln -s /opt/sfw/gcc-3/lib/libgcc_s.so.1 libgcc_s.so.1 Then ./configure --build=sparc-sun-solaris2.9 LDFLAGS='-

Re: [Clamav-users] ClamAV compile problem on Sol9 with Sun Studio 10

2005-08-10 Thread Dennis Peterson
Dale Walsh said: > > On Aug 10, 2005, at 08:12 AM, Andrés Yacopino wrote: > >> I have solaris too and compiled with gcc, this works great. I >> compiled it with this parameters: >> >> First i do: >> >> in /usr/local/lib >> >> ln -s /opt/sfw/gcc-3/lib/libgcc_s.so.1 libgcc_s.so.1 >> >> Then >> >> ./c

[Clamav-users] Re: Scan of Microsoft Office files

2005-08-10 Thread René Berber
Andrés Yacopino wrote: > René first of all thanks for your answer, so clamav can detects virus in > office files without ripole? Yes, there is built-in support for extracting files from MS OLE2 documents (just as there is for zip, tar, gzip, bzip2, rar, cab, ...) There is no mention of ripole on

Re: [Clamav-users] ClamAV compile problem on Sol9 with Sun Studio 10

2005-08-10 Thread Andy Fiddaman
On Wed, 10 Aug 2005, Dennis Peterson wrote: ; Dale Walsh said: ; > ; > On Aug 10, 2005, at 08:12 AM, Andr?s Yacopino wrote: ; > ; >> I have solaris too and compiled with gcc, this works great. I ; >> compiled it with this parameters: ; >> ; >> First i do: ; >> ; >> in /usr/local/lib ; >> ; >> ln -

Re: [Clamav-users] ClamAV compile problem on Sol9 with Sun Studio 10

2005-08-10 Thread Dennis Peterson
Andy Fiddaman said: > On Wed, 10 Aug 2005, Dennis Peterson wrote: > > ; Dale Walsh said: > ; > > ; > On Aug 10, 2005, at 08:12 AM, Andrés Yacopino wrote: > ; > > ; >> I have solaris too and compiled with gcc, this works great. I > ; >> compiled it with this parameters: > ; >> > ; >> First i do: > ;

Re: [Clamav-users] ClamAV compile problem on Sol9 with Sun Studio 10

2005-08-10 Thread popelov
Thanks all for replies, I've just solved this problem by adding -xO4 option to CC compiler. This option does many optimizations such as "automatic inlining", etc. I think that GCC already have this optimization turned on dy default, but CC does not. ___