[EMAIL PROTECTED] wrote: >> You could try the packages from Blastwave. >> >> http://www.blastwave.org/packages.php/clamav >> > > That doesn't answer the question, however. I would like to reiterate the > original post: why is the FPU endianness test failing,
Probably because the default grep won't grep in binary files. > and what features may > not be available because of this? decoding AutoIt EA06 scripts. > Is it possible to override the config with > the proper, known endianness values? > Only if you manually edit clamav-config.h > Incidentally, since this problem cropped up randomly on some of a dozen > Solaris machines I have ClamAV installed on, I have not been able to find any > aberrant behaviour. > Please try this patch, which is in SVN r3474. Then rerun autoconf. Best regards, --Edwin Index: acinclude.m4 =================================================================== --- acinclude.m4 (revision 3473) +++ acinclude.m4 (revision 3474) @@ -594,10 +594,10 @@ [AC_CACHE_CHECK([whether FPU byte ordering is bigendian], [ac_cv_c_fpu_bigendian], [ac_cv_c_fpu_bigendian=unknown AC_COMPILE_IFELSE([AC_LANG_SOURCE([[double d = 3815911171354501045744583353695226502220105394563506259449467213186125718792664588210662403287568710818873279842508553551908601408568128557088985172985437412593385138085986771664896.0;]])],[ -if grep emmeelle conftest.$ac_objext >/dev/null 2>&1 ; then +if ${GREP-grep} emmeelle conftest.$ac_objext >/dev/null 2>&1 ; then ac_cv_c_fpu_bigendian=yes fi -if grep elleemme conftest.$ac_objext >/dev/null 2>&1 ; then +if ${GREP-grep} elleemme conftest.$ac_objext >/dev/null 2>&1 ; then ac_cv_c_fpu_bigendian=no fi ])]) _______________________________________________ Help us build a comprehensive ClamAV guide: visit http://wiki.clamav.net http://lurker.clamav.net/list/clamav-users.html