git-svn: trunk@1005
remotes/push_mirror/metadata
Tomasz Kojm 21 years ago
parent 7fd366a3b8
commit 25ea9cb966
  1. 5
      clamav-devel/ChangeLog
  2. 2
      clamav-devel/clamav-config
  3. 2
      clamav-devel/clamdscan/clamdscan.c
  4. 2
      clamav-devel/configure
  5. 2
      clamav-devel/configure.in
  6. 2
      clamav-devel/sigtool/Makefile.in

@ -1,3 +1,8 @@
Sat Oct 16 02:41:17 CEST 2004 (tk)
----------------------------------
* clamdscan: add missing support for --no-summary (problem reported by
Matt Leyda <mfleyda*e-one.com>)
Sat Oct 16 01:01:49 CEST 2004 (tk)
----------------------------------
* libclamav/matcher-bm.c: speed up

@ -46,7 +46,7 @@ while test $# -gt 0; do
;;
--version)
echo devel-20041010
echo devel-20041016
exit 0
;;

@ -95,7 +95,7 @@ void clamscan(struct optstruct *opt)
ret = client(opt, &infected);
/* Implement STATUS in clamd */
if(!optl(opt, "disable-summary")) {
if(!optl(opt, "disable-summary") && !optl(opt, "no-summary")) {
gettimeofday(&t2, &tz);
ds = t2.tv_sec - t1.tv_sec;
dms = t2.tv_usec - t1.tv_usec;

@ -1029,7 +1029,7 @@ Optional Features:
--enable-debug enable debug code
--enable-bigstack increase thread stack size
--disable-gethostbyname_r disable support for gethostbyname_r
--enable-gethostbyname_r enable support for readdir_r
--enable-readdir_r enable support for readdir_r
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]

@ -628,7 +628,7 @@ if test -z "$ac_cv_readdir_args"; then
fi
AC_ARG_ENABLE(readdir_r,
[ --enable-gethostbyname_r enable support for readdir_r],,
[ --enable-readdir_r enable support for readdir_r],,
disable_readdir_r="yes")
if test "$disable_readdir_r" = "yes"; then

@ -58,7 +58,7 @@ host_triplet = @host@
target_triplet = @target@
bin_PROGRAMS = sigtool$(EXEEXT)
subdir = sigtool
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in COPYING
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
$(top_srcdir)/configure.in

Loading…
Cancel
Save