Ejaz wrote: > Hi, > Actually We are an ISP (CYBERIA) of Saudi Arabia, I have same issue as > described below although I have dowloaded latest bzip2 package from the > sunfreeware but no use, Please help us to solve this issue, > > Here is my solaris 8 box info, >
I use a simple script to build clamav. Your environment is likely somewhat different so this may not work for you. The important part is the LDFLAGS declaration. It puts /usr/local/lib before /usr/lib so the linker will find my libraries first. Line wrap may occur. I also use pcre libraries to avoid regex problems with Solaris regex. #!/bin/sh CFLAGS="-O3" CPPFLAGS="-O3" LIBS="-lpcreposix -lpcre" LDFLAGS="-R/usr/local/lib -L/usr/local/lib -L/usr/lib -L/usr/local/ssl9.8e/lib" CC=gcc export CFLAGS CPPFLAGS LDFLAGS CC LIBS configure \ --enable-milter \ --enable-bigstack \ --enable-experimental \ --disable-clamuko \ --with-user=smmsp \ --with-group=smmsp \ --without-curl \ --without-clamav-milter make _______________________________________________ Help us build a comprehensive ClamAV guide: visit http://wiki.clamav.net http://lurker.clamav.net/list/clamav-users.html