Browse code

changelog + reverted automake10

git-svn: trunk@3414

aCaB authored on 2007/12/14 06:49:38
Showing 23 changed files
... ...
@@ -1,3 +1,13 @@
1
+Thu Dec 13 21:47:53 CET 2007 (acab)
2
+-----------------------------------
3
+  * libclamav: merge the post 0.92 code
4
+    - NSIS: zlib compression now handled via system zlib
5
+    - NSIS: unmodified lzma state decoder now statically linked
6
+    - SIS: handler rewritten to support more recent sis archives
7
+    - PE: rewritten wwpack32 handler
8
+    - SPIN: cosmetic changes
9
+    - UNZIP: decompressor rewritten with bzip2 and deflate64 support
10
+
1 11
 Thu Dec 13 14:57:39 GMT 2007 (trog)
2 12
 -----------------------------------
3 13
   * libclamav/chmunpack.c: Code cleanup. Reduce dynamic memory footprint.
... ...
@@ -1,8 +1,8 @@
1 1
 Installation Instructions
2 2
 *************************
3 3
 
4
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 Free
5
-Software Foundation, Inc.
4
+Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
5
+2006 Free Software Foundation, Inc.
6 6
 
7 7
 This file is free documentation; the Free Software Foundation gives
8 8
 unlimited permission to copy, distribute and modify it.
... ...
@@ -10,7 +10,10 @@ unlimited permission to copy, distribute and modify it.
10 10
 Basic Installation
11 11
 ==================
12 12
 
13
-These are generic installation instructions.
13
+Briefly, the shell commands `./configure; make; make install' should
14
+configure, build, and install this package.  The following
15
+more-detailed instructions are generic; see the `README' file for
16
+instructions specific to this package.
14 17
 
15 18
    The `configure' shell script attempts to guess correct values for
16 19
 various system-dependent variables used during compilation.  It uses
... ...
@@ -23,9 +26,9 @@ debugging `configure').
23 23
 
24 24
    It can also use an optional file (typically called `config.cache'
25 25
 and enabled with `--cache-file=config.cache' or simply `-C') that saves
26
-the results of its tests to speed up reconfiguring.  (Caching is
26
+the results of its tests to speed up reconfiguring.  Caching is
27 27
 disabled by default to prevent problems with accidental use of stale
28
-cache files.)
28
+cache files.
29 29
 
30 30
    If you need to do unusual things to compile the package, please try
31 31
 to figure out how `configure' could check whether to do them, and mail
... ...
@@ -35,20 +38,17 @@ some point `config.cache' contains results you don't want to keep, you
35 35
 may remove or edit it.
36 36
 
37 37
    The file `configure.ac' (or `configure.in') is used to create
38
-`configure' by a program called `autoconf'.  You only need
39
-`configure.ac' if you want to change it or regenerate `configure' using
40
-a newer version of `autoconf'.
38
+`configure' by a program called `autoconf'.  You need `configure.ac' if
39
+you want to change it or regenerate `configure' using a newer version
40
+of `autoconf'.
41 41
 
42 42
 The simplest way to compile this package is:
43 43
 
44 44
   1. `cd' to the directory containing the package's source code and type
45
-     `./configure' to configure the package for your system.  If you're
46
-     using `csh' on an old version of System V, you might need to type
47
-     `sh ./configure' instead to prevent `csh' from trying to execute
48
-     `configure' itself.
45
+     `./configure' to configure the package for your system.
49 46
 
50
-     Running `configure' takes awhile.  While running, it prints some
51
-     messages telling which features it is checking for.
47
+     Running `configure' might take a while.  While running, it prints
48
+     some messages telling which features it is checking for.
52 49
 
53 50
   2. Type `make' to compile the package.
54 51
 
... ...
@@ -78,7 +78,7 @@ details on some of the pertinent environment variables.
78 78
 by setting variables in the command line or in the environment.  Here
79 79
 is an example:
80 80
 
81
-     ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix
81
+     ./configure CC=c99 CFLAGS=-g LIBS=-lposix
82 82
 
83 83
    *Note Defining Variables::, for more details.
84 84
 
... ...
@@ -87,17 +87,15 @@ Compiling For Multiple Architectures
87 87
 
88 88
 You can compile the package for more than one kind of computer at the
89 89
 same time, by placing the object files for each architecture in their
90
-own directory.  To do this, you must use a version of `make' that
91
-supports the `VPATH' variable, such as GNU `make'.  `cd' to the
90
+own directory.  To do this, you can use GNU `make'.  `cd' to the
92 91
 directory where you want the object files and executables to go and run
93 92
 the `configure' script.  `configure' automatically checks for the
94 93
 source code in the directory that `configure' is in and in `..'.
95 94
 
96
-   If you have to use a `make' that does not support the `VPATH'
97
-variable, you have to compile the package for one architecture at a
98
-time in the source code directory.  After you have installed the
99
-package for one architecture, use `make distclean' before reconfiguring
100
-for another architecture.
95
+   With a non-GNU `make', it is safer to compile the package for one
96
+architecture at a time in the source code directory.  After you have
97
+installed the package for one architecture, use `make distclean' before
98
+reconfiguring for another architecture.
101 99
 
102 100
 Installation Names
103 101
 ==================
... ...
@@ -190,12 +188,12 @@ them in the `configure' command line, using `VAR=value'.  For example:
190 190
      ./configure CC=/usr/local2/bin/gcc
191 191
 
192 192
 causes the specified `gcc' to be used as the C compiler (unless it is
193
-overridden in the site shell script).  Here is a another example:
193
+overridden in the site shell script).
194 194
 
195
-     /bin/bash ./configure CONFIG_SHELL=/bin/bash
195
+Unfortunately, this technique does not work for `CONFIG_SHELL' due to
196
+an Autoconf bug.  Until the bug is fixed you can use this workaround:
196 197
 
197
-Here the `CONFIG_SHELL=/bin/bash' operand causes subsequent
198
-configuration-related scripts to be executed by `/bin/bash'.
198
+     CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash
199 199
 
200 200
 `configure' Invocation
201 201
 ======================
... ...
@@ -1,8 +1,8 @@
1
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
1
+# Makefile.in generated by automake 1.10 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
-# 2003, 2004, 2005  Free Software Foundation, Inc.
5
+# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6 6
 # This Makefile.in is free software; the Free Software Foundation
7 7
 # gives unlimited permission to copy and/or distribute it,
8 8
 # with or without modifications, as long as this notice is preserved.
... ...
@@ -33,15 +33,11 @@
33 33
 #  MA 02110-1301, USA.
34 34
 
35 35
 
36
-srcdir = @srcdir@
37
-top_srcdir = @top_srcdir@
38 36
 VPATH = @srcdir@
39 37
 pkgdatadir = $(datadir)/@PACKAGE@
40 38
 pkglibdir = $(libdir)/@PACKAGE@
41 39
 pkgincludedir = $(includedir)/@PACKAGE@
42
-top_builddir = .
43 40
 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
44
-INSTALL = @INSTALL@
45 41
 install_sh_DATA = $(install_sh) -c -m 644
46 42
 install_sh_PROGRAM = $(install_sh) -c
47 43
 install_sh_SCRIPT = $(install_sh) -c
... ...
@@ -56,6 +52,7 @@ POST_UNINSTALL = :
56 56
 build_triplet = @build@
57 57
 host_triplet = @host@
58 58
 target_triplet = @target@
59
+subdir = .
59 60
 DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
60 61
 	$(srcdir)/Makefile.in $(srcdir)/clamav-config.h.in \
61 62
 	$(srcdir)/clamav-config.in $(srcdir)/libclamav.pc.in \
... ...
@@ -71,14 +68,13 @@ DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
71 71
 	$(top_srcdir)/docs/man/sigtool.1.in AUTHORS COPYING ChangeLog \
72 72
 	INSTALL NEWS config.guess config.sub depcomp install-sh \
73 73
 	ltmain.sh missing mkinstalldirs
74
-subdir = .
75 74
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
76 75
 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
77 76
 	$(top_srcdir)/configure.in
78 77
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
79 78
 	$(ACLOCAL_M4)
80 79
 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
81
- configure.lineno configure.status.lineno
80
+ configure.lineno config.status.lineno
82 81
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
83 82
 CONFIG_HEADER = clamav-config.h
84 83
 CONFIG_CLEAN_FILES = clamav-config libclamav.pc \
... ...
@@ -93,10 +89,11 @@ SOURCES =
93 93
 DIST_SOURCES =
94 94
 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
95 95
 	html-recursive info-recursive install-data-recursive \
96
-	install-exec-recursive install-info-recursive \
97
-	install-recursive installcheck-recursive installdirs-recursive \
98
-	pdf-recursive ps-recursive uninstall-info-recursive \
99
-	uninstall-recursive
96
+	install-dvi-recursive install-exec-recursive \
97
+	install-html-recursive install-info-recursive \
98
+	install-pdf-recursive install-ps-recursive install-recursive \
99
+	installcheck-recursive installdirs-recursive pdf-recursive \
100
+	ps-recursive uninstall-recursive
100 101
 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
101 102
 am__vpath_adj = case $$p in \
102 103
     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
... ...
@@ -105,6 +102,8 @@ am__vpath_adj = case $$p in \
105 105
 am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
106 106
 pkgconfigDATA_INSTALL = $(INSTALL_DATA)
107 107
 DATA = $(pkgconfig_DATA)
108
+RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
109
+  distclean-recursive maintainer-clean-recursive
108 110
 ETAGS = etags
109 111
 CTAGS = ctags
110 112
 DIST_SUBDIRS = $(SUBDIRS)
... ...
@@ -120,16 +119,12 @@ GZIP_ENV = --best
120 120
 distuninstallcheck_listfiles = find . -type f -print
121 121
 distcleancheck_listfiles = find . -type f -print
122 122
 ACLOCAL = @ACLOCAL@
123
-AMDEP_FALSE = @AMDEP_FALSE@
124
-AMDEP_TRUE = @AMDEP_TRUE@
125 123
 AMTAR = @AMTAR@
126 124
 AR = @AR@
127 125
 AUTOCONF = @AUTOCONF@
128 126
 AUTOHEADER = @AUTOHEADER@
129 127
 AUTOMAKE = @AUTOMAKE@
130 128
 AWK = @AWK@
131
-BUILD_CLAMD_FALSE = @BUILD_CLAMD_FALSE@
132
-BUILD_CLAMD_TRUE = @BUILD_CLAMD_TRUE@
133 129
 CC = @CC@
134 130
 CCDEPMODE = @CCDEPMODE@
135 131
 CFGDIR = @CFGDIR@
... ...
@@ -153,16 +148,13 @@ ECHO_C = @ECHO_C@
153 153
 ECHO_N = @ECHO_N@
154 154
 ECHO_T = @ECHO_T@
155 155
 EGREP = @EGREP@
156
-ENABLE_UNRAR_FALSE = @ENABLE_UNRAR_FALSE@
157
-ENABLE_UNRAR_TRUE = @ENABLE_UNRAR_TRUE@
158 156
 EXEEXT = @EXEEXT@
159 157
 F77 = @F77@
160 158
 FFLAGS = @FFLAGS@
161 159
 FRESHCLAM_LIBS = @FRESHCLAM_LIBS@
162 160
 GETENT = @GETENT@
163 161
 GREP = @GREP@
164
-HAVE_MILTER_FALSE = @HAVE_MILTER_FALSE@
165
-HAVE_MILTER_TRUE = @HAVE_MILTER_TRUE@
162
+INSTALL = @INSTALL@
166 163
 INSTALL_DATA = @INSTALL_DATA@
167 164
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
168 165
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
... ...
@@ -176,9 +168,8 @@ LIBTOOL = @LIBTOOL@
176 176
 LN_S = @LN_S@
177 177
 LTLIBOBJS = @LTLIBOBJS@
178 178
 MAINT = @MAINT@
179
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
180
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
181 179
 MAKEINFO = @MAKEINFO@
180
+MKDIR_P = @MKDIR_P@
182 181
 OBJEXT = @OBJEXT@
183 182
 PACKAGE = @PACKAGE@
184 183
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
... ...
@@ -195,13 +186,13 @@ STRIP = @STRIP@
195 195
 THREAD_LIBS = @THREAD_LIBS@
196 196
 TH_SAFE = @TH_SAFE@
197 197
 VERSION = @VERSION@
198
+abs_builddir = @abs_builddir@
199
+abs_srcdir = @abs_srcdir@
200
+abs_top_builddir = @abs_top_builddir@
201
+abs_top_srcdir = @abs_top_srcdir@
198 202
 ac_ct_CC = @ac_ct_CC@
199 203
 ac_ct_CXX = @ac_ct_CXX@
200 204
 ac_ct_F77 = @ac_ct_F77@
201
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
202
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
203
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
204
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
205 205
 am__include = @am__include@
206 206
 am__leading_dot = @am__leading_dot@
207 207
 am__quote = @am__quote@
... ...
@@ -213,6 +204,7 @@ build_alias = @build_alias@
213 213
 build_cpu = @build_cpu@
214 214
 build_os = @build_os@
215 215
 build_vendor = @build_vendor@
216
+builddir = @builddir@
216 217
 datadir = @datadir@
217 218
 datarootdir = @datarootdir@
218 219
 docdir = @docdir@
... ...
@@ -241,12 +233,15 @@ psdir = @psdir@
241 241
 sbindir = @sbindir@
242 242
 sendmailprog = @sendmailprog@
243 243
 sharedstatedir = @sharedstatedir@
244
+srcdir = @srcdir@
244 245
 sysconfdir = @sysconfdir@
245 246
 target = @target@
246 247
 target_alias = @target_alias@
247 248
 target_cpu = @target_cpu@
248 249
 target_os = @target_os@
249 250
 target_vendor = @target_vendor@
251
+top_builddir = @top_builddir@
252
+top_srcdir = @top_srcdir@
250 253
 SUBDIRS = libclamunrar libclamunrar_iface libclamav clamscan clamd clamdscan freshclam sigtool clamconf database docs etc clamav-milter
251 254
 EXTRA_DIST = FAQ contrib test examples BUGS shared libclamav.pc.in UPGRADE COPYING.nsis COPYING.unrar COPYING.LGPL
252 255
 bin_SCRIPTS = clamav-config
... ...
@@ -293,7 +288,7 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
293 293
 clamav-config.h: stamp-h1
294 294
 	@if test ! -f $@; then \
295 295
 	  rm -f stamp-h1; \
296
-	  $(MAKE) stamp-h1; \
296
+	  $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
297 297
 	else :; fi
298 298
 
299 299
 stamp-h1: $(srcdir)/clamav-config.h.in $(top_builddir)/config.status
... ...
@@ -330,7 +325,7 @@ docs/man/sigtool.1: $(top_builddir)/config.status $(top_srcdir)/docs/man/sigtool
330 330
 	cd $(top_builddir) && $(SHELL) ./config.status $@
331 331
 install-binSCRIPTS: $(bin_SCRIPTS)
332 332
 	@$(NORMAL_INSTALL)
333
-	test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
333
+	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
334 334
 	@list='$(bin_SCRIPTS)'; for p in $$list; do \
335 335
 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
336 336
 	  if test -f $$d$$p; then \
... ...
@@ -356,10 +351,9 @@ clean-libtool:
356 356
 
357 357
 distclean-libtool:
358 358
 	-rm -f libtool
359
-uninstall-info-am:
360 359
 install-pkgconfigDATA: $(pkgconfig_DATA)
361 360
 	@$(NORMAL_INSTALL)
362
-	test -z "$(pkgconfigdir)" || $(mkdir_p) "$(DESTDIR)$(pkgconfigdir)"
361
+	test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
363 362
 	@list='$(pkgconfig_DATA)'; for p in $$list; do \
364 363
 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
365 364
 	  f=$(am__strip_dir) \
... ...
@@ -406,8 +400,7 @@ $(RECURSIVE_TARGETS):
406 406
 	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
407 407
 	fi; test -z "$$fail"
408 408
 
409
-mostlyclean-recursive clean-recursive distclean-recursive \
410
-maintainer-clean-recursive:
409
+$(RECURSIVE_CLEAN_TARGETS):
411 410
 	@failcom='exit 1'; \
412 411
 	for f in x $$MAKEFLAGS; do \
413 412
 	  case $$f in \
... ...
@@ -509,24 +502,22 @@ distclean-tags:
509 509
 
510 510
 distdir: $(DISTFILES)
511 511
 	$(am__remove_distdir)
512
-	mkdir $(distdir)
513
-	$(mkdir_p) $(distdir)/. $(distdir)/docs/man
514
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
515
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
516
-	list='$(DISTFILES)'; for file in $$list; do \
517
-	  case $$file in \
518
-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
519
-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
520
-	  esac; \
512
+	test -d $(distdir) || mkdir $(distdir)
513
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
514
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
515
+	list='$(DISTFILES)'; \
516
+	  dist_files=`for file in $$list; do echo $$file; done | \
517
+	  sed -e "s|^$$srcdirstrip/||;t" \
518
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
519
+	case $$dist_files in \
520
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
521
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
522
+			   sort -u` ;; \
523
+	esac; \
524
+	for file in $$dist_files; do \
521 525
 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
522
-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
523
-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
524
-	    dir="/$$dir"; \
525
-	    $(mkdir_p) "$(distdir)$$dir"; \
526
-	  else \
527
-	    dir=''; \
528
-	  fi; \
529 526
 	  if test -d $$d/$$file; then \
527
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
530 528
 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
531 529
 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
532 530
 	    fi; \
... ...
@@ -540,7 +531,7 @@ distdir: $(DISTFILES)
540 540
 	list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
541 541
 	  if test "$$subdir" = .; then :; else \
542 542
 	    test -d "$(distdir)/$$subdir" \
543
-	    || $(mkdir_p) "$(distdir)/$$subdir" \
543
+	    || $(MKDIR_P) "$(distdir)/$$subdir" \
544 544
 	    || exit 1; \
545 545
 	    distdir=`$(am__cd) $(distdir) && pwd`; \
546 546
 	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
... ...
@@ -548,6 +539,8 @@ distdir: $(DISTFILES)
548 548
 	      $(MAKE) $(AM_MAKEFLAGS) \
549 549
 	        top_distdir="$$top_distdir" \
550 550
 	        distdir="$$distdir/$$subdir" \
551
+		am__remove_distdir=: \
552
+		am__skip_length_check=: \
551 553
 	        distdir) \
552 554
 	      || exit 1; \
553 555
 	  fi; \
... ...
@@ -555,7 +548,7 @@ distdir: $(DISTFILES)
555 555
 	-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
556 556
 	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
557 557
 	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
558
-	  ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
558
+	  ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
559 559
 	|| chmod -R a+r $(distdir)
560 560
 dist-gzip: distdir
561 561
 	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
... ...
@@ -630,7 +623,7 @@ distcheck: dist
630 630
 	$(am__remove_distdir)
631 631
 	@(echo "$(distdir) archives ready for distribution: "; \
632 632
 	  list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
633
-	  sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}'
633
+	  sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
634 634
 distuninstallcheck:
635 635
 	@cd $(distuninstallcheck_dir) \
636 636
 	&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
... ...
@@ -655,7 +648,7 @@ all-am: Makefile $(SCRIPTS) $(DATA) clamav-config.h
655 655
 installdirs: installdirs-recursive
656 656
 installdirs-am:
657 657
 	for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgconfigdir)"; do \
658
-	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
658
+	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
659 659
 	done
660 660
 install: install-recursive
661 661
 install-exec: install-exec-recursive
... ...
@@ -703,12 +696,20 @@ info-am:
703 703
 
704 704
 install-data-am: install-pkgconfigDATA
705 705
 
706
+install-dvi: install-dvi-recursive
707
+
706 708
 install-exec-am: install-binSCRIPTS
707 709
 
710
+install-html: install-html-recursive
711
+
708 712
 install-info: install-info-recursive
709 713
 
710 714
 install-man:
711 715
 
716
+install-pdf: install-pdf-recursive
717
+
718
+install-ps: install-ps-recursive
719
+
712 720
 installcheck-am:
713 721
 
714 722
 maintainer-clean: maintainer-clean-recursive
... ...
@@ -729,27 +730,28 @@ ps: ps-recursive
729 729
 
730 730
 ps-am:
731 731
 
732
-uninstall-am: uninstall-binSCRIPTS uninstall-info-am \
733
-	uninstall-pkgconfigDATA
732
+uninstall-am: uninstall-binSCRIPTS uninstall-pkgconfigDATA
734 733
 
735
-uninstall-info: uninstall-info-recursive
734
+.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
735
+	install-strip
736 736
 
737
-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \
738
-	check-am clean clean-generic clean-libtool clean-recursive \
739
-	ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \
740
-	dist-shar dist-tarZ dist-zip distcheck distclean \
737
+.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
738
+	all all-am am--refresh check check-am clean clean-generic \
739
+	clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \
740
+	dist-gzip dist-shar dist-tarZ dist-zip distcheck distclean \
741 741
 	distclean-generic distclean-hdr distclean-libtool \
742
-	distclean-recursive distclean-tags distcleancheck distdir \
743
-	distuninstallcheck dvi dvi-am html html-am info info-am \
744
-	install install-am install-binSCRIPTS install-data \
745
-	install-data-am install-exec install-exec-am install-info \
746
-	install-info-am install-man install-pkgconfigDATA \
747
-	install-strip installcheck installcheck-am installdirs \
748
-	installdirs-am maintainer-clean maintainer-clean-generic \
749
-	maintainer-clean-recursive mostlyclean mostlyclean-generic \
750
-	mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \
751
-	tags tags-recursive uninstall uninstall-am \
752
-	uninstall-binSCRIPTS uninstall-info-am uninstall-pkgconfigDATA
742
+	distclean-tags distcleancheck distdir distuninstallcheck dvi \
743
+	dvi-am html html-am info info-am install install-am \
744
+	install-binSCRIPTS install-data install-data-am install-dvi \
745
+	install-dvi-am install-exec install-exec-am install-html \
746
+	install-html-am install-info install-info-am install-man \
747
+	install-pdf install-pdf-am install-pkgconfigDATA install-ps \
748
+	install-ps-am install-strip installcheck installcheck-am \
749
+	installdirs installdirs-am maintainer-clean \
750
+	maintainer-clean-generic mostlyclean mostlyclean-generic \
751
+	mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
752
+	uninstall uninstall-am uninstall-binSCRIPTS \
753
+	uninstall-pkgconfigDATA
753 754
 
754 755
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
755 756
 # Otherwise a system limit (for SysV at least) may be exceeded.
... ...
@@ -1,7 +1,7 @@
1
-# generated automatically by aclocal 1.9.6 -*- Autoconf -*-
1
+# generated automatically by aclocal 1.10 -*- Autoconf -*-
2 2
 
3 3
 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4
-# 2005  Free Software Foundation, Inc.
4
+# 2005, 2006  Free Software Foundation, Inc.
5 5
 # This file is free software; the Free Software Foundation
6 6
 # gives unlimited permission to copy and/or distribute it,
7 7
 # with or without modifications, as long as this notice is preserved.
... ...
@@ -11,6 +11,11 @@
11 11
 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12 12
 # PARTICULAR PURPOSE.
13 13
 
14
+m4_if(m4_PACKAGE_VERSION, [2.61],,
15
+[m4_fatal([this file was generated for autoconf 2.61.
16
+You have another version of autoconf.  If you want to use that,
17
+you should regenerate the build system entirely.], [63])])
18
+
14 19
 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
15 20
 
16 21
 # serial 51 Debian 1.5.24-2 AC_PROG_LIBTOOL
... ...
@@ -6592,7 +6597,7 @@ AC_SUBST([SED])
6592 6592
 AC_MSG_RESULT([$SED])
6593 6593
 ])
6594 6594
 
6595
-# Copyright (C) 2002, 2003, 2005  Free Software Foundation, Inc.
6595
+# Copyright (C) 2002, 2003, 2005, 2006  Free Software Foundation, Inc.
6596 6596
 #
6597 6597
 # This file is free software; the Free Software Foundation
6598 6598
 # gives unlimited permission to copy and/or distribute it,
... ...
@@ -6602,14 +6607,29 @@ AC_MSG_RESULT([$SED])
6602 6602
 # ----------------------------
6603 6603
 # Automake X.Y traces this macro to ensure aclocal.m4 has been
6604 6604
 # generated from the m4 files accompanying Automake X.Y.
6605
-AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"])
6605
+# (This private macro should not be called outside this file.)
6606
+AC_DEFUN([AM_AUTOMAKE_VERSION],
6607
+[am__api_version='1.10'
6608
+dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
6609
+dnl require some minimum version.  Point them to the right macro.
6610
+m4_if([$1], [1.10], [],
6611
+      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
6612
+])
6613
+
6614
+# _AM_AUTOCONF_VERSION(VERSION)
6615
+# -----------------------------
6616
+# aclocal traces this macro to find the Autoconf version.
6617
+# This is a private macro too.  Using m4_define simplifies
6618
+# the logic in aclocal, which can simply ignore this definition.
6619
+m4_define([_AM_AUTOCONF_VERSION], [])
6606 6620
 
6607 6621
 # AM_SET_CURRENT_AUTOMAKE_VERSION
6608 6622
 # -------------------------------
6609
-# Call AM_AUTOMAKE_VERSION so it can be traced.
6623
+# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
6610 6624
 # This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
6611 6625
 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
6612
-	 [AM_AUTOMAKE_VERSION([1.9.6])])
6626
+[AM_AUTOMAKE_VERSION([1.10])dnl
6627
+_AM_AUTOCONF_VERSION(m4_PACKAGE_VERSION)])
6613 6628
 
6614 6629
 # AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
6615 6630
 
... ...
@@ -6666,14 +6686,14 @@ am_aux_dir=`cd $ac_aux_dir && pwd`
6666 6666
 
6667 6667
 # AM_CONDITIONAL                                            -*- Autoconf -*-
6668 6668
 
6669
-# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005
6669
+# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006
6670 6670
 # Free Software Foundation, Inc.
6671 6671
 #
6672 6672
 # This file is free software; the Free Software Foundation
6673 6673
 # gives unlimited permission to copy and/or distribute it,
6674 6674
 # with or without modifications, as long as this notice is preserved.
6675 6675
 
6676
-# serial 7
6676
+# serial 8
6677 6677
 
6678 6678
 # AM_CONDITIONAL(NAME, SHELL-CONDITION)
6679 6679
 # -------------------------------------
... ...
@@ -6682,8 +6702,10 @@ AC_DEFUN([AM_CONDITIONAL],
6682 6682
 [AC_PREREQ(2.52)dnl
6683 6683
  ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
6684 6684
 	[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
6685
-AC_SUBST([$1_TRUE])
6686
-AC_SUBST([$1_FALSE])
6685
+AC_SUBST([$1_TRUE])dnl
6686
+AC_SUBST([$1_FALSE])dnl
6687
+_AM_SUBST_NOTMAKE([$1_TRUE])dnl
6688
+_AM_SUBST_NOTMAKE([$1_FALSE])dnl
6687 6689
 if $2; then
6688 6690
   $1_TRUE=
6689 6691
   $1_FALSE='#'
... ...
@@ -6697,15 +6719,14 @@ AC_CONFIG_COMMANDS_PRE(
6697 6697
 Usually this means the macro was only invoked conditionally.]])
6698 6698
 fi])])
6699 6699
 
6700
-
6701
-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
6700
+# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
6702 6701
 # Free Software Foundation, Inc.
6703 6702
 #
6704 6703
 # This file is free software; the Free Software Foundation
6705 6704
 # gives unlimited permission to copy and/or distribute it,
6706 6705
 # with or without modifications, as long as this notice is preserved.
6707 6706
 
6708
-# serial 8
6707
+# serial 9
6709 6708
 
6710 6709
 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
6711 6710
 # written in clear, in which case automake, when reading aclocal.m4,
... ...
@@ -6733,6 +6754,7 @@ AC_REQUIRE([AM_DEP_TRACK])dnl
6733 6733
 ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
6734 6734
        [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
6735 6735
        [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
6736
+       [$1], UPC,  [depcc="$UPC"  am_compiler_list=],
6736 6737
        [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
6737 6738
                    [depcc="$$1"   am_compiler_list=])
6738 6739
 
... ...
@@ -6798,6 +6820,7 @@ AC_CACHE_CHECK([dependency style of $depcc],
6798 6798
        depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
6799 6799
        $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
6800 6800
          >/dev/null 2>conftest.err &&
6801
+       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
6801 6802
        grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
6802 6803
        grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
6803 6804
        ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
... ...
@@ -6850,7 +6873,8 @@ if test "x$enable_dependency_tracking" != xno; then
6850 6850
   AMDEPBACKSLASH='\'
6851 6851
 fi
6852 6852
 AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
6853
-AC_SUBST([AMDEPBACKSLASH])
6853
+AC_SUBST([AMDEPBACKSLASH])dnl
6854
+_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
6854 6855
 ])
6855 6856
 
6856 6857
 # Generate code to set up dependency tracking.              -*- Autoconf -*-
... ...
@@ -6875,8 +6899,9 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
6875 6875
   # some people rename them; so instead we look at the file content.
6876 6876
   # Grep'ing the first line is not enough: some people post-process
6877 6877
   # each Makefile.in and add a new line on top of each file to say so.
6878
-  # So let's grep whole file.
6879
-  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
6878
+  # Grep'ing the whole file is not good either: AIX grep has a line
6879
+  # limit of 2048, but all sed's we know have understand at least 4000.
6880
+  if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then
6880 6881
     dirpart=`AS_DIRNAME("$mf")`
6881 6882
   else
6882 6883
     continue
... ...
@@ -6935,8 +6960,8 @@ AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
6935 6935
 
6936 6936
 # Do all the work for Automake.                             -*- Autoconf -*-
6937 6937
 
6938
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
6939
-# Free Software Foundation, Inc.
6938
+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
6939
+# 2005, 2006 Free Software Foundation, Inc.
6940 6940
 #
6941 6941
 # This file is free software; the Free Software Foundation
6942 6942
 # gives unlimited permission to copy and/or distribute it,
... ...
@@ -6959,16 +6984,20 @@ AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
6959 6959
 # arguments mandatory, and then we can depend on a new Autoconf
6960 6960
 # release and drop the old call support.
6961 6961
 AC_DEFUN([AM_INIT_AUTOMAKE],
6962
-[AC_PREREQ([2.58])dnl
6962
+[AC_PREREQ([2.60])dnl
6963 6963
 dnl Autoconf wants to disallow AM_ names.  We explicitly allow
6964 6964
 dnl the ones we care about.
6965 6965
 m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
6966 6966
 AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
6967 6967
 AC_REQUIRE([AC_PROG_INSTALL])dnl
6968
-# test to see if srcdir already configured
6969
-if test "`cd $srcdir && pwd`" != "`pwd`" &&
6970
-   test -f $srcdir/config.status; then
6971
-  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
6968
+if test "`cd $srcdir && pwd`" != "`pwd`"; then
6969
+  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
6970
+  # is not polluted with repeated "-I."
6971
+  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
6972
+  # test to see if srcdir already configured
6973
+  if test -f $srcdir/config.status; then
6974
+    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
6975
+  fi
6972 6976
 fi
6973 6977
 
6974 6978
 # test whether we have cygpath
... ...
@@ -6988,6 +7017,9 @@ m4_ifval([$2],
6988 6988
  AC_SUBST([PACKAGE], [$1])dnl
6989 6989
  AC_SUBST([VERSION], [$2])],
6990 6990
 [_AM_SET_OPTIONS([$1])dnl
6991
+dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
6992
+m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
6993
+  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
6991 6994
  AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
6992 6995
  AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
6993 6996
 
... ...
@@ -7023,6 +7055,10 @@ AC_PROVIDE_IFELSE([AC_PROG_CXX],
7023 7023
                   [_AM_DEPENDENCIES(CXX)],
7024 7024
                   [define([AC_PROG_CXX],
7025 7025
                           defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
7026
+AC_PROVIDE_IFELSE([AC_PROG_OBJC],
7027
+                  [_AM_DEPENDENCIES(OBJC)],
7028
+                  [define([AC_PROG_OBJC],
7029
+                          defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
7026 7030
 ])
7027 7031
 ])
7028 7032
 
... ...
@@ -7058,7 +7094,7 @@ echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
7058 7058
 # Define $install_sh.
7059 7059
 AC_DEFUN([AM_PROG_INSTALL_SH],
7060 7060
 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
7061
-install_sh=${install_sh-"$am_aux_dir/install-sh"}
7061
+install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
7062 7062
 AC_SUBST(install_sh)])
7063 7063
 
7064 7064
 # Copyright (C) 2003, 2005  Free Software Foundation, Inc.
... ...
@@ -7136,14 +7172,14 @@ rm -f confinc confmf
7136 7136
 
7137 7137
 # Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
7138 7138
 
7139
-# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2005
7139
+# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005
7140 7140
 # Free Software Foundation, Inc.
7141 7141
 #
7142 7142
 # This file is free software; the Free Software Foundation
7143 7143
 # gives unlimited permission to copy and/or distribute it,
7144 7144
 # with or without modifications, as long as this notice is preserved.
7145 7145
 
7146
-# serial 4
7146
+# serial 5
7147 7147
 
7148 7148
 # AM_MISSING_PROG(NAME, PROGRAM)
7149 7149
 # ------------------------------
... ...
@@ -7159,6 +7195,7 @@ AC_SUBST($1)])
7159 7159
 # If it does, set am_missing_run to use it, otherwise, to nothing.
7160 7160
 AC_DEFUN([AM_MISSING_HAS_RUN],
7161 7161
 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
7162
+AC_REQUIRE_AUX_FILE([missing])dnl
7162 7163
 test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
7163 7164
 # Use eval to expand $SHELL
7164 7165
 if eval "$MISSING --run true"; then
... ...
@@ -7169,7 +7206,7 @@ else
7169 7169
 fi
7170 7170
 ])
7171 7171
 
7172
-# Copyright (C) 2003, 2004, 2005  Free Software Foundation, Inc.
7172
+# Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
7173 7173
 #
7174 7174
 # This file is free software; the Free Software Foundation
7175 7175
 # gives unlimited permission to copy and/or distribute it,
... ...
@@ -7177,60 +7214,23 @@ fi
7177 7177
 
7178 7178
 # AM_PROG_MKDIR_P
7179 7179
 # ---------------
7180
-# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise.
7181
-#
7182
-# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories
7183
-# created by `make install' are always world readable, even if the
7184
-# installer happens to have an overly restrictive umask (e.g. 077).
7185
-# This was a mistake.  There are at least two reasons why we must not
7186
-# use `-m 0755':
7187
-#   - it causes special bits like SGID to be ignored,
7188
-#   - it may be too restrictive (some setups expect 775 directories).
7189
-#
7190
-# Do not use -m 0755 and let people choose whatever they expect by
7191
-# setting umask.
7192
-#
7193
-# We cannot accept any implementation of `mkdir' that recognizes `-p'.
7194
-# Some implementations (such as Solaris 8's) are not thread-safe: if a
7195
-# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c'
7196
-# concurrently, both version can detect that a/ is missing, but only
7197
-# one can create it and the other will error out.  Consequently we
7198
-# restrict ourselves to GNU make (using the --version option ensures
7199
-# this.)
7180
+# Check for `mkdir -p'.
7200 7181
 AC_DEFUN([AM_PROG_MKDIR_P],
7201
-[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
7202
-  # We used to keeping the `.' as first argument, in order to
7203
-  # allow $(mkdir_p) to be used without argument.  As in
7204
-  #   $(mkdir_p) $(somedir)
7205
-  # where $(somedir) is conditionally defined.  However this is wrong
7206
-  # for two reasons:
7207
-  #  1. if the package is installed by a user who cannot write `.'
7208
-  #     make install will fail,
7209
-  #  2. the above comment should most certainly read
7210
-  #     $(mkdir_p) $(DESTDIR)$(somedir)
7211
-  #     so it does not work when $(somedir) is undefined and
7212
-  #     $(DESTDIR) is not.
7213
-  #  To support the latter case, we have to write
7214
-  #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
7215
-  #  so the `.' trick is pointless.
7216
-  mkdir_p='mkdir -p --'
7217
-else
7218
-  # On NextStep and OpenStep, the `mkdir' command does not
7219
-  # recognize any option.  It will interpret all options as
7220
-  # directories to create, and then abort because `.' already
7221
-  # exists.
7222
-  for d in ./-p ./--version;
7223
-  do
7224
-    test -d $d && rmdir $d
7225
-  done
7226
-  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
7227
-  if test -f "$ac_aux_dir/mkinstalldirs"; then
7228
-    mkdir_p='$(mkinstalldirs)'
7229
-  else
7230
-    mkdir_p='$(install_sh) -d'
7231
-  fi
7232
-fi
7233
-AC_SUBST([mkdir_p])])
7182
+[AC_PREREQ([2.60])dnl
7183
+AC_REQUIRE([AC_PROG_MKDIR_P])dnl
7184
+dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
7185
+dnl while keeping a definition of mkdir_p for backward compatibility.
7186
+dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
7187
+dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
7188
+dnl Makefile.ins that do not define MKDIR_P, so we do our own
7189
+dnl adjustment using top_builddir (which is defined more often than
7190
+dnl MKDIR_P).
7191
+AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
7192
+case $mkdir_p in
7193
+  [[\\/$]]* | ?:[[\\/]]*) ;;
7194
+  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
7195
+esac
7196
+])
7234 7197
 
7235 7198
 # Helper functions for option handling.                     -*- Autoconf -*-
7236 7199
 
... ...
@@ -7342,9 +7342,21 @@ dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
7342 7342
 if test "$cross_compiling" != no; then
7343 7343
   AC_CHECK_TOOL([STRIP], [strip], :)
7344 7344
 fi
7345
-INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
7345
+INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
7346 7346
 AC_SUBST([INSTALL_STRIP_PROGRAM])])
7347 7347
 
7348
+# Copyright (C) 2006  Free Software Foundation, Inc.
7349
+#
7350
+# This file is free software; the Free Software Foundation
7351
+# gives unlimited permission to copy and/or distribute it,
7352
+# with or without modifications, as long as this notice is preserved.
7353
+
7354
+# _AM_SUBST_NOTMAKE(VARIABLE)
7355
+# ---------------------------
7356
+# Prevent Automake from outputing VARIABLE = @VARIABLE@ in Makefile.in.
7357
+# This macro is traced by Automake.
7358
+AC_DEFUN([_AM_SUBST_NOTMAKE])
7359
+
7348 7360
 # Check how to create a tarball.                            -*- Autoconf -*-
7349 7361
 
7350 7362
 # Copyright (C) 2004, 2005  Free Software Foundation, Inc.
... ...
@@ -1,8 +1,8 @@
1
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
1
+# Makefile.in generated by automake 1.10 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
-# 2003, 2004, 2005  Free Software Foundation, Inc.
5
+# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6 6
 # This Makefile.in is free software; the Free Software Foundation
7 7
 # gives unlimited permission to copy and/or distribute it,
8 8
 # with or without modifications, as long as this notice is preserved.
... ...
@@ -32,15 +32,11 @@
32 32
 #  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
33 33
 #  MA 02110-1301, USA.
34 34
 
35
-srcdir = @srcdir@
36
-top_srcdir = @top_srcdir@
37 35
 VPATH = @srcdir@
38 36
 pkgdatadir = $(datadir)/@PACKAGE@
39 37
 pkglibdir = $(libdir)/@PACKAGE@
40 38
 pkgincludedir = $(includedir)/@PACKAGE@
41
-top_builddir = ..
42 39
 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
43
-INSTALL = @INSTALL@
44 40
 install_sh_DATA = $(install_sh) -c -m 644
45 41
 install_sh_PROGRAM = $(install_sh) -c
46 42
 install_sh_SCRIPT = $(install_sh) -c
... ...
@@ -85,17 +81,18 @@ am__clamav_milter_SOURCES_DIST = $(top_srcdir)/shared/cfgparser.c \
85 85
 @BUILD_CLAMD_TRUE@@HAVE_MILTER_TRUE@	clamav-milter.$(OBJEXT)
86 86
 clamav_milter_OBJECTS = $(am_clamav_milter_OBJECTS)
87 87
 clamav_milter_LDADD = $(LDADD)
88
-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
88
+DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
89 89
 depcomp = $(SHELL) $(top_srcdir)/depcomp
90 90
 am__depfiles_maybe = depfiles
91 91
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
92 92
 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
93
-LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
94
-	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
95
-	$(AM_CFLAGS) $(CFLAGS)
93
+LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
94
+	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
95
+	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
96 96
 CCLD = $(CC)
97
-LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
98
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
97
+LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
98
+	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
99
+	$(LDFLAGS) -o $@
99 100
 SOURCES = $(clamav_milter_SOURCES)
100 101
 DIST_SOURCES = $(am__clamav_milter_SOURCES_DIST)
101 102
 man8dir = $(mandir)/man8
... ...
@@ -105,16 +102,12 @@ ETAGS = etags
105 105
 CTAGS = ctags
106 106
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
107 107
 ACLOCAL = @ACLOCAL@
108
-AMDEP_FALSE = @AMDEP_FALSE@
109
-AMDEP_TRUE = @AMDEP_TRUE@
110 108
 AMTAR = @AMTAR@
111 109
 AR = @AR@
112 110
 AUTOCONF = @AUTOCONF@
113 111
 AUTOHEADER = @AUTOHEADER@
114 112
 AUTOMAKE = @AUTOMAKE@
115 113
 AWK = @AWK@
116
-BUILD_CLAMD_FALSE = @BUILD_CLAMD_FALSE@
117
-BUILD_CLAMD_TRUE = @BUILD_CLAMD_TRUE@
118 114
 CC = @CC@
119 115
 CCDEPMODE = @CCDEPMODE@
120 116
 CFGDIR = @CFGDIR@
... ...
@@ -138,16 +131,13 @@ ECHO_C = @ECHO_C@
138 138
 ECHO_N = @ECHO_N@
139 139
 ECHO_T = @ECHO_T@
140 140
 EGREP = @EGREP@
141
-ENABLE_UNRAR_FALSE = @ENABLE_UNRAR_FALSE@
142
-ENABLE_UNRAR_TRUE = @ENABLE_UNRAR_TRUE@
143 141
 EXEEXT = @EXEEXT@
144 142
 F77 = @F77@
145 143
 FFLAGS = @FFLAGS@
146 144
 FRESHCLAM_LIBS = @FRESHCLAM_LIBS@
147 145
 GETENT = @GETENT@
148 146
 GREP = @GREP@
149
-HAVE_MILTER_FALSE = @HAVE_MILTER_FALSE@
150
-HAVE_MILTER_TRUE = @HAVE_MILTER_TRUE@
147
+INSTALL = @INSTALL@
151 148
 INSTALL_DATA = @INSTALL_DATA@
152 149
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
153 150
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
... ...
@@ -161,9 +151,8 @@ LIBTOOL = @LIBTOOL@
161 161
 LN_S = @LN_S@
162 162
 LTLIBOBJS = @LTLIBOBJS@
163 163
 MAINT = @MAINT@
164
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
165
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
166 164
 MAKEINFO = @MAKEINFO@
165
+MKDIR_P = @MKDIR_P@
167 166
 OBJEXT = @OBJEXT@
168 167
 PACKAGE = @PACKAGE@
169 168
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
... ...
@@ -180,13 +169,13 @@ STRIP = @STRIP@
180 180
 THREAD_LIBS = @THREAD_LIBS@
181 181
 TH_SAFE = @TH_SAFE@
182 182
 VERSION = @VERSION@
183
+abs_builddir = @abs_builddir@
184
+abs_srcdir = @abs_srcdir@
185
+abs_top_builddir = @abs_top_builddir@
186
+abs_top_srcdir = @abs_top_srcdir@
183 187
 ac_ct_CC = @ac_ct_CC@
184 188
 ac_ct_CXX = @ac_ct_CXX@
185 189
 ac_ct_F77 = @ac_ct_F77@
186
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
187
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
188
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
189
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
190 190
 am__include = @am__include@
191 191
 am__leading_dot = @am__leading_dot@
192 192
 am__quote = @am__quote@
... ...
@@ -198,6 +187,7 @@ build_alias = @build_alias@
198 198
 build_cpu = @build_cpu@
199 199
 build_os = @build_os@
200 200
 build_vendor = @build_vendor@
201
+builddir = @builddir@
201 202
 datadir = @datadir@
202 203
 datarootdir = @datarootdir@
203 204
 docdir = @docdir@
... ...
@@ -226,12 +216,15 @@ psdir = @psdir@
226 226
 sbindir = @sbindir@
227 227
 sendmailprog = @sendmailprog@
228 228
 sharedstatedir = @sharedstatedir@
229
+srcdir = @srcdir@
229 230
 sysconfdir = @sysconfdir@
230 231
 target = @target@
231 232
 target_alias = @target_alias@
232 233
 target_cpu = @target_cpu@
233 234
 target_os = @target_os@
234 235
 target_vendor = @target_vendor@
236
+top_builddir = @top_builddir@
237
+top_srcdir = @top_srcdir@
235 238
 @BUILD_CLAMD_TRUE@@HAVE_MILTER_TRUE@clamav_milter_SOURCES = \
236 239
 @BUILD_CLAMD_TRUE@@HAVE_MILTER_TRUE@    $(top_srcdir)/shared/cfgparser.c \
237 240
 @BUILD_CLAMD_TRUE@@HAVE_MILTER_TRUE@    $(top_srcdir)/shared/cfgparser.h \
... ...
@@ -283,7 +276,7 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
283 283
 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
284 284
 install-sbinPROGRAMS: $(sbin_PROGRAMS)
285 285
 	@$(NORMAL_INSTALL)
286
-	test -z "$(sbindir)" || $(mkdir_p) "$(DESTDIR)$(sbindir)"
286
+	test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
287 287
 	@list='$(sbin_PROGRAMS)'; for p in $$list; do \
288 288
 	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
289 289
 	  if test -f $$p \
... ...
@@ -311,7 +304,7 @@ clean-sbinPROGRAMS:
311 311
 	done
312 312
 clamav-milter$(EXEEXT): $(clamav_milter_OBJECTS) $(clamav_milter_DEPENDENCIES) 
313 313
 	@rm -f clamav-milter$(EXEEXT)
314
-	$(LINK) $(clamav_milter_LDFLAGS) $(clamav_milter_OBJECTS) $(clamav_milter_LDADD) $(LIBS)
314
+	$(LINK) $(clamav_milter_OBJECTS) $(clamav_milter_LDADD) $(LIBS)
315 315
 
316 316
 mostlyclean-compile:
317 317
 	-rm -f *.$(OBJEXT)
... ...
@@ -327,92 +320,92 @@ distclean-compile:
327 327
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output.Po@am__quote@
328 328
 
329 329
 .c.o:
330
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
331
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
330
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
331
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
332 332
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
333 333
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
334 334
 @am__fastdepCC_FALSE@	$(COMPILE) -c $<
335 335
 
336 336
 .c.obj:
337
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
338
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
337
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
338
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
339 339
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
340 340
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
341 341
 @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
342 342
 
343 343
 .c.lo:
344
-@am__fastdepCC_TRUE@	if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
345
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
344
+@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
345
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
346 346
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
347 347
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
348 348
 @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
349 349
 
350 350
 cfgparser.o: $(top_srcdir)/shared/cfgparser.c
351
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.o -MD -MP -MF "$(DEPDIR)/cfgparser.Tpo" -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c; \
352
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cfgparser.Tpo" "$(DEPDIR)/cfgparser.Po"; else rm -f "$(DEPDIR)/cfgparser.Tpo"; exit 1; fi
351
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.o -MD -MP -MF $(DEPDIR)/cfgparser.Tpo -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c
352
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cfgparser.Tpo $(DEPDIR)/cfgparser.Po
353 353
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cfgparser.c' object='cfgparser.o' libtool=no @AMDEPBACKSLASH@
354 354
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
355 355
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c
356 356
 
357 357
 cfgparser.obj: $(top_srcdir)/shared/cfgparser.c
358
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.obj -MD -MP -MF "$(DEPDIR)/cfgparser.Tpo" -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`; \
359
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cfgparser.Tpo" "$(DEPDIR)/cfgparser.Po"; else rm -f "$(DEPDIR)/cfgparser.Tpo"; exit 1; fi
358
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.obj -MD -MP -MF $(DEPDIR)/cfgparser.Tpo -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`
359
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cfgparser.Tpo $(DEPDIR)/cfgparser.Po
360 360
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cfgparser.c' object='cfgparser.obj' libtool=no @AMDEPBACKSLASH@
361 361
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
362 362
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`
363 363
 
364 364
 output.o: $(top_srcdir)/shared/output.c
365
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.o -MD -MP -MF "$(DEPDIR)/output.Tpo" -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c; \
366
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/output.Tpo" "$(DEPDIR)/output.Po"; else rm -f "$(DEPDIR)/output.Tpo"; exit 1; fi
365
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.o -MD -MP -MF $(DEPDIR)/output.Tpo -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c
366
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/output.Tpo $(DEPDIR)/output.Po
367 367
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/output.c' object='output.o' libtool=no @AMDEPBACKSLASH@
368 368
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
369 369
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c
370 370
 
371 371
 output.obj: $(top_srcdir)/shared/output.c
372
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.obj -MD -MP -MF "$(DEPDIR)/output.Tpo" -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`; \
373
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/output.Tpo" "$(DEPDIR)/output.Po"; else rm -f "$(DEPDIR)/output.Tpo"; exit 1; fi
372
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.obj -MD -MP -MF $(DEPDIR)/output.Tpo -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`
373
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/output.Tpo $(DEPDIR)/output.Po
374 374
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/output.c' object='output.obj' libtool=no @AMDEPBACKSLASH@
375 375
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
376 376
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`
377 377
 
378 378
 getopt.o: $(top_srcdir)/shared/getopt.c
379
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.o -MD -MP -MF "$(DEPDIR)/getopt.Tpo" -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c; \
380
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/getopt.Tpo" "$(DEPDIR)/getopt.Po"; else rm -f "$(DEPDIR)/getopt.Tpo"; exit 1; fi
379
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.o -MD -MP -MF $(DEPDIR)/getopt.Tpo -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c
380
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/getopt.Tpo $(DEPDIR)/getopt.Po
381 381
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/getopt.c' object='getopt.o' libtool=no @AMDEPBACKSLASH@
382 382
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
383 383
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c
384 384
 
385 385
 getopt.obj: $(top_srcdir)/shared/getopt.c
386
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.obj -MD -MP -MF "$(DEPDIR)/getopt.Tpo" -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`; \
387
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/getopt.Tpo" "$(DEPDIR)/getopt.Po"; else rm -f "$(DEPDIR)/getopt.Tpo"; exit 1; fi
386
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.obj -MD -MP -MF $(DEPDIR)/getopt.Tpo -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`
387
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/getopt.Tpo $(DEPDIR)/getopt.Po
388 388
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/getopt.c' object='getopt.obj' libtool=no @AMDEPBACKSLASH@
389 389
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
390 390
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`
391 391
 
392 392
 misc.o: $(top_srcdir)/shared/misc.c
393
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.o -MD -MP -MF "$(DEPDIR)/misc.Tpo" -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c; \
394
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/misc.Tpo" "$(DEPDIR)/misc.Po"; else rm -f "$(DEPDIR)/misc.Tpo"; exit 1; fi
393
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.o -MD -MP -MF $(DEPDIR)/misc.Tpo -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c
394
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/misc.Tpo $(DEPDIR)/misc.Po
395 395
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/misc.c' object='misc.o' libtool=no @AMDEPBACKSLASH@
396 396
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
397 397
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c
398 398
 
399 399
 misc.obj: $(top_srcdir)/shared/misc.c
400
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.obj -MD -MP -MF "$(DEPDIR)/misc.Tpo" -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`; \
401
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/misc.Tpo" "$(DEPDIR)/misc.Po"; else rm -f "$(DEPDIR)/misc.Tpo"; exit 1; fi
400
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.obj -MD -MP -MF $(DEPDIR)/misc.Tpo -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`
401
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/misc.Tpo $(DEPDIR)/misc.Po
402 402
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/misc.c' object='misc.obj' libtool=no @AMDEPBACKSLASH@
403 403
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
404 404
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`
405 405
 
406 406
 network.o: $(top_srcdir)/shared/network.c
407
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT network.o -MD -MP -MF "$(DEPDIR)/network.Tpo" -c -o network.o `test -f '$(top_srcdir)/shared/network.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/network.c; \
408
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/network.Tpo" "$(DEPDIR)/network.Po"; else rm -f "$(DEPDIR)/network.Tpo"; exit 1; fi
407
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT network.o -MD -MP -MF $(DEPDIR)/network.Tpo -c -o network.o `test -f '$(top_srcdir)/shared/network.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/network.c
408
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/network.Tpo $(DEPDIR)/network.Po
409 409
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/network.c' object='network.o' libtool=no @AMDEPBACKSLASH@
410 410
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
411 411
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o network.o `test -f '$(top_srcdir)/shared/network.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/network.c
412 412
 
413 413
 network.obj: $(top_srcdir)/shared/network.c
414
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT network.obj -MD -MP -MF "$(DEPDIR)/network.Tpo" -c -o network.obj `if test -f '$(top_srcdir)/shared/network.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/network.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/network.c'; fi`; \
415
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/network.Tpo" "$(DEPDIR)/network.Po"; else rm -f "$(DEPDIR)/network.Tpo"; exit 1; fi
414
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT network.obj -MD -MP -MF $(DEPDIR)/network.Tpo -c -o network.obj `if test -f '$(top_srcdir)/shared/network.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/network.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/network.c'; fi`
415
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/network.Tpo $(DEPDIR)/network.Po
416 416
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/network.c' object='network.obj' libtool=no @AMDEPBACKSLASH@
417 417
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
418 418
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o network.obj `if test -f '$(top_srcdir)/shared/network.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/network.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/network.c'; fi`
... ...
@@ -422,13 +415,9 @@ mostlyclean-libtool:
422 422
 
423 423
 clean-libtool:
424 424
 	-rm -rf .libs _libs
425
-
426
-distclean-libtool:
427
-	-rm -f libtool
428
-uninstall-info-am:
429 425
 install-man8: $(man8_MANS) $(man_MANS)
430 426
 	@$(NORMAL_INSTALL)
431
-	test -z "$(man8dir)" || $(mkdir_p) "$(DESTDIR)$(man8dir)"
427
+	test -z "$(man8dir)" || $(MKDIR_P) "$(DESTDIR)$(man8dir)"
432 428
 	@list='$(man8_MANS) $(dist_man8_MANS) $(nodist_man8_MANS)'; \
433 429
 	l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
434 430
 	for i in $$l2; do \
... ...
@@ -521,22 +510,21 @@ distclean-tags:
521 521
 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
522 522
 
523 523
 distdir: $(DISTFILES)
524
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
525
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
526
-	list='$(DISTFILES)'; for file in $$list; do \
527
-	  case $$file in \
528
-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
529
-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
530
-	  esac; \
524
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
525
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
526
+	list='$(DISTFILES)'; \
527
+	  dist_files=`for file in $$list; do echo $$file; done | \
528
+	  sed -e "s|^$$srcdirstrip/||;t" \
529
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
530
+	case $$dist_files in \
531
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
532
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
533
+			   sort -u` ;; \
534
+	esac; \
535
+	for file in $$dist_files; do \
531 536
 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
532
-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
533
-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
534
-	    dir="/$$dir"; \
535
-	    $(mkdir_p) "$(distdir)$$dir"; \
536
-	  else \
537
-	    dir=''; \
538
-	  fi; \
539 537
 	  if test -d $$d/$$file; then \
538
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
540 539
 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
541 540
 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
542 541
 	    fi; \
... ...
@@ -552,7 +540,7 @@ check: check-am
552 552
 all-am: Makefile $(PROGRAMS) $(MANS)
553 553
 installdirs:
554 554
 	for dir in "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(man8dir)"; do \
555
-	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
555
+	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
556 556
 	done
557 557
 install: install-am
558 558
 install-exec: install-exec-am
... ...
@@ -587,7 +575,7 @@ distclean: distclean-am
587 587
 	-rm -rf ./$(DEPDIR)
588 588
 	-rm -f Makefile
589 589
 distclean-am: clean-am distclean-compile distclean-generic \
590
-	distclean-libtool distclean-tags
590
+	distclean-tags
591 591
 
592 592
 dvi: dvi-am
593 593
 
... ...
@@ -601,12 +589,20 @@ info-am:
601 601
 
602 602
 install-data-am: install-man
603 603
 
604
+install-dvi: install-dvi-am
605
+
604 606
 install-exec-am: install-sbinPROGRAMS
605 607
 
608
+install-html: install-html-am
609
+
606 610
 install-info: install-info-am
607 611
 
608 612
 install-man: install-man8
609 613
 
614
+install-pdf: install-pdf-am
615
+
616
+install-ps: install-ps-am
617
+
610 618
 installcheck-am:
611 619
 
612 620
 maintainer-clean: maintainer-clean-am
... ...
@@ -627,22 +623,26 @@ ps: ps-am
627 627
 
628 628
 ps-am:
629 629
 
630
-uninstall-am: uninstall-info-am uninstall-man uninstall-sbinPROGRAMS
630
+uninstall-am: uninstall-man uninstall-sbinPROGRAMS
631 631
 
632 632
 uninstall-man: uninstall-man8
633 633
 
634
+.MAKE: install-am install-strip
635
+
634 636
 .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
635 637
 	clean-libtool clean-sbinPROGRAMS ctags distclean \
636 638
 	distclean-compile distclean-generic distclean-libtool \
637 639
 	distclean-tags distdir dvi dvi-am html html-am info info-am \
638
-	install install-am install-data install-data-am install-exec \
639
-	install-exec-am install-info install-info-am install-man \
640
-	install-man8 install-sbinPROGRAMS install-strip installcheck \
640
+	install install-am install-data install-data-am install-dvi \
641
+	install-dvi-am install-exec install-exec-am install-html \
642
+	install-html-am install-info install-info-am install-man \
643
+	install-man8 install-pdf install-pdf-am install-ps \
644
+	install-ps-am install-sbinPROGRAMS install-strip installcheck \
641 645
 	installcheck-am installdirs maintainer-clean \
642 646
 	maintainer-clean-generic mostlyclean mostlyclean-compile \
643 647
 	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
644
-	tags uninstall uninstall-am uninstall-info-am uninstall-man \
645
-	uninstall-man8 uninstall-sbinPROGRAMS
648
+	tags uninstall uninstall-am uninstall-man uninstall-man8 \
649
+	uninstall-sbinPROGRAMS
646 650
 
647 651
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
648 652
 # Otherwise a system limit (for SysV at least) may be exceeded.
... ...
@@ -1,8 +1,8 @@
1
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
1
+# Makefile.in generated by automake 1.10 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
-# 2003, 2004, 2005  Free Software Foundation, Inc.
5
+# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6 6
 # This Makefile.in is free software; the Free Software Foundation
7 7
 # gives unlimited permission to copy and/or distribute it,
8 8
 # with or without modifications, as long as this notice is preserved.
... ...
@@ -32,15 +32,11 @@
32 32
 #  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
33 33
 #  MA 02110-1301, USA.
34 34
 
35
-srcdir = @srcdir@
36
-top_srcdir = @top_srcdir@
37 35
 VPATH = @srcdir@
38 36
 pkgdatadir = $(datadir)/@PACKAGE@
39 37
 pkglibdir = $(libdir)/@PACKAGE@
40 38
 pkgincludedir = $(includedir)/@PACKAGE@
41
-top_builddir = ..
42 39
 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
43
-INSTALL = @INSTALL@
44 40
 install_sh_DATA = $(install_sh) -c -m 644
45 41
 install_sh_PROGRAM = $(install_sh) -c
46 42
 install_sh_SCRIPT = $(install_sh) -c
... ...
@@ -73,33 +69,30 @@ am_clamconf_OBJECTS = cfgparser.$(OBJEXT) misc.$(OBJEXT) \
73 73
 	getopt.$(OBJEXT) clamconf.$(OBJEXT)
74 74
 clamconf_OBJECTS = $(am_clamconf_OBJECTS)
75 75
 clamconf_LDADD = $(LDADD)
76
-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
76
+DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
77 77
 depcomp = $(SHELL) $(top_srcdir)/depcomp
78 78
 am__depfiles_maybe = depfiles
79 79
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
80 80
 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
81
-LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
82
-	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
83
-	$(AM_CFLAGS) $(CFLAGS)
81
+LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
82
+	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
83
+	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
84 84
 CCLD = $(CC)
85
-LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
86
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
85
+LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
86
+	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
87
+	$(LDFLAGS) -o $@
87 88
 SOURCES = $(clamconf_SOURCES)
88 89
 DIST_SOURCES = $(clamconf_SOURCES)
89 90
 ETAGS = etags
90 91
 CTAGS = ctags
91 92
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
92 93
 ACLOCAL = @ACLOCAL@
93
-AMDEP_FALSE = @AMDEP_FALSE@
94
-AMDEP_TRUE = @AMDEP_TRUE@
95 94
 AMTAR = @AMTAR@
96 95
 AR = @AR@
97 96
 AUTOCONF = @AUTOCONF@
98 97
 AUTOHEADER = @AUTOHEADER@
99 98
 AUTOMAKE = @AUTOMAKE@
100 99
 AWK = @AWK@
101
-BUILD_CLAMD_FALSE = @BUILD_CLAMD_FALSE@
102
-BUILD_CLAMD_TRUE = @BUILD_CLAMD_TRUE@
103 100
 CC = @CC@
104 101
 CCDEPMODE = @CCDEPMODE@
105 102
 CFGDIR = @CFGDIR@
... ...
@@ -123,16 +116,13 @@ ECHO_C = @ECHO_C@
123 123
 ECHO_N = @ECHO_N@
124 124
 ECHO_T = @ECHO_T@
125 125
 EGREP = @EGREP@
126
-ENABLE_UNRAR_FALSE = @ENABLE_UNRAR_FALSE@
127
-ENABLE_UNRAR_TRUE = @ENABLE_UNRAR_TRUE@
128 126
 EXEEXT = @EXEEXT@
129 127
 F77 = @F77@
130 128
 FFLAGS = @FFLAGS@
131 129
 FRESHCLAM_LIBS = @FRESHCLAM_LIBS@
132 130
 GETENT = @GETENT@
133 131
 GREP = @GREP@
134
-HAVE_MILTER_FALSE = @HAVE_MILTER_FALSE@
135
-HAVE_MILTER_TRUE = @HAVE_MILTER_TRUE@
132
+INSTALL = @INSTALL@
136 133
 INSTALL_DATA = @INSTALL_DATA@
137 134
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
138 135
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
... ...
@@ -146,9 +136,8 @@ LIBTOOL = @LIBTOOL@
146 146
 LN_S = @LN_S@
147 147
 LTLIBOBJS = @LTLIBOBJS@
148 148
 MAINT = @MAINT@
149
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
150
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
151 149
 MAKEINFO = @MAKEINFO@
150
+MKDIR_P = @MKDIR_P@
152 151
 OBJEXT = @OBJEXT@
153 152
 PACKAGE = @PACKAGE@
154 153
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
... ...
@@ -165,13 +154,13 @@ STRIP = @STRIP@
165 165
 THREAD_LIBS = @THREAD_LIBS@
166 166
 TH_SAFE = @TH_SAFE@
167 167
 VERSION = @VERSION@
168
+abs_builddir = @abs_builddir@
169
+abs_srcdir = @abs_srcdir@
170
+abs_top_builddir = @abs_top_builddir@
171
+abs_top_srcdir = @abs_top_srcdir@
168 172
 ac_ct_CC = @ac_ct_CC@
169 173
 ac_ct_CXX = @ac_ct_CXX@
170 174
 ac_ct_F77 = @ac_ct_F77@
171
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
172
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
173
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
174
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
175 175
 am__include = @am__include@
176 176
 am__leading_dot = @am__leading_dot@
177 177
 am__quote = @am__quote@
... ...
@@ -183,6 +172,7 @@ build_alias = @build_alias@
183 183
 build_cpu = @build_cpu@
184 184
 build_os = @build_os@
185 185
 build_vendor = @build_vendor@
186
+builddir = @builddir@
186 187
 datadir = @datadir@
187 188
 datarootdir = @datarootdir@
188 189
 docdir = @docdir@
... ...
@@ -211,12 +201,15 @@ psdir = @psdir@
211 211
 sbindir = @sbindir@
212 212
 sendmailprog = @sendmailprog@
213 213
 sharedstatedir = @sharedstatedir@
214
+srcdir = @srcdir@
214 215
 sysconfdir = @sysconfdir@
215 216
 target = @target@
216 217
 target_alias = @target_alias@
217 218
 target_cpu = @target_cpu@
218 219
 target_os = @target_os@
219 220
 target_vendor = @target_vendor@
221
+top_builddir = @top_builddir@
222
+top_srcdir = @top_srcdir@
220 223
 clamconf_SOURCES = \
221 224
     $(top_srcdir)/shared/cfgparser.c \
222 225
     $(top_srcdir)/shared/cfgparser.h \
... ...
@@ -262,7 +255,7 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
262 262
 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
263 263
 install-binPROGRAMS: $(bin_PROGRAMS)
264 264
 	@$(NORMAL_INSTALL)
265
-	test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
265
+	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
266 266
 	@list='$(bin_PROGRAMS)'; for p in $$list; do \
267 267
 	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
268 268
 	  if test -f $$p \
... ...
@@ -290,7 +283,7 @@ clean-binPROGRAMS:
290 290
 	done
291 291
 clamconf$(EXEEXT): $(clamconf_OBJECTS) $(clamconf_DEPENDENCIES) 
292 292
 	@rm -f clamconf$(EXEEXT)
293
-	$(LINK) $(clamconf_LDFLAGS) $(clamconf_OBJECTS) $(clamconf_LDADD) $(LIBS)
293
+	$(LINK) $(clamconf_OBJECTS) $(clamconf_LDADD) $(LIBS)
294 294
 
295 295
 mostlyclean-compile:
296 296
 	-rm -f *.$(OBJEXT)
... ...
@@ -304,64 +297,64 @@ distclean-compile:
304 304
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/misc.Po@am__quote@
305 305
 
306 306
 .c.o:
307
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
308
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
307
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
308
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
309 309
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
310 310
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
311 311
 @am__fastdepCC_FALSE@	$(COMPILE) -c $<
312 312
 
313 313
 .c.obj:
314
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
315
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
314
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
315
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
316 316
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
317 317
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
318 318
 @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
319 319
 
320 320
 .c.lo:
321
-@am__fastdepCC_TRUE@	if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
322
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
321
+@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
322
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
323 323
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
324 324
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
325 325
 @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
326 326
 
327 327
 cfgparser.o: $(top_srcdir)/shared/cfgparser.c
328
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.o -MD -MP -MF "$(DEPDIR)/cfgparser.Tpo" -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c; \
329
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cfgparser.Tpo" "$(DEPDIR)/cfgparser.Po"; else rm -f "$(DEPDIR)/cfgparser.Tpo"; exit 1; fi
328
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.o -MD -MP -MF $(DEPDIR)/cfgparser.Tpo -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c
329
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cfgparser.Tpo $(DEPDIR)/cfgparser.Po
330 330
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cfgparser.c' object='cfgparser.o' libtool=no @AMDEPBACKSLASH@
331 331
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
332 332
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c
333 333
 
334 334
 cfgparser.obj: $(top_srcdir)/shared/cfgparser.c
335
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.obj -MD -MP -MF "$(DEPDIR)/cfgparser.Tpo" -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`; \
336
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cfgparser.Tpo" "$(DEPDIR)/cfgparser.Po"; else rm -f "$(DEPDIR)/cfgparser.Tpo"; exit 1; fi
335
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.obj -MD -MP -MF $(DEPDIR)/cfgparser.Tpo -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`
336
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cfgparser.Tpo $(DEPDIR)/cfgparser.Po
337 337
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cfgparser.c' object='cfgparser.obj' libtool=no @AMDEPBACKSLASH@
338 338
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
339 339
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`
340 340
 
341 341
 misc.o: $(top_srcdir)/shared/misc.c
342
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.o -MD -MP -MF "$(DEPDIR)/misc.Tpo" -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c; \
343
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/misc.Tpo" "$(DEPDIR)/misc.Po"; else rm -f "$(DEPDIR)/misc.Tpo"; exit 1; fi
342
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.o -MD -MP -MF $(DEPDIR)/misc.Tpo -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c
343
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/misc.Tpo $(DEPDIR)/misc.Po
344 344
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/misc.c' object='misc.o' libtool=no @AMDEPBACKSLASH@
345 345
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
346 346
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c
347 347
 
348 348
 misc.obj: $(top_srcdir)/shared/misc.c
349
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.obj -MD -MP -MF "$(DEPDIR)/misc.Tpo" -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`; \
350
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/misc.Tpo" "$(DEPDIR)/misc.Po"; else rm -f "$(DEPDIR)/misc.Tpo"; exit 1; fi
349
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.obj -MD -MP -MF $(DEPDIR)/misc.Tpo -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`
350
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/misc.Tpo $(DEPDIR)/misc.Po
351 351
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/misc.c' object='misc.obj' libtool=no @AMDEPBACKSLASH@
352 352
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
353 353
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`
354 354
 
355 355
 getopt.o: $(top_srcdir)/shared/getopt.c
356
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.o -MD -MP -MF "$(DEPDIR)/getopt.Tpo" -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c; \
357
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/getopt.Tpo" "$(DEPDIR)/getopt.Po"; else rm -f "$(DEPDIR)/getopt.Tpo"; exit 1; fi
356
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.o -MD -MP -MF $(DEPDIR)/getopt.Tpo -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c
357
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/getopt.Tpo $(DEPDIR)/getopt.Po
358 358
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/getopt.c' object='getopt.o' libtool=no @AMDEPBACKSLASH@
359 359
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
360 360
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c
361 361
 
362 362
 getopt.obj: $(top_srcdir)/shared/getopt.c
363
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.obj -MD -MP -MF "$(DEPDIR)/getopt.Tpo" -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`; \
364
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/getopt.Tpo" "$(DEPDIR)/getopt.Po"; else rm -f "$(DEPDIR)/getopt.Tpo"; exit 1; fi
363
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.obj -MD -MP -MF $(DEPDIR)/getopt.Tpo -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`
364
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/getopt.Tpo $(DEPDIR)/getopt.Po
365 365
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/getopt.c' object='getopt.obj' libtool=no @AMDEPBACKSLASH@
366 366
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
367 367
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`
... ...
@@ -372,10 +365,6 @@ mostlyclean-libtool:
372 372
 clean-libtool:
373 373
 	-rm -rf .libs _libs
374 374
 
375
-distclean-libtool:
376
-	-rm -f libtool
377
-uninstall-info-am:
378
-
379 375
 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
380 376
 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
381 377
 	unique=`for i in $$list; do \
... ...
@@ -425,22 +414,21 @@ distclean-tags:
425 425
 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
426 426
 
427 427
 distdir: $(DISTFILES)
428
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
429
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
430
-	list='$(DISTFILES)'; for file in $$list; do \
431
-	  case $$file in \
432
-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
433
-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
434
-	  esac; \
428
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
429
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
430
+	list='$(DISTFILES)'; \
431
+	  dist_files=`for file in $$list; do echo $$file; done | \
432
+	  sed -e "s|^$$srcdirstrip/||;t" \
433
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
434
+	case $$dist_files in \
435
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
436
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
437
+			   sort -u` ;; \
438
+	esac; \
439
+	for file in $$dist_files; do \
435 440
 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
436
-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
437
-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
438
-	    dir="/$$dir"; \
439
-	    $(mkdir_p) "$(distdir)$$dir"; \
440
-	  else \
441
-	    dir=''; \
442
-	  fi; \
443 441
 	  if test -d $$d/$$file; then \
442
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
444 443
 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
445 444
 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
446 445
 	    fi; \
... ...
@@ -456,7 +444,7 @@ check: check-am
456 456
 all-am: Makefile $(PROGRAMS)
457 457
 installdirs:
458 458
 	for dir in "$(DESTDIR)$(bindir)"; do \
459
-	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
459
+	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
460 460
 	done
461 461
 install: install-am
462 462
 install-exec: install-exec-am
... ...
@@ -490,7 +478,7 @@ distclean: distclean-am
490 490
 	-rm -rf ./$(DEPDIR)
491 491
 	-rm -f Makefile
492 492
 distclean-am: clean-am distclean-compile distclean-generic \
493
-	distclean-libtool distclean-tags
493
+	distclean-tags
494 494
 
495 495
 dvi: dvi-am
496 496
 
... ...
@@ -504,12 +492,20 @@ info-am:
504 504
 
505 505
 install-data-am:
506 506
 
507
+install-dvi: install-dvi-am
508
+
507 509
 install-exec-am: install-binPROGRAMS
508 510
 
511
+install-html: install-html-am
512
+
509 513
 install-info: install-info-am
510 514
 
511 515
 install-man:
512 516
 
517
+install-pdf: install-pdf-am
518
+
519
+install-ps: install-ps-am
520
+
513 521
 installcheck-am:
514 522
 
515 523
 maintainer-clean: maintainer-clean-am
... ...
@@ -530,19 +526,23 @@ ps: ps-am
530 530
 
531 531
 ps-am:
532 532
 
533
-uninstall-am: uninstall-binPROGRAMS uninstall-info-am
533
+uninstall-am: uninstall-binPROGRAMS
534
+
535
+.MAKE: install-am install-strip
534 536
 
535 537
 .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
536 538
 	clean-generic clean-libtool ctags distclean distclean-compile \
537 539
 	distclean-generic distclean-libtool distclean-tags distdir dvi \
538 540
 	dvi-am html html-am info info-am install install-am \
539
-	install-binPROGRAMS install-data install-data-am install-exec \
540
-	install-exec-am install-info install-info-am install-man \
541
+	install-binPROGRAMS install-data install-data-am install-dvi \
542
+	install-dvi-am install-exec install-exec-am install-html \
543
+	install-html-am install-info install-info-am install-man \
544
+	install-pdf install-pdf-am install-ps install-ps-am \
541 545
 	install-strip installcheck installcheck-am installdirs \
542 546
 	maintainer-clean maintainer-clean-generic mostlyclean \
543 547
 	mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
544 548
 	pdf pdf-am ps ps-am tags uninstall uninstall-am \
545
-	uninstall-binPROGRAMS uninstall-info-am
549
+	uninstall-binPROGRAMS
546 550
 
547 551
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
548 552
 # Otherwise a system limit (for SysV at least) may be exceeded.
... ...
@@ -1,8 +1,8 @@
1
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
1
+# Makefile.in generated by automake 1.10 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
-# 2003, 2004, 2005  Free Software Foundation, Inc.
5
+# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6 6
 # This Makefile.in is free software; the Free Software Foundation
7 7
 # gives unlimited permission to copy and/or distribute it,
8 8
 # with or without modifications, as long as this notice is preserved.
... ...
@@ -32,15 +32,11 @@
32 32
 #  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
33 33
 #  MA 02110-1301, USA.
34 34
 
35
-srcdir = @srcdir@
36
-top_srcdir = @top_srcdir@
37 35
 VPATH = @srcdir@
38 36
 pkgdatadir = $(datadir)/@PACKAGE@
39 37
 pkglibdir = $(libdir)/@PACKAGE@
40 38
 pkgincludedir = $(includedir)/@PACKAGE@
41
-top_builddir = ..
42 39
 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
43
-INSTALL = @INSTALL@
44 40
 install_sh_DATA = $(install_sh) -c -m 644
45 41
 install_sh_PROGRAM = $(install_sh) -c
46 42
 install_sh_SCRIPT = $(install_sh) -c
... ...
@@ -93,33 +89,30 @@ am__clamd_SOURCES_DIST = $(top_srcdir)/shared/output.c \
93 93
 @BUILD_CLAMD_TRUE@	dazukoio.$(OBJEXT)
94 94
 clamd_OBJECTS = $(am_clamd_OBJECTS)
95 95
 clamd_LDADD = $(LDADD)
96
-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
96
+DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
97 97
 depcomp = $(SHELL) $(top_srcdir)/depcomp
98 98
 am__depfiles_maybe = depfiles
99 99
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
100 100
 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
101
-LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
102
-	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
103
-	$(AM_CFLAGS) $(CFLAGS)
101
+LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
102
+	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
103
+	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
104 104
 CCLD = $(CC)
105
-LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
106
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
105
+LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
106
+	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
107
+	$(LDFLAGS) -o $@
107 108
 SOURCES = $(clamd_SOURCES)
108 109
 DIST_SOURCES = $(am__clamd_SOURCES_DIST)
109 110
 ETAGS = etags
110 111
 CTAGS = ctags
111 112
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
112 113
 ACLOCAL = @ACLOCAL@
113
-AMDEP_FALSE = @AMDEP_FALSE@
114
-AMDEP_TRUE = @AMDEP_TRUE@
115 114
 AMTAR = @AMTAR@
116 115
 AR = @AR@
117 116
 AUTOCONF = @AUTOCONF@
118 117
 AUTOHEADER = @AUTOHEADER@
119 118
 AUTOMAKE = @AUTOMAKE@
120 119
 AWK = @AWK@
121
-BUILD_CLAMD_FALSE = @BUILD_CLAMD_FALSE@
122
-BUILD_CLAMD_TRUE = @BUILD_CLAMD_TRUE@
123 120
 CC = @CC@
124 121
 CCDEPMODE = @CCDEPMODE@
125 122
 CFGDIR = @CFGDIR@
... ...
@@ -143,16 +136,13 @@ ECHO_C = @ECHO_C@
143 143
 ECHO_N = @ECHO_N@
144 144
 ECHO_T = @ECHO_T@
145 145
 EGREP = @EGREP@
146
-ENABLE_UNRAR_FALSE = @ENABLE_UNRAR_FALSE@
147
-ENABLE_UNRAR_TRUE = @ENABLE_UNRAR_TRUE@
148 146
 EXEEXT = @EXEEXT@
149 147
 F77 = @F77@
150 148
 FFLAGS = @FFLAGS@
151 149
 FRESHCLAM_LIBS = @FRESHCLAM_LIBS@
152 150
 GETENT = @GETENT@
153 151
 GREP = @GREP@
154
-HAVE_MILTER_FALSE = @HAVE_MILTER_FALSE@
155
-HAVE_MILTER_TRUE = @HAVE_MILTER_TRUE@
152
+INSTALL = @INSTALL@
156 153
 INSTALL_DATA = @INSTALL_DATA@
157 154
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
158 155
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
... ...
@@ -166,9 +156,8 @@ LIBTOOL = @LIBTOOL@
166 166
 LN_S = @LN_S@
167 167
 LTLIBOBJS = @LTLIBOBJS@
168 168
 MAINT = @MAINT@
169
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
170
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
171 169
 MAKEINFO = @MAKEINFO@
170
+MKDIR_P = @MKDIR_P@
172 171
 OBJEXT = @OBJEXT@
173 172
 PACKAGE = @PACKAGE@
174 173
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
... ...
@@ -185,13 +174,13 @@ STRIP = @STRIP@
185 185
 THREAD_LIBS = @THREAD_LIBS@
186 186
 TH_SAFE = @TH_SAFE@
187 187
 VERSION = @VERSION@
188
+abs_builddir = @abs_builddir@
189
+abs_srcdir = @abs_srcdir@
190
+abs_top_builddir = @abs_top_builddir@
191
+abs_top_srcdir = @abs_top_srcdir@
188 192
 ac_ct_CC = @ac_ct_CC@
189 193
 ac_ct_CXX = @ac_ct_CXX@
190 194
 ac_ct_F77 = @ac_ct_F77@
191
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
192
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
193
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
194
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
195 195
 am__include = @am__include@
196 196
 am__leading_dot = @am__leading_dot@
197 197
 am__quote = @am__quote@
... ...
@@ -203,6 +192,7 @@ build_alias = @build_alias@
203 203
 build_cpu = @build_cpu@
204 204
 build_os = @build_os@
205 205
 build_vendor = @build_vendor@
206
+builddir = @builddir@
206 207
 datadir = @datadir@
207 208
 datarootdir = @datarootdir@
208 209
 docdir = @docdir@
... ...
@@ -231,12 +221,15 @@ psdir = @psdir@
231 231
 sbindir = @sbindir@
232 232
 sendmailprog = @sendmailprog@
233 233
 sharedstatedir = @sharedstatedir@
234
+srcdir = @srcdir@
234 235
 sysconfdir = @sysconfdir@
235 236
 target = @target@
236 237
 target_alias = @target_alias@
237 238
 target_cpu = @target_cpu@
238 239
 target_os = @target_os@
239 240
 target_vendor = @target_vendor@
241
+top_builddir = @top_builddir@
242
+top_srcdir = @top_srcdir@
240 243
 @BUILD_CLAMD_TRUE@clamd_SOURCES = \
241 244
 @BUILD_CLAMD_TRUE@    $(top_srcdir)/shared/output.c \
242 245
 @BUILD_CLAMD_TRUE@    $(top_srcdir)/shared/output.h \
... ...
@@ -311,7 +304,7 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
311 311
 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
312 312
 install-sbinPROGRAMS: $(sbin_PROGRAMS)
313 313
 	@$(NORMAL_INSTALL)
314
-	test -z "$(sbindir)" || $(mkdir_p) "$(DESTDIR)$(sbindir)"
314
+	test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
315 315
 	@list='$(sbin_PROGRAMS)'; for p in $$list; do \
316 316
 	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
317 317
 	  if test -f $$p \
... ...
@@ -339,7 +332,7 @@ clean-sbinPROGRAMS:
339 339
 	done
340 340
 clamd$(EXEEXT): $(clamd_OBJECTS) $(clamd_DEPENDENCIES) 
341 341
 	@rm -f clamd$(EXEEXT)
342
-	$(LINK) $(clamd_LDFLAGS) $(clamd_OBJECTS) $(clamd_LDADD) $(LIBS)
342
+	$(LINK) $(clamd_OBJECTS) $(clamd_LDADD) $(LIBS)
343 343
 
344 344
 mostlyclean-compile:
345 345
 	-rm -f *.$(OBJEXT)
... ...
@@ -366,106 +359,106 @@ distclean-compile:
366 366
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/thrmgr.Po@am__quote@
367 367
 
368 368
 .c.o:
369
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
370
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
369
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
370
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
371 371
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
372 372
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
373 373
 @am__fastdepCC_FALSE@	$(COMPILE) -c $<
374 374
 
375 375
 .c.obj:
376
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
377
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
376
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
377
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
378 378
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
379 379
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
380 380
 @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
381 381
 
382 382
 .c.lo:
383
-@am__fastdepCC_TRUE@	if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
384
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
383
+@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
384
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
385 385
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
386 386
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
387 387
 @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
388 388
 
389 389
 output.o: $(top_srcdir)/shared/output.c
390
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.o -MD -MP -MF "$(DEPDIR)/output.Tpo" -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c; \
391
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/output.Tpo" "$(DEPDIR)/output.Po"; else rm -f "$(DEPDIR)/output.Tpo"; exit 1; fi
390
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.o -MD -MP -MF $(DEPDIR)/output.Tpo -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c
391
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/output.Tpo $(DEPDIR)/output.Po
392 392
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/output.c' object='output.o' libtool=no @AMDEPBACKSLASH@
393 393
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
394 394
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c
395 395
 
396 396
 output.obj: $(top_srcdir)/shared/output.c
397
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.obj -MD -MP -MF "$(DEPDIR)/output.Tpo" -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`; \
398
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/output.Tpo" "$(DEPDIR)/output.Po"; else rm -f "$(DEPDIR)/output.Tpo"; exit 1; fi
397
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.obj -MD -MP -MF $(DEPDIR)/output.Tpo -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`
398
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/output.Tpo $(DEPDIR)/output.Po
399 399
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/output.c' object='output.obj' libtool=no @AMDEPBACKSLASH@
400 400
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
401 401
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`
402 402
 
403 403
 cfgparser.o: $(top_srcdir)/shared/cfgparser.c
404
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.o -MD -MP -MF "$(DEPDIR)/cfgparser.Tpo" -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c; \
405
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cfgparser.Tpo" "$(DEPDIR)/cfgparser.Po"; else rm -f "$(DEPDIR)/cfgparser.Tpo"; exit 1; fi
404
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.o -MD -MP -MF $(DEPDIR)/cfgparser.Tpo -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c
405
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cfgparser.Tpo $(DEPDIR)/cfgparser.Po
406 406
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cfgparser.c' object='cfgparser.o' libtool=no @AMDEPBACKSLASH@
407 407
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
408 408
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c
409 409
 
410 410
 cfgparser.obj: $(top_srcdir)/shared/cfgparser.c
411
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.obj -MD -MP -MF "$(DEPDIR)/cfgparser.Tpo" -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`; \
412
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cfgparser.Tpo" "$(DEPDIR)/cfgparser.Po"; else rm -f "$(DEPDIR)/cfgparser.Tpo"; exit 1; fi
411
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.obj -MD -MP -MF $(DEPDIR)/cfgparser.Tpo -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`
412
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cfgparser.Tpo $(DEPDIR)/cfgparser.Po
413 413
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cfgparser.c' object='cfgparser.obj' libtool=no @AMDEPBACKSLASH@
414 414
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
415 415
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`
416 416
 
417 417
 getopt.o: $(top_srcdir)/shared/getopt.c
418
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.o -MD -MP -MF "$(DEPDIR)/getopt.Tpo" -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c; \
419
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/getopt.Tpo" "$(DEPDIR)/getopt.Po"; else rm -f "$(DEPDIR)/getopt.Tpo"; exit 1; fi
418
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.o -MD -MP -MF $(DEPDIR)/getopt.Tpo -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c
419
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/getopt.Tpo $(DEPDIR)/getopt.Po
420 420
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/getopt.c' object='getopt.o' libtool=no @AMDEPBACKSLASH@
421 421
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
422 422
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c
423 423
 
424 424
 getopt.obj: $(top_srcdir)/shared/getopt.c
425
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.obj -MD -MP -MF "$(DEPDIR)/getopt.Tpo" -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`; \
426
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/getopt.Tpo" "$(DEPDIR)/getopt.Po"; else rm -f "$(DEPDIR)/getopt.Tpo"; exit 1; fi
425
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.obj -MD -MP -MF $(DEPDIR)/getopt.Tpo -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`
426
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/getopt.Tpo $(DEPDIR)/getopt.Po
427 427
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/getopt.c' object='getopt.obj' libtool=no @AMDEPBACKSLASH@
428 428
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
429 429
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`
430 430
 
431 431
 misc.o: $(top_srcdir)/shared/misc.c
432
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.o -MD -MP -MF "$(DEPDIR)/misc.Tpo" -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c; \
433
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/misc.Tpo" "$(DEPDIR)/misc.Po"; else rm -f "$(DEPDIR)/misc.Tpo"; exit 1; fi
432
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.o -MD -MP -MF $(DEPDIR)/misc.Tpo -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c
433
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/misc.Tpo $(DEPDIR)/misc.Po
434 434
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/misc.c' object='misc.o' libtool=no @AMDEPBACKSLASH@
435 435
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
436 436
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c
437 437
 
438 438
 misc.obj: $(top_srcdir)/shared/misc.c
439
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.obj -MD -MP -MF "$(DEPDIR)/misc.Tpo" -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`; \
440
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/misc.Tpo" "$(DEPDIR)/misc.Po"; else rm -f "$(DEPDIR)/misc.Tpo"; exit 1; fi
439
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.obj -MD -MP -MF $(DEPDIR)/misc.Tpo -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`
440
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/misc.Tpo $(DEPDIR)/misc.Po
441 441
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/misc.c' object='misc.obj' libtool=no @AMDEPBACKSLASH@
442 442
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
443 443
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`
444 444
 
445 445
 network.o: $(top_srcdir)/shared/network.c
446
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT network.o -MD -MP -MF "$(DEPDIR)/network.Tpo" -c -o network.o `test -f '$(top_srcdir)/shared/network.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/network.c; \
447
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/network.Tpo" "$(DEPDIR)/network.Po"; else rm -f "$(DEPDIR)/network.Tpo"; exit 1; fi
446
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT network.o -MD -MP -MF $(DEPDIR)/network.Tpo -c -o network.o `test -f '$(top_srcdir)/shared/network.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/network.c
447
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/network.Tpo $(DEPDIR)/network.Po
448 448
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/network.c' object='network.o' libtool=no @AMDEPBACKSLASH@
449 449
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
450 450
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o network.o `test -f '$(top_srcdir)/shared/network.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/network.c
451 451
 
452 452
 network.obj: $(top_srcdir)/shared/network.c
453
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT network.obj -MD -MP -MF "$(DEPDIR)/network.Tpo" -c -o network.obj `if test -f '$(top_srcdir)/shared/network.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/network.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/network.c'; fi`; \
454
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/network.Tpo" "$(DEPDIR)/network.Po"; else rm -f "$(DEPDIR)/network.Tpo"; exit 1; fi
453
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT network.obj -MD -MP -MF $(DEPDIR)/network.Tpo -c -o network.obj `if test -f '$(top_srcdir)/shared/network.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/network.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/network.c'; fi`
454
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/network.Tpo $(DEPDIR)/network.Po
455 455
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/network.c' object='network.obj' libtool=no @AMDEPBACKSLASH@
456 456
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
457 457
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o network.obj `if test -f '$(top_srcdir)/shared/network.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/network.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/network.c'; fi`
458 458
 
459 459
 options.o: $(top_srcdir)/shared/options.c
460
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.o -MD -MP -MF "$(DEPDIR)/options.Tpo" -c -o options.o `test -f '$(top_srcdir)/shared/options.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/options.c; \
461
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/options.Tpo" "$(DEPDIR)/options.Po"; else rm -f "$(DEPDIR)/options.Tpo"; exit 1; fi
460
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.o -MD -MP -MF $(DEPDIR)/options.Tpo -c -o options.o `test -f '$(top_srcdir)/shared/options.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/options.c
461
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/options.Tpo $(DEPDIR)/options.Po
462 462
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/options.c' object='options.o' libtool=no @AMDEPBACKSLASH@
463 463
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
464 464
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o options.o `test -f '$(top_srcdir)/shared/options.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/options.c
465 465
 
466 466
 options.obj: $(top_srcdir)/shared/options.c
467
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.obj -MD -MP -MF "$(DEPDIR)/options.Tpo" -c -o options.obj `if test -f '$(top_srcdir)/shared/options.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/options.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/options.c'; fi`; \
468
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/options.Tpo" "$(DEPDIR)/options.Po"; else rm -f "$(DEPDIR)/options.Tpo"; exit 1; fi
467
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.obj -MD -MP -MF $(DEPDIR)/options.Tpo -c -o options.obj `if test -f '$(top_srcdir)/shared/options.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/options.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/options.c'; fi`
468
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/options.Tpo $(DEPDIR)/options.Po
469 469
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/options.c' object='options.obj' libtool=no @AMDEPBACKSLASH@
470 470
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
471 471
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o options.obj `if test -f '$(top_srcdir)/shared/options.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/options.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/options.c'; fi`
... ...
@@ -476,10 +469,6 @@ mostlyclean-libtool:
476 476
 clean-libtool:
477 477
 	-rm -rf .libs _libs
478 478
 
479
-distclean-libtool:
480
-	-rm -f libtool
481
-uninstall-info-am:
482
-
483 479
 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
484 480
 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
485 481
 	unique=`for i in $$list; do \
... ...
@@ -529,22 +518,21 @@ distclean-tags:
529 529
 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
530 530
 
531 531
 distdir: $(DISTFILES)
532
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
533
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
534
-	list='$(DISTFILES)'; for file in $$list; do \
535
-	  case $$file in \
536
-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
537
-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
538
-	  esac; \
532
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
533
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
534
+	list='$(DISTFILES)'; \
535
+	  dist_files=`for file in $$list; do echo $$file; done | \
536
+	  sed -e "s|^$$srcdirstrip/||;t" \
537
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
538
+	case $$dist_files in \
539
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
540
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
541
+			   sort -u` ;; \
542
+	esac; \
543
+	for file in $$dist_files; do \
539 544
 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
540
-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
541
-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
542
-	    dir="/$$dir"; \
543
-	    $(mkdir_p) "$(distdir)$$dir"; \
544
-	  else \
545
-	    dir=''; \
546
-	  fi; \
547 545
 	  if test -d $$d/$$file; then \
546
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
548 547
 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
549 548
 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
550 549
 	    fi; \
... ...
@@ -560,7 +548,7 @@ check: check-am
560 560
 all-am: Makefile $(PROGRAMS)
561 561
 installdirs:
562 562
 	for dir in "$(DESTDIR)$(sbindir)"; do \
563
-	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
563
+	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
564 564
 	done
565 565
 install: install-am
566 566
 install-exec: install-exec-am
... ...
@@ -595,7 +583,7 @@ distclean: distclean-am
595 595
 	-rm -rf ./$(DEPDIR)
596 596
 	-rm -f Makefile
597 597
 distclean-am: clean-am distclean-compile distclean-generic \
598
-	distclean-libtool distclean-tags
598
+	distclean-tags
599 599
 
600 600
 dvi: dvi-am
601 601
 
... ...
@@ -609,12 +597,20 @@ info-am:
609 609
 
610 610
 install-data-am:
611 611
 
612
+install-dvi: install-dvi-am
613
+
612 614
 install-exec-am: install-sbinPROGRAMS
613 615
 
616
+install-html: install-html-am
617
+
614 618
 install-info: install-info-am
615 619
 
616 620
 install-man:
617 621
 
622
+install-pdf: install-pdf-am
623
+
624
+install-ps: install-ps-am
625
+
618 626
 installcheck-am:
619 627
 
620 628
 maintainer-clean: maintainer-clean-am
... ...
@@ -635,20 +631,23 @@ ps: ps-am
635 635
 
636 636
 ps-am:
637 637
 
638
-uninstall-am: uninstall-info-am uninstall-sbinPROGRAMS
638
+uninstall-am: uninstall-sbinPROGRAMS
639
+
640
+.MAKE: install-am install-strip
639 641
 
640 642
 .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
641 643
 	clean-libtool clean-sbinPROGRAMS ctags distclean \
642 644
 	distclean-compile distclean-generic distclean-libtool \
643 645
 	distclean-tags distdir dvi dvi-am html html-am info info-am \
644
-	install install-am install-data install-data-am install-exec \
645
-	install-exec-am install-info install-info-am install-man \
646
+	install install-am install-data install-data-am install-dvi \
647
+	install-dvi-am install-exec install-exec-am install-html \
648
+	install-html-am install-info install-info-am install-man \
649
+	install-pdf install-pdf-am install-ps install-ps-am \
646 650
 	install-sbinPROGRAMS install-strip installcheck \
647 651
 	installcheck-am installdirs maintainer-clean \
648 652
 	maintainer-clean-generic mostlyclean mostlyclean-compile \
649 653
 	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
650
-	tags uninstall uninstall-am uninstall-info-am \
651
-	uninstall-sbinPROGRAMS
654
+	tags uninstall uninstall-am uninstall-sbinPROGRAMS
652 655
 
653 656
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
654 657
 # Otherwise a system limit (for SysV at least) may be exceeded.
... ...
@@ -1,8 +1,8 @@
1
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
1
+# Makefile.in generated by automake 1.10 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
-# 2003, 2004, 2005  Free Software Foundation, Inc.
5
+# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6 6
 # This Makefile.in is free software; the Free Software Foundation
7 7
 # gives unlimited permission to copy and/or distribute it,
8 8
 # with or without modifications, as long as this notice is preserved.
... ...
@@ -32,15 +32,11 @@
32 32
 #  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
33 33
 #  MA 02110-1301, USA.
34 34
 
35
-srcdir = @srcdir@
36
-top_srcdir = @top_srcdir@
37 35
 VPATH = @srcdir@
38 36
 pkgdatadir = $(datadir)/@PACKAGE@
39 37
 pkglibdir = $(libdir)/@PACKAGE@
40 38
 pkgincludedir = $(includedir)/@PACKAGE@
41
-top_builddir = ..
42 39
 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
43
-INSTALL = @INSTALL@
44 40
 install_sh_DATA = $(install_sh) -c -m 644
45 41
 install_sh_PROGRAM = $(install_sh) -c
46 42
 install_sh_SCRIPT = $(install_sh) -c
... ...
@@ -82,33 +78,30 @@ am__clamdscan_SOURCES_DIST = $(top_srcdir)/shared/output.c \
82 82
 @BUILD_CLAMD_TRUE@	clamdscan.$(OBJEXT) client.$(OBJEXT)
83 83
 clamdscan_OBJECTS = $(am_clamdscan_OBJECTS)
84 84
 clamdscan_LDADD = $(LDADD)
85
-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
85
+DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
86 86
 depcomp = $(SHELL) $(top_srcdir)/depcomp
87 87
 am__depfiles_maybe = depfiles
88 88
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
89 89
 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
90
-LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
91
-	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
92
-	$(AM_CFLAGS) $(CFLAGS)
90
+LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
91
+	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
92
+	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
93 93
 CCLD = $(CC)
94
-LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
95
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
94
+LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
95
+	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
96
+	$(LDFLAGS) -o $@
96 97
 SOURCES = $(clamdscan_SOURCES)
97 98
 DIST_SOURCES = $(am__clamdscan_SOURCES_DIST)
98 99
 ETAGS = etags
99 100
 CTAGS = ctags
100 101
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
101 102
 ACLOCAL = @ACLOCAL@
102
-AMDEP_FALSE = @AMDEP_FALSE@
103
-AMDEP_TRUE = @AMDEP_TRUE@
104 103
 AMTAR = @AMTAR@
105 104
 AR = @AR@
106 105
 AUTOCONF = @AUTOCONF@
107 106
 AUTOHEADER = @AUTOHEADER@
108 107
 AUTOMAKE = @AUTOMAKE@
109 108
 AWK = @AWK@
110
-BUILD_CLAMD_FALSE = @BUILD_CLAMD_FALSE@
111
-BUILD_CLAMD_TRUE = @BUILD_CLAMD_TRUE@
112 109
 CC = @CC@
113 110
 CCDEPMODE = @CCDEPMODE@
114 111
 CFGDIR = @CFGDIR@
... ...
@@ -132,16 +125,13 @@ ECHO_C = @ECHO_C@
132 132
 ECHO_N = @ECHO_N@
133 133
 ECHO_T = @ECHO_T@
134 134
 EGREP = @EGREP@
135
-ENABLE_UNRAR_FALSE = @ENABLE_UNRAR_FALSE@
136
-ENABLE_UNRAR_TRUE = @ENABLE_UNRAR_TRUE@
137 135
 EXEEXT = @EXEEXT@
138 136
 F77 = @F77@
139 137
 FFLAGS = @FFLAGS@
140 138
 FRESHCLAM_LIBS = @FRESHCLAM_LIBS@
141 139
 GETENT = @GETENT@
142 140
 GREP = @GREP@
143
-HAVE_MILTER_FALSE = @HAVE_MILTER_FALSE@
144
-HAVE_MILTER_TRUE = @HAVE_MILTER_TRUE@
141
+INSTALL = @INSTALL@
145 142
 INSTALL_DATA = @INSTALL_DATA@
146 143
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
147 144
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
... ...
@@ -155,9 +145,8 @@ LIBTOOL = @LIBTOOL@
155 155
 LN_S = @LN_S@
156 156
 LTLIBOBJS = @LTLIBOBJS@
157 157
 MAINT = @MAINT@
158
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
159
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
160 158
 MAKEINFO = @MAKEINFO@
159
+MKDIR_P = @MKDIR_P@
161 160
 OBJEXT = @OBJEXT@
162 161
 PACKAGE = @PACKAGE@
163 162
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
... ...
@@ -174,13 +163,13 @@ STRIP = @STRIP@
174 174
 THREAD_LIBS = @THREAD_LIBS@
175 175
 TH_SAFE = @TH_SAFE@
176 176
 VERSION = @VERSION@
177
+abs_builddir = @abs_builddir@
178
+abs_srcdir = @abs_srcdir@
179
+abs_top_builddir = @abs_top_builddir@
180
+abs_top_srcdir = @abs_top_srcdir@
177 181
 ac_ct_CC = @ac_ct_CC@
178 182
 ac_ct_CXX = @ac_ct_CXX@
179 183
 ac_ct_F77 = @ac_ct_F77@
180
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
181
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
182
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
183
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
184 184
 am__include = @am__include@
185 185
 am__leading_dot = @am__leading_dot@
186 186
 am__quote = @am__quote@
... ...
@@ -192,6 +181,7 @@ build_alias = @build_alias@
192 192
 build_cpu = @build_cpu@
193 193
 build_os = @build_os@
194 194
 build_vendor = @build_vendor@
195
+builddir = @builddir@
195 196
 datadir = @datadir@
196 197
 datarootdir = @datarootdir@
197 198
 docdir = @docdir@
... ...
@@ -220,12 +210,15 @@ psdir = @psdir@
220 220
 sbindir = @sbindir@
221 221
 sendmailprog = @sendmailprog@
222 222
 sharedstatedir = @sharedstatedir@
223
+srcdir = @srcdir@
223 224
 sysconfdir = @sysconfdir@
224 225
 target = @target@
225 226
 target_alias = @target_alias@
226 227
 target_cpu = @target_cpu@
227 228
 target_os = @target_os@
228 229
 target_vendor = @target_vendor@
230
+top_builddir = @top_builddir@
231
+top_srcdir = @top_srcdir@
229 232
 @BUILD_CLAMD_TRUE@clamdscan_SOURCES = \
230 233
 @BUILD_CLAMD_TRUE@    $(top_srcdir)/shared/output.c \
231 234
 @BUILD_CLAMD_TRUE@    $(top_srcdir)/shared/output.h \
... ...
@@ -278,7 +271,7 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
278 278
 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
279 279
 install-binPROGRAMS: $(bin_PROGRAMS)
280 280
 	@$(NORMAL_INSTALL)
281
-	test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
281
+	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
282 282
 	@list='$(bin_PROGRAMS)'; for p in $$list; do \
283 283
 	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
284 284
 	  if test -f $$p \
... ...
@@ -306,7 +299,7 @@ clean-binPROGRAMS:
306 306
 	done
307 307
 clamdscan$(EXEEXT): $(clamdscan_OBJECTS) $(clamdscan_DEPENDENCIES) 
308 308
 	@rm -f clamdscan$(EXEEXT)
309
-	$(LINK) $(clamdscan_LDFLAGS) $(clamdscan_OBJECTS) $(clamdscan_LDADD) $(LIBS)
309
+	$(LINK) $(clamdscan_OBJECTS) $(clamdscan_LDADD) $(LIBS)
310 310
 
311 311
 mostlyclean-compile:
312 312
 	-rm -f *.$(OBJEXT)
... ...
@@ -323,92 +316,92 @@ distclean-compile:
323 323
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output.Po@am__quote@
324 324
 
325 325
 .c.o:
326
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
327
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
326
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
327
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
328 328
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
329 329
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
330 330
 @am__fastdepCC_FALSE@	$(COMPILE) -c $<
331 331
 
332 332
 .c.obj:
333
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
334
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
333
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
334
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
335 335
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
336 336
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
337 337
 @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
338 338
 
339 339
 .c.lo:
340
-@am__fastdepCC_TRUE@	if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
341
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
340
+@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
341
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
342 342
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
343 343
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
344 344
 @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
345 345
 
346 346
 output.o: $(top_srcdir)/shared/output.c
347
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.o -MD -MP -MF "$(DEPDIR)/output.Tpo" -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c; \
348
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/output.Tpo" "$(DEPDIR)/output.Po"; else rm -f "$(DEPDIR)/output.Tpo"; exit 1; fi
347
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.o -MD -MP -MF $(DEPDIR)/output.Tpo -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c
348
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/output.Tpo $(DEPDIR)/output.Po
349 349
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/output.c' object='output.o' libtool=no @AMDEPBACKSLASH@
350 350
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
351 351
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c
352 352
 
353 353
 output.obj: $(top_srcdir)/shared/output.c
354
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.obj -MD -MP -MF "$(DEPDIR)/output.Tpo" -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`; \
355
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/output.Tpo" "$(DEPDIR)/output.Po"; else rm -f "$(DEPDIR)/output.Tpo"; exit 1; fi
354
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.obj -MD -MP -MF $(DEPDIR)/output.Tpo -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`
355
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/output.Tpo $(DEPDIR)/output.Po
356 356
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/output.c' object='output.obj' libtool=no @AMDEPBACKSLASH@
357 357
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
358 358
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`
359 359
 
360 360
 cfgparser.o: $(top_srcdir)/shared/cfgparser.c
361
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.o -MD -MP -MF "$(DEPDIR)/cfgparser.Tpo" -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c; \
362
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cfgparser.Tpo" "$(DEPDIR)/cfgparser.Po"; else rm -f "$(DEPDIR)/cfgparser.Tpo"; exit 1; fi
361
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.o -MD -MP -MF $(DEPDIR)/cfgparser.Tpo -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c
362
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cfgparser.Tpo $(DEPDIR)/cfgparser.Po
363 363
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cfgparser.c' object='cfgparser.o' libtool=no @AMDEPBACKSLASH@
364 364
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
365 365
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c
366 366
 
367 367
 cfgparser.obj: $(top_srcdir)/shared/cfgparser.c
368
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.obj -MD -MP -MF "$(DEPDIR)/cfgparser.Tpo" -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`; \
369
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cfgparser.Tpo" "$(DEPDIR)/cfgparser.Po"; else rm -f "$(DEPDIR)/cfgparser.Tpo"; exit 1; fi
368
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.obj -MD -MP -MF $(DEPDIR)/cfgparser.Tpo -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`
369
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cfgparser.Tpo $(DEPDIR)/cfgparser.Po
370 370
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cfgparser.c' object='cfgparser.obj' libtool=no @AMDEPBACKSLASH@
371 371
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
372 372
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`
373 373
 
374 374
 misc.o: $(top_srcdir)/shared/misc.c
375
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.o -MD -MP -MF "$(DEPDIR)/misc.Tpo" -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c; \
376
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/misc.Tpo" "$(DEPDIR)/misc.Po"; else rm -f "$(DEPDIR)/misc.Tpo"; exit 1; fi
375
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.o -MD -MP -MF $(DEPDIR)/misc.Tpo -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c
376
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/misc.Tpo $(DEPDIR)/misc.Po
377 377
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/misc.c' object='misc.o' libtool=no @AMDEPBACKSLASH@
378 378
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
379 379
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c
380 380
 
381 381
 misc.obj: $(top_srcdir)/shared/misc.c
382
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.obj -MD -MP -MF "$(DEPDIR)/misc.Tpo" -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`; \
383
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/misc.Tpo" "$(DEPDIR)/misc.Po"; else rm -f "$(DEPDIR)/misc.Tpo"; exit 1; fi
382
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.obj -MD -MP -MF $(DEPDIR)/misc.Tpo -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`
383
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/misc.Tpo $(DEPDIR)/misc.Po
384 384
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/misc.c' object='misc.obj' libtool=no @AMDEPBACKSLASH@
385 385
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
386 386
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`
387 387
 
388 388
 getopt.o: $(top_srcdir)/shared/getopt.c
389
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.o -MD -MP -MF "$(DEPDIR)/getopt.Tpo" -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c; \
390
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/getopt.Tpo" "$(DEPDIR)/getopt.Po"; else rm -f "$(DEPDIR)/getopt.Tpo"; exit 1; fi
389
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.o -MD -MP -MF $(DEPDIR)/getopt.Tpo -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c
390
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/getopt.Tpo $(DEPDIR)/getopt.Po
391 391
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/getopt.c' object='getopt.o' libtool=no @AMDEPBACKSLASH@
392 392
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
393 393
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c
394 394
 
395 395
 getopt.obj: $(top_srcdir)/shared/getopt.c
396
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.obj -MD -MP -MF "$(DEPDIR)/getopt.Tpo" -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`; \
397
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/getopt.Tpo" "$(DEPDIR)/getopt.Po"; else rm -f "$(DEPDIR)/getopt.Tpo"; exit 1; fi
396
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.obj -MD -MP -MF $(DEPDIR)/getopt.Tpo -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`
397
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/getopt.Tpo $(DEPDIR)/getopt.Po
398 398
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/getopt.c' object='getopt.obj' libtool=no @AMDEPBACKSLASH@
399 399
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
400 400
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`
401 401
 
402 402
 options.o: $(top_srcdir)/shared/options.c
403
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.o -MD -MP -MF "$(DEPDIR)/options.Tpo" -c -o options.o `test -f '$(top_srcdir)/shared/options.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/options.c; \
404
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/options.Tpo" "$(DEPDIR)/options.Po"; else rm -f "$(DEPDIR)/options.Tpo"; exit 1; fi
403
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.o -MD -MP -MF $(DEPDIR)/options.Tpo -c -o options.o `test -f '$(top_srcdir)/shared/options.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/options.c
404
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/options.Tpo $(DEPDIR)/options.Po
405 405
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/options.c' object='options.o' libtool=no @AMDEPBACKSLASH@
406 406
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
407 407
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o options.o `test -f '$(top_srcdir)/shared/options.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/options.c
408 408
 
409 409
 options.obj: $(top_srcdir)/shared/options.c
410
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.obj -MD -MP -MF "$(DEPDIR)/options.Tpo" -c -o options.obj `if test -f '$(top_srcdir)/shared/options.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/options.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/options.c'; fi`; \
411
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/options.Tpo" "$(DEPDIR)/options.Po"; else rm -f "$(DEPDIR)/options.Tpo"; exit 1; fi
410
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.obj -MD -MP -MF $(DEPDIR)/options.Tpo -c -o options.obj `if test -f '$(top_srcdir)/shared/options.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/options.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/options.c'; fi`
411
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/options.Tpo $(DEPDIR)/options.Po
412 412
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/options.c' object='options.obj' libtool=no @AMDEPBACKSLASH@
413 413
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
414 414
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o options.obj `if test -f '$(top_srcdir)/shared/options.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/options.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/options.c'; fi`
... ...
@@ -419,10 +412,6 @@ mostlyclean-libtool:
419 419
 clean-libtool:
420 420
 	-rm -rf .libs _libs
421 421
 
422
-distclean-libtool:
423
-	-rm -f libtool
424
-uninstall-info-am:
425
-
426 422
 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
427 423
 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
428 424
 	unique=`for i in $$list; do \
... ...
@@ -472,22 +461,21 @@ distclean-tags:
472 472
 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
473 473
 
474 474
 distdir: $(DISTFILES)
475
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
476
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
477
-	list='$(DISTFILES)'; for file in $$list; do \
478
-	  case $$file in \
479
-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
480
-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
481
-	  esac; \
475
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
476
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
477
+	list='$(DISTFILES)'; \
478
+	  dist_files=`for file in $$list; do echo $$file; done | \
479
+	  sed -e "s|^$$srcdirstrip/||;t" \
480
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
481
+	case $$dist_files in \
482
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
483
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
484
+			   sort -u` ;; \
485
+	esac; \
486
+	for file in $$dist_files; do \
482 487
 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
483
-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
484
-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
485
-	    dir="/$$dir"; \
486
-	    $(mkdir_p) "$(distdir)$$dir"; \
487
-	  else \
488
-	    dir=''; \
489
-	  fi; \
490 488
 	  if test -d $$d/$$file; then \
489
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
491 490
 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
492 491
 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
493 492
 	    fi; \
... ...
@@ -503,7 +491,7 @@ check: check-am
503 503
 all-am: Makefile $(PROGRAMS)
504 504
 installdirs:
505 505
 	for dir in "$(DESTDIR)$(bindir)"; do \
506
-	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
506
+	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
507 507
 	done
508 508
 install: install-am
509 509
 install-exec: install-exec-am
... ...
@@ -537,7 +525,7 @@ distclean: distclean-am
537 537
 	-rm -rf ./$(DEPDIR)
538 538
 	-rm -f Makefile
539 539
 distclean-am: clean-am distclean-compile distclean-generic \
540
-	distclean-libtool distclean-tags
540
+	distclean-tags
541 541
 
542 542
 dvi: dvi-am
543 543
 
... ...
@@ -551,12 +539,20 @@ info-am:
551 551
 
552 552
 install-data-am:
553 553
 
554
+install-dvi: install-dvi-am
555
+
554 556
 install-exec-am: install-binPROGRAMS
555 557
 
558
+install-html: install-html-am
559
+
556 560
 install-info: install-info-am
557 561
 
558 562
 install-man:
559 563
 
564
+install-pdf: install-pdf-am
565
+
566
+install-ps: install-ps-am
567
+
560 568
 installcheck-am:
561 569
 
562 570
 maintainer-clean: maintainer-clean-am
... ...
@@ -577,19 +573,23 @@ ps: ps-am
577 577
 
578 578
 ps-am:
579 579
 
580
-uninstall-am: uninstall-binPROGRAMS uninstall-info-am
580
+uninstall-am: uninstall-binPROGRAMS
581
+
582
+.MAKE: install-am install-strip
581 583
 
582 584
 .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
583 585
 	clean-generic clean-libtool ctags distclean distclean-compile \
584 586
 	distclean-generic distclean-libtool distclean-tags distdir dvi \
585 587
 	dvi-am html html-am info info-am install install-am \
586
-	install-binPROGRAMS install-data install-data-am install-exec \
587
-	install-exec-am install-info install-info-am install-man \
588
+	install-binPROGRAMS install-data install-data-am install-dvi \
589
+	install-dvi-am install-exec install-exec-am install-html \
590
+	install-html-am install-info install-info-am install-man \
591
+	install-pdf install-pdf-am install-ps install-ps-am \
588 592
 	install-strip installcheck installcheck-am installdirs \
589 593
 	maintainer-clean maintainer-clean-generic mostlyclean \
590 594
 	mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
591 595
 	pdf pdf-am ps ps-am tags uninstall uninstall-am \
592
-	uninstall-binPROGRAMS uninstall-info-am
596
+	uninstall-binPROGRAMS
593 597
 
594 598
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
595 599
 # Otherwise a system limit (for SysV at least) may be exceeded.
... ...
@@ -1,8 +1,8 @@
1
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
1
+# Makefile.in generated by automake 1.10 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
-# 2003, 2004, 2005  Free Software Foundation, Inc.
5
+# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6 6
 # This Makefile.in is free software; the Free Software Foundation
7 7
 # gives unlimited permission to copy and/or distribute it,
8 8
 # with or without modifications, as long as this notice is preserved.
... ...
@@ -33,15 +33,11 @@
33 33
 #  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
34 34
 #  MA 02110-1301, USA.
35 35
 
36
-srcdir = @srcdir@
37
-top_srcdir = @top_srcdir@
38 36
 VPATH = @srcdir@
39 37
 pkgdatadir = $(datadir)/@PACKAGE@
40 38
 pkglibdir = $(libdir)/@PACKAGE@
41 39
 pkgincludedir = $(includedir)/@PACKAGE@
42
-top_builddir = ..
43 40
 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
44
-INSTALL = @INSTALL@
45 41
 install_sh_DATA = $(install_sh) -c -m 644
46 42
 install_sh_PROGRAM = $(install_sh) -c
47 43
 install_sh_SCRIPT = $(install_sh) -c
... ...
@@ -76,33 +72,30 @@ am_clamscan_OBJECTS = output.$(OBJEXT) getopt.$(OBJEXT) \
76 76
 	treewalk.$(OBJEXT)
77 77
 clamscan_OBJECTS = $(am_clamscan_OBJECTS)
78 78
 clamscan_LDADD = $(LDADD)
79
-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
79
+DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
80 80
 depcomp = $(SHELL) $(top_srcdir)/depcomp
81 81
 am__depfiles_maybe = depfiles
82 82
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
83 83
 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
84
-LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
85
-	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
86
-	$(AM_CFLAGS) $(CFLAGS)
84
+LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
85
+	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
86
+	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
87 87
 CCLD = $(CC)
88
-LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
89
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
88
+LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
89
+	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
90
+	$(LDFLAGS) -o $@
90 91
 SOURCES = $(clamscan_SOURCES)
91 92
 DIST_SOURCES = $(clamscan_SOURCES)
92 93
 ETAGS = etags
93 94
 CTAGS = ctags
94 95
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
95 96
 ACLOCAL = @ACLOCAL@
96
-AMDEP_FALSE = @AMDEP_FALSE@
97
-AMDEP_TRUE = @AMDEP_TRUE@
98 97
 AMTAR = @AMTAR@
99 98
 AR = @AR@
100 99
 AUTOCONF = @AUTOCONF@
101 100
 AUTOHEADER = @AUTOHEADER@
102 101
 AUTOMAKE = @AUTOMAKE@
103 102
 AWK = @AWK@
104
-BUILD_CLAMD_FALSE = @BUILD_CLAMD_FALSE@
105
-BUILD_CLAMD_TRUE = @BUILD_CLAMD_TRUE@
106 103
 CC = @CC@
107 104
 CCDEPMODE = @CCDEPMODE@
108 105
 CFGDIR = @CFGDIR@
... ...
@@ -126,16 +119,13 @@ ECHO_C = @ECHO_C@
126 126
 ECHO_N = @ECHO_N@
127 127
 ECHO_T = @ECHO_T@
128 128
 EGREP = @EGREP@
129
-ENABLE_UNRAR_FALSE = @ENABLE_UNRAR_FALSE@
130
-ENABLE_UNRAR_TRUE = @ENABLE_UNRAR_TRUE@
131 129
 EXEEXT = @EXEEXT@
132 130
 F77 = @F77@
133 131
 FFLAGS = @FFLAGS@
134 132
 FRESHCLAM_LIBS = @FRESHCLAM_LIBS@
135 133
 GETENT = @GETENT@
136 134
 GREP = @GREP@
137
-HAVE_MILTER_FALSE = @HAVE_MILTER_FALSE@
138
-HAVE_MILTER_TRUE = @HAVE_MILTER_TRUE@
135
+INSTALL = @INSTALL@
139 136
 INSTALL_DATA = @INSTALL_DATA@
140 137
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
141 138
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
... ...
@@ -149,9 +139,8 @@ LIBTOOL = @LIBTOOL@
149 149
 LN_S = @LN_S@
150 150
 LTLIBOBJS = @LTLIBOBJS@
151 151
 MAINT = @MAINT@
152
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
153
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
154 152
 MAKEINFO = @MAKEINFO@
153
+MKDIR_P = @MKDIR_P@
155 154
 OBJEXT = @OBJEXT@
156 155
 PACKAGE = @PACKAGE@
157 156
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
... ...
@@ -168,13 +157,13 @@ STRIP = @STRIP@
168 168
 THREAD_LIBS = @THREAD_LIBS@
169 169
 TH_SAFE = @TH_SAFE@
170 170
 VERSION = @VERSION@
171
+abs_builddir = @abs_builddir@
172
+abs_srcdir = @abs_srcdir@
173
+abs_top_builddir = @abs_top_builddir@
174
+abs_top_srcdir = @abs_top_srcdir@
171 175
 ac_ct_CC = @ac_ct_CC@
172 176
 ac_ct_CXX = @ac_ct_CXX@
173 177
 ac_ct_F77 = @ac_ct_F77@
174
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
175
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
176
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
177
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
178 178
 am__include = @am__include@
179 179
 am__leading_dot = @am__leading_dot@
180 180
 am__quote = @am__quote@
... ...
@@ -186,6 +175,7 @@ build_alias = @build_alias@
186 186
 build_cpu = @build_cpu@
187 187
 build_os = @build_os@
188 188
 build_vendor = @build_vendor@
189
+builddir = @builddir@
189 190
 datadir = @datadir@
190 191
 datarootdir = @datarootdir@
191 192
 docdir = @docdir@
... ...
@@ -214,12 +204,15 @@ psdir = @psdir@
214 214
 sbindir = @sbindir@
215 215
 sendmailprog = @sendmailprog@
216 216
 sharedstatedir = @sharedstatedir@
217
+srcdir = @srcdir@
217 218
 sysconfdir = @sysconfdir@
218 219
 target = @target@
219 220
 target_alias = @target_alias@
220 221
 target_cpu = @target_cpu@
221 222
 target_os = @target_os@
222 223
 target_vendor = @target_vendor@
224
+top_builddir = @top_builddir@
225
+top_srcdir = @top_srcdir@
223 226
 clamscan_SOURCES = \
224 227
     $(top_srcdir)/shared/output.c \
225 228
     $(top_srcdir)/shared/output.h \
... ...
@@ -277,7 +270,7 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
277 277
 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
278 278
 install-binPROGRAMS: $(bin_PROGRAMS)
279 279
 	@$(NORMAL_INSTALL)
280
-	test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
280
+	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
281 281
 	@list='$(bin_PROGRAMS)'; for p in $$list; do \
282 282
 	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
283 283
 	  if test -f $$p \
... ...
@@ -305,7 +298,7 @@ clean-binPROGRAMS:
305 305
 	done
306 306
 clamscan$(EXEEXT): $(clamscan_OBJECTS) $(clamscan_DEPENDENCIES) 
307 307
 	@rm -f clamscan$(EXEEXT)
308
-	$(LINK) $(clamscan_LDFLAGS) $(clamscan_OBJECTS) $(clamscan_LDADD) $(LIBS)
308
+	$(LINK) $(clamscan_OBJECTS) $(clamscan_LDADD) $(LIBS)
309 309
 
310 310
 mostlyclean-compile:
311 311
 	-rm -f *.$(OBJEXT)
... ...
@@ -324,92 +317,92 @@ distclean-compile:
324 324
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/treewalk.Po@am__quote@
325 325
 
326 326
 .c.o:
327
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
328
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
327
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
328
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
329 329
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
330 330
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
331 331
 @am__fastdepCC_FALSE@	$(COMPILE) -c $<
332 332
 
333 333
 .c.obj:
334
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
335
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
334
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
335
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
336 336
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
337 337
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
338 338
 @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
339 339
 
340 340
 .c.lo:
341
-@am__fastdepCC_TRUE@	if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
342
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
341
+@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
342
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
343 343
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
344 344
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
345 345
 @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
346 346
 
347 347
 output.o: $(top_srcdir)/shared/output.c
348
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.o -MD -MP -MF "$(DEPDIR)/output.Tpo" -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c; \
349
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/output.Tpo" "$(DEPDIR)/output.Po"; else rm -f "$(DEPDIR)/output.Tpo"; exit 1; fi
348
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.o -MD -MP -MF $(DEPDIR)/output.Tpo -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c
349
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/output.Tpo $(DEPDIR)/output.Po
350 350
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/output.c' object='output.o' libtool=no @AMDEPBACKSLASH@
351 351
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
352 352
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c
353 353
 
354 354
 output.obj: $(top_srcdir)/shared/output.c
355
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.obj -MD -MP -MF "$(DEPDIR)/output.Tpo" -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`; \
356
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/output.Tpo" "$(DEPDIR)/output.Po"; else rm -f "$(DEPDIR)/output.Tpo"; exit 1; fi
355
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.obj -MD -MP -MF $(DEPDIR)/output.Tpo -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`
356
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/output.Tpo $(DEPDIR)/output.Po
357 357
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/output.c' object='output.obj' libtool=no @AMDEPBACKSLASH@
358 358
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
359 359
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`
360 360
 
361 361
 getopt.o: $(top_srcdir)/shared/getopt.c
362
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.o -MD -MP -MF "$(DEPDIR)/getopt.Tpo" -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c; \
363
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/getopt.Tpo" "$(DEPDIR)/getopt.Po"; else rm -f "$(DEPDIR)/getopt.Tpo"; exit 1; fi
362
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.o -MD -MP -MF $(DEPDIR)/getopt.Tpo -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c
363
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/getopt.Tpo $(DEPDIR)/getopt.Po
364 364
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/getopt.c' object='getopt.o' libtool=no @AMDEPBACKSLASH@
365 365
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
366 366
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c
367 367
 
368 368
 getopt.obj: $(top_srcdir)/shared/getopt.c
369
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.obj -MD -MP -MF "$(DEPDIR)/getopt.Tpo" -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`; \
370
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/getopt.Tpo" "$(DEPDIR)/getopt.Po"; else rm -f "$(DEPDIR)/getopt.Tpo"; exit 1; fi
369
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.obj -MD -MP -MF $(DEPDIR)/getopt.Tpo -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`
370
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/getopt.Tpo $(DEPDIR)/getopt.Po
371 371
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/getopt.c' object='getopt.obj' libtool=no @AMDEPBACKSLASH@
372 372
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
373 373
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`
374 374
 
375 375
 cfgparser.o: $(top_srcdir)/shared/cfgparser.c
376
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.o -MD -MP -MF "$(DEPDIR)/cfgparser.Tpo" -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c; \
377
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cfgparser.Tpo" "$(DEPDIR)/cfgparser.Po"; else rm -f "$(DEPDIR)/cfgparser.Tpo"; exit 1; fi
376
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.o -MD -MP -MF $(DEPDIR)/cfgparser.Tpo -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c
377
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cfgparser.Tpo $(DEPDIR)/cfgparser.Po
378 378
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cfgparser.c' object='cfgparser.o' libtool=no @AMDEPBACKSLASH@
379 379
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
380 380
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c
381 381
 
382 382
 cfgparser.obj: $(top_srcdir)/shared/cfgparser.c
383
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.obj -MD -MP -MF "$(DEPDIR)/cfgparser.Tpo" -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`; \
384
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cfgparser.Tpo" "$(DEPDIR)/cfgparser.Po"; else rm -f "$(DEPDIR)/cfgparser.Tpo"; exit 1; fi
383
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.obj -MD -MP -MF $(DEPDIR)/cfgparser.Tpo -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`
384
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cfgparser.Tpo $(DEPDIR)/cfgparser.Po
385 385
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cfgparser.c' object='cfgparser.obj' libtool=no @AMDEPBACKSLASH@
386 386
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
387 387
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`
388 388
 
389 389
 misc.o: $(top_srcdir)/shared/misc.c
390
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.o -MD -MP -MF "$(DEPDIR)/misc.Tpo" -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c; \
391
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/misc.Tpo" "$(DEPDIR)/misc.Po"; else rm -f "$(DEPDIR)/misc.Tpo"; exit 1; fi
390
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.o -MD -MP -MF $(DEPDIR)/misc.Tpo -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c
391
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/misc.Tpo $(DEPDIR)/misc.Po
392 392
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/misc.c' object='misc.o' libtool=no @AMDEPBACKSLASH@
393 393
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
394 394
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c
395 395
 
396 396
 misc.obj: $(top_srcdir)/shared/misc.c
397
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.obj -MD -MP -MF "$(DEPDIR)/misc.Tpo" -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`; \
398
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/misc.Tpo" "$(DEPDIR)/misc.Po"; else rm -f "$(DEPDIR)/misc.Tpo"; exit 1; fi
397
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.obj -MD -MP -MF $(DEPDIR)/misc.Tpo -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`
398
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/misc.Tpo $(DEPDIR)/misc.Po
399 399
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/misc.c' object='misc.obj' libtool=no @AMDEPBACKSLASH@
400 400
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
401 401
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`
402 402
 
403 403
 options.o: $(top_srcdir)/shared/options.c
404
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.o -MD -MP -MF "$(DEPDIR)/options.Tpo" -c -o options.o `test -f '$(top_srcdir)/shared/options.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/options.c; \
405
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/options.Tpo" "$(DEPDIR)/options.Po"; else rm -f "$(DEPDIR)/options.Tpo"; exit 1; fi
404
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.o -MD -MP -MF $(DEPDIR)/options.Tpo -c -o options.o `test -f '$(top_srcdir)/shared/options.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/options.c
405
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/options.Tpo $(DEPDIR)/options.Po
406 406
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/options.c' object='options.o' libtool=no @AMDEPBACKSLASH@
407 407
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
408 408
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o options.o `test -f '$(top_srcdir)/shared/options.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/options.c
409 409
 
410 410
 options.obj: $(top_srcdir)/shared/options.c
411
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.obj -MD -MP -MF "$(DEPDIR)/options.Tpo" -c -o options.obj `if test -f '$(top_srcdir)/shared/options.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/options.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/options.c'; fi`; \
412
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/options.Tpo" "$(DEPDIR)/options.Po"; else rm -f "$(DEPDIR)/options.Tpo"; exit 1; fi
411
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.obj -MD -MP -MF $(DEPDIR)/options.Tpo -c -o options.obj `if test -f '$(top_srcdir)/shared/options.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/options.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/options.c'; fi`
412
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/options.Tpo $(DEPDIR)/options.Po
413 413
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/options.c' object='options.obj' libtool=no @AMDEPBACKSLASH@
414 414
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
415 415
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o options.obj `if test -f '$(top_srcdir)/shared/options.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/options.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/options.c'; fi`
... ...
@@ -420,10 +413,6 @@ mostlyclean-libtool:
420 420
 clean-libtool:
421 421
 	-rm -rf .libs _libs
422 422
 
423
-distclean-libtool:
424
-	-rm -f libtool
425
-uninstall-info-am:
426
-
427 423
 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
428 424
 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
429 425
 	unique=`for i in $$list; do \
... ...
@@ -473,22 +462,21 @@ distclean-tags:
473 473
 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
474 474
 
475 475
 distdir: $(DISTFILES)
476
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
477
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
478
-	list='$(DISTFILES)'; for file in $$list; do \
479
-	  case $$file in \
480
-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
481
-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
482
-	  esac; \
476
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
477
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
478
+	list='$(DISTFILES)'; \
479
+	  dist_files=`for file in $$list; do echo $$file; done | \
480
+	  sed -e "s|^$$srcdirstrip/||;t" \
481
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
482
+	case $$dist_files in \
483
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
484
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
485
+			   sort -u` ;; \
486
+	esac; \
487
+	for file in $$dist_files; do \
483 488
 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
484
-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
485
-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
486
-	    dir="/$$dir"; \
487
-	    $(mkdir_p) "$(distdir)$$dir"; \
488
-	  else \
489
-	    dir=''; \
490
-	  fi; \
491 489
 	  if test -d $$d/$$file; then \
490
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
492 491
 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
493 492
 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
494 493
 	    fi; \
... ...
@@ -504,7 +492,7 @@ check: check-am
504 504
 all-am: Makefile $(PROGRAMS)
505 505
 installdirs:
506 506
 	for dir in "$(DESTDIR)$(bindir)"; do \
507
-	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
507
+	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
508 508
 	done
509 509
 install: install-am
510 510
 install-exec: install-exec-am
... ...
@@ -538,7 +526,7 @@ distclean: distclean-am
538 538
 	-rm -rf ./$(DEPDIR)
539 539
 	-rm -f Makefile
540 540
 distclean-am: clean-am distclean-compile distclean-generic \
541
-	distclean-libtool distclean-tags
541
+	distclean-tags
542 542
 
543 543
 dvi: dvi-am
544 544
 
... ...
@@ -552,12 +540,20 @@ info-am:
552 552
 
553 553
 install-data-am:
554 554
 
555
+install-dvi: install-dvi-am
556
+
555 557
 install-exec-am: install-binPROGRAMS
556 558
 
559
+install-html: install-html-am
560
+
557 561
 install-info: install-info-am
558 562
 
559 563
 install-man:
560 564
 
565
+install-pdf: install-pdf-am
566
+
567
+install-ps: install-ps-am
568
+
561 569
 installcheck-am:
562 570
 
563 571
 maintainer-clean: maintainer-clean-am
... ...
@@ -578,19 +574,23 @@ ps: ps-am
578 578
 
579 579
 ps-am:
580 580
 
581
-uninstall-am: uninstall-binPROGRAMS uninstall-info-am
581
+uninstall-am: uninstall-binPROGRAMS
582
+
583
+.MAKE: install-am install-strip
582 584
 
583 585
 .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
584 586
 	clean-generic clean-libtool ctags distclean distclean-compile \
585 587
 	distclean-generic distclean-libtool distclean-tags distdir dvi \
586 588
 	dvi-am html html-am info info-am install install-am \
587
-	install-binPROGRAMS install-data install-data-am install-exec \
588
-	install-exec-am install-info install-info-am install-man \
589
+	install-binPROGRAMS install-data install-data-am install-dvi \
590
+	install-dvi-am install-exec install-exec-am install-html \
591
+	install-html-am install-info install-info-am install-man \
592
+	install-pdf install-pdf-am install-ps install-ps-am \
589 593
 	install-strip installcheck installcheck-am installdirs \
590 594
 	maintainer-clean maintainer-clean-generic mostlyclean \
591 595
 	mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
592 596
 	pdf pdf-am ps ps-am tags uninstall uninstall-am \
593
-	uninstall-binPROGRAMS uninstall-info-am
597
+	uninstall-binPROGRAMS
594 598
 
595 599
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
596 600
 # Otherwise a system limit (for SysV at least) may be exceeded.
... ...
@@ -819,6 +819,7 @@ target_os
819 819
 INSTALL_PROGRAM
820 820
 INSTALL_SCRIPT
821 821
 INSTALL_DATA
822
+am__isrc
822 823
 CYGPATH_W
823 824
 PACKAGE
824 825
 VERSION
... ...
@@ -2317,7 +2318,8 @@ do
2317 2317
 done
2318 2318
 
2319 2319
 
2320
-am__api_version="1.9"
2320
+am__api_version='1.10'
2321
+
2321 2322
 # Find a good install program.  We prefer a C program (faster),
2322 2323
 # so one script is as good as another.  But avoid the broken or
2323 2324
 # incompatible versions:
... ...
@@ -2469,38 +2471,53 @@ else
2469 2469
 echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
2470 2470
 fi
2471 2471
 
2472
-if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
2473
-  # We used to keeping the `.' as first argument, in order to
2474
-  # allow $(mkdir_p) to be used without argument.  As in
2475
-  #   $(mkdir_p) $(somedir)
2476
-  # where $(somedir) is conditionally defined.  However this is wrong
2477
-  # for two reasons:
2478
-  #  1. if the package is installed by a user who cannot write `.'
2479
-  #     make install will fail,
2480
-  #  2. the above comment should most certainly read
2481
-  #     $(mkdir_p) $(DESTDIR)$(somedir)
2482
-  #     so it does not work when $(somedir) is undefined and
2483
-  #     $(DESTDIR) is not.
2484
-  #  To support the latter case, we have to write
2485
-  #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
2486
-  #  so the `.' trick is pointless.
2487
-  mkdir_p='mkdir -p --'
2488
-else
2489
-  # On NextStep and OpenStep, the `mkdir' command does not
2490
-  # recognize any option.  It will interpret all options as
2491
-  # directories to create, and then abort because `.' already
2492
-  # exists.
2493
-  for d in ./-p ./--version;
2494
-  do
2495
-    test -d $d && rmdir $d
2496
-  done
2497
-  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
2498
-  if test -f "$ac_aux_dir/mkinstalldirs"; then
2499
-    mkdir_p='$(mkinstalldirs)'
2472
+{ echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5
2473
+echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; }
2474
+if test -z "$MKDIR_P"; then
2475
+  if test "${ac_cv_path_mkdir+set}" = set; then
2476
+  echo $ECHO_N "(cached) $ECHO_C" >&6
2477
+else
2478
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2479
+for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
2480
+do
2481
+  IFS=$as_save_IFS
2482
+  test -z "$as_dir" && as_dir=.
2483
+  for ac_prog in mkdir gmkdir; do
2484
+	 for ac_exec_ext in '' $ac_executable_extensions; do
2485
+	   { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue
2486
+	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
2487
+	     'mkdir (GNU coreutils) '* | \
2488
+	     'mkdir (coreutils) '* | \
2489
+	     'mkdir (fileutils) '4.1*)
2490
+	       ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
2491
+	       break 3;;
2492
+	   esac
2493
+	 done
2494
+       done
2495
+done
2496
+IFS=$as_save_IFS
2497
+
2498
+fi
2499
+
2500
+  if test "${ac_cv_path_mkdir+set}" = set; then
2501
+    MKDIR_P="$ac_cv_path_mkdir -p"
2500 2502
   else
2501
-    mkdir_p='$(install_sh) -d'
2503
+    # As a last resort, use the slow shell script.  Don't cache a
2504
+    # value for MKDIR_P within a source directory, because that will
2505
+    # break other packages using the cache if that directory is
2506
+    # removed, or if the value is a relative name.
2507
+    test -d ./--version && rmdir ./--version
2508
+    MKDIR_P="$ac_install_sh -d"
2502 2509
   fi
2503 2510
 fi
2511
+{ echo "$as_me:$LINENO: result: $MKDIR_P" >&5
2512
+echo "${ECHO_T}$MKDIR_P" >&6; }
2513
+
2514
+mkdir_p="$MKDIR_P"
2515
+case $mkdir_p in
2516
+  [\\/$]* | ?:[\\/]*) ;;
2517
+  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
2518
+esac
2504 2519
 
2505 2520
 for ac_prog in gawk mawk nawk awk
2506 2521
 do
... ...
@@ -2583,12 +2600,16 @@ else
2583 2583
 fi
2584 2584
 rmdir .tst 2>/dev/null
2585 2585
 
2586
-# test to see if srcdir already configured
2587
-if test "`cd $srcdir && pwd`" != "`pwd`" &&
2588
-   test -f $srcdir/config.status; then
2589
-  { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
2586
+if test "`cd $srcdir && pwd`" != "`pwd`"; then
2587
+  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
2588
+  # is not polluted with repeated "-I."
2589
+  am__isrc=' -I$(srcdir)'
2590
+  # test to see if srcdir already configured
2591
+  if test -f $srcdir/config.status; then
2592
+    { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
2590 2593
 echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
2591 2594
    { (exit 1); exit 1; }; }
2595
+  fi
2592 2596
 fi
2593 2597
 
2594 2598
 # test whether we have cygpath
... ...
@@ -2631,7 +2652,7 @@ AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
2631 2631
 
2632 2632
 MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
2633 2633
 
2634
-install_sh=${install_sh-"$am_aux_dir/install-sh"}
2634
+install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
2635 2635
 
2636 2636
 # Installed binaries are usually stripped using `strip' when the user
2637 2637
 # run `make install-strip'.  However `strip' might not be the right
... ...
@@ -2735,7 +2756,7 @@ else
2735 2735
 fi
2736 2736
 
2737 2737
 fi
2738
-INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
2738
+INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
2739 2739
 
2740 2740
 # We need awk for the "check" target.  The system "awk" is bad on
2741 2741
 # some platforms.
... ...
@@ -3771,9 +3792,7 @@ if test "x$enable_dependency_tracking" != xno; then
3771 3771
   am_depcomp="$ac_aux_dir/depcomp"
3772 3772
   AMDEPBACKSLASH='\'
3773 3773
 fi
3774
-
3775
-
3776
-if test "x$enable_dependency_tracking" != xno; then
3774
+ if test "x$enable_dependency_tracking" != xno; then
3777 3775
   AMDEP_TRUE=
3778 3776
   AMDEP_FALSE='#'
3779 3777
 else
... ...
@@ -3783,7 +3802,6 @@ fi
3783 3783
 
3784 3784
 
3785 3785
 
3786
-
3787 3786
 depcc="$CC"   am_compiler_list=
3788 3787
 
3789 3788
 { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
... ...
@@ -3851,6 +3869,7 @@ else
3851 3851
        depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
3852 3852
        $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
3853 3853
          >/dev/null 2>conftest.err &&
3854
+       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
3854 3855
        grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
3855 3856
        grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
3856 3857
        ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
... ...
@@ -3880,9 +3899,7 @@ fi
3880 3880
 echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }
3881 3881
 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
3882 3882
 
3883
-
3884
-
3885
-if
3883
+ if
3886 3884
   test "x$enable_dependency_tracking" != xno \
3887 3885
   && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
3888 3886
   am__fastdepCC_TRUE=
... ...
@@ -4728,7 +4745,7 @@ ia64-*-hpux*)
4728 4728
   ;;
4729 4729
 *-*-irix6*)
4730 4730
   # Find out which ABI we are using.
4731
-  echo '#line 4731 "configure"' > conftest.$ac_ext
4731
+  echo '#line 4748 "configure"' > conftest.$ac_ext
4732 4732
   if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4733 4733
   (eval $ac_compile) 2>&5
4734 4734
   ac_status=$?
... ...
@@ -5959,6 +5976,7 @@ else
5959 5959
        depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
5960 5960
        $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
5961 5961
          >/dev/null 2>conftest.err &&
5962
+       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
5962 5963
        grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
5963 5964
        grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
5964 5965
        ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
... ...
@@ -5988,9 +6006,7 @@ fi
5988 5988
 echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; }
5989 5989
 CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type
5990 5990
 
5991
-
5992
-
5993
-if
5991
+ if
5994 5992
   test "x$enable_dependency_tracking" != xno \
5995 5993
   && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then
5996 5994
   am__fastdepCXX_TRUE=
... ...
@@ -7466,11 +7482,11 @@ else
7466 7466
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
7467 7467
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
7468 7468
    -e 's:$: $lt_compiler_flag:'`
7469
-   (eval echo "\"\$as_me:7469: $lt_compile\"" >&5)
7469
+   (eval echo "\"\$as_me:7485: $lt_compile\"" >&5)
7470 7470
    (eval "$lt_compile" 2>conftest.err)
7471 7471
    ac_status=$?
7472 7472
    cat conftest.err >&5
7473
-   echo "$as_me:7473: \$? = $ac_status" >&5
7473
+   echo "$as_me:7489: \$? = $ac_status" >&5
7474 7474
    if (exit $ac_status) && test -s "$ac_outfile"; then
7475 7475
      # The compiler can only warn and ignore the option if not recognized
7476 7476
      # So say no if there are warnings other than the usual output.
... ...
@@ -7756,11 +7772,11 @@ else
7756 7756
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
7757 7757
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
7758 7758
    -e 's:$: $lt_compiler_flag:'`
7759
-   (eval echo "\"\$as_me:7759: $lt_compile\"" >&5)
7759
+   (eval echo "\"\$as_me:7775: $lt_compile\"" >&5)
7760 7760
    (eval "$lt_compile" 2>conftest.err)
7761 7761
    ac_status=$?
7762 7762
    cat conftest.err >&5
7763
-   echo "$as_me:7763: \$? = $ac_status" >&5
7763
+   echo "$as_me:7779: \$? = $ac_status" >&5
7764 7764
    if (exit $ac_status) && test -s "$ac_outfile"; then
7765 7765
      # The compiler can only warn and ignore the option if not recognized
7766 7766
      # So say no if there are warnings other than the usual output.
... ...
@@ -7860,11 +7876,11 @@ else
7860 7860
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
7861 7861
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
7862 7862
    -e 's:$: $lt_compiler_flag:'`
7863
-   (eval echo "\"\$as_me:7863: $lt_compile\"" >&5)
7863
+   (eval echo "\"\$as_me:7879: $lt_compile\"" >&5)
7864 7864
    (eval "$lt_compile" 2>out/conftest.err)
7865 7865
    ac_status=$?
7866 7866
    cat out/conftest.err >&5
7867
-   echo "$as_me:7867: \$? = $ac_status" >&5
7867
+   echo "$as_me:7883: \$? = $ac_status" >&5
7868 7868
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
7869 7869
    then
7870 7870
      # The compiler can only warn and ignore the option if not recognized
... ...
@@ -10222,7 +10238,7 @@ else
10222 10222
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
10223 10223
   lt_status=$lt_dlunknown
10224 10224
   cat > conftest.$ac_ext <<EOF
10225
-#line 10225 "configure"
10225
+#line 10241 "configure"
10226 10226
 #include "confdefs.h"
10227 10227
 
10228 10228
 #if HAVE_DLFCN_H
... ...
@@ -10322,7 +10338,7 @@ else
10322 10322
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
10323 10323
   lt_status=$lt_dlunknown
10324 10324
   cat > conftest.$ac_ext <<EOF
10325
-#line 10325 "configure"
10325
+#line 10341 "configure"
10326 10326
 #include "confdefs.h"
10327 10327
 
10328 10328
 #if HAVE_DLFCN_H
... ...
@@ -12742,11 +12758,11 @@ else
12742 12742
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
12743 12743
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
12744 12744
    -e 's:$: $lt_compiler_flag:'`
12745
-   (eval echo "\"\$as_me:12745: $lt_compile\"" >&5)
12745
+   (eval echo "\"\$as_me:12761: $lt_compile\"" >&5)
12746 12746
    (eval "$lt_compile" 2>conftest.err)
12747 12747
    ac_status=$?
12748 12748
    cat conftest.err >&5
12749
-   echo "$as_me:12749: \$? = $ac_status" >&5
12749
+   echo "$as_me:12765: \$? = $ac_status" >&5
12750 12750
    if (exit $ac_status) && test -s "$ac_outfile"; then
12751 12751
      # The compiler can only warn and ignore the option if not recognized
12752 12752
      # So say no if there are warnings other than the usual output.
... ...
@@ -12846,11 +12862,11 @@ else
12846 12846
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
12847 12847
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
12848 12848
    -e 's:$: $lt_compiler_flag:'`
12849
-   (eval echo "\"\$as_me:12849: $lt_compile\"" >&5)
12849
+   (eval echo "\"\$as_me:12865: $lt_compile\"" >&5)
12850 12850
    (eval "$lt_compile" 2>out/conftest.err)
12851 12851
    ac_status=$?
12852 12852
    cat out/conftest.err >&5
12853
-   echo "$as_me:12853: \$? = $ac_status" >&5
12853
+   echo "$as_me:12869: \$? = $ac_status" >&5
12854 12854
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
12855 12855
    then
12856 12856
      # The compiler can only warn and ignore the option if not recognized
... ...
@@ -14423,11 +14439,11 @@ else
14423 14423
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
14424 14424
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
14425 14425
    -e 's:$: $lt_compiler_flag:'`
14426
-   (eval echo "\"\$as_me:14426: $lt_compile\"" >&5)
14426
+   (eval echo "\"\$as_me:14442: $lt_compile\"" >&5)
14427 14427
    (eval "$lt_compile" 2>conftest.err)
14428 14428
    ac_status=$?
14429 14429
    cat conftest.err >&5
14430
-   echo "$as_me:14430: \$? = $ac_status" >&5
14430
+   echo "$as_me:14446: \$? = $ac_status" >&5
14431 14431
    if (exit $ac_status) && test -s "$ac_outfile"; then
14432 14432
      # The compiler can only warn and ignore the option if not recognized
14433 14433
      # So say no if there are warnings other than the usual output.
... ...
@@ -14527,11 +14543,11 @@ else
14527 14527
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
14528 14528
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
14529 14529
    -e 's:$: $lt_compiler_flag:'`
14530
-   (eval echo "\"\$as_me:14530: $lt_compile\"" >&5)
14530
+   (eval echo "\"\$as_me:14546: $lt_compile\"" >&5)
14531 14531
    (eval "$lt_compile" 2>out/conftest.err)
14532 14532
    ac_status=$?
14533 14533
    cat out/conftest.err >&5
14534
-   echo "$as_me:14534: \$? = $ac_status" >&5
14534
+   echo "$as_me:14550: \$? = $ac_status" >&5
14535 14535
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
14536 14536
    then
14537 14537
      # The compiler can only warn and ignore the option if not recognized
... ...
@@ -16727,11 +16743,11 @@ else
16727 16727
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
16728 16728
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
16729 16729
    -e 's:$: $lt_compiler_flag:'`
16730
-   (eval echo "\"\$as_me:16730: $lt_compile\"" >&5)
16730
+   (eval echo "\"\$as_me:16746: $lt_compile\"" >&5)
16731 16731
    (eval "$lt_compile" 2>conftest.err)
16732 16732
    ac_status=$?
16733 16733
    cat conftest.err >&5
16734
-   echo "$as_me:16734: \$? = $ac_status" >&5
16734
+   echo "$as_me:16750: \$? = $ac_status" >&5
16735 16735
    if (exit $ac_status) && test -s "$ac_outfile"; then
16736 16736
      # The compiler can only warn and ignore the option if not recognized
16737 16737
      # So say no if there are warnings other than the usual output.
... ...
@@ -17017,11 +17033,11 @@ else
17017 17017
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
17018 17018
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
17019 17019
    -e 's:$: $lt_compiler_flag:'`
17020
-   (eval echo "\"\$as_me:17020: $lt_compile\"" >&5)
17020
+   (eval echo "\"\$as_me:17036: $lt_compile\"" >&5)
17021 17021
    (eval "$lt_compile" 2>conftest.err)
17022 17022
    ac_status=$?
17023 17023
    cat conftest.err >&5
17024
-   echo "$as_me:17024: \$? = $ac_status" >&5
17024
+   echo "$as_me:17040: \$? = $ac_status" >&5
17025 17025
    if (exit $ac_status) && test -s "$ac_outfile"; then
17026 17026
      # The compiler can only warn and ignore the option if not recognized
17027 17027
      # So say no if there are warnings other than the usual output.
... ...
@@ -17121,11 +17137,11 @@ else
17121 17121
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
17122 17122
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
17123 17123
    -e 's:$: $lt_compiler_flag:'`
17124
-   (eval echo "\"\$as_me:17124: $lt_compile\"" >&5)
17124
+   (eval echo "\"\$as_me:17140: $lt_compile\"" >&5)
17125 17125
    (eval "$lt_compile" 2>out/conftest.err)
17126 17126
    ac_status=$?
17127 17127
    cat out/conftest.err >&5
17128
-   echo "$as_me:17128: \$? = $ac_status" >&5
17128
+   echo "$as_me:17144: \$? = $ac_status" >&5
17129 17129
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
17130 17130
    then
17131 17131
      # The compiler can only warn and ignore the option if not recognized
... ...
@@ -22025,9 +22041,7 @@ fi
22025 22025
 
22026 22026
   { echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
22027 22027
 echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6; }
22028
-
22029
-
22030
-if test $USE_MAINTAINER_MODE = yes; then
22028
+   if test $USE_MAINTAINER_MODE = yes; then
22031 22029
   MAINTAINER_MODE_TRUE=
22032 22030
   MAINTAINER_MODE_FALSE='#'
22033 22031
 else
... ...
@@ -24192,9 +24206,7 @@ done
24192 24192
 
24193 24193
 fi
24194 24194
 
24195
-
24196
-
24197
-if test "$have_pthreads" = "yes"; then
24195
+ if test "$have_pthreads" = "yes"; then
24198 24196
   BUILD_CLAMD_TRUE=
24199 24197
   BUILD_CLAMD_FALSE='#'
24200 24198
 else
... ...
@@ -24202,9 +24214,7 @@ else
24202 24202
   BUILD_CLAMD_FALSE=
24203 24203
 fi
24204 24204
 
24205
-
24206
-
24207
-if test "$have_milter" = "yes"; then
24205
+ if test "$have_milter" = "yes"; then
24208 24206
   HAVE_MILTER_TRUE=
24209 24207
   HAVE_MILTER_FALSE='#'
24210 24208
 else
... ...
@@ -24212,9 +24222,7 @@ else
24212 24212
   HAVE_MILTER_FALSE=
24213 24213
 fi
24214 24214
 
24215
-
24216
-
24217
-if test "$want_unrar" = "yes"; then
24215
+ if test "$want_unrar" = "yes"; then
24218 24216
   ENABLE_UNRAR_TRUE=
24219 24217
   ENABLE_UNRAR_FALSE='#'
24220 24218
 else
... ...
@@ -26900,6 +26908,7 @@ gives unlimited permission to copy, distribute and modify it."
26900 26900
 ac_pwd='$ac_pwd'
26901 26901
 srcdir='$srcdir'
26902 26902
 INSTALL='$INSTALL'
26903
+MKDIR_P='$MKDIR_P'
26903 26904
 _ACEOF
26904 26905
 
26905 26906
 cat >>$CONFIG_STATUS <<\_ACEOF
... ...
@@ -27144,6 +27153,7 @@ target_os!$target_os$ac_delim
27144 27144
 INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
27145 27145
 INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
27146 27146
 INSTALL_DATA!$INSTALL_DATA$ac_delim
27147
+am__isrc!$am__isrc$ac_delim
27147 27148
 CYGPATH_W!$CYGPATH_W$ac_delim
27148 27149
 PACKAGE!$PACKAGE$ac_delim
27149 27150
 VERSION!$VERSION$ac_delim
... ...
@@ -27188,7 +27198,6 @@ AR!$AR$ac_delim
27188 27188
 RANLIB!$RANLIB$ac_delim
27189 27189
 CPP!$CPP$ac_delim
27190 27190
 CXX!$CXX$ac_delim
27191
-CXXFLAGS!$CXXFLAGS$ac_delim
27192 27191
 _ACEOF
27193 27192
 
27194 27193
   if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
... ...
@@ -27230,6 +27239,7 @@ _ACEOF
27230 27230
 ac_delim='%!_!# '
27231 27231
 for ac_last_try in false false false false false :; do
27232 27232
   cat >conf$$subs.sed <<_ACEOF
27233
+CXXFLAGS!$CXXFLAGS$ac_delim
27233 27234
 ac_ct_CXX!$ac_ct_CXX$ac_delim
27234 27235
 CXXDEPMODE!$CXXDEPMODE$ac_delim
27235 27236
 am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim
... ...
@@ -27264,7 +27274,7 @@ LIBOBJS!$LIBOBJS$ac_delim
27264 27264
 LTLIBOBJS!$LTLIBOBJS$ac_delim
27265 27265
 _ACEOF
27266 27266
 
27267
-  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 32; then
27267
+  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 33; then
27268 27268
     break
27269 27269
   elif $ac_last_try; then
27270 27270
     { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
... ...
@@ -27491,6 +27501,11 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
27491 27491
   [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
27492 27492
   *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
27493 27493
   esac
27494
+  ac_MKDIR_P=$MKDIR_P
27495
+  case $MKDIR_P in
27496
+  [\\/$]* | ?:[\\/]* ) ;;
27497
+  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
27498
+  esac
27494 27499
 _ACEOF
27495 27500
 
27496 27501
 cat >>$CONFIG_STATUS <<\_ACEOF
... ...
@@ -27544,6 +27559,7 @@ s&@builddir@&$ac_builddir&;t t
27544 27544
 s&@abs_builddir@&$ac_abs_builddir&;t t
27545 27545
 s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
27546 27546
 s&@INSTALL@&$ac_INSTALL&;t t
27547
+s&@MKDIR_P@&$ac_MKDIR_P&;t t
27547 27548
 $ac_datarootdir_hack
27548 27549
 " $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out
27549 27550
 
... ...
@@ -27708,8 +27724,9 @@ echo "$as_me: executing $ac_file commands" >&6;}
27708 27708
   # some people rename them; so instead we look at the file content.
27709 27709
   # Grep'ing the first line is not enough: some people post-process
27710 27710
   # each Makefile.in and add a new line on top of each file to say so.
27711
-  # So let's grep whole file.
27712
-  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
27711
+  # Grep'ing the whole file is not good either: AIX grep has a line
27712
+  # limit of 2048, but all sed's we know have understand at least 4000.
27713
+  if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then
27713 27714
     dirpart=`$as_dirname -- "$mf" ||
27714 27715
 $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
27715 27716
 	 X"$mf" : 'X\(//\)[^/]' \| \
... ...
@@ -1,8 +1,8 @@
1
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
1
+# Makefile.in generated by automake 1.10 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
-# 2003, 2004, 2005  Free Software Foundation, Inc.
5
+# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6 6
 # This Makefile.in is free software; the Free Software Foundation
7 7
 # gives unlimited permission to copy and/or distribute it,
8 8
 # with or without modifications, as long as this notice is preserved.
... ...
@@ -33,15 +33,11 @@
33 33
 #  along with this program; if not, write to the Free Software
34 34
 #  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
35 35
 #  MA 02110-1301, USA.
36
-srcdir = @srcdir@
37
-top_srcdir = @top_srcdir@
38 36
 VPATH = @srcdir@
39 37
 pkgdatadir = $(datadir)/@PACKAGE@
40 38
 pkglibdir = $(libdir)/@PACKAGE@
41 39
 pkgincludedir = $(includedir)/@PACKAGE@
42
-top_builddir = ..
43 40
 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
44
-INSTALL = @INSTALL@
45 41
 install_sh_DATA = $(install_sh) -c -m 644
46 42
 install_sh_PROGRAM = $(install_sh) -c
47 43
 install_sh_SCRIPT = $(install_sh) -c
... ...
@@ -70,16 +66,12 @@ SOURCES =
70 70
 DIST_SOURCES =
71 71
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
72 72
 ACLOCAL = @ACLOCAL@
73
-AMDEP_FALSE = @AMDEP_FALSE@
74
-AMDEP_TRUE = @AMDEP_TRUE@
75 73
 AMTAR = @AMTAR@
76 74
 AR = @AR@
77 75
 AUTOCONF = @AUTOCONF@
78 76
 AUTOHEADER = @AUTOHEADER@
79 77
 AUTOMAKE = @AUTOMAKE@
80 78
 AWK = @AWK@
81
-BUILD_CLAMD_FALSE = @BUILD_CLAMD_FALSE@
82
-BUILD_CLAMD_TRUE = @BUILD_CLAMD_TRUE@
83 79
 CC = @CC@
84 80
 CCDEPMODE = @CCDEPMODE@
85 81
 CFGDIR = @CFGDIR@
... ...
@@ -103,16 +95,13 @@ ECHO_C = @ECHO_C@
103 103
 ECHO_N = @ECHO_N@
104 104
 ECHO_T = @ECHO_T@
105 105
 EGREP = @EGREP@
106
-ENABLE_UNRAR_FALSE = @ENABLE_UNRAR_FALSE@
107
-ENABLE_UNRAR_TRUE = @ENABLE_UNRAR_TRUE@
108 106
 EXEEXT = @EXEEXT@
109 107
 F77 = @F77@
110 108
 FFLAGS = @FFLAGS@
111 109
 FRESHCLAM_LIBS = @FRESHCLAM_LIBS@
112 110
 GETENT = @GETENT@
113 111
 GREP = @GREP@
114
-HAVE_MILTER_FALSE = @HAVE_MILTER_FALSE@
115
-HAVE_MILTER_TRUE = @HAVE_MILTER_TRUE@
112
+INSTALL = @INSTALL@
116 113
 INSTALL_DATA = @INSTALL_DATA@
117 114
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
118 115
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
... ...
@@ -126,9 +115,8 @@ LIBTOOL = @LIBTOOL@
126 126
 LN_S = @LN_S@
127 127
 LTLIBOBJS = @LTLIBOBJS@
128 128
 MAINT = @MAINT@
129
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
130
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
131 129
 MAKEINFO = @MAKEINFO@
130
+MKDIR_P = @MKDIR_P@
132 131
 OBJEXT = @OBJEXT@
133 132
 PACKAGE = @PACKAGE@
134 133
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
... ...
@@ -145,13 +133,13 @@ STRIP = @STRIP@
145 145
 THREAD_LIBS = @THREAD_LIBS@
146 146
 TH_SAFE = @TH_SAFE@
147 147
 VERSION = @VERSION@
148
+abs_builddir = @abs_builddir@
149
+abs_srcdir = @abs_srcdir@
150
+abs_top_builddir = @abs_top_builddir@
151
+abs_top_srcdir = @abs_top_srcdir@
148 152
 ac_ct_CC = @ac_ct_CC@
149 153
 ac_ct_CXX = @ac_ct_CXX@
150 154
 ac_ct_F77 = @ac_ct_F77@
151
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
152
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
153
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
154
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
155 155
 am__include = @am__include@
156 156
 am__leading_dot = @am__leading_dot@
157 157
 am__quote = @am__quote@
... ...
@@ -163,6 +151,7 @@ build_alias = @build_alias@
163 163
 build_cpu = @build_cpu@
164 164
 build_os = @build_os@
165 165
 build_vendor = @build_vendor@
166
+builddir = @builddir@
166 167
 datadir = @datadir@
167 168
 datarootdir = @datarootdir@
168 169
 docdir = @docdir@
... ...
@@ -191,12 +180,15 @@ psdir = @psdir@
191 191
 sbindir = @sbindir@
192 192
 sendmailprog = @sendmailprog@
193 193
 sharedstatedir = @sharedstatedir@
194
+srcdir = @srcdir@
194 195
 sysconfdir = @sysconfdir@
195 196
 target = @target@
196 197
 target_alias = @target_alias@
197 198
 target_cpu = @target_cpu@
198 199
 target_os = @target_os@
199 200
 target_vendor = @target_vendor@
201
+top_builddir = @top_builddir@
202
+top_srcdir = @top_srcdir@
200 203
 EXTRA_DIST = main.cvd daily.cvd
201 204
 DBINST = @DBDIR@
202 205
 all: all-am
... ...
@@ -237,10 +229,6 @@ mostlyclean-libtool:
237 237
 
238 238
 clean-libtool:
239 239
 	-rm -rf .libs _libs
240
-
241
-distclean-libtool:
242
-	-rm -f libtool
243
-uninstall-info-am:
244 240
 tags: TAGS
245 241
 TAGS:
246 242
 
... ...
@@ -249,22 +237,21 @@ CTAGS:
249 249
 
250 250
 
251 251
 distdir: $(DISTFILES)
252
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
253
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
254
-	list='$(DISTFILES)'; for file in $$list; do \
255
-	  case $$file in \
256
-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
257
-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
258
-	  esac; \
252
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
253
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
254
+	list='$(DISTFILES)'; \
255
+	  dist_files=`for file in $$list; do echo $$file; done | \
256
+	  sed -e "s|^$$srcdirstrip/||;t" \
257
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
258
+	case $$dist_files in \
259
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
260
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
261
+			   sort -u` ;; \
262
+	esac; \
263
+	for file in $$dist_files; do \
259 264
 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
260
-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
261
-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
262
-	    dir="/$$dir"; \
263
-	    $(mkdir_p) "$(distdir)$$dir"; \
264
-	  else \
265
-	    dir=''; \
266
-	  fi; \
267 265
 	  if test -d $$d/$$file; then \
266
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
268 267
 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
269 268
 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
270 269
 	    fi; \
... ...
@@ -308,7 +295,7 @@ clean-am: clean-generic clean-libtool mostlyclean-am
308 308
 
309 309
 distclean: distclean-am
310 310
 	-rm -f Makefile
311
-distclean-am: clean-am distclean-generic distclean-libtool
311
+distclean-am: clean-am distclean-generic
312 312
 
313 313
 dvi: dvi-am
314 314
 
... ...
@@ -322,12 +309,20 @@ info-am:
322 322
 
323 323
 install-data-am:
324 324
 
325
+install-dvi: install-dvi-am
326
+
325 327
 install-exec-am:
326 328
 
329
+install-html: install-html-am
330
+
327 331
 install-info: install-info-am
328 332
 
329 333
 install-man:
330 334
 
335
+install-pdf: install-pdf-am
336
+
337
+install-ps: install-ps-am
338
+
331 339
 installcheck-am:
332 340
 
333 341
 maintainer-clean: maintainer-clean-am
... ...
@@ -346,17 +341,20 @@ ps: ps-am
346 346
 
347 347
 ps-am:
348 348
 
349
-uninstall-am: uninstall-info-am
349
+uninstall-am:
350
+
351
+.MAKE: install-am install-strip
350 352
 
351 353
 .PHONY: all all-am check check-am clean clean-generic clean-libtool \
352 354
 	distclean distclean-generic distclean-libtool distdir dvi \
353 355
 	dvi-am html html-am info info-am install install-am \
354
-	install-data install-data-am install-exec install-exec-am \
355
-	install-info install-info-am install-man install-strip \
356
+	install-data install-data-am install-dvi install-dvi-am \
357
+	install-exec install-exec-am install-html install-html-am \
358
+	install-info install-info-am install-man install-pdf \
359
+	install-pdf-am install-ps install-ps-am install-strip \
356 360
 	installcheck installcheck-am installdirs maintainer-clean \
357 361
 	maintainer-clean-generic mostlyclean mostlyclean-generic \
358
-	mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
359
-	uninstall-info-am
362
+	mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am
360 363
 
361 364
 
362 365
 install:
... ...
@@ -1,9 +1,10 @@
1 1
 #! /bin/sh
2 2
 # depcomp - compile a program generating dependencies as side-effects
3 3
 
4
-scriptversion=2005-07-09.11
4
+scriptversion=2006-10-15.18
5 5
 
6
-# Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
6
+# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006 Free Software
7
+# Foundation, Inc.
7 8
 
8 9
 # This program is free software; you can redistribute it and/or modify
9 10
 # it under the terms of the GNU General Public License as published by
... ...
@@ -91,7 +92,20 @@ gcc3)
91 91
 ## gcc 3 implements dependency tracking that does exactly what
92 92
 ## we want.  Yay!  Note: for some reason libtool 1.4 doesn't like
93 93
 ## it if -MD -MP comes after the -MF stuff.  Hmm.
94
-  "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
94
+## Unfortunately, FreeBSD c89 acceptance of flags depends upon
95
+## the command line argument order; so add the flags where they
96
+## appear in depend2.am.  Note that the slowdown incurred here
97
+## affects only configure: in makefiles, %FASTDEP% shortcuts this.
98
+  for arg
99
+  do
100
+    case $arg in
101
+    -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
102
+    *)  set fnord "$@" "$arg" ;;
103
+    esac
104
+    shift # fnord
105
+    shift # $arg
106
+  done
107
+  "$@"
95 108
   stat=$?
96 109
   if test $stat -eq 0; then :
97 110
   else
... ...
@@ -276,6 +290,46 @@ icc)
276 276
   rm -f "$tmpdepfile"
277 277
   ;;
278 278
 
279
+hp2)
280
+  # The "hp" stanza above does not work with aCC (C++) and HP's ia64
281
+  # compilers, which have integrated preprocessors.  The correct option
282
+  # to use with these is +Maked; it writes dependencies to a file named
283
+  # 'foo.d', which lands next to the object file, wherever that
284
+  # happens to be.
285
+  # Much of this is similar to the tru64 case; see comments there.
286
+  dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
287
+  test "x$dir" = "x$object" && dir=
288
+  base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
289
+  if test "$libtool" = yes; then
290
+    tmpdepfile1=$dir$base.d
291
+    tmpdepfile2=$dir.libs/$base.d
292
+    "$@" -Wc,+Maked
293
+  else
294
+    tmpdepfile1=$dir$base.d
295
+    tmpdepfile2=$dir$base.d
296
+    "$@" +Maked
297
+  fi
298
+  stat=$?
299
+  if test $stat -eq 0; then :
300
+  else
301
+     rm -f "$tmpdepfile1" "$tmpdepfile2"
302
+     exit $stat
303
+  fi
304
+
305
+  for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2"
306
+  do
307
+    test -f "$tmpdepfile" && break
308
+  done
309
+  if test -f "$tmpdepfile"; then
310
+    sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile"
311
+    # Add `dependent.h:' lines.
312
+    sed -ne '2,${; s/^ *//; s/ \\*$//; s/$/:/; p;}' "$tmpdepfile" >> "$depfile"
313
+  else
314
+    echo "#dummy" > "$depfile"
315
+  fi
316
+  rm -f "$tmpdepfile" "$tmpdepfile2"
317
+  ;;
318
+
279 319
 tru64)
280 320
    # The Tru64 compiler uses -MD to generate dependencies as a side
281 321
    # effect.  `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
... ...
@@ -288,13 +342,13 @@ tru64)
288 288
 
289 289
    if test "$libtool" = yes; then
290 290
       # With Tru64 cc, shared objects can also be used to make a
291
-      # static library.  This mecanism is used in libtool 1.4 series to
291
+      # static library.  This mechanism is used in libtool 1.4 series to
292 292
       # handle both shared and static libraries in a single compilation.
293 293
       # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d.
294 294
       #
295 295
       # With libtool 1.5 this exception was removed, and libtool now
296 296
       # generates 2 separate objects for the 2 libraries.  These two
297
-      # compilations output dependencies in in $dir.libs/$base.o.d and
297
+      # compilations output dependencies in $dir.libs/$base.o.d and
298 298
       # in $dir$base.o.d.  We have to check for both files, because
299 299
       # one of the two compilations can be disabled.  We should prefer
300 300
       # $dir$base.o.d over $dir.libs/$base.o.d because the latter is
... ...
@@ -1,8 +1,8 @@
1
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
1
+# Makefile.in generated by automake 1.10 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
-# 2003, 2004, 2005  Free Software Foundation, Inc.
5
+# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6 6
 # This Makefile.in is free software; the Free Software Foundation
7 7
 # gives unlimited permission to copy and/or distribute it,
8 8
 # with or without modifications, as long as this notice is preserved.
... ...
@@ -31,15 +31,11 @@
31 31
 #  along with this program; if not, write to the Free Software
32 32
 #  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
33 33
 #  MA 02110-1301, USA.
34
-srcdir = @srcdir@
35
-top_srcdir = @top_srcdir@
36 34
 VPATH = @srcdir@
37 35
 pkgdatadir = $(datadir)/@PACKAGE@
38 36
 pkglibdir = $(libdir)/@PACKAGE@
39 37
 pkgincludedir = $(includedir)/@PACKAGE@
40
-top_builddir = ..
41 38
 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
42
-INSTALL = @INSTALL@
43 39
 install_sh_DATA = $(install_sh) -c -m 644
44 40
 install_sh_PROGRAM = $(install_sh) -c
45 41
 install_sh_SCRIPT = $(install_sh) -c
... ...
@@ -75,16 +71,12 @@ NROFF = nroff
75 75
 MANS = $(man_MANS)
76 76
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
77 77
 ACLOCAL = @ACLOCAL@
78
-AMDEP_FALSE = @AMDEP_FALSE@
79
-AMDEP_TRUE = @AMDEP_TRUE@
80 78
 AMTAR = @AMTAR@
81 79
 AR = @AR@
82 80
 AUTOCONF = @AUTOCONF@
83 81
 AUTOHEADER = @AUTOHEADER@
84 82
 AUTOMAKE = @AUTOMAKE@
85 83
 AWK = @AWK@
86
-BUILD_CLAMD_FALSE = @BUILD_CLAMD_FALSE@
87
-BUILD_CLAMD_TRUE = @BUILD_CLAMD_TRUE@
88 84
 CC = @CC@
89 85
 CCDEPMODE = @CCDEPMODE@
90 86
 CFGDIR = @CFGDIR@
... ...
@@ -108,16 +100,13 @@ ECHO_C = @ECHO_C@
108 108
 ECHO_N = @ECHO_N@
109 109
 ECHO_T = @ECHO_T@
110 110
 EGREP = @EGREP@
111
-ENABLE_UNRAR_FALSE = @ENABLE_UNRAR_FALSE@
112
-ENABLE_UNRAR_TRUE = @ENABLE_UNRAR_TRUE@
113 111
 EXEEXT = @EXEEXT@
114 112
 F77 = @F77@
115 113
 FFLAGS = @FFLAGS@
116 114
 FRESHCLAM_LIBS = @FRESHCLAM_LIBS@
117 115
 GETENT = @GETENT@
118 116
 GREP = @GREP@
119
-HAVE_MILTER_FALSE = @HAVE_MILTER_FALSE@
120
-HAVE_MILTER_TRUE = @HAVE_MILTER_TRUE@
117
+INSTALL = @INSTALL@
121 118
 INSTALL_DATA = @INSTALL_DATA@
122 119
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
123 120
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
... ...
@@ -131,9 +120,8 @@ LIBTOOL = @LIBTOOL@
131 131
 LN_S = @LN_S@
132 132
 LTLIBOBJS = @LTLIBOBJS@
133 133
 MAINT = @MAINT@
134
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
135
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
136 134
 MAKEINFO = @MAKEINFO@
135
+MKDIR_P = @MKDIR_P@
137 136
 OBJEXT = @OBJEXT@
138 137
 PACKAGE = @PACKAGE@
139 138
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
... ...
@@ -150,13 +138,13 @@ STRIP = @STRIP@
150 150
 THREAD_LIBS = @THREAD_LIBS@
151 151
 TH_SAFE = @TH_SAFE@
152 152
 VERSION = @VERSION@
153
+abs_builddir = @abs_builddir@
154
+abs_srcdir = @abs_srcdir@
155
+abs_top_builddir = @abs_top_builddir@
156
+abs_top_srcdir = @abs_top_srcdir@
153 157
 ac_ct_CC = @ac_ct_CC@
154 158
 ac_ct_CXX = @ac_ct_CXX@
155 159
 ac_ct_F77 = @ac_ct_F77@
156
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
157
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
158
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
159
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
160 160
 am__include = @am__include@
161 161
 am__leading_dot = @am__leading_dot@
162 162
 am__quote = @am__quote@
... ...
@@ -168,6 +156,7 @@ build_alias = @build_alias@
168 168
 build_cpu = @build_cpu@
169 169
 build_os = @build_os@
170 170
 build_vendor = @build_vendor@
171
+builddir = @builddir@
171 172
 datadir = @datadir@
172 173
 datarootdir = @datarootdir@
173 174
 docdir = @docdir@
... ...
@@ -196,12 +185,15 @@ psdir = @psdir@
196 196
 sbindir = @sbindir@
197 197
 sendmailprog = @sendmailprog@
198 198
 sharedstatedir = @sharedstatedir@
199
+srcdir = @srcdir@
199 200
 sysconfdir = @sysconfdir@
200 201
 target = @target@
201 202
 target_alias = @target_alias@
202 203
 target_cpu = @target_cpu@
203 204
 target_os = @target_os@
204 205
 target_vendor = @target_vendor@
206
+top_builddir = @top_builddir@
207
+top_srcdir = @top_srcdir@
205 208
 EXTRA_DIST = html man/*.in clamdoc.pdf clamdoc.tex clamav-mirror-howto.pdf clamav-mirror-howto.tex signatures.pdf signatures.tex clam.eps
206 209
 man_MANS = man/clamscan.1 man/freshclam.1 man/sigtool.1 man/clamd.8 man/clamd.conf.5 man/clamdscan.1 man/clamav-milter.8 man/freshclam.conf.5 man/clamconf.1
207 210
 all: all-am
... ...
@@ -242,13 +234,9 @@ mostlyclean-libtool:
242 242
 
243 243
 clean-libtool:
244 244
 	-rm -rf .libs _libs
245
-
246
-distclean-libtool:
247
-	-rm -f libtool
248
-uninstall-info-am:
249 245
 install-man1: $(man1_MANS) $(man_MANS)
250 246
 	@$(NORMAL_INSTALL)
251
-	test -z "$(man1dir)" || $(mkdir_p) "$(DESTDIR)$(man1dir)"
247
+	test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)"
252 248
 	@list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \
253 249
 	l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
254 250
 	for i in $$l2; do \
... ...
@@ -293,7 +281,7 @@ uninstall-man1:
293 293
 	done
294 294
 install-man5: $(man5_MANS) $(man_MANS)
295 295
 	@$(NORMAL_INSTALL)
296
-	test -z "$(man5dir)" || $(mkdir_p) "$(DESTDIR)$(man5dir)"
296
+	test -z "$(man5dir)" || $(MKDIR_P) "$(DESTDIR)$(man5dir)"
297 297
 	@list='$(man5_MANS) $(dist_man5_MANS) $(nodist_man5_MANS)'; \
298 298
 	l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
299 299
 	for i in $$l2; do \
... ...
@@ -338,7 +326,7 @@ uninstall-man5:
338 338
 	done
339 339
 install-man8: $(man8_MANS) $(man_MANS)
340 340
 	@$(NORMAL_INSTALL)
341
-	test -z "$(man8dir)" || $(mkdir_p) "$(DESTDIR)$(man8dir)"
341
+	test -z "$(man8dir)" || $(MKDIR_P) "$(DESTDIR)$(man8dir)"
342 342
 	@list='$(man8_MANS) $(dist_man8_MANS) $(nodist_man8_MANS)'; \
343 343
 	l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
344 344
 	for i in $$l2; do \
... ...
@@ -389,23 +377,21 @@ CTAGS:
389 389
 
390 390
 
391 391
 distdir: $(DISTFILES)
392
-	$(mkdir_p) $(distdir)/man
393
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
394
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
395
-	list='$(DISTFILES)'; for file in $$list; do \
396
-	  case $$file in \
397
-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
398
-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
399
-	  esac; \
392
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
393
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
394
+	list='$(DISTFILES)'; \
395
+	  dist_files=`for file in $$list; do echo $$file; done | \
396
+	  sed -e "s|^$$srcdirstrip/||;t" \
397
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
398
+	case $$dist_files in \
399
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
400
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
401
+			   sort -u` ;; \
402
+	esac; \
403
+	for file in $$dist_files; do \
400 404
 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
401
-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
402
-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
403
-	    dir="/$$dir"; \
404
-	    $(mkdir_p) "$(distdir)$$dir"; \
405
-	  else \
406
-	    dir=''; \
407
-	  fi; \
408 405
 	  if test -d $$d/$$file; then \
406
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
409 407
 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
410 408
 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
411 409
 	    fi; \
... ...
@@ -421,7 +407,7 @@ check: check-am
421 421
 all-am: Makefile $(MANS)
422 422
 installdirs:
423 423
 	for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(man8dir)"; do \
424
-	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
424
+	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
425 425
 	done
426 426
 install: install-am
427 427
 install-exec: install-exec-am
... ...
@@ -453,7 +439,7 @@ clean-am: clean-generic clean-libtool mostlyclean-am
453 453
 
454 454
 distclean: distclean-am
455 455
 	-rm -f Makefile
456
-distclean-am: clean-am distclean-generic distclean-libtool
456
+distclean-am: clean-am distclean-generic
457 457
 
458 458
 dvi: dvi-am
459 459
 
... ...
@@ -467,12 +453,20 @@ info-am:
467 467
 
468 468
 install-data-am: install-man
469 469
 
470
+install-dvi: install-dvi-am
471
+
470 472
 install-exec-am:
471 473
 
474
+install-html: install-html-am
475
+
472 476
 install-info: install-info-am
473 477
 
474 478
 install-man: install-man1 install-man5 install-man8
475 479
 
480
+install-pdf: install-pdf-am
481
+
482
+install-ps: install-ps-am
483
+
476 484
 installcheck-am:
477 485
 
478 486
 maintainer-clean: maintainer-clean-am
... ...
@@ -491,21 +485,24 @@ ps: ps-am
491 491
 
492 492
 ps-am:
493 493
 
494
-uninstall-am: uninstall-info-am uninstall-man
494
+uninstall-am: uninstall-man
495 495
 
496 496
 uninstall-man: uninstall-man1 uninstall-man5 uninstall-man8
497 497
 
498
+.MAKE: install-am install-strip
499
+
498 500
 .PHONY: all all-am check check-am clean clean-generic clean-libtool \
499 501
 	distclean distclean-generic distclean-libtool distdir dvi \
500 502
 	dvi-am html html-am info info-am install install-am \
501
-	install-data install-data-am install-exec install-exec-am \
503
+	install-data install-data-am install-dvi install-dvi-am \
504
+	install-exec install-exec-am install-html install-html-am \
502 505
 	install-info install-info-am install-man install-man1 \
503
-	install-man5 install-man8 install-strip installcheck \
506
+	install-man5 install-man8 install-pdf install-pdf-am \
507
+	install-ps install-ps-am install-strip installcheck \
504 508
 	installcheck-am installdirs maintainer-clean \
505 509
 	maintainer-clean-generic mostlyclean mostlyclean-generic \
506 510
 	mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
507
-	uninstall-info-am uninstall-man uninstall-man1 uninstall-man5 \
508
-	uninstall-man8
511
+	uninstall-man uninstall-man1 uninstall-man5 uninstall-man8
509 512
 
510 513
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
511 514
 # Otherwise a system limit (for SysV at least) may be exceeded.
... ...
@@ -1,8 +1,8 @@
1
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
1
+# Makefile.in generated by automake 1.10 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
-# 2003, 2004, 2005  Free Software Foundation, Inc.
5
+# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6 6
 # This Makefile.in is free software; the Free Software Foundation
7 7
 # gives unlimited permission to copy and/or distribute it,
8 8
 # with or without modifications, as long as this notice is preserved.
... ...
@@ -31,15 +31,11 @@
31 31
 #  along with this program; if not, write to the Free Software
32 32
 #  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
33 33
 #  MA 02110-1301, USA.
34
-srcdir = @srcdir@
35
-top_srcdir = @top_srcdir@
36 34
 VPATH = @srcdir@
37 35
 pkgdatadir = $(datadir)/@PACKAGE@
38 36
 pkglibdir = $(libdir)/@PACKAGE@
39 37
 pkgincludedir = $(includedir)/@PACKAGE@
40
-top_builddir = ..
41 38
 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
42
-INSTALL = @INSTALL@
43 39
 install_sh_DATA = $(install_sh) -c -m 644
44 40
 install_sh_PROGRAM = $(install_sh) -c
45 41
 install_sh_SCRIPT = $(install_sh) -c
... ...
@@ -68,16 +64,12 @@ SOURCES =
68 68
 DIST_SOURCES =
69 69
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
70 70
 ACLOCAL = @ACLOCAL@
71
-AMDEP_FALSE = @AMDEP_FALSE@
72
-AMDEP_TRUE = @AMDEP_TRUE@
73 71
 AMTAR = @AMTAR@
74 72
 AR = @AR@
75 73
 AUTOCONF = @AUTOCONF@
76 74
 AUTOHEADER = @AUTOHEADER@
77 75
 AUTOMAKE = @AUTOMAKE@
78 76
 AWK = @AWK@
79
-BUILD_CLAMD_FALSE = @BUILD_CLAMD_FALSE@
80
-BUILD_CLAMD_TRUE = @BUILD_CLAMD_TRUE@
81 77
 CC = @CC@
82 78
 CCDEPMODE = @CCDEPMODE@
83 79
 CFGDIR = @CFGDIR@
... ...
@@ -101,16 +93,13 @@ ECHO_C = @ECHO_C@
101 101
 ECHO_N = @ECHO_N@
102 102
 ECHO_T = @ECHO_T@
103 103
 EGREP = @EGREP@
104
-ENABLE_UNRAR_FALSE = @ENABLE_UNRAR_FALSE@
105
-ENABLE_UNRAR_TRUE = @ENABLE_UNRAR_TRUE@
106 104
 EXEEXT = @EXEEXT@
107 105
 F77 = @F77@
108 106
 FFLAGS = @FFLAGS@
109 107
 FRESHCLAM_LIBS = @FRESHCLAM_LIBS@
110 108
 GETENT = @GETENT@
111 109
 GREP = @GREP@
112
-HAVE_MILTER_FALSE = @HAVE_MILTER_FALSE@
113
-HAVE_MILTER_TRUE = @HAVE_MILTER_TRUE@
110
+INSTALL = @INSTALL@
114 111
 INSTALL_DATA = @INSTALL_DATA@
115 112
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
116 113
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
... ...
@@ -124,9 +113,8 @@ LIBTOOL = @LIBTOOL@
124 124
 LN_S = @LN_S@
125 125
 LTLIBOBJS = @LTLIBOBJS@
126 126
 MAINT = @MAINT@
127
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
128
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
129 127
 MAKEINFO = @MAKEINFO@
128
+MKDIR_P = @MKDIR_P@
130 129
 OBJEXT = @OBJEXT@
131 130
 PACKAGE = @PACKAGE@
132 131
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
... ...
@@ -143,13 +131,13 @@ STRIP = @STRIP@
143 143
 THREAD_LIBS = @THREAD_LIBS@
144 144
 TH_SAFE = @TH_SAFE@
145 145
 VERSION = @VERSION@
146
+abs_builddir = @abs_builddir@
147
+abs_srcdir = @abs_srcdir@
148
+abs_top_builddir = @abs_top_builddir@
149
+abs_top_srcdir = @abs_top_srcdir@
146 150
 ac_ct_CC = @ac_ct_CC@
147 151
 ac_ct_CXX = @ac_ct_CXX@
148 152
 ac_ct_F77 = @ac_ct_F77@
149
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
150
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
151
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
152
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
153 153
 am__include = @am__include@
154 154
 am__leading_dot = @am__leading_dot@
155 155
 am__quote = @am__quote@
... ...
@@ -161,6 +149,7 @@ build_alias = @build_alias@
161 161
 build_cpu = @build_cpu@
162 162
 build_os = @build_os@
163 163
 build_vendor = @build_vendor@
164
+builddir = @builddir@
164 165
 datadir = @datadir@
165 166
 datarootdir = @datarootdir@
166 167
 docdir = @docdir@
... ...
@@ -189,12 +178,15 @@ psdir = @psdir@
189 189
 sbindir = @sbindir@
190 190
 sendmailprog = @sendmailprog@
191 191
 sharedstatedir = @sharedstatedir@
192
+srcdir = @srcdir@
192 193
 sysconfdir = @sysconfdir@
193 194
 target = @target@
194 195
 target_alias = @target_alias@
195 196
 target_cpu = @target_cpu@
196 197
 target_os = @target_os@
197 198
 target_vendor = @target_vendor@
199
+top_builddir = @top_builddir@
200
+top_srcdir = @top_srcdir@
198 201
 EXTRA_DIST = clamd.conf freshclam.conf
199 202
 CFGINST = @CFGDIR@
200 203
 all: all-am
... ...
@@ -235,10 +227,6 @@ mostlyclean-libtool:
235 235
 
236 236
 clean-libtool:
237 237
 	-rm -rf .libs _libs
238
-
239
-distclean-libtool:
240
-	-rm -f libtool
241
-uninstall-info-am:
242 238
 tags: TAGS
243 239
 TAGS:
244 240
 
... ...
@@ -247,22 +235,21 @@ CTAGS:
247 247
 
248 248
 
249 249
 distdir: $(DISTFILES)
250
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
251
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
252
-	list='$(DISTFILES)'; for file in $$list; do \
253
-	  case $$file in \
254
-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
255
-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
256
-	  esac; \
250
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
251
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
252
+	list='$(DISTFILES)'; \
253
+	  dist_files=`for file in $$list; do echo $$file; done | \
254
+	  sed -e "s|^$$srcdirstrip/||;t" \
255
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
256
+	case $$dist_files in \
257
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
258
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
259
+			   sort -u` ;; \
260
+	esac; \
261
+	for file in $$dist_files; do \
257 262
 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
258
-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
259
-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
260
-	    dir="/$$dir"; \
261
-	    $(mkdir_p) "$(distdir)$$dir"; \
262
-	  else \
263
-	    dir=''; \
264
-	  fi; \
265 263
 	  if test -d $$d/$$file; then \
264
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
266 265
 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
267 266
 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
268 267
 	    fi; \
... ...
@@ -306,7 +293,7 @@ clean-am: clean-generic clean-libtool mostlyclean-am
306 306
 
307 307
 distclean: distclean-am
308 308
 	-rm -f Makefile
309
-distclean-am: clean-am distclean-generic distclean-libtool
309
+distclean-am: clean-am distclean-generic
310 310
 
311 311
 dvi: dvi-am
312 312
 
... ...
@@ -320,12 +307,20 @@ info-am:
320 320
 
321 321
 install-data-am:
322 322
 
323
+install-dvi: install-dvi-am
324
+
323 325
 install-exec-am:
324 326
 
327
+install-html: install-html-am
328
+
325 329
 install-info: install-info-am
326 330
 
327 331
 install-man:
328 332
 
333
+install-pdf: install-pdf-am
334
+
335
+install-ps: install-ps-am
336
+
329 337
 installcheck-am:
330 338
 
331 339
 maintainer-clean: maintainer-clean-am
... ...
@@ -344,17 +339,20 @@ ps: ps-am
344 344
 
345 345
 ps-am:
346 346
 
347
-uninstall-am: uninstall-info-am
347
+uninstall-am:
348
+
349
+.MAKE: install-am install-strip
348 350
 
349 351
 .PHONY: all all-am check check-am clean clean-generic clean-libtool \
350 352
 	distclean distclean-generic distclean-libtool distdir dvi \
351 353
 	dvi-am html html-am info info-am install install-am \
352
-	install-data install-data-am install-exec install-exec-am \
353
-	install-info install-info-am install-man install-strip \
354
+	install-data install-data-am install-dvi install-dvi-am \
355
+	install-exec install-exec-am install-html install-html-am \
356
+	install-info install-info-am install-man install-pdf \
357
+	install-pdf-am install-ps install-ps-am install-strip \
354 358
 	installcheck installcheck-am installdirs maintainer-clean \
355 359
 	maintainer-clean-generic mostlyclean mostlyclean-generic \
356
-	mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
357
-	uninstall-info-am
360
+	mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am
358 361
 
359 362
 
360 363
 install:
... ...
@@ -1,8 +1,8 @@
1
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
1
+# Makefile.in generated by automake 1.10 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
-# 2003, 2004, 2005  Free Software Foundation, Inc.
5
+# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6 6
 # This Makefile.in is free software; the Free Software Foundation
7 7
 # gives unlimited permission to copy and/or distribute it,
8 8
 # with or without modifications, as long as this notice is preserved.
... ...
@@ -33,15 +33,11 @@
33 33
 #  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
34 34
 #  MA 02110-1301, USA.
35 35
 
36
-srcdir = @srcdir@
37
-top_srcdir = @top_srcdir@
38 36
 VPATH = @srcdir@
39 37
 pkgdatadir = $(datadir)/@PACKAGE@
40 38
 pkglibdir = $(libdir)/@PACKAGE@
41 39
 pkgincludedir = $(includedir)/@PACKAGE@
42
-top_builddir = ..
43 40
 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
44
-INSTALL = @INSTALL@
45 41
 install_sh_DATA = $(install_sh) -c -m 644
46 42
 install_sh_PROGRAM = $(install_sh) -c
47 43
 install_sh_SCRIPT = $(install_sh) -c
... ...
@@ -77,33 +73,30 @@ am_freshclam_OBJECTS = output.$(OBJEXT) cfgparser.$(OBJEXT) \
77 77
 	execute.$(OBJEXT) nonblock.$(OBJEXT) mirman.$(OBJEXT)
78 78
 freshclam_OBJECTS = $(am_freshclam_OBJECTS)
79 79
 freshclam_LDADD = $(LDADD)
80
-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
80
+DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
81 81
 depcomp = $(SHELL) $(top_srcdir)/depcomp
82 82
 am__depfiles_maybe = depfiles
83 83
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
84 84
 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
85
-LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
86
-	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
87
-	$(AM_CFLAGS) $(CFLAGS)
85
+LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
86
+	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
87
+	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
88 88
 CCLD = $(CC)
89
-LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
90
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
89
+LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
90
+	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
91
+	$(LDFLAGS) -o $@
91 92
 SOURCES = $(freshclam_SOURCES)
92 93
 DIST_SOURCES = $(freshclam_SOURCES)
93 94
 ETAGS = etags
94 95
 CTAGS = ctags
95 96
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
96 97
 ACLOCAL = @ACLOCAL@
97
-AMDEP_FALSE = @AMDEP_FALSE@
98
-AMDEP_TRUE = @AMDEP_TRUE@
99 98
 AMTAR = @AMTAR@
100 99
 AR = @AR@
101 100
 AUTOCONF = @AUTOCONF@
102 101
 AUTOHEADER = @AUTOHEADER@
103 102
 AUTOMAKE = @AUTOMAKE@
104 103
 AWK = @AWK@
105
-BUILD_CLAMD_FALSE = @BUILD_CLAMD_FALSE@
106
-BUILD_CLAMD_TRUE = @BUILD_CLAMD_TRUE@
107 104
 CC = @CC@
108 105
 CCDEPMODE = @CCDEPMODE@
109 106
 CFGDIR = @CFGDIR@
... ...
@@ -127,16 +120,13 @@ ECHO_C = @ECHO_C@
127 127
 ECHO_N = @ECHO_N@
128 128
 ECHO_T = @ECHO_T@
129 129
 EGREP = @EGREP@
130
-ENABLE_UNRAR_FALSE = @ENABLE_UNRAR_FALSE@
131
-ENABLE_UNRAR_TRUE = @ENABLE_UNRAR_TRUE@
132 130
 EXEEXT = @EXEEXT@
133 131
 F77 = @F77@
134 132
 FFLAGS = @FFLAGS@
135 133
 FRESHCLAM_LIBS = @FRESHCLAM_LIBS@
136 134
 GETENT = @GETENT@
137 135
 GREP = @GREP@
138
-HAVE_MILTER_FALSE = @HAVE_MILTER_FALSE@
139
-HAVE_MILTER_TRUE = @HAVE_MILTER_TRUE@
136
+INSTALL = @INSTALL@
140 137
 INSTALL_DATA = @INSTALL_DATA@
141 138
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
142 139
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
... ...
@@ -150,9 +140,8 @@ LIBTOOL = @LIBTOOL@
150 150
 LN_S = @LN_S@
151 151
 LTLIBOBJS = @LTLIBOBJS@
152 152
 MAINT = @MAINT@
153
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
154
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
155 153
 MAKEINFO = @MAKEINFO@
154
+MKDIR_P = @MKDIR_P@
156 155
 OBJEXT = @OBJEXT@
157 156
 PACKAGE = @PACKAGE@
158 157
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
... ...
@@ -169,13 +158,13 @@ STRIP = @STRIP@
169 169
 THREAD_LIBS = @THREAD_LIBS@
170 170
 TH_SAFE = @TH_SAFE@
171 171
 VERSION = @VERSION@
172
+abs_builddir = @abs_builddir@
173
+abs_srcdir = @abs_srcdir@
174
+abs_top_builddir = @abs_top_builddir@
175
+abs_top_srcdir = @abs_top_srcdir@
172 176
 ac_ct_CC = @ac_ct_CC@
173 177
 ac_ct_CXX = @ac_ct_CXX@
174 178
 ac_ct_F77 = @ac_ct_F77@
175
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
176
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
177
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
178
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
179 179
 am__include = @am__include@
180 180
 am__leading_dot = @am__leading_dot@
181 181
 am__quote = @am__quote@
... ...
@@ -187,6 +176,7 @@ build_alias = @build_alias@
187 187
 build_cpu = @build_cpu@
188 188
 build_os = @build_os@
189 189
 build_vendor = @build_vendor@
190
+builddir = @builddir@
190 191
 datadir = @datadir@
191 192
 datarootdir = @datarootdir@
192 193
 docdir = @docdir@
... ...
@@ -215,12 +205,15 @@ psdir = @psdir@
215 215
 sbindir = @sbindir@
216 216
 sendmailprog = @sendmailprog@
217 217
 sharedstatedir = @sharedstatedir@
218
+srcdir = @srcdir@
218 219
 sysconfdir = @sysconfdir@
219 220
 target = @target@
220 221
 target_alias = @target_alias@
221 222
 target_cpu = @target_cpu@
222 223
 target_os = @target_os@
223 224
 target_vendor = @target_vendor@
225
+top_builddir = @top_builddir@
226
+top_srcdir = @top_srcdir@
224 227
 freshclam_SOURCES = \
225 228
     $(top_srcdir)/shared/output.c \
226 229
     $(top_srcdir)/shared/output.h \
... ...
@@ -285,7 +278,7 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
285 285
 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
286 286
 install-binPROGRAMS: $(bin_PROGRAMS)
287 287
 	@$(NORMAL_INSTALL)
288
-	test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
288
+	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
289 289
 	@list='$(bin_PROGRAMS)'; for p in $$list; do \
290 290
 	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
291 291
 	  if test -f $$p \
... ...
@@ -313,7 +306,7 @@ clean-binPROGRAMS:
313 313
 	done
314 314
 freshclam$(EXEEXT): $(freshclam_OBJECTS) $(freshclam_DEPENDENCIES) 
315 315
 	@rm -f freshclam$(EXEEXT)
316
-	$(LINK) $(freshclam_LDFLAGS) $(freshclam_OBJECTS) $(freshclam_LDADD) $(LIBS)
316
+	$(LINK) $(freshclam_OBJECTS) $(freshclam_LDADD) $(LIBS)
317 317
 
318 318
 mostlyclean-compile:
319 319
 	-rm -f *.$(OBJEXT)
... ...
@@ -337,120 +330,120 @@ distclean-compile:
337 337
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sha256.Po@am__quote@
338 338
 
339 339
 .c.o:
340
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
341
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
340
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
341
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
342 342
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
343 343
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
344 344
 @am__fastdepCC_FALSE@	$(COMPILE) -c $<
345 345
 
346 346
 .c.obj:
347
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
348
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
347
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
348
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
349 349
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
350 350
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
351 351
 @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
352 352
 
353 353
 .c.lo:
354
-@am__fastdepCC_TRUE@	if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
355
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
354
+@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
355
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
356 356
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
357 357
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
358 358
 @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
359 359
 
360 360
 output.o: $(top_srcdir)/shared/output.c
361
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.o -MD -MP -MF "$(DEPDIR)/output.Tpo" -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c; \
362
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/output.Tpo" "$(DEPDIR)/output.Po"; else rm -f "$(DEPDIR)/output.Tpo"; exit 1; fi
361
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.o -MD -MP -MF $(DEPDIR)/output.Tpo -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c
362
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/output.Tpo $(DEPDIR)/output.Po
363 363
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/output.c' object='output.o' libtool=no @AMDEPBACKSLASH@
364 364
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
365 365
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c
366 366
 
367 367
 output.obj: $(top_srcdir)/shared/output.c
368
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.obj -MD -MP -MF "$(DEPDIR)/output.Tpo" -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`; \
369
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/output.Tpo" "$(DEPDIR)/output.Po"; else rm -f "$(DEPDIR)/output.Tpo"; exit 1; fi
368
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.obj -MD -MP -MF $(DEPDIR)/output.Tpo -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`
369
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/output.Tpo $(DEPDIR)/output.Po
370 370
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/output.c' object='output.obj' libtool=no @AMDEPBACKSLASH@
371 371
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
372 372
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`
373 373
 
374 374
 cfgparser.o: $(top_srcdir)/shared/cfgparser.c
375
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.o -MD -MP -MF "$(DEPDIR)/cfgparser.Tpo" -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c; \
376
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cfgparser.Tpo" "$(DEPDIR)/cfgparser.Po"; else rm -f "$(DEPDIR)/cfgparser.Tpo"; exit 1; fi
375
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.o -MD -MP -MF $(DEPDIR)/cfgparser.Tpo -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c
376
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cfgparser.Tpo $(DEPDIR)/cfgparser.Po
377 377
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cfgparser.c' object='cfgparser.o' libtool=no @AMDEPBACKSLASH@
378 378
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
379 379
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c
380 380
 
381 381
 cfgparser.obj: $(top_srcdir)/shared/cfgparser.c
382
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.obj -MD -MP -MF "$(DEPDIR)/cfgparser.Tpo" -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`; \
383
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cfgparser.Tpo" "$(DEPDIR)/cfgparser.Po"; else rm -f "$(DEPDIR)/cfgparser.Tpo"; exit 1; fi
382
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.obj -MD -MP -MF $(DEPDIR)/cfgparser.Tpo -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`
383
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cfgparser.Tpo $(DEPDIR)/cfgparser.Po
384 384
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cfgparser.c' object='cfgparser.obj' libtool=no @AMDEPBACKSLASH@
385 385
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
386 386
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`
387 387
 
388 388
 getopt.o: $(top_srcdir)/shared/getopt.c
389
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.o -MD -MP -MF "$(DEPDIR)/getopt.Tpo" -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c; \
390
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/getopt.Tpo" "$(DEPDIR)/getopt.Po"; else rm -f "$(DEPDIR)/getopt.Tpo"; exit 1; fi
389
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.o -MD -MP -MF $(DEPDIR)/getopt.Tpo -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c
390
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/getopt.Tpo $(DEPDIR)/getopt.Po
391 391
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/getopt.c' object='getopt.o' libtool=no @AMDEPBACKSLASH@
392 392
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
393 393
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c
394 394
 
395 395
 getopt.obj: $(top_srcdir)/shared/getopt.c
396
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.obj -MD -MP -MF "$(DEPDIR)/getopt.Tpo" -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`; \
397
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/getopt.Tpo" "$(DEPDIR)/getopt.Po"; else rm -f "$(DEPDIR)/getopt.Tpo"; exit 1; fi
396
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.obj -MD -MP -MF $(DEPDIR)/getopt.Tpo -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`
397
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/getopt.Tpo $(DEPDIR)/getopt.Po
398 398
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/getopt.c' object='getopt.obj' libtool=no @AMDEPBACKSLASH@
399 399
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
400 400
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`
401 401
 
402 402
 misc.o: $(top_srcdir)/shared/misc.c
403
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.o -MD -MP -MF "$(DEPDIR)/misc.Tpo" -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c; \
404
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/misc.Tpo" "$(DEPDIR)/misc.Po"; else rm -f "$(DEPDIR)/misc.Tpo"; exit 1; fi
403
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.o -MD -MP -MF $(DEPDIR)/misc.Tpo -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c
404
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/misc.Tpo $(DEPDIR)/misc.Po
405 405
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/misc.c' object='misc.o' libtool=no @AMDEPBACKSLASH@
406 406
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
407 407
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c
408 408
 
409 409
 misc.obj: $(top_srcdir)/shared/misc.c
410
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.obj -MD -MP -MF "$(DEPDIR)/misc.Tpo" -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`; \
411
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/misc.Tpo" "$(DEPDIR)/misc.Po"; else rm -f "$(DEPDIR)/misc.Tpo"; exit 1; fi
410
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.obj -MD -MP -MF $(DEPDIR)/misc.Tpo -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`
411
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/misc.Tpo $(DEPDIR)/misc.Po
412 412
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/misc.c' object='misc.obj' libtool=no @AMDEPBACKSLASH@
413 413
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
414 414
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`
415 415
 
416 416
 options.o: $(top_srcdir)/shared/options.c
417
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.o -MD -MP -MF "$(DEPDIR)/options.Tpo" -c -o options.o `test -f '$(top_srcdir)/shared/options.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/options.c; \
418
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/options.Tpo" "$(DEPDIR)/options.Po"; else rm -f "$(DEPDIR)/options.Tpo"; exit 1; fi
417
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.o -MD -MP -MF $(DEPDIR)/options.Tpo -c -o options.o `test -f '$(top_srcdir)/shared/options.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/options.c
418
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/options.Tpo $(DEPDIR)/options.Po
419 419
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/options.c' object='options.o' libtool=no @AMDEPBACKSLASH@
420 420
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
421 421
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o options.o `test -f '$(top_srcdir)/shared/options.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/options.c
422 422
 
423 423
 options.obj: $(top_srcdir)/shared/options.c
424
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.obj -MD -MP -MF "$(DEPDIR)/options.Tpo" -c -o options.obj `if test -f '$(top_srcdir)/shared/options.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/options.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/options.c'; fi`; \
425
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/options.Tpo" "$(DEPDIR)/options.Po"; else rm -f "$(DEPDIR)/options.Tpo"; exit 1; fi
424
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.obj -MD -MP -MF $(DEPDIR)/options.Tpo -c -o options.obj `if test -f '$(top_srcdir)/shared/options.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/options.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/options.c'; fi`
425
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/options.Tpo $(DEPDIR)/options.Po
426 426
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/options.c' object='options.obj' libtool=no @AMDEPBACKSLASH@
427 427
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
428 428
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o options.obj `if test -f '$(top_srcdir)/shared/options.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/options.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/options.c'; fi`
429 429
 
430 430
 sha256.o: $(top_srcdir)/shared/sha256.c
431
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sha256.o -MD -MP -MF "$(DEPDIR)/sha256.Tpo" -c -o sha256.o `test -f '$(top_srcdir)/shared/sha256.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/sha256.c; \
432
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/sha256.Tpo" "$(DEPDIR)/sha256.Po"; else rm -f "$(DEPDIR)/sha256.Tpo"; exit 1; fi
431
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sha256.o -MD -MP -MF $(DEPDIR)/sha256.Tpo -c -o sha256.o `test -f '$(top_srcdir)/shared/sha256.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/sha256.c
432
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/sha256.Tpo $(DEPDIR)/sha256.Po
433 433
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/sha256.c' object='sha256.o' libtool=no @AMDEPBACKSLASH@
434 434
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
435 435
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sha256.o `test -f '$(top_srcdir)/shared/sha256.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/sha256.c
436 436
 
437 437
 sha256.obj: $(top_srcdir)/shared/sha256.c
438
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sha256.obj -MD -MP -MF "$(DEPDIR)/sha256.Tpo" -c -o sha256.obj `if test -f '$(top_srcdir)/shared/sha256.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/sha256.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/sha256.c'; fi`; \
439
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/sha256.Tpo" "$(DEPDIR)/sha256.Po"; else rm -f "$(DEPDIR)/sha256.Tpo"; exit 1; fi
438
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sha256.obj -MD -MP -MF $(DEPDIR)/sha256.Tpo -c -o sha256.obj `if test -f '$(top_srcdir)/shared/sha256.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/sha256.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/sha256.c'; fi`
439
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/sha256.Tpo $(DEPDIR)/sha256.Po
440 440
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/sha256.c' object='sha256.obj' libtool=no @AMDEPBACKSLASH@
441 441
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
442 442
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sha256.obj `if test -f '$(top_srcdir)/shared/sha256.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/sha256.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/sha256.c'; fi`
443 443
 
444 444
 cdiff.o: $(top_srcdir)/shared/cdiff.c
445
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cdiff.o -MD -MP -MF "$(DEPDIR)/cdiff.Tpo" -c -o cdiff.o `test -f '$(top_srcdir)/shared/cdiff.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cdiff.c; \
446
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cdiff.Tpo" "$(DEPDIR)/cdiff.Po"; else rm -f "$(DEPDIR)/cdiff.Tpo"; exit 1; fi
445
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cdiff.o -MD -MP -MF $(DEPDIR)/cdiff.Tpo -c -o cdiff.o `test -f '$(top_srcdir)/shared/cdiff.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cdiff.c
446
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cdiff.Tpo $(DEPDIR)/cdiff.Po
447 447
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cdiff.c' object='cdiff.o' libtool=no @AMDEPBACKSLASH@
448 448
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
449 449
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cdiff.o `test -f '$(top_srcdir)/shared/cdiff.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cdiff.c
450 450
 
451 451
 cdiff.obj: $(top_srcdir)/shared/cdiff.c
452
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cdiff.obj -MD -MP -MF "$(DEPDIR)/cdiff.Tpo" -c -o cdiff.obj `if test -f '$(top_srcdir)/shared/cdiff.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cdiff.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cdiff.c'; fi`; \
453
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cdiff.Tpo" "$(DEPDIR)/cdiff.Po"; else rm -f "$(DEPDIR)/cdiff.Tpo"; exit 1; fi
452
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cdiff.obj -MD -MP -MF $(DEPDIR)/cdiff.Tpo -c -o cdiff.obj `if test -f '$(top_srcdir)/shared/cdiff.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cdiff.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cdiff.c'; fi`
453
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cdiff.Tpo $(DEPDIR)/cdiff.Po
454 454
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cdiff.c' object='cdiff.obj' libtool=no @AMDEPBACKSLASH@
455 455
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
456 456
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cdiff.obj `if test -f '$(top_srcdir)/shared/cdiff.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cdiff.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cdiff.c'; fi`
... ...
@@ -461,10 +454,6 @@ mostlyclean-libtool:
461 461
 clean-libtool:
462 462
 	-rm -rf .libs _libs
463 463
 
464
-distclean-libtool:
465
-	-rm -f libtool
466
-uninstall-info-am:
467
-
468 464
 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
469 465
 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
470 466
 	unique=`for i in $$list; do \
... ...
@@ -514,22 +503,21 @@ distclean-tags:
514 514
 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
515 515
 
516 516
 distdir: $(DISTFILES)
517
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
518
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
519
-	list='$(DISTFILES)'; for file in $$list; do \
520
-	  case $$file in \
521
-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
522
-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
523
-	  esac; \
517
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
518
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
519
+	list='$(DISTFILES)'; \
520
+	  dist_files=`for file in $$list; do echo $$file; done | \
521
+	  sed -e "s|^$$srcdirstrip/||;t" \
522
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
523
+	case $$dist_files in \
524
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
525
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
526
+			   sort -u` ;; \
527
+	esac; \
528
+	for file in $$dist_files; do \
524 529
 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
525
-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
526
-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
527
-	    dir="/$$dir"; \
528
-	    $(mkdir_p) "$(distdir)$$dir"; \
529
-	  else \
530
-	    dir=''; \
531
-	  fi; \
532 530
 	  if test -d $$d/$$file; then \
531
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
533 532
 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
534 533
 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
535 534
 	    fi; \
... ...
@@ -545,7 +533,7 @@ check: check-am
545 545
 all-am: Makefile $(PROGRAMS)
546 546
 installdirs:
547 547
 	for dir in "$(DESTDIR)$(bindir)"; do \
548
-	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
548
+	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
549 549
 	done
550 550
 install: install-am
551 551
 install-exec: install-exec-am
... ...
@@ -579,7 +567,7 @@ distclean: distclean-am
579 579
 	-rm -rf ./$(DEPDIR)
580 580
 	-rm -f Makefile
581 581
 distclean-am: clean-am distclean-compile distclean-generic \
582
-	distclean-libtool distclean-tags
582
+	distclean-tags
583 583
 
584 584
 dvi: dvi-am
585 585
 
... ...
@@ -593,12 +581,20 @@ info-am:
593 593
 
594 594
 install-data-am:
595 595
 
596
+install-dvi: install-dvi-am
597
+
596 598
 install-exec-am: install-binPROGRAMS
597 599
 
600
+install-html: install-html-am
601
+
598 602
 install-info: install-info-am
599 603
 
600 604
 install-man:
601 605
 
606
+install-pdf: install-pdf-am
607
+
608
+install-ps: install-ps-am
609
+
602 610
 installcheck-am:
603 611
 
604 612
 maintainer-clean: maintainer-clean-am
... ...
@@ -619,19 +615,23 @@ ps: ps-am
619 619
 
620 620
 ps-am:
621 621
 
622
-uninstall-am: uninstall-binPROGRAMS uninstall-info-am
622
+uninstall-am: uninstall-binPROGRAMS
623
+
624
+.MAKE: install-am install-strip
623 625
 
624 626
 .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
625 627
 	clean-generic clean-libtool ctags distclean distclean-compile \
626 628
 	distclean-generic distclean-libtool distclean-tags distdir dvi \
627 629
 	dvi-am html html-am info info-am install install-am \
628
-	install-binPROGRAMS install-data install-data-am install-exec \
629
-	install-exec-am install-info install-info-am install-man \
630
+	install-binPROGRAMS install-data install-data-am install-dvi \
631
+	install-dvi-am install-exec install-exec-am install-html \
632
+	install-html-am install-info install-info-am install-man \
633
+	install-pdf install-pdf-am install-ps install-ps-am \
630 634
 	install-strip installcheck installcheck-am installdirs \
631 635
 	maintainer-clean maintainer-clean-generic mostlyclean \
632 636
 	mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
633 637
 	pdf pdf-am ps ps-am tags uninstall uninstall-am \
634
-	uninstall-binPROGRAMS uninstall-info-am
638
+	uninstall-binPROGRAMS
635 639
 
636 640
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
637 641
 # Otherwise a system limit (for SysV at least) may be exceeded.
... ...
@@ -1,7 +1,7 @@
1 1
 #!/bin/sh
2 2
 # install - install a program, script, or datafile
3 3
 
4
-scriptversion=2005-05-14.22
4
+scriptversion=2006-10-14.15
5 5
 
6 6
 # This originates from X11R5 (mit/util/scripts/install.sh), which was
7 7
 # later released in X11R6 (xc/config/util/install.sh) with the
... ...
@@ -39,15 +39,24 @@ scriptversion=2005-05-14.22
39 39
 # when there is no Makefile.
40 40
 #
41 41
 # This script is compatible with the BSD install script, but was written
42
-# from scratch.  It can only install one file at a time, a restriction
43
-# shared with many OS's install programs.
42
+# from scratch.
43
+
44
+nl='
45
+'
46
+IFS=" ""	$nl"
44 47
 
45 48
 # set DOITPROG to echo to test this script
46 49
 
47 50
 # Don't use :- since 4.3BSD and earlier shells don't like it.
48 51
 doit="${DOITPROG-}"
52
+if test -z "$doit"; then
53
+  doit_exec=exec
54
+else
55
+  doit_exec=$doit
56
+fi
49 57
 
50
-# put in absolute paths if you don't have them in your path; or use env. vars.
58
+# Put in absolute file names if you don't have them in your path;
59
+# or use environment vars.
51 60
 
52 61
 mvprog="${MVPROG-mv}"
53 62
 cpprog="${CPPROG-cp}"
... ...
@@ -58,7 +67,13 @@ stripprog="${STRIPPROG-strip}"
58 58
 rmprog="${RMPROG-rm}"
59 59
 mkdirprog="${MKDIRPROG-mkdir}"
60 60
 
61
-chmodcmd="$chmodprog 0755"
61
+posix_glob=
62
+posix_mkdir=
63
+
64
+# Desired mode of installed file.
65
+mode=0755
66
+
67
+chmodcmd=$chmodprog
62 68
 chowncmd=
63 69
 chgrpcmd=
64 70
 stripcmd=
... ...
@@ -95,7 +110,7 @@ Environment variables override the default commands:
95 95
   CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG
96 96
 "
97 97
 
98
-while test -n "$1"; do
98
+while test $# -ne 0; do
99 99
   case $1 in
100 100
     -c) shift
101 101
         continue;;
... ...
@@ -111,9 +126,15 @@ while test -n "$1"; do
111 111
 
112 112
     --help) echo "$usage"; exit $?;;
113 113
 
114
-    -m) chmodcmd="$chmodprog $2"
114
+    -m) mode=$2
115 115
         shift
116 116
         shift
117
+	case $mode in
118
+	  *' '* | *'	'* | *'
119
+'*	  | *'*'* | *'?'* | *'['*)
120
+	    echo "$0: invalid mode: $mode" >&2
121
+	    exit 1;;
122
+	esac
117 123
         continue;;
118 124
 
119 125
     -o) chowncmd="$chownprog $2"
... ...
@@ -136,25 +157,33 @@ while test -n "$1"; do
136 136
 
137 137
     --version) echo "$0 $scriptversion"; exit $?;;
138 138
 
139
-    *)  # When -d is used, all remaining arguments are directories to create.
140
-	# When -t is used, the destination is already specified.
141
-	test -n "$dir_arg$dstarg" && break
142
-        # Otherwise, the last argument is the destination.  Remove it from $@.
143
-	for arg
144
-	do
145
-          if test -n "$dstarg"; then
146
-	    # $@ is not empty: it contains at least $arg.
147
-	    set fnord "$@" "$dstarg"
148
-	    shift # fnord
149
-	  fi
150
-	  shift # arg
151
-	  dstarg=$arg
152
-	done
139
+    --)	shift
153 140
 	break;;
141
+
142
+    -*)	echo "$0: invalid option: $1" >&2
143
+	exit 1;;
144
+
145
+    *)  break;;
154 146
   esac
155 147
 done
156 148
 
157
-if test -z "$1"; then
149
+if test $# -ne 0 && test -z "$dir_arg$dstarg"; then
150
+  # When -d is used, all remaining arguments are directories to create.
151
+  # When -t is used, the destination is already specified.
152
+  # Otherwise, the last argument is the destination.  Remove it from $@.
153
+  for arg
154
+  do
155
+    if test -n "$dstarg"; then
156
+      # $@ is not empty: it contains at least $arg.
157
+      set fnord "$@" "$dstarg"
158
+      shift # fnord
159
+    fi
160
+    shift # arg
161
+    dstarg=$arg
162
+  done
163
+fi
164
+
165
+if test $# -eq 0; then
158 166
   if test -z "$dir_arg"; then
159 167
     echo "$0: no input file specified." >&2
160 168
     exit 1
... ...
@@ -164,6 +193,33 @@ if test -z "$1"; then
164 164
   exit 0
165 165
 fi
166 166
 
167
+if test -z "$dir_arg"; then
168
+  trap '(exit $?); exit' 1 2 13 15
169
+
170
+  # Set umask so as not to create temps with too-generous modes.
171
+  # However, 'strip' requires both read and write access to temps.
172
+  case $mode in
173
+    # Optimize common cases.
174
+    *644) cp_umask=133;;
175
+    *755) cp_umask=22;;
176
+
177
+    *[0-7])
178
+      if test -z "$stripcmd"; then
179
+	u_plus_rw=
180
+      else
181
+	u_plus_rw='% 200'
182
+      fi
183
+      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
184
+    *)
185
+      if test -z "$stripcmd"; then
186
+	u_plus_rw=
187
+      else
188
+	u_plus_rw=,u+rw
189
+      fi
190
+      cp_umask=$mode$u_plus_rw;;
191
+  esac
192
+fi
193
+
167 194
 for src
168 195
 do
169 196
   # Protect names starting with `-'.
... ...
@@ -173,15 +229,11 @@ do
173 173
 
174 174
   if test -n "$dir_arg"; then
175 175
     dst=$src
176
-    src=
177
-
178
-    if test -d "$dst"; then
179
-      mkdircmd=:
180
-      chmodcmd=
181
-    else
182
-      mkdircmd=$mkdirprog
183
-    fi
176
+    dstdir=$dst
177
+    test -d "$dstdir"
178
+    dstdir_status=$?
184 179
   else
180
+
185 181
     # Waiting for this to be detected by the "$cpprog $src $dsttmp" command
186 182
     # might cause directories to be created, which would be especially bad
187 183
     # if $src (and thus $dsttmp) contains '*'.
... ...
@@ -208,53 +260,188 @@ do
208 208
 	echo "$0: $dstarg: Is a directory" >&2
209 209
 	exit 1
210 210
       fi
211
-      dst=$dst/`basename "$src"`
211
+      dstdir=$dst
212
+      dst=$dstdir/`basename "$src"`
213
+      dstdir_status=0
214
+    else
215
+      # Prefer dirname, but fall back on a substitute if dirname fails.
216
+      dstdir=`
217
+	(dirname "$dst") 2>/dev/null ||
218
+	expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
219
+	     X"$dst" : 'X\(//\)[^/]' \| \
220
+	     X"$dst" : 'X\(//\)$' \| \
221
+	     X"$dst" : 'X\(/\)' \| . 2>/dev/null ||
222
+	echo X"$dst" |
223
+	    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
224
+		   s//\1/
225
+		   q
226
+		 }
227
+		 /^X\(\/\/\)[^/].*/{
228
+		   s//\1/
229
+		   q
230
+		 }
231
+		 /^X\(\/\/\)$/{
232
+		   s//\1/
233
+		   q
234
+		 }
235
+		 /^X\(\/\).*/{
236
+		   s//\1/
237
+		   q
238
+		 }
239
+		 s/.*/./; q'
240
+      `
241
+
242
+      test -d "$dstdir"
243
+      dstdir_status=$?
212 244
     fi
213 245
   fi
214 246
 
215
-  # This sed command emulates the dirname command.
216
-  dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'`
217
-
218
-  # Make sure that the destination directory exists.
219
-
220
-  # Skip lots of stat calls in the usual case.
221
-  if test ! -d "$dstdir"; then
222
-    defaultIFS='
223
-	 '
224
-    IFS="${IFS-$defaultIFS}"
225
-
226
-    oIFS=$IFS
227
-    # Some sh's can't handle IFS=/ for some reason.
228
-    IFS='%'
229
-    set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'`
230
-    shift
231
-    IFS=$oIFS
247
+  obsolete_mkdir_used=false
248
+
249
+  if test $dstdir_status != 0; then
250
+    case $posix_mkdir in
251
+      '')
252
+	# Create intermediate dirs using mode 755 as modified by the umask.
253
+	# This is like FreeBSD 'install' as of 1997-10-28.
254
+	umask=`umask`
255
+	case $stripcmd.$umask in
256
+	  # Optimize common cases.
257
+	  *[2367][2367]) mkdir_umask=$umask;;
258
+	  .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;
259
+
260
+	  *[0-7])
261
+	    mkdir_umask=`expr $umask + 22 \
262
+	      - $umask % 100 % 40 + $umask % 20 \
263
+	      - $umask % 10 % 4 + $umask % 2
264
+	    `;;
265
+	  *) mkdir_umask=$umask,go-w;;
266
+	esac
267
+
268
+	# With -d, create the new directory with the user-specified mode.
269
+	# Otherwise, rely on $mkdir_umask.
270
+	if test -n "$dir_arg"; then
271
+	  mkdir_mode=-m$mode
272
+	else
273
+	  mkdir_mode=
274
+	fi
275
+
276
+	posix_mkdir=false
277
+	case $umask in
278
+	  *[123567][0-7][0-7])
279
+	    # POSIX mkdir -p sets u+wx bits regardless of umask, which
280
+	    # is incompatible with FreeBSD 'install' when (umask & 300) != 0.
281
+	    ;;
282
+	  *)
283
+	    tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
284
+	    trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0
285
+
286
+	    if (umask $mkdir_umask &&
287
+		exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1
288
+	    then
289
+	      if test -z "$dir_arg" || {
290
+		   # Check for POSIX incompatibilities with -m.
291
+		   # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
292
+		   # other-writeable bit of parent directory when it shouldn't.
293
+		   # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
294
+		   ls_ld_tmpdir=`ls -ld "$tmpdir"`
295
+		   case $ls_ld_tmpdir in
296
+		     d????-?r-*) different_mode=700;;
297
+		     d????-?--*) different_mode=755;;
298
+		     *) false;;
299
+		   esac &&
300
+		   $mkdirprog -m$different_mode -p -- "$tmpdir" && {
301
+		     ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
302
+		     test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
303
+		   }
304
+		 }
305
+	      then posix_mkdir=:
306
+	      fi
307
+	      rmdir "$tmpdir/d" "$tmpdir"
308
+	    else
309
+	      # Remove any dirs left behind by ancient mkdir implementations.
310
+	      rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null
311
+	    fi
312
+	    trap '' 0;;
313
+	esac;;
314
+    esac
232 315
 
233
-    pathcomp=
316
+    if
317
+      $posix_mkdir && (
318
+	umask $mkdir_umask &&
319
+	$doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
320
+      )
321
+    then :
322
+    else
234 323
 
235
-    while test $# -ne 0 ; do
236
-      pathcomp=$pathcomp$1
324
+      # The umask is ridiculous, or mkdir does not conform to POSIX,
325
+      # or it failed possibly due to a race condition.  Create the
326
+      # directory the slow way, step by step, checking for races as we go.
327
+
328
+      case $dstdir in
329
+	/*) prefix=/ ;;
330
+	-*) prefix=./ ;;
331
+	*)  prefix= ;;
332
+      esac
333
+
334
+      case $posix_glob in
335
+        '')
336
+	  if (set -f) 2>/dev/null; then
337
+	    posix_glob=true
338
+	  else
339
+	    posix_glob=false
340
+	  fi ;;
341
+      esac
342
+
343
+      oIFS=$IFS
344
+      IFS=/
345
+      $posix_glob && set -f
346
+      set fnord $dstdir
237 347
       shift
238
-      if test ! -d "$pathcomp"; then
239
-        $mkdirprog "$pathcomp"
240
-	# mkdir can fail with a `File exist' error in case several
241
-	# install-sh are creating the directory concurrently.  This
242
-	# is OK.
243
-	test -d "$pathcomp" || exit
348
+      $posix_glob && set +f
349
+      IFS=$oIFS
350
+
351
+      prefixes=
352
+
353
+      for d
354
+      do
355
+	test -z "$d" && continue
356
+
357
+	prefix=$prefix$d
358
+	if test -d "$prefix"; then
359
+	  prefixes=
360
+	else
361
+	  if $posix_mkdir; then
362
+	    (umask=$mkdir_umask &&
363
+	     $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
364
+	    # Don't fail if two instances are running concurrently.
365
+	    test -d "$prefix" || exit 1
366
+	  else
367
+	    case $prefix in
368
+	      *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
369
+	      *) qprefix=$prefix;;
370
+	    esac
371
+	    prefixes="$prefixes '$qprefix'"
372
+	  fi
373
+	fi
374
+	prefix=$prefix/
375
+      done
376
+
377
+      if test -n "$prefixes"; then
378
+	# Don't fail if two instances are running concurrently.
379
+	(umask $mkdir_umask &&
380
+	 eval "\$doit_exec \$mkdirprog $prefixes") ||
381
+	  test -d "$dstdir" || exit 1
382
+	obsolete_mkdir_used=true
244 383
       fi
245
-      pathcomp=$pathcomp/
246
-    done
384
+    fi
247 385
   fi
248 386
 
249 387
   if test -n "$dir_arg"; then
250
-    $doit $mkdircmd "$dst" \
251
-      && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \
252
-      && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \
253
-      && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \
254
-      && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; }
255
-
388
+    { test -z "$chowncmd" || $doit $chowncmd "$dst"; } &&
389
+    { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } &&
390
+    { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false ||
391
+      test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1
256 392
   else
257
-    dstfile=`basename "$dst"`
258 393
 
259 394
     # Make a couple of temp file names in the proper directory.
260 395
     dsttmp=$dstdir/_inst.$$_
... ...
@@ -262,10 +449,9 @@ do
262 262
 
263 263
     # Trap to clean up those temp files at exit.
264 264
     trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
265
-    trap '(exit $?); exit' 1 2 13 15
266 265
 
267 266
     # Copy the file name to the temp name.
268
-    $doit $cpprog "$src" "$dsttmp" &&
267
+    (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") &&
269 268
 
270 269
     # and set any options; do chmod last to preserve setuid bits.
271 270
     #
... ...
@@ -276,10 +462,10 @@ do
276 276
     { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \
277 277
       && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \
278 278
       && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \
279
-      && { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } &&
279
+      && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
280 280
 
281 281
     # Now rename the file to the real destination.
282
-    { $doit $mvcmd -f "$dsttmp" "$dstdir/$dstfile" 2>/dev/null \
282
+    { $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null \
283 283
       || {
284 284
 	   # The rename failed, perhaps because mv can't rename something else
285 285
 	   # to itself, or perhaps because mv is so ancient that it does not
... ...
@@ -291,11 +477,12 @@ do
291 291
 	   # reasons.  In this case, the final cleanup might fail but the new
292 292
 	   # file should still install successfully.
293 293
 	   {
294
-	     if test -f "$dstdir/$dstfile"; then
295
-	       $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \
296
-	       || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \
294
+	     if test -f "$dst"; then
295
+	       $doit $rmcmd -f "$dst" 2>/dev/null \
296
+	       || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null \
297
+		     && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }; }\
297 298
 	       || {
298
-		 echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2
299
+		 echo "$0: cannot unlink or rename $dst" >&2
299 300
 		 (exit 1); exit 1
300 301
 	       }
301 302
 	     else
... ...
@@ -304,16 +491,13 @@ do
304 304
 	   } &&
305 305
 
306 306
 	   # Now rename the file to the real destination.
307
-	   $doit $mvcmd "$dsttmp" "$dstdir/$dstfile"
307
+	   $doit $mvcmd "$dsttmp" "$dst"
308 308
 	 }
309
-    }
310
-  fi || { (exit 1); exit 1; }
311
-done
309
+    } || exit 1
312 310
 
313
-# The final little trick to "correctly" pass the exit status to the exit trap.
314
-{
315
-  (exit 0); exit 0
316
-}
311
+    trap '' 0
312
+  fi
313
+done
317 314
 
318 315
 # Local variables:
319 316
 # eval: (add-hook 'write-file-hooks 'time-stamp)
... ...
@@ -1,8 +1,8 @@
1
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
1
+# Makefile.in generated by automake 1.10 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
-# 2003, 2004, 2005  Free Software Foundation, Inc.
5
+# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6 6
 # This Makefile.in is free software; the Free Software Foundation
7 7
 # gives unlimited permission to copy and/or distribute it,
8 8
 # with or without modifications, as long as this notice is preserved.
... ...
@@ -33,15 +33,11 @@
33 33
 #  MA 02110-1301, USA.
34 34
 
35 35
 
36
-srcdir = @srcdir@
37
-top_srcdir = @top_srcdir@
38 36
 VPATH = @srcdir@
39 37
 pkgdatadir = $(datadir)/@PACKAGE@
40 38
 pkglibdir = $(libdir)/@PACKAGE@
41 39
 pkgincludedir = $(includedir)/@PACKAGE@
42
-top_builddir = ..
43 40
 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
44
-INSTALL = @INSTALL@
45 41
 install_sh_DATA = $(install_sh) -c -m 644
46 42
 install_sh_PROGRAM = $(install_sh) -c
47 43
 install_sh_SCRIPT = $(install_sh) -c
... ...
@@ -93,42 +89,45 @@ am_libclamav_la_OBJECTS = matcher-ac.lo matcher-bm.lo matcher.lo \
93 93
 	regex_list.lo mspack.lo cab.lo entconv.lo hashtab.lo dconf.lo \
94 94
 	lockdb.lo lzma_iface.lo
95 95
 libclamav_la_OBJECTS = $(am_libclamav_la_OBJECTS)
96
-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
96
+libclamav_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
97
+	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
98
+	$(libclamav_la_LDFLAGS) $(LDFLAGS) -o $@
99
+DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
97 100
 depcomp = $(SHELL) $(top_srcdir)/depcomp
98 101
 am__depfiles_maybe = depfiles
99 102
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
100 103
 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
101
-LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
102
-	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
103
-	$(AM_CFLAGS) $(CFLAGS)
104
+LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
105
+	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
106
+	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
104 107
 CCLD = $(CC)
105
-LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
106
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
108
+LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
109
+	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
110
+	$(LDFLAGS) -o $@
107 111
 SOURCES = $(libclamav_la_SOURCES)
108 112
 DIST_SOURCES = $(libclamav_la_SOURCES)
109 113
 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
110 114
 	html-recursive info-recursive install-data-recursive \
111
-	install-exec-recursive install-info-recursive \
112
-	install-recursive installcheck-recursive installdirs-recursive \
113
-	pdf-recursive ps-recursive uninstall-info-recursive \
114
-	uninstall-recursive
115
+	install-dvi-recursive install-exec-recursive \
116
+	install-html-recursive install-info-recursive \
117
+	install-pdf-recursive install-ps-recursive install-recursive \
118
+	installcheck-recursive installdirs-recursive pdf-recursive \
119
+	ps-recursive uninstall-recursive
115 120
 includeHEADERS_INSTALL = $(INSTALL_HEADER)
116 121
 HEADERS = $(include_HEADERS)
122
+RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
123
+  distclean-recursive maintainer-clean-recursive
117 124
 ETAGS = etags
118 125
 CTAGS = ctags
119 126
 DIST_SUBDIRS = $(SUBDIRS)
120 127
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
121 128
 ACLOCAL = @ACLOCAL@
122
-AMDEP_FALSE = @AMDEP_FALSE@
123
-AMDEP_TRUE = @AMDEP_TRUE@
124 129
 AMTAR = @AMTAR@
125 130
 AR = @AR@
126 131
 AUTOCONF = @AUTOCONF@
127 132
 AUTOHEADER = @AUTOHEADER@
128 133
 AUTOMAKE = @AUTOMAKE@
129 134
 AWK = @AWK@
130
-BUILD_CLAMD_FALSE = @BUILD_CLAMD_FALSE@
131
-BUILD_CLAMD_TRUE = @BUILD_CLAMD_TRUE@
132 135
 CC = @CC@
133 136
 CCDEPMODE = @CCDEPMODE@
134 137
 CFGDIR = @CFGDIR@
... ...
@@ -152,16 +151,13 @@ ECHO_C = @ECHO_C@
152 152
 ECHO_N = @ECHO_N@
153 153
 ECHO_T = @ECHO_T@
154 154
 EGREP = @EGREP@
155
-ENABLE_UNRAR_FALSE = @ENABLE_UNRAR_FALSE@
156
-ENABLE_UNRAR_TRUE = @ENABLE_UNRAR_TRUE@
157 155
 EXEEXT = @EXEEXT@
158 156
 F77 = @F77@
159 157
 FFLAGS = @FFLAGS@
160 158
 FRESHCLAM_LIBS = @FRESHCLAM_LIBS@
161 159
 GETENT = @GETENT@
162 160
 GREP = @GREP@
163
-HAVE_MILTER_FALSE = @HAVE_MILTER_FALSE@
164
-HAVE_MILTER_TRUE = @HAVE_MILTER_TRUE@
161
+INSTALL = @INSTALL@
165 162
 INSTALL_DATA = @INSTALL_DATA@
166 163
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
167 164
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
... ...
@@ -175,9 +171,8 @@ LIBTOOL = @LIBTOOL@
175 175
 LN_S = @LN_S@
176 176
 LTLIBOBJS = @LTLIBOBJS@
177 177
 MAINT = @MAINT@
178
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
179
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
180 178
 MAKEINFO = @MAKEINFO@
179
+MKDIR_P = @MKDIR_P@
181 180
 OBJEXT = @OBJEXT@
182 181
 PACKAGE = @PACKAGE@
183 182
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
... ...
@@ -194,13 +189,13 @@ STRIP = @STRIP@
194 194
 THREAD_LIBS = @THREAD_LIBS@
195 195
 TH_SAFE = @TH_SAFE@
196 196
 VERSION = @VERSION@
197
+abs_builddir = @abs_builddir@
198
+abs_srcdir = @abs_srcdir@
199
+abs_top_builddir = @abs_top_builddir@
200
+abs_top_srcdir = @abs_top_srcdir@
197 201
 ac_ct_CC = @ac_ct_CC@
198 202
 ac_ct_CXX = @ac_ct_CXX@
199 203
 ac_ct_F77 = @ac_ct_F77@
200
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
201
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
202
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
203
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
204 204
 am__include = @am__include@
205 205
 am__leading_dot = @am__leading_dot@
206 206
 am__quote = @am__quote@
... ...
@@ -212,6 +207,7 @@ build_alias = @build_alias@
212 212
 build_cpu = @build_cpu@
213 213
 build_os = @build_os@
214 214
 build_vendor = @build_vendor@
215
+builddir = @builddir@
215 216
 datadir = @datadir@
216 217
 datarootdir = @datarootdir@
217 218
 docdir = @docdir@
... ...
@@ -240,12 +236,15 @@ psdir = @psdir@
240 240
 sbindir = @sbindir@
241 241
 sendmailprog = @sendmailprog@
242 242
 sharedstatedir = @sharedstatedir@
243
+srcdir = @srcdir@
243 244
 sysconfdir = @sysconfdir@
244 245
 target = @target@
245 246
 target_alias = @target_alias@
246 247
 target_cpu = @target_cpu@
247 248
 target_os = @target_os@
248 249
 target_vendor = @target_vendor@
250
+top_builddir = @top_builddir@
251
+top_srcdir = @top_srcdir@
249 252
 SUBDIRS = lzma .
250 253
 INCLUDES = -I$(top_srcdir) -I@srcdir@/nsis -I@srcdir@/lzma
251 254
 @ENABLE_UNRAR_FALSE@libclamav_la_LIBADD = @LIBCLAMAV_LIBS@ @THREAD_LIBS@ lzma/liblzma.la
... ...
@@ -438,7 +437,7 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
438 438
 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
439 439
 install-libLTLIBRARIES: $(lib_LTLIBRARIES)
440 440
 	@$(NORMAL_INSTALL)
441
-	test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
441
+	test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
442 442
 	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
443 443
 	  if test -f $$p; then \
444 444
 	    f=$(am__strip_dir) \
... ...
@@ -449,7 +448,7 @@ install-libLTLIBRARIES: $(lib_LTLIBRARIES)
449 449
 
450 450
 uninstall-libLTLIBRARIES:
451 451
 	@$(NORMAL_UNINSTALL)
452
-	@set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \
452
+	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
453 453
 	  p=$(am__strip_dir) \
454 454
 	  echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
455 455
 	  $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
... ...
@@ -464,7 +463,7 @@ clean-libLTLIBRARIES:
464 464
 	  rm -f "$${dir}/so_locations"; \
465 465
 	done
466 466
 libclamav.la: $(libclamav_la_OBJECTS) $(libclamav_la_DEPENDENCIES) 
467
-	$(LINK) -rpath $(libdir) $(libclamav_la_LDFLAGS) $(libclamav_la_OBJECTS) $(libclamav_la_LIBADD) $(LIBS)
467
+	$(libclamav_la_LINK) -rpath $(libdir) $(libclamav_la_OBJECTS) $(libclamav_la_LIBADD) $(LIBS)
468 468
 
469 469
 mostlyclean-compile:
470 470
 	-rm -f *.$(OBJEXT)
... ...
@@ -543,87 +542,83 @@ distclean-compile:
543 543
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/yc.Plo@am__quote@
544 544
 
545 545
 .c.o:
546
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
547
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
546
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
547
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
548 548
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
549 549
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
550 550
 @am__fastdepCC_FALSE@	$(COMPILE) -c $<
551 551
 
552 552
 .c.obj:
553
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
554
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
553
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
554
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
555 555
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
556 556
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
557 557
 @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
558 558
 
559 559
 .c.lo:
560
-@am__fastdepCC_TRUE@	if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
561
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
560
+@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
561
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
562 562
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
563 563
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
564 564
 @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
565 565
 
566 566
 strlcpy.lo: regex/strlcpy.c
567
-@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT strlcpy.lo -MD -MP -MF "$(DEPDIR)/strlcpy.Tpo" -c -o strlcpy.lo `test -f 'regex/strlcpy.c' || echo '$(srcdir)/'`regex/strlcpy.c; \
568
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/strlcpy.Tpo" "$(DEPDIR)/strlcpy.Plo"; else rm -f "$(DEPDIR)/strlcpy.Tpo"; exit 1; fi
567
+@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT strlcpy.lo -MD -MP -MF $(DEPDIR)/strlcpy.Tpo -c -o strlcpy.lo `test -f 'regex/strlcpy.c' || echo '$(srcdir)/'`regex/strlcpy.c
568
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/strlcpy.Tpo $(DEPDIR)/strlcpy.Plo
569 569
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='regex/strlcpy.c' object='strlcpy.lo' libtool=yes @AMDEPBACKSLASH@
570 570
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
571
-@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o strlcpy.lo `test -f 'regex/strlcpy.c' || echo '$(srcdir)/'`regex/strlcpy.c
571
+@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o strlcpy.lo `test -f 'regex/strlcpy.c' || echo '$(srcdir)/'`regex/strlcpy.c
572 572
 
573 573
 regcomp.lo: regex/regcomp.c
574
-@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT regcomp.lo -MD -MP -MF "$(DEPDIR)/regcomp.Tpo" -c -o regcomp.lo `test -f 'regex/regcomp.c' || echo '$(srcdir)/'`regex/regcomp.c; \
575
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/regcomp.Tpo" "$(DEPDIR)/regcomp.Plo"; else rm -f "$(DEPDIR)/regcomp.Tpo"; exit 1; fi
574
+@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT regcomp.lo -MD -MP -MF $(DEPDIR)/regcomp.Tpo -c -o regcomp.lo `test -f 'regex/regcomp.c' || echo '$(srcdir)/'`regex/regcomp.c
575
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/regcomp.Tpo $(DEPDIR)/regcomp.Plo
576 576
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='regex/regcomp.c' object='regcomp.lo' libtool=yes @AMDEPBACKSLASH@
577 577
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
578
-@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o regcomp.lo `test -f 'regex/regcomp.c' || echo '$(srcdir)/'`regex/regcomp.c
578
+@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o regcomp.lo `test -f 'regex/regcomp.c' || echo '$(srcdir)/'`regex/regcomp.c
579 579
 
580 580
 regerror.lo: regex/regerror.c
581
-@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT regerror.lo -MD -MP -MF "$(DEPDIR)/regerror.Tpo" -c -o regerror.lo `test -f 'regex/regerror.c' || echo '$(srcdir)/'`regex/regerror.c; \
582
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/regerror.Tpo" "$(DEPDIR)/regerror.Plo"; else rm -f "$(DEPDIR)/regerror.Tpo"; exit 1; fi
581
+@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT regerror.lo -MD -MP -MF $(DEPDIR)/regerror.Tpo -c -o regerror.lo `test -f 'regex/regerror.c' || echo '$(srcdir)/'`regex/regerror.c
582
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/regerror.Tpo $(DEPDIR)/regerror.Plo
583 583
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='regex/regerror.c' object='regerror.lo' libtool=yes @AMDEPBACKSLASH@
584 584
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
585
-@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o regerror.lo `test -f 'regex/regerror.c' || echo '$(srcdir)/'`regex/regerror.c
585
+@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o regerror.lo `test -f 'regex/regerror.c' || echo '$(srcdir)/'`regex/regerror.c
586 586
 
587 587
 regexec.lo: regex/regexec.c
588
-@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT regexec.lo -MD -MP -MF "$(DEPDIR)/regexec.Tpo" -c -o regexec.lo `test -f 'regex/regexec.c' || echo '$(srcdir)/'`regex/regexec.c; \
589
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/regexec.Tpo" "$(DEPDIR)/regexec.Plo"; else rm -f "$(DEPDIR)/regexec.Tpo"; exit 1; fi
588
+@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT regexec.lo -MD -MP -MF $(DEPDIR)/regexec.Tpo -c -o regexec.lo `test -f 'regex/regexec.c' || echo '$(srcdir)/'`regex/regexec.c
589
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/regexec.Tpo $(DEPDIR)/regexec.Plo
590 590
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='regex/regexec.c' object='regexec.lo' libtool=yes @AMDEPBACKSLASH@
591 591
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
592
-@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o regexec.lo `test -f 'regex/regexec.c' || echo '$(srcdir)/'`regex/regexec.c
592
+@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o regexec.lo `test -f 'regex/regexec.c' || echo '$(srcdir)/'`regex/regexec.c
593 593
 
594 594
 regfree.lo: regex/regfree.c
595
-@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT regfree.lo -MD -MP -MF "$(DEPDIR)/regfree.Tpo" -c -o regfree.lo `test -f 'regex/regfree.c' || echo '$(srcdir)/'`regex/regfree.c; \
596
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/regfree.Tpo" "$(DEPDIR)/regfree.Plo"; else rm -f "$(DEPDIR)/regfree.Tpo"; exit 1; fi
595
+@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT regfree.lo -MD -MP -MF $(DEPDIR)/regfree.Tpo -c -o regfree.lo `test -f 'regex/regfree.c' || echo '$(srcdir)/'`regex/regfree.c
596
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/regfree.Tpo $(DEPDIR)/regfree.Plo
597 597
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='regex/regfree.c' object='regfree.lo' libtool=yes @AMDEPBACKSLASH@
598 598
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
599
-@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o regfree.lo `test -f 'regex/regfree.c' || echo '$(srcdir)/'`regex/regfree.c
599
+@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o regfree.lo `test -f 'regex/regfree.c' || echo '$(srcdir)/'`regex/regfree.c
600 600
 
601 601
 bzlib.lo: nsis/bzlib.c
602
-@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bzlib.lo -MD -MP -MF "$(DEPDIR)/bzlib.Tpo" -c -o bzlib.lo `test -f 'nsis/bzlib.c' || echo '$(srcdir)/'`nsis/bzlib.c; \
603
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/bzlib.Tpo" "$(DEPDIR)/bzlib.Plo"; else rm -f "$(DEPDIR)/bzlib.Tpo"; exit 1; fi
602
+@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bzlib.lo -MD -MP -MF $(DEPDIR)/bzlib.Tpo -c -o bzlib.lo `test -f 'nsis/bzlib.c' || echo '$(srcdir)/'`nsis/bzlib.c
603
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/bzlib.Tpo $(DEPDIR)/bzlib.Plo
604 604
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='nsis/bzlib.c' object='bzlib.lo' libtool=yes @AMDEPBACKSLASH@
605 605
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
606
-@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bzlib.lo `test -f 'nsis/bzlib.c' || echo '$(srcdir)/'`nsis/bzlib.c
606
+@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bzlib.lo `test -f 'nsis/bzlib.c' || echo '$(srcdir)/'`nsis/bzlib.c
607 607
 
608 608
 nulsft.lo: nsis/nulsft.c
609
-@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nulsft.lo -MD -MP -MF "$(DEPDIR)/nulsft.Tpo" -c -o nulsft.lo `test -f 'nsis/nulsft.c' || echo '$(srcdir)/'`nsis/nulsft.c; \
610
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/nulsft.Tpo" "$(DEPDIR)/nulsft.Plo"; else rm -f "$(DEPDIR)/nulsft.Tpo"; exit 1; fi
609
+@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nulsft.lo -MD -MP -MF $(DEPDIR)/nulsft.Tpo -c -o nulsft.lo `test -f 'nsis/nulsft.c' || echo '$(srcdir)/'`nsis/nulsft.c
610
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/nulsft.Tpo $(DEPDIR)/nulsft.Plo
611 611
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='nsis/nulsft.c' object='nulsft.lo' libtool=yes @AMDEPBACKSLASH@
612 612
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
613
-@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nulsft.lo `test -f 'nsis/nulsft.c' || echo '$(srcdir)/'`nsis/nulsft.c
613
+@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nulsft.lo `test -f 'nsis/nulsft.c' || echo '$(srcdir)/'`nsis/nulsft.c
614 614
 
615 615
 mostlyclean-libtool:
616 616
 	-rm -f *.lo
617 617
 
618 618
 clean-libtool:
619 619
 	-rm -rf .libs _libs
620
-
621
-distclean-libtool:
622
-	-rm -f libtool
623
-uninstall-info-am:
624 620
 install-includeHEADERS: $(include_HEADERS)
625 621
 	@$(NORMAL_INSTALL)
626
-	test -z "$(includedir)" || $(mkdir_p) "$(DESTDIR)$(includedir)"
622
+	test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
627 623
 	@list='$(include_HEADERS)'; for p in $$list; do \
628 624
 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
629 625
 	  f=$(am__strip_dir) \
... ...
@@ -670,8 +665,7 @@ $(RECURSIVE_TARGETS):
670 670
 	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
671 671
 	fi; test -z "$$fail"
672 672
 
673
-mostlyclean-recursive clean-recursive distclean-recursive \
674
-maintainer-clean-recursive:
673
+$(RECURSIVE_CLEAN_TARGETS):
675 674
 	@failcom='exit 1'; \
676 675
 	for f in x $$MAKEFLAGS; do \
677 676
 	  case $$f in \
... ...
@@ -772,23 +766,21 @@ distclean-tags:
772 772
 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
773 773
 
774 774
 distdir: $(DISTFILES)
775
-	$(mkdir_p) $(distdir)/regex
776
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
777
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
778
-	list='$(DISTFILES)'; for file in $$list; do \
779
-	  case $$file in \
780
-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
781
-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
782
-	  esac; \
775
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
776
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
777
+	list='$(DISTFILES)'; \
778
+	  dist_files=`for file in $$list; do echo $$file; done | \
779
+	  sed -e "s|^$$srcdirstrip/||;t" \
780
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
781
+	case $$dist_files in \
782
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
783
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
784
+			   sort -u` ;; \
785
+	esac; \
786
+	for file in $$dist_files; do \
783 787
 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
784
-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
785
-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
786
-	    dir="/$$dir"; \
787
-	    $(mkdir_p) "$(distdir)$$dir"; \
788
-	  else \
789
-	    dir=''; \
790
-	  fi; \
791 788
 	  if test -d $$d/$$file; then \
789
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
792 790
 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
793 791
 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
794 792
 	    fi; \
... ...
@@ -802,7 +794,7 @@ distdir: $(DISTFILES)
802 802
 	list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
803 803
 	  if test "$$subdir" = .; then :; else \
804 804
 	    test -d "$(distdir)/$$subdir" \
805
-	    || $(mkdir_p) "$(distdir)/$$subdir" \
805
+	    || $(MKDIR_P) "$(distdir)/$$subdir" \
806 806
 	    || exit 1; \
807 807
 	    distdir=`$(am__cd) $(distdir) && pwd`; \
808 808
 	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
... ...
@@ -810,6 +802,8 @@ distdir: $(DISTFILES)
810 810
 	      $(MAKE) $(AM_MAKEFLAGS) \
811 811
 	        top_distdir="$$top_distdir" \
812 812
 	        distdir="$$distdir/$$subdir" \
813
+		am__remove_distdir=: \
814
+		am__skip_length_check=: \
813 815
 	        distdir) \
814 816
 	      || exit 1; \
815 817
 	  fi; \
... ...
@@ -820,7 +814,7 @@ all-am: Makefile $(LTLIBRARIES) $(HEADERS)
820 820
 installdirs: installdirs-recursive
821 821
 installdirs-am:
822 822
 	for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"; do \
823
-	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
823
+	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
824 824
 	done
825 825
 install: install-recursive
826 826
 install-exec: install-exec-recursive
... ...
@@ -855,7 +849,7 @@ distclean: distclean-recursive
855 855
 	-rm -rf ./$(DEPDIR)
856 856
 	-rm -f Makefile
857 857
 distclean-am: clean-am distclean-compile distclean-generic \
858
-	distclean-libtool distclean-tags
858
+	distclean-tags
859 859
 
860 860
 dvi: dvi-recursive
861 861
 
... ...
@@ -869,12 +863,20 @@ info-am:
869 869
 
870 870
 install-data-am: install-includeHEADERS
871 871
 
872
+install-dvi: install-dvi-recursive
873
+
872 874
 install-exec-am: install-libLTLIBRARIES
873 875
 
876
+install-html: install-html-recursive
877
+
874 878
 install-info: install-info-recursive
875 879
 
876 880
 install-man:
877 881
 
882
+install-pdf: install-pdf-recursive
883
+
884
+install-ps: install-ps-recursive
885
+
878 886
 installcheck-am:
879 887
 
880 888
 maintainer-clean: maintainer-clean-recursive
... ...
@@ -895,27 +897,27 @@ ps: ps-recursive
895 895
 
896 896
 ps-am:
897 897
 
898
-uninstall-am: uninstall-includeHEADERS uninstall-info-am \
899
-	uninstall-libLTLIBRARIES
898
+uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES
900 899
 
901
-uninstall-info: uninstall-info-recursive
900
+.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
901
+	install-strip
902 902
 
903
-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
904
-	clean clean-generic clean-libLTLIBRARIES clean-libtool \
905
-	clean-recursive ctags ctags-recursive distclean \
906
-	distclean-compile distclean-generic distclean-libtool \
907
-	distclean-recursive distclean-tags distdir dvi dvi-am html \
903
+.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
904
+	all all-am check check-am clean clean-generic \
905
+	clean-libLTLIBRARIES clean-libtool ctags ctags-recursive \
906
+	distclean distclean-compile distclean-generic \
907
+	distclean-libtool distclean-tags distdir dvi dvi-am html \
908 908
 	html-am info info-am install install-am install-data \
909
-	install-data-am install-exec install-exec-am \
909
+	install-data-am install-dvi install-dvi-am install-exec \
910
+	install-exec-am install-html install-html-am \
910 911
 	install-includeHEADERS install-info install-info-am \
911
-	install-libLTLIBRARIES install-man install-strip installcheck \
912
+	install-libLTLIBRARIES install-man install-pdf install-pdf-am \
913
+	install-ps install-ps-am install-strip installcheck \
912 914
 	installcheck-am installdirs installdirs-am maintainer-clean \
913
-	maintainer-clean-generic maintainer-clean-recursive \
914
-	mostlyclean mostlyclean-compile mostlyclean-generic \
915
-	mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \
915
+	maintainer-clean-generic mostlyclean mostlyclean-compile \
916
+	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
916 917
 	tags tags-recursive uninstall uninstall-am \
917
-	uninstall-includeHEADERS uninstall-info-am \
918
-	uninstall-libLTLIBRARIES
918
+	uninstall-includeHEADERS uninstall-libLTLIBRARIES
919 919
 
920 920
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
921 921
 # Otherwise a system limit (for SysV at least) may be exceeded.
... ...
@@ -1,8 +1,8 @@
1
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
1
+# Makefile.in generated by automake 1.10 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
-# 2003, 2004, 2005  Free Software Foundation, Inc.
5
+# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6 6
 # This Makefile.in is free software; the Free Software Foundation
7 7
 # gives unlimited permission to copy and/or distribute it,
8 8
 # with or without modifications, as long as this notice is preserved.
... ...
@@ -33,15 +33,11 @@
33 33
 #  MA 02110-1301, USA.
34 34
 #
35 35
 
36
-srcdir = @srcdir@
37
-top_srcdir = @top_srcdir@
38 36
 VPATH = @srcdir@
39 37
 pkgdatadir = $(datadir)/@PACKAGE@
40 38
 pkglibdir = $(libdir)/@PACKAGE@
41 39
 pkgincludedir = $(includedir)/@PACKAGE@
42
-top_builddir = ../..
43 40
 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
44
-INSTALL = @INSTALL@
45 41
 install_sh_DATA = $(install_sh) -c -m 644
46 42
 install_sh_PROGRAM = $(install_sh) -c
47 43
 install_sh_SCRIPT = $(install_sh) -c
... ...
@@ -78,33 +74,33 @@ LTLIBRARIES = $(lib_LTLIBRARIES)
78 78
 liblzma_la_LIBADD =
79 79
 am_liblzma_la_OBJECTS = LzmaStateDecode.lo
80 80
 liblzma_la_OBJECTS = $(am_liblzma_la_OBJECTS)
81
-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
81
+liblzma_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
82
+	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
83
+	$(liblzma_la_LDFLAGS) $(LDFLAGS) -o $@
84
+DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
82 85
 depcomp = $(SHELL) $(top_srcdir)/depcomp
83 86
 am__depfiles_maybe = depfiles
84 87
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
85 88
 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
86
-LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
87
-	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
88
-	$(AM_CFLAGS) $(CFLAGS)
89
+LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
90
+	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
91
+	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
89 92
 CCLD = $(CC)
90
-LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
91
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
93
+LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
94
+	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
95
+	$(LDFLAGS) -o $@
92 96
 SOURCES = $(liblzma_la_SOURCES)
93 97
 DIST_SOURCES = $(liblzma_la_SOURCES)
94 98
 ETAGS = etags
95 99
 CTAGS = ctags
96 100
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
97 101
 ACLOCAL = @ACLOCAL@
98
-AMDEP_FALSE = @AMDEP_FALSE@
99
-AMDEP_TRUE = @AMDEP_TRUE@
100 102
 AMTAR = @AMTAR@
101 103
 AR = @AR@
102 104
 AUTOCONF = @AUTOCONF@
103 105
 AUTOHEADER = @AUTOHEADER@
104 106
 AUTOMAKE = @AUTOMAKE@
105 107
 AWK = @AWK@
106
-BUILD_CLAMD_FALSE = @BUILD_CLAMD_FALSE@
107
-BUILD_CLAMD_TRUE = @BUILD_CLAMD_TRUE@
108 108
 CC = @CC@
109 109
 CCDEPMODE = @CCDEPMODE@
110 110
 CFGDIR = @CFGDIR@
... ...
@@ -128,16 +124,13 @@ ECHO_C = @ECHO_C@
128 128
 ECHO_N = @ECHO_N@
129 129
 ECHO_T = @ECHO_T@
130 130
 EGREP = @EGREP@
131
-ENABLE_UNRAR_FALSE = @ENABLE_UNRAR_FALSE@
132
-ENABLE_UNRAR_TRUE = @ENABLE_UNRAR_TRUE@
133 131
 EXEEXT = @EXEEXT@
134 132
 F77 = @F77@
135 133
 FFLAGS = @FFLAGS@
136 134
 FRESHCLAM_LIBS = @FRESHCLAM_LIBS@
137 135
 GETENT = @GETENT@
138 136
 GREP = @GREP@
139
-HAVE_MILTER_FALSE = @HAVE_MILTER_FALSE@
140
-HAVE_MILTER_TRUE = @HAVE_MILTER_TRUE@
137
+INSTALL = @INSTALL@
141 138
 INSTALL_DATA = @INSTALL_DATA@
142 139
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
143 140
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
... ...
@@ -151,9 +144,8 @@ LIBTOOL = @LIBTOOL@
151 151
 LN_S = @LN_S@
152 152
 LTLIBOBJS = @LTLIBOBJS@
153 153
 MAINT = @MAINT@
154
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
155
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
156 154
 MAKEINFO = @MAKEINFO@
155
+MKDIR_P = @MKDIR_P@
157 156
 OBJEXT = @OBJEXT@
158 157
 PACKAGE = @PACKAGE@
159 158
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
... ...
@@ -170,13 +162,13 @@ STRIP = @STRIP@
170 170
 THREAD_LIBS = @THREAD_LIBS@
171 171
 TH_SAFE = @TH_SAFE@
172 172
 VERSION = @VERSION@
173
+abs_builddir = @abs_builddir@
174
+abs_srcdir = @abs_srcdir@
175
+abs_top_builddir = @abs_top_builddir@
176
+abs_top_srcdir = @abs_top_srcdir@
173 177
 ac_ct_CC = @ac_ct_CC@
174 178
 ac_ct_CXX = @ac_ct_CXX@
175 179
 ac_ct_F77 = @ac_ct_F77@
176
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
177
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
178
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
179
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
180 180
 am__include = @am__include@
181 181
 am__leading_dot = @am__leading_dot@
182 182
 am__quote = @am__quote@
... ...
@@ -188,6 +180,7 @@ build_alias = @build_alias@
188 188
 build_cpu = @build_cpu@
189 189
 build_os = @build_os@
190 190
 build_vendor = @build_vendor@
191
+builddir = @builddir@
191 192
 datadir = @datadir@
192 193
 datarootdir = @datarootdir@
193 194
 docdir = @docdir@
... ...
@@ -216,12 +209,15 @@ psdir = @psdir@
216 216
 sbindir = @sbindir@
217 217
 sendmailprog = @sendmailprog@
218 218
 sharedstatedir = @sharedstatedir@
219
+srcdir = @srcdir@
219 220
 sysconfdir = @sysconfdir@
220 221
 target = @target@
221 222
 target_alias = @target_alias@
222 223
 target_cpu = @target_cpu@
223 224
 target_os = @target_os@
224 225
 target_vendor = @target_vendor@
226
+top_builddir = @top_builddir@
227
+top_srcdir = @top_srcdir@
225 228
 AM_CFLAGS = -fPIC -DPIC
226 229
 lib_LTLIBRARIES = liblzma.la
227 230
 liblzma_la_SOURCES = LzmaStateDecode.c
... ...
@@ -261,7 +257,7 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
261 261
 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
262 262
 install-libLTLIBRARIES: $(lib_LTLIBRARIES)
263 263
 	@$(NORMAL_INSTALL)
264
-	test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
264
+	test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
265 265
 	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
266 266
 	  if test -f $$p; then \
267 267
 	    f=$(am__strip_dir) \
... ...
@@ -272,7 +268,7 @@ install-libLTLIBRARIES: $(lib_LTLIBRARIES)
272 272
 
273 273
 uninstall-libLTLIBRARIES:
274 274
 	@$(NORMAL_UNINSTALL)
275
-	@set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \
275
+	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
276 276
 	  p=$(am__strip_dir) \
277 277
 	  echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
278 278
 	  $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
... ...
@@ -287,7 +283,7 @@ clean-libLTLIBRARIES:
287 287
 	  rm -f "$${dir}/so_locations"; \
288 288
 	done
289 289
 liblzma.la: $(liblzma_la_OBJECTS) $(liblzma_la_DEPENDENCIES) 
290
-	$(LINK) -rpath $(libdir) $(liblzma_la_LDFLAGS) $(liblzma_la_OBJECTS) $(liblzma_la_LIBADD) $(LIBS)
290
+	$(liblzma_la_LINK) -rpath $(libdir) $(liblzma_la_OBJECTS) $(liblzma_la_LIBADD) $(LIBS)
291 291
 
292 292
 mostlyclean-compile:
293 293
 	-rm -f *.$(OBJEXT)
... ...
@@ -298,22 +294,22 @@ distclean-compile:
298 298
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LzmaStateDecode.Plo@am__quote@
299 299
 
300 300
 .c.o:
301
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
302
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
301
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
302
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
303 303
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
304 304
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
305 305
 @am__fastdepCC_FALSE@	$(COMPILE) -c $<
306 306
 
307 307
 .c.obj:
308
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
309
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
308
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
309
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
310 310
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
311 311
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
312 312
 @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
313 313
 
314 314
 .c.lo:
315
-@am__fastdepCC_TRUE@	if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
316
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
315
+@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
316
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
317 317
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
318 318
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
319 319
 @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
... ...
@@ -324,10 +320,6 @@ mostlyclean-libtool:
324 324
 clean-libtool:
325 325
 	-rm -rf .libs _libs
326 326
 
327
-distclean-libtool:
328
-	-rm -f libtool
329
-uninstall-info-am:
330
-
331 327
 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
332 328
 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
333 329
 	unique=`for i in $$list; do \
... ...
@@ -377,22 +369,21 @@ distclean-tags:
377 377
 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
378 378
 
379 379
 distdir: $(DISTFILES)
380
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
381
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
382
-	list='$(DISTFILES)'; for file in $$list; do \
383
-	  case $$file in \
384
-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
385
-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
386
-	  esac; \
380
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
381
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
382
+	list='$(DISTFILES)'; \
383
+	  dist_files=`for file in $$list; do echo $$file; done | \
384
+	  sed -e "s|^$$srcdirstrip/||;t" \
385
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
386
+	case $$dist_files in \
387
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
388
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
389
+			   sort -u` ;; \
390
+	esac; \
391
+	for file in $$dist_files; do \
387 392
 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
388
-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
389
-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
390
-	    dir="/$$dir"; \
391
-	    $(mkdir_p) "$(distdir)$$dir"; \
392
-	  else \
393
-	    dir=''; \
394
-	  fi; \
395 393
 	  if test -d $$d/$$file; then \
394
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
396 395
 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
397 396
 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
398 397
 	    fi; \
... ...
@@ -408,7 +399,7 @@ check: check-am
408 408
 all-am: Makefile $(LTLIBRARIES)
409 409
 installdirs:
410 410
 	for dir in "$(DESTDIR)$(libdir)"; do \
411
-	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
411
+	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
412 412
 	done
413 413
 install: install-am
414 414
 install-exec: install-exec-am
... ...
@@ -443,7 +434,7 @@ distclean: distclean-am
443 443
 	-rm -rf ./$(DEPDIR)
444 444
 	-rm -f Makefile
445 445
 distclean-am: clean-am distclean-compile distclean-generic \
446
-	distclean-libtool distclean-tags
446
+	distclean-tags
447 447
 
448 448
 dvi: dvi-am
449 449
 
... ...
@@ -457,12 +448,20 @@ info-am:
457 457
 
458 458
 install-data-am:
459 459
 
460
+install-dvi: install-dvi-am
461
+
460 462
 install-exec-am: install-libLTLIBRARIES
461 463
 
464
+install-html: install-html-am
465
+
462 466
 install-info: install-info-am
463 467
 
464 468
 install-man:
465 469
 
470
+install-pdf: install-pdf-am
471
+
472
+install-ps: install-ps-am
473
+
466 474
 installcheck-am:
467 475
 
468 476
 maintainer-clean: maintainer-clean-am
... ...
@@ -483,20 +482,23 @@ ps: ps-am
483 483
 
484 484
 ps-am:
485 485
 
486
-uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES
486
+uninstall-am: uninstall-libLTLIBRARIES
487
+
488
+.MAKE: install-am install-strip
487 489
 
488 490
 .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
489 491
 	clean-libLTLIBRARIES clean-libtool ctags distclean \
490 492
 	distclean-compile distclean-generic distclean-libtool \
491 493
 	distclean-tags distdir dvi dvi-am html html-am info info-am \
492
-	install install-am install-data install-data-am install-exec \
493
-	install-exec-am install-info install-info-am \
494
-	install-libLTLIBRARIES install-man install-strip installcheck \
494
+	install install-am install-data install-data-am install-dvi \
495
+	install-dvi-am install-exec install-exec-am install-html \
496
+	install-html-am install-info install-info-am \
497
+	install-libLTLIBRARIES install-man install-pdf install-pdf-am \
498
+	install-ps install-ps-am install-strip installcheck \
495 499
 	installcheck-am installdirs maintainer-clean \
496 500
 	maintainer-clean-generic mostlyclean mostlyclean-compile \
497 501
 	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
498
-	tags uninstall uninstall-am uninstall-info-am \
499
-	uninstall-libLTLIBRARIES
502
+	tags uninstall uninstall-am uninstall-libLTLIBRARIES
500 503
 
501 504
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
502 505
 # Otherwise a system limit (for SysV at least) may be exceeded.
... ...
@@ -1,8 +1,8 @@
1
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
1
+# Makefile.in generated by automake 1.10 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
-# 2003, 2004, 2005  Free Software Foundation, Inc.
5
+# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6 6
 # This Makefile.in is free software; the Free Software Foundation
7 7
 # gives unlimited permission to copy and/or distribute it,
8 8
 # with or without modifications, as long as this notice is preserved.
... ...
@@ -18,15 +18,11 @@
18 18
 #  Copyright (C) 2007 Trog <trog@clamav.net>
19 19
 #
20 20
 
21
-srcdir = @srcdir@
22
-top_srcdir = @top_srcdir@
23 21
 VPATH = @srcdir@
24 22
 pkgdatadir = $(datadir)/@PACKAGE@
25 23
 pkglibdir = $(libdir)/@PACKAGE@
26 24
 pkgincludedir = $(includedir)/@PACKAGE@
27
-top_builddir = ..
28 25
 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
29
-INSTALL = @INSTALL@
30 26
 install_sh_DATA = $(install_sh) -c -m 644
31 27
 install_sh_PROGRAM = $(install_sh) -c
32 28
 install_sh_SCRIPT = $(install_sh) -c
... ...
@@ -69,34 +65,34 @@ am__libclamunrar_la_SOURCES_DIST = unrar15.c unrar20.h unrar.h \
69 69
 @ENABLE_UNRAR_TRUE@	unrar20.lo unrarppm.lo unrarvm.lo \
70 70
 @ENABLE_UNRAR_TRUE@	unrarcmd.lo unrarfilter.lo unrarhlp.lo
71 71
 libclamunrar_la_OBJECTS = $(am_libclamunrar_la_OBJECTS)
72
+libclamunrar_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
73
+	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
74
+	$(libclamunrar_la_LDFLAGS) $(LDFLAGS) -o $@
72 75
 @ENABLE_UNRAR_TRUE@am_libclamunrar_la_rpath = -rpath $(libdir)
73
-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
76
+DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
74 77
 depcomp = $(SHELL) $(top_srcdir)/depcomp
75 78
 am__depfiles_maybe = depfiles
76 79
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
77 80
 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
78
-LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
79
-	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
80
-	$(AM_CFLAGS) $(CFLAGS)
81
+LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
82
+	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
83
+	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
81 84
 CCLD = $(CC)
82
-LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
83
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
85
+LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
86
+	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
87
+	$(LDFLAGS) -o $@
84 88
 SOURCES = $(libclamunrar_la_SOURCES)
85 89
 DIST_SOURCES = $(am__libclamunrar_la_SOURCES_DIST)
86 90
 ETAGS = etags
87 91
 CTAGS = ctags
88 92
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
89 93
 ACLOCAL = @ACLOCAL@
90
-AMDEP_FALSE = @AMDEP_FALSE@
91
-AMDEP_TRUE = @AMDEP_TRUE@
92 94
 AMTAR = @AMTAR@
93 95
 AR = @AR@
94 96
 AUTOCONF = @AUTOCONF@
95 97
 AUTOHEADER = @AUTOHEADER@
96 98
 AUTOMAKE = @AUTOMAKE@
97 99
 AWK = @AWK@
98
-BUILD_CLAMD_FALSE = @BUILD_CLAMD_FALSE@
99
-BUILD_CLAMD_TRUE = @BUILD_CLAMD_TRUE@
100 100
 CC = @CC@
101 101
 CCDEPMODE = @CCDEPMODE@
102 102
 CFGDIR = @CFGDIR@
... ...
@@ -120,16 +116,13 @@ ECHO_C = @ECHO_C@
120 120
 ECHO_N = @ECHO_N@
121 121
 ECHO_T = @ECHO_T@
122 122
 EGREP = @EGREP@
123
-ENABLE_UNRAR_FALSE = @ENABLE_UNRAR_FALSE@
124
-ENABLE_UNRAR_TRUE = @ENABLE_UNRAR_TRUE@
125 123
 EXEEXT = @EXEEXT@
126 124
 F77 = @F77@
127 125
 FFLAGS = @FFLAGS@
128 126
 FRESHCLAM_LIBS = @FRESHCLAM_LIBS@
129 127
 GETENT = @GETENT@
130 128
 GREP = @GREP@
131
-HAVE_MILTER_FALSE = @HAVE_MILTER_FALSE@
132
-HAVE_MILTER_TRUE = @HAVE_MILTER_TRUE@
129
+INSTALL = @INSTALL@
133 130
 INSTALL_DATA = @INSTALL_DATA@
134 131
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
135 132
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
... ...
@@ -143,9 +136,8 @@ LIBTOOL = @LIBTOOL@
143 143
 LN_S = @LN_S@
144 144
 LTLIBOBJS = @LTLIBOBJS@
145 145
 MAINT = @MAINT@
146
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
147
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
148 146
 MAKEINFO = @MAKEINFO@
147
+MKDIR_P = @MKDIR_P@
149 148
 OBJEXT = @OBJEXT@
150 149
 PACKAGE = @PACKAGE@
151 150
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
... ...
@@ -162,13 +154,13 @@ STRIP = @STRIP@
162 162
 THREAD_LIBS = @THREAD_LIBS@
163 163
 TH_SAFE = @TH_SAFE@
164 164
 VERSION = @VERSION@
165
+abs_builddir = @abs_builddir@
166
+abs_srcdir = @abs_srcdir@
167
+abs_top_builddir = @abs_top_builddir@
168
+abs_top_srcdir = @abs_top_srcdir@
165 169
 ac_ct_CC = @ac_ct_CC@
166 170
 ac_ct_CXX = @ac_ct_CXX@
167 171
 ac_ct_F77 = @ac_ct_F77@
168
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
169
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
170
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
171
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
172 172
 am__include = @am__include@
173 173
 am__leading_dot = @am__leading_dot@
174 174
 am__quote = @am__quote@
... ...
@@ -180,6 +172,7 @@ build_alias = @build_alias@
180 180
 build_cpu = @build_cpu@
181 181
 build_os = @build_os@
182 182
 build_vendor = @build_vendor@
183
+builddir = @builddir@
183 184
 datadir = @datadir@
184 185
 datarootdir = @datarootdir@
185 186
 docdir = @docdir@
... ...
@@ -208,12 +201,15 @@ psdir = @psdir@
208 208
 sbindir = @sbindir@
209 209
 sendmailprog = @sendmailprog@
210 210
 sharedstatedir = @sharedstatedir@
211
+srcdir = @srcdir@
211 212
 sysconfdir = @sysconfdir@
212 213
 target = @target@
213 214
 target_alias = @target_alias@
214 215
 target_cpu = @target_cpu@
215 216
 target_os = @target_os@
216 217
 target_vendor = @target_vendor@
218
+top_builddir = @top_builddir@
219
+top_srcdir = @top_srcdir@
217 220
 @ENABLE_UNRAR_TRUE@INCLUDES = -I$(top_srcdir)
218 221
 @ENABLE_UNRAR_TRUE@libclamunrar_la_LDFLAGS = @TH_SAFE@ -version-info @LIBCLAMAV_VERSION@ -no-undefined
219 222
 @ENABLE_UNRAR_TRUE@libclamunrar_la_SOURCES = \
... ...
@@ -271,7 +267,7 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
271 271
 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
272 272
 install-libLTLIBRARIES: $(lib_LTLIBRARIES)
273 273
 	@$(NORMAL_INSTALL)
274
-	test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
274
+	test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
275 275
 	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
276 276
 	  if test -f $$p; then \
277 277
 	    f=$(am__strip_dir) \
... ...
@@ -282,7 +278,7 @@ install-libLTLIBRARIES: $(lib_LTLIBRARIES)
282 282
 
283 283
 uninstall-libLTLIBRARIES:
284 284
 	@$(NORMAL_UNINSTALL)
285
-	@set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \
285
+	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
286 286
 	  p=$(am__strip_dir) \
287 287
 	  echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
288 288
 	  $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
... ...
@@ -297,7 +293,7 @@ clean-libLTLIBRARIES:
297 297
 	  rm -f "$${dir}/so_locations"; \
298 298
 	done
299 299
 libclamunrar.la: $(libclamunrar_la_OBJECTS) $(libclamunrar_la_DEPENDENCIES) 
300
-	$(LINK) $(am_libclamunrar_la_rpath) $(libclamunrar_la_LDFLAGS) $(libclamunrar_la_OBJECTS) $(libclamunrar_la_LIBADD) $(LIBS)
300
+	$(libclamunrar_la_LINK) $(am_libclamunrar_la_rpath) $(libclamunrar_la_OBJECTS) $(libclamunrar_la_LIBADD) $(LIBS)
301 301
 
302 302
 mostlyclean-compile:
303 303
 	-rm -f *.$(OBJEXT)
... ...
@@ -315,22 +311,22 @@ distclean-compile:
315 315
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unrarvm.Plo@am__quote@
316 316
 
317 317
 .c.o:
318
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
319
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
318
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
319
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
320 320
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
321 321
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
322 322
 @am__fastdepCC_FALSE@	$(COMPILE) -c $<
323 323
 
324 324
 .c.obj:
325
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
326
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
325
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
326
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
327 327
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
328 328
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
329 329
 @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
330 330
 
331 331
 .c.lo:
332
-@am__fastdepCC_TRUE@	if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
333
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
332
+@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
333
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
334 334
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
335 335
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
336 336
 @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
... ...
@@ -341,10 +337,6 @@ mostlyclean-libtool:
341 341
 clean-libtool:
342 342
 	-rm -rf .libs _libs
343 343
 
344
-distclean-libtool:
345
-	-rm -f libtool
346
-uninstall-info-am:
347
-
348 344
 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
349 345
 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
350 346
 	unique=`for i in $$list; do \
... ...
@@ -394,22 +386,21 @@ distclean-tags:
394 394
 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
395 395
 
396 396
 distdir: $(DISTFILES)
397
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
398
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
399
-	list='$(DISTFILES)'; for file in $$list; do \
400
-	  case $$file in \
401
-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
402
-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
403
-	  esac; \
397
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
398
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
399
+	list='$(DISTFILES)'; \
400
+	  dist_files=`for file in $$list; do echo $$file; done | \
401
+	  sed -e "s|^$$srcdirstrip/||;t" \
402
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
403
+	case $$dist_files in \
404
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
405
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
406
+			   sort -u` ;; \
407
+	esac; \
408
+	for file in $$dist_files; do \
404 409
 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
405
-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
406
-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
407
-	    dir="/$$dir"; \
408
-	    $(mkdir_p) "$(distdir)$$dir"; \
409
-	  else \
410
-	    dir=''; \
411
-	  fi; \
412 410
 	  if test -d $$d/$$file; then \
411
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
413 412
 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
414 413
 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
415 414
 	    fi; \
... ...
@@ -425,7 +416,7 @@ check: check-am
425 425
 all-am: Makefile $(LTLIBRARIES)
426 426
 installdirs:
427 427
 	for dir in "$(DESTDIR)$(libdir)"; do \
428
-	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
428
+	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
429 429
 	done
430 430
 install: install-am
431 431
 install-exec: install-exec-am
... ...
@@ -460,7 +451,7 @@ distclean: distclean-am
460 460
 	-rm -rf ./$(DEPDIR)
461 461
 	-rm -f Makefile
462 462
 distclean-am: clean-am distclean-compile distclean-generic \
463
-	distclean-libtool distclean-tags
463
+	distclean-tags
464 464
 
465 465
 dvi: dvi-am
466 466
 
... ...
@@ -474,12 +465,20 @@ info-am:
474 474
 
475 475
 install-data-am:
476 476
 
477
+install-dvi: install-dvi-am
478
+
477 479
 install-exec-am: install-libLTLIBRARIES
478 480
 
481
+install-html: install-html-am
482
+
479 483
 install-info: install-info-am
480 484
 
481 485
 install-man:
482 486
 
487
+install-pdf: install-pdf-am
488
+
489
+install-ps: install-ps-am
490
+
483 491
 installcheck-am:
484 492
 
485 493
 maintainer-clean: maintainer-clean-am
... ...
@@ -500,20 +499,23 @@ ps: ps-am
500 500
 
501 501
 ps-am:
502 502
 
503
-uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES
503
+uninstall-am: uninstall-libLTLIBRARIES
504
+
505
+.MAKE: install-am install-strip
504 506
 
505 507
 .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
506 508
 	clean-libLTLIBRARIES clean-libtool ctags distclean \
507 509
 	distclean-compile distclean-generic distclean-libtool \
508 510
 	distclean-tags distdir dvi dvi-am html html-am info info-am \
509
-	install install-am install-data install-data-am install-exec \
510
-	install-exec-am install-info install-info-am \
511
-	install-libLTLIBRARIES install-man install-strip installcheck \
511
+	install install-am install-data install-data-am install-dvi \
512
+	install-dvi-am install-exec install-exec-am install-html \
513
+	install-html-am install-info install-info-am \
514
+	install-libLTLIBRARIES install-man install-pdf install-pdf-am \
515
+	install-ps install-ps-am install-strip installcheck \
512 516
 	installcheck-am installdirs maintainer-clean \
513 517
 	maintainer-clean-generic mostlyclean mostlyclean-compile \
514 518
 	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
515
-	tags uninstall uninstall-am uninstall-info-am \
516
-	uninstall-libLTLIBRARIES
519
+	tags uninstall uninstall-am uninstall-libLTLIBRARIES
517 520
 
518 521
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
519 522
 # Otherwise a system limit (for SysV at least) may be exceeded.
... ...
@@ -1,8 +1,8 @@
1
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
1
+# Makefile.in generated by automake 1.10 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
-# 2003, 2004, 2005  Free Software Foundation, Inc.
5
+# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6 6
 # This Makefile.in is free software; the Free Software Foundation
7 7
 # gives unlimited permission to copy and/or distribute it,
8 8
 # with or without modifications, as long as this notice is preserved.
... ...
@@ -18,15 +18,11 @@
18 18
 #  Copyright (C) 2007 Sourcefire, Inc.
19 19
 #
20 20
 
21
-srcdir = @srcdir@
22
-top_srcdir = @top_srcdir@
23 21
 VPATH = @srcdir@
24 22
 pkgdatadir = $(datadir)/@PACKAGE@
25 23
 pkglibdir = $(libdir)/@PACKAGE@
26 24
 pkgincludedir = $(includedir)/@PACKAGE@
27
-top_builddir = ..
28 25
 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
29
-INSTALL = @INSTALL@
30 26
 install_sh_DATA = $(install_sh) -c -m 644
31 27
 install_sh_PROGRAM = $(install_sh) -c
32 28
 install_sh_SCRIPT = $(install_sh) -c
... ...
@@ -64,34 +60,34 @@ LTLIBRARIES = $(lib_LTLIBRARIES)
64 64
 am__libclamunrar_iface_la_SOURCES_DIST = unrar_iface.c unrar_iface.h
65 65
 @ENABLE_UNRAR_TRUE@am_libclamunrar_iface_la_OBJECTS = unrar_iface.lo
66 66
 libclamunrar_iface_la_OBJECTS = $(am_libclamunrar_iface_la_OBJECTS)
67
+libclamunrar_iface_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
68
+	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
69
+	$(libclamunrar_iface_la_LDFLAGS) $(LDFLAGS) -o $@
67 70
 @ENABLE_UNRAR_TRUE@am_libclamunrar_iface_la_rpath = -rpath $(libdir)
68
-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
71
+DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
69 72
 depcomp = $(SHELL) $(top_srcdir)/depcomp
70 73
 am__depfiles_maybe = depfiles
71 74
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
72 75
 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
73
-LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
74
-	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
75
-	$(AM_CFLAGS) $(CFLAGS)
76
+LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
77
+	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
78
+	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
76 79
 CCLD = $(CC)
77
-LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
78
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
80
+LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
81
+	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
82
+	$(LDFLAGS) -o $@
79 83
 SOURCES = $(libclamunrar_iface_la_SOURCES)
80 84
 DIST_SOURCES = $(am__libclamunrar_iface_la_SOURCES_DIST)
81 85
 ETAGS = etags
82 86
 CTAGS = ctags
83 87
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
84 88
 ACLOCAL = @ACLOCAL@
85
-AMDEP_FALSE = @AMDEP_FALSE@
86
-AMDEP_TRUE = @AMDEP_TRUE@
87 89
 AMTAR = @AMTAR@
88 90
 AR = @AR@
89 91
 AUTOCONF = @AUTOCONF@
90 92
 AUTOHEADER = @AUTOHEADER@
91 93
 AUTOMAKE = @AUTOMAKE@
92 94
 AWK = @AWK@
93
-BUILD_CLAMD_FALSE = @BUILD_CLAMD_FALSE@
94
-BUILD_CLAMD_TRUE = @BUILD_CLAMD_TRUE@
95 95
 CC = @CC@
96 96
 CCDEPMODE = @CCDEPMODE@
97 97
 CFGDIR = @CFGDIR@
... ...
@@ -115,16 +111,13 @@ ECHO_C = @ECHO_C@
115 115
 ECHO_N = @ECHO_N@
116 116
 ECHO_T = @ECHO_T@
117 117
 EGREP = @EGREP@
118
-ENABLE_UNRAR_FALSE = @ENABLE_UNRAR_FALSE@
119
-ENABLE_UNRAR_TRUE = @ENABLE_UNRAR_TRUE@
120 118
 EXEEXT = @EXEEXT@
121 119
 F77 = @F77@
122 120
 FFLAGS = @FFLAGS@
123 121
 FRESHCLAM_LIBS = @FRESHCLAM_LIBS@
124 122
 GETENT = @GETENT@
125 123
 GREP = @GREP@
126
-HAVE_MILTER_FALSE = @HAVE_MILTER_FALSE@
127
-HAVE_MILTER_TRUE = @HAVE_MILTER_TRUE@
124
+INSTALL = @INSTALL@
128 125
 INSTALL_DATA = @INSTALL_DATA@
129 126
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
130 127
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
... ...
@@ -138,9 +131,8 @@ LIBTOOL = @LIBTOOL@
138 138
 LN_S = @LN_S@
139 139
 LTLIBOBJS = @LTLIBOBJS@
140 140
 MAINT = @MAINT@
141
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
142
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
143 141
 MAKEINFO = @MAKEINFO@
142
+MKDIR_P = @MKDIR_P@
144 143
 OBJEXT = @OBJEXT@
145 144
 PACKAGE = @PACKAGE@
146 145
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
... ...
@@ -157,13 +149,13 @@ STRIP = @STRIP@
157 157
 THREAD_LIBS = @THREAD_LIBS@
158 158
 TH_SAFE = @TH_SAFE@
159 159
 VERSION = @VERSION@
160
+abs_builddir = @abs_builddir@
161
+abs_srcdir = @abs_srcdir@
162
+abs_top_builddir = @abs_top_builddir@
163
+abs_top_srcdir = @abs_top_srcdir@
160 164
 ac_ct_CC = @ac_ct_CC@
161 165
 ac_ct_CXX = @ac_ct_CXX@
162 166
 ac_ct_F77 = @ac_ct_F77@
163
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
164
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
165
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
166
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
167 167
 am__include = @am__include@
168 168
 am__leading_dot = @am__leading_dot@
169 169
 am__quote = @am__quote@
... ...
@@ -175,6 +167,7 @@ build_alias = @build_alias@
175 175
 build_cpu = @build_cpu@
176 176
 build_os = @build_os@
177 177
 build_vendor = @build_vendor@
178
+builddir = @builddir@
178 179
 datadir = @datadir@
179 180
 datarootdir = @datarootdir@
180 181
 docdir = @docdir@
... ...
@@ -203,12 +196,15 @@ psdir = @psdir@
203 203
 sbindir = @sbindir@
204 204
 sendmailprog = @sendmailprog@
205 205
 sharedstatedir = @sharedstatedir@
206
+srcdir = @srcdir@
206 207
 sysconfdir = @sysconfdir@
207 208
 target = @target@
208 209
 target_alias = @target_alias@
209 210
 target_cpu = @target_cpu@
210 211
 target_os = @target_os@
211 212
 target_vendor = @target_vendor@
213
+top_builddir = @top_builddir@
214
+top_srcdir = @top_srcdir@
212 215
 @ENABLE_UNRAR_TRUE@INCLUDES = -I$(top_srcdir)
213 216
 @ENABLE_UNRAR_TRUE@libclamunrar_iface_la_LIBADD = $(top_builddir)/libclamunrar/libclamunrar.la
214 217
 @ENABLE_UNRAR_TRUE@libclamunrar_iface_la_LDFLAGS = @TH_SAFE@ -version-info @LIBCLAMAV_VERSION@ -no-undefined
... ...
@@ -252,7 +248,7 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
252 252
 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
253 253
 install-libLTLIBRARIES: $(lib_LTLIBRARIES)
254 254
 	@$(NORMAL_INSTALL)
255
-	test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
255
+	test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
256 256
 	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
257 257
 	  if test -f $$p; then \
258 258
 	    f=$(am__strip_dir) \
... ...
@@ -263,7 +259,7 @@ install-libLTLIBRARIES: $(lib_LTLIBRARIES)
263 263
 
264 264
 uninstall-libLTLIBRARIES:
265 265
 	@$(NORMAL_UNINSTALL)
266
-	@set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \
266
+	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
267 267
 	  p=$(am__strip_dir) \
268 268
 	  echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
269 269
 	  $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
... ...
@@ -278,7 +274,7 @@ clean-libLTLIBRARIES:
278 278
 	  rm -f "$${dir}/so_locations"; \
279 279
 	done
280 280
 libclamunrar_iface.la: $(libclamunrar_iface_la_OBJECTS) $(libclamunrar_iface_la_DEPENDENCIES) 
281
-	$(LINK) $(am_libclamunrar_iface_la_rpath) $(libclamunrar_iface_la_LDFLAGS) $(libclamunrar_iface_la_OBJECTS) $(libclamunrar_iface_la_LIBADD) $(LIBS)
281
+	$(libclamunrar_iface_la_LINK) $(am_libclamunrar_iface_la_rpath) $(libclamunrar_iface_la_OBJECTS) $(libclamunrar_iface_la_LIBADD) $(LIBS)
282 282
 
283 283
 mostlyclean-compile:
284 284
 	-rm -f *.$(OBJEXT)
... ...
@@ -289,22 +285,22 @@ distclean-compile:
289 289
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unrar_iface.Plo@am__quote@
290 290
 
291 291
 .c.o:
292
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
293
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
292
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
293
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
294 294
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
295 295
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
296 296
 @am__fastdepCC_FALSE@	$(COMPILE) -c $<
297 297
 
298 298
 .c.obj:
299
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
300
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
299
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
300
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
301 301
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
302 302
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
303 303
 @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
304 304
 
305 305
 .c.lo:
306
-@am__fastdepCC_TRUE@	if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
307
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
306
+@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
307
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
308 308
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
309 309
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
310 310
 @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
... ...
@@ -315,10 +311,6 @@ mostlyclean-libtool:
315 315
 clean-libtool:
316 316
 	-rm -rf .libs _libs
317 317
 
318
-distclean-libtool:
319
-	-rm -f libtool
320
-uninstall-info-am:
321
-
322 318
 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
323 319
 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
324 320
 	unique=`for i in $$list; do \
... ...
@@ -368,22 +360,21 @@ distclean-tags:
368 368
 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
369 369
 
370 370
 distdir: $(DISTFILES)
371
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
372
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
373
-	list='$(DISTFILES)'; for file in $$list; do \
374
-	  case $$file in \
375
-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
376
-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
377
-	  esac; \
371
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
372
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
373
+	list='$(DISTFILES)'; \
374
+	  dist_files=`for file in $$list; do echo $$file; done | \
375
+	  sed -e "s|^$$srcdirstrip/||;t" \
376
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
377
+	case $$dist_files in \
378
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
379
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
380
+			   sort -u` ;; \
381
+	esac; \
382
+	for file in $$dist_files; do \
378 383
 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
379
-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
380
-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
381
-	    dir="/$$dir"; \
382
-	    $(mkdir_p) "$(distdir)$$dir"; \
383
-	  else \
384
-	    dir=''; \
385
-	  fi; \
386 384
 	  if test -d $$d/$$file; then \
385
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
387 386
 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
388 387
 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
389 388
 	    fi; \
... ...
@@ -399,7 +390,7 @@ check: check-am
399 399
 all-am: Makefile $(LTLIBRARIES)
400 400
 installdirs:
401 401
 	for dir in "$(DESTDIR)$(libdir)"; do \
402
-	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
402
+	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
403 403
 	done
404 404
 install: install-am
405 405
 install-exec: install-exec-am
... ...
@@ -434,7 +425,7 @@ distclean: distclean-am
434 434
 	-rm -rf ./$(DEPDIR)
435 435
 	-rm -f Makefile
436 436
 distclean-am: clean-am distclean-compile distclean-generic \
437
-	distclean-libtool distclean-tags
437
+	distclean-tags
438 438
 
439 439
 dvi: dvi-am
440 440
 
... ...
@@ -448,12 +439,20 @@ info-am:
448 448
 
449 449
 install-data-am:
450 450
 
451
+install-dvi: install-dvi-am
452
+
451 453
 install-exec-am: install-libLTLIBRARIES
452 454
 
455
+install-html: install-html-am
456
+
453 457
 install-info: install-info-am
454 458
 
455 459
 install-man:
456 460
 
461
+install-pdf: install-pdf-am
462
+
463
+install-ps: install-ps-am
464
+
457 465
 installcheck-am:
458 466
 
459 467
 maintainer-clean: maintainer-clean-am
... ...
@@ -474,20 +473,23 @@ ps: ps-am
474 474
 
475 475
 ps-am:
476 476
 
477
-uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES
477
+uninstall-am: uninstall-libLTLIBRARIES
478
+
479
+.MAKE: install-am install-strip
478 480
 
479 481
 .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
480 482
 	clean-libLTLIBRARIES clean-libtool ctags distclean \
481 483
 	distclean-compile distclean-generic distclean-libtool \
482 484
 	distclean-tags distdir dvi dvi-am html html-am info info-am \
483
-	install install-am install-data install-data-am install-exec \
484
-	install-exec-am install-info install-info-am \
485
-	install-libLTLIBRARIES install-man install-strip installcheck \
485
+	install install-am install-data install-data-am install-dvi \
486
+	install-dvi-am install-exec install-exec-am install-html \
487
+	install-html-am install-info install-info-am \
488
+	install-libLTLIBRARIES install-man install-pdf install-pdf-am \
489
+	install-ps install-ps-am install-strip installcheck \
486 490
 	installcheck-am installdirs maintainer-clean \
487 491
 	maintainer-clean-generic mostlyclean mostlyclean-compile \
488 492
 	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
489
-	tags uninstall uninstall-am uninstall-info-am \
490
-	uninstall-libLTLIBRARIES
493
+	tags uninstall uninstall-am uninstall-libLTLIBRARIES
491 494
 
492 495
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
493 496
 # Otherwise a system limit (for SysV at least) may be exceeded.
... ...
@@ -1,9 +1,9 @@
1 1
 #! /bin/sh
2 2
 # Common stub for a few missing GNU programs while installing.
3 3
 
4
-scriptversion=2005-06-08.21
4
+scriptversion=2006-05-10.23
5 5
 
6
-# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005
6
+# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006
7 7
 #   Free Software Foundation, Inc.
8 8
 # Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
9 9
 
... ...
@@ -33,6 +33,8 @@ if test $# -eq 0; then
33 33
 fi
34 34
 
35 35
 run=:
36
+sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p'
37
+sed_minuso='s/.* -o \([^ ]*\).*/\1/p'
36 38
 
37 39
 # In the cases where this matters, `missing' is being run in the
38 40
 # srcdir already.
... ...
@@ -44,7 +46,7 @@ fi
44 44
 
45 45
 msg="missing on your system"
46 46
 
47
-case "$1" in
47
+case $1 in
48 48
 --run)
49 49
   # Try to run requested program, and just exit if it succeeds.
50 50
   run=
... ...
@@ -77,6 +79,7 @@ Supported PROGRAM values:
77 77
   aclocal      touch file \`aclocal.m4'
78 78
   autoconf     touch file \`configure'
79 79
   autoheader   touch file \`config.h.in'
80
+  autom4te     touch the output file, or create a stub one
80 81
   automake     touch all \`Makefile.in' files
81 82
   bison        create \`y.tab.[ch]', if possible, from existing .[ch]
82 83
   flex         create \`lex.yy.c', if possible, from existing .c
... ...
@@ -106,7 +109,7 @@ esac
106 106
 # Now exit if we have it, but it failed.  Also exit now if we
107 107
 # don't have it and --version was passed (most likely to detect
108 108
 # the program).
109
-case "$1" in
109
+case $1 in
110 110
   lex|yacc)
111 111
     # Not GNU programs, they don't have --version.
112 112
     ;;
... ...
@@ -135,7 +138,7 @@ esac
135 135
 
136 136
 # If it does not exist, or fails to run (possibly an outdated version),
137 137
 # try to emulate it.
138
-case "$1" in
138
+case $1 in
139 139
   aclocal*)
140 140
     echo 1>&2 "\
141 141
 WARNING: \`$1' is $msg.  You should only need it if
... ...
@@ -164,7 +167,7 @@ WARNING: \`$1' is $msg.  You should only need it if
164 164
     test -z "$files" && files="config.h"
165 165
     touch_files=
166 166
     for f in $files; do
167
-      case "$f" in
167
+      case $f in
168 168
       *:*) touch_files="$touch_files "`echo "$f" |
169 169
 				       sed -e 's/^[^:]*://' -e 's/:.*//'`;;
170 170
       *) touch_files="$touch_files $f.in";;
... ...
@@ -192,8 +195,8 @@ WARNING: \`$1' is needed, but is $msg.
192 192
          You can get \`$1' as part of \`Autoconf' from any GNU
193 193
          archive site."
194 194
 
195
-    file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
196
-    test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'`
195
+    file=`echo "$*" | sed -n "$sed_output"`
196
+    test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
197 197
     if test -f "$file"; then
198 198
 	touch $file
199 199
     else
... ...
@@ -214,25 +217,25 @@ WARNING: \`$1' $msg.  You should only need it if
214 214
          in order for those modifications to take effect.  You can get
215 215
          \`Bison' from any GNU archive site."
216 216
     rm -f y.tab.c y.tab.h
217
-    if [ $# -ne 1 ]; then
217
+    if test $# -ne 1; then
218 218
         eval LASTARG="\${$#}"
219
-	case "$LASTARG" in
219
+	case $LASTARG in
220 220
 	*.y)
221 221
 	    SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
222
-	    if [ -f "$SRCFILE" ]; then
222
+	    if test -f "$SRCFILE"; then
223 223
 	         cp "$SRCFILE" y.tab.c
224 224
 	    fi
225 225
 	    SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
226
-	    if [ -f "$SRCFILE" ]; then
226
+	    if test -f "$SRCFILE"; then
227 227
 	         cp "$SRCFILE" y.tab.h
228 228
 	    fi
229 229
 	  ;;
230 230
 	esac
231 231
     fi
232
-    if [ ! -f y.tab.h ]; then
232
+    if test ! -f y.tab.h; then
233 233
 	echo >y.tab.h
234 234
     fi
235
-    if [ ! -f y.tab.c ]; then
235
+    if test ! -f y.tab.c; then
236 236
 	echo 'main() { return 0; }' >y.tab.c
237 237
     fi
238 238
     ;;
... ...
@@ -244,18 +247,18 @@ WARNING: \`$1' is $msg.  You should only need it if
244 244
          in order for those modifications to take effect.  You can get
245 245
          \`Flex' from any GNU archive site."
246 246
     rm -f lex.yy.c
247
-    if [ $# -ne 1 ]; then
247
+    if test $# -ne 1; then
248 248
         eval LASTARG="\${$#}"
249
-	case "$LASTARG" in
249
+	case $LASTARG in
250 250
 	*.l)
251 251
 	    SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
252
-	    if [ -f "$SRCFILE" ]; then
252
+	    if test -f "$SRCFILE"; then
253 253
 	         cp "$SRCFILE" lex.yy.c
254 254
 	    fi
255 255
 	  ;;
256 256
 	esac
257 257
     fi
258
-    if [ ! -f lex.yy.c ]; then
258
+    if test ! -f lex.yy.c; then
259 259
 	echo 'main() { return 0; }' >lex.yy.c
260 260
     fi
261 261
     ;;
... ...
@@ -267,11 +270,9 @@ WARNING: \`$1' is $msg.  You should only need it if
267 267
 	 \`Help2man' package in order for those modifications to take
268 268
 	 effect.  You can get \`Help2man' from any GNU archive site."
269 269
 
270
-    file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
271
-    if test -z "$file"; then
272
-	file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'`
273
-    fi
274
-    if [ -f "$file" ]; then
270
+    file=`echo "$*" | sed -n "$sed_output"`
271
+    test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
272
+    if test -f "$file"; then
275 273
 	touch $file
276 274
     else
277 275
 	test -z "$file" || exec >$file
... ...
@@ -289,11 +290,17 @@ WARNING: \`$1' is $msg.  You should only need it if
289 289
          DU, IRIX).  You might want to install the \`Texinfo' package or
290 290
          the \`GNU make' package.  Grab either from any GNU archive site."
291 291
     # The file to touch is that specified with -o ...
292
-    file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
292
+    file=`echo "$*" | sed -n "$sed_output"`
293
+    test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
293 294
     if test -z "$file"; then
294 295
       # ... or it is the one specified with @setfilename ...
295 296
       infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
296
-      file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile`
297
+      file=`sed -n '
298
+	/^@setfilename/{
299
+	  s/.* \([^ ]*\) *$/\1/
300
+	  p
301
+	  q
302
+	}' $infile`
297 303
       # ... or it is derived from the source name (dir/f.texi becomes f.info)
298 304
       test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
299 305
     fi
... ...
@@ -317,13 +324,13 @@ WARNING: \`$1' is $msg.  You should only need it if
317 317
     fi
318 318
     firstarg="$1"
319 319
     if shift; then
320
-	case "$firstarg" in
320
+	case $firstarg in
321 321
 	*o*)
322 322
 	    firstarg=`echo "$firstarg" | sed s/o//`
323 323
 	    tar "$firstarg" "$@" && exit 0
324 324
 	    ;;
325 325
 	esac
326
-	case "$firstarg" in
326
+	case $firstarg in
327 327
 	*h*)
328 328
 	    firstarg=`echo "$firstarg" | sed s/h//`
329 329
 	    tar "$firstarg" "$@" && exit 0
... ...
@@ -1,7 +1,7 @@
1 1
 #! /bin/sh
2 2
 # mkinstalldirs --- make directory hierarchy
3 3
 
4
-scriptversion=2005-06-29.22
4
+scriptversion=2006-05-11.19
5 5
 
6 6
 # Original author: Noah Friedman <friedman@prep.ai.mit.edu>
7 7
 # Created: 1993-05-16
... ...
@@ -11,6 +11,9 @@ scriptversion=2005-06-29.22
11 11
 # bugs to <bug-automake@gnu.org> or send patches to
12 12
 # <automake-patches@gnu.org>.
13 13
 
14
+nl='
15
+'
16
+IFS=" ""	$nl"
14 17
 errstatus=0
15 18
 dirmode=
16 19
 
... ...
@@ -1,8 +1,8 @@
1
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
1
+# Makefile.in generated by automake 1.10 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
-# 2003, 2004, 2005  Free Software Foundation, Inc.
5
+# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6 6
 # This Makefile.in is free software; the Free Software Foundation
7 7
 # gives unlimited permission to copy and/or distribute it,
8 8
 # with or without modifications, as long as this notice is preserved.
... ...
@@ -32,15 +32,11 @@
32 32
 #  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
33 33
 #  MA 02110-1301, USA.
34 34
 
35
-srcdir = @srcdir@
36
-top_srcdir = @top_srcdir@
37 35
 VPATH = @srcdir@
38 36
 pkgdatadir = $(datadir)/@PACKAGE@
39 37
 pkglibdir = $(libdir)/@PACKAGE@
40 38
 pkgincludedir = $(includedir)/@PACKAGE@
41
-top_builddir = ..
42 39
 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
43
-INSTALL = @INSTALL@
44 40
 install_sh_DATA = $(install_sh) -c -m 644
45 41
 install_sh_PROGRAM = $(install_sh) -c
46 42
 install_sh_SCRIPT = $(install_sh) -c
... ...
@@ -75,33 +71,30 @@ am_sigtool_OBJECTS = output.$(OBJEXT) getopt.$(OBJEXT) \
75 75
 	sigtool.$(OBJEXT)
76 76
 sigtool_OBJECTS = $(am_sigtool_OBJECTS)
77 77
 sigtool_LDADD = $(LDADD)
78
-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
78
+DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
79 79
 depcomp = $(SHELL) $(top_srcdir)/depcomp
80 80
 am__depfiles_maybe = depfiles
81 81
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
82 82
 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
83
-LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
84
-	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
85
-	$(AM_CFLAGS) $(CFLAGS)
83
+LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
84
+	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
85
+	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
86 86
 CCLD = $(CC)
87
-LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
88
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
87
+LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
88
+	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
89
+	$(LDFLAGS) -o $@
89 90
 SOURCES = $(sigtool_SOURCES)
90 91
 DIST_SOURCES = $(sigtool_SOURCES)
91 92
 ETAGS = etags
92 93
 CTAGS = ctags
93 94
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
94 95
 ACLOCAL = @ACLOCAL@
95
-AMDEP_FALSE = @AMDEP_FALSE@
96
-AMDEP_TRUE = @AMDEP_TRUE@
97 96
 AMTAR = @AMTAR@
98 97
 AR = @AR@
99 98
 AUTOCONF = @AUTOCONF@
100 99
 AUTOHEADER = @AUTOHEADER@
101 100
 AUTOMAKE = @AUTOMAKE@
102 101
 AWK = @AWK@
103
-BUILD_CLAMD_FALSE = @BUILD_CLAMD_FALSE@
104
-BUILD_CLAMD_TRUE = @BUILD_CLAMD_TRUE@
105 102
 CC = @CC@
106 103
 CCDEPMODE = @CCDEPMODE@
107 104
 CFGDIR = @CFGDIR@
... ...
@@ -127,16 +120,13 @@ ECHO_C = @ECHO_C@
127 127
 ECHO_N = @ECHO_N@
128 128
 ECHO_T = @ECHO_T@
129 129
 EGREP = @EGREP@
130
-ENABLE_UNRAR_FALSE = @ENABLE_UNRAR_FALSE@
131
-ENABLE_UNRAR_TRUE = @ENABLE_UNRAR_TRUE@
132 130
 EXEEXT = @EXEEXT@
133 131
 F77 = @F77@
134 132
 FFLAGS = @FFLAGS@
135 133
 FRESHCLAM_LIBS = @FRESHCLAM_LIBS@
136 134
 GETENT = @GETENT@
137 135
 GREP = @GREP@
138
-HAVE_MILTER_FALSE = @HAVE_MILTER_FALSE@
139
-HAVE_MILTER_TRUE = @HAVE_MILTER_TRUE@
136
+INSTALL = @INSTALL@
140 137
 INSTALL_DATA = @INSTALL_DATA@
141 138
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
142 139
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
... ...
@@ -150,9 +140,8 @@ LIBTOOL = @LIBTOOL@
150 150
 LN_S = @LN_S@
151 151
 LTLIBOBJS = @LTLIBOBJS@
152 152
 MAINT = @MAINT@
153
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
154
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
155 153
 MAKEINFO = @MAKEINFO@
154
+MKDIR_P = @MKDIR_P@
156 155
 OBJEXT = @OBJEXT@
157 156
 PACKAGE = @PACKAGE@
158 157
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
... ...
@@ -169,13 +158,13 @@ STRIP = @STRIP@
169 169
 THREAD_LIBS = @THREAD_LIBS@
170 170
 TH_SAFE = @TH_SAFE@
171 171
 VERSION = @VERSION@
172
+abs_builddir = @abs_builddir@
173
+abs_srcdir = @abs_srcdir@
174
+abs_top_builddir = @abs_top_builddir@
175
+abs_top_srcdir = @abs_top_srcdir@
172 176
 ac_ct_CC = @ac_ct_CC@
173 177
 ac_ct_CXX = @ac_ct_CXX@
174 178
 ac_ct_F77 = @ac_ct_F77@
175
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
176
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
177
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
178
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
179 179
 am__include = @am__include@
180 180
 am__leading_dot = @am__leading_dot@
181 181
 am__quote = @am__quote@
... ...
@@ -187,6 +176,7 @@ build_alias = @build_alias@
187 187
 build_cpu = @build_cpu@
188 188
 build_os = @build_os@
189 189
 build_vendor = @build_vendor@
190
+builddir = @builddir@
190 191
 datadir = @datadir@
191 192
 datarootdir = @datarootdir@
192 193
 docdir = @docdir@
... ...
@@ -215,12 +205,15 @@ psdir = @psdir@
215 215
 sbindir = @sbindir@
216 216
 sendmailprog = @sendmailprog@
217 217
 sharedstatedir = @sharedstatedir@
218
+srcdir = @srcdir@
218 219
 sysconfdir = @sysconfdir@
219 220
 target = @target@
220 221
 target_alias = @target_alias@
221 222
 target_cpu = @target_cpu@
222 223
 target_os = @target_os@
223 224
 target_vendor = @target_vendor@
225
+top_builddir = @top_builddir@
226
+top_srcdir = @top_srcdir@
224 227
 sigtool_SOURCES = \
225 228
     $(top_srcdir)/shared/output.c \
226 229
     $(top_srcdir)/shared/output.h \
... ...
@@ -275,7 +268,7 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
275 275
 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
276 276
 install-binPROGRAMS: $(bin_PROGRAMS)
277 277
 	@$(NORMAL_INSTALL)
278
-	test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
278
+	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
279 279
 	@list='$(bin_PROGRAMS)'; for p in $$list; do \
280 280
 	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
281 281
 	  if test -f $$p \
... ...
@@ -303,7 +296,7 @@ clean-binPROGRAMS:
303 303
 	done
304 304
 sigtool$(EXEEXT): $(sigtool_OBJECTS) $(sigtool_DEPENDENCIES) 
305 305
 	@rm -f sigtool$(EXEEXT)
306
-	$(LINK) $(sigtool_LDFLAGS) $(sigtool_OBJECTS) $(sigtool_LDADD) $(LIBS)
306
+	$(LINK) $(sigtool_OBJECTS) $(sigtool_LDADD) $(LIBS)
307 307
 
308 308
 mostlyclean-compile:
309 309
 	-rm -f *.$(OBJEXT)
... ...
@@ -322,120 +315,120 @@ distclean-compile:
322 322
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vba.Po@am__quote@
323 323
 
324 324
 .c.o:
325
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
326
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
325
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
326
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
327 327
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
328 328
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
329 329
 @am__fastdepCC_FALSE@	$(COMPILE) -c $<
330 330
 
331 331
 .c.obj:
332
-@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
333
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
332
+@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
333
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
334 334
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
335 335
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
336 336
 @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
337 337
 
338 338
 .c.lo:
339
-@am__fastdepCC_TRUE@	if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
340
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
339
+@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
340
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
341 341
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
342 342
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
343 343
 @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
344 344
 
345 345
 output.o: $(top_srcdir)/shared/output.c
346
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.o -MD -MP -MF "$(DEPDIR)/output.Tpo" -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c; \
347
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/output.Tpo" "$(DEPDIR)/output.Po"; else rm -f "$(DEPDIR)/output.Tpo"; exit 1; fi
346
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.o -MD -MP -MF $(DEPDIR)/output.Tpo -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c
347
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/output.Tpo $(DEPDIR)/output.Po
348 348
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/output.c' object='output.o' libtool=no @AMDEPBACKSLASH@
349 349
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
350 350
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o output.o `test -f '$(top_srcdir)/shared/output.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/output.c
351 351
 
352 352
 output.obj: $(top_srcdir)/shared/output.c
353
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.obj -MD -MP -MF "$(DEPDIR)/output.Tpo" -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`; \
354
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/output.Tpo" "$(DEPDIR)/output.Po"; else rm -f "$(DEPDIR)/output.Tpo"; exit 1; fi
353
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT output.obj -MD -MP -MF $(DEPDIR)/output.Tpo -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`
354
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/output.Tpo $(DEPDIR)/output.Po
355 355
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/output.c' object='output.obj' libtool=no @AMDEPBACKSLASH@
356 356
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
357 357
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o output.obj `if test -f '$(top_srcdir)/shared/output.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/output.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/output.c'; fi`
358 358
 
359 359
 getopt.o: $(top_srcdir)/shared/getopt.c
360
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.o -MD -MP -MF "$(DEPDIR)/getopt.Tpo" -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c; \
361
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/getopt.Tpo" "$(DEPDIR)/getopt.Po"; else rm -f "$(DEPDIR)/getopt.Tpo"; exit 1; fi
360
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.o -MD -MP -MF $(DEPDIR)/getopt.Tpo -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c
361
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/getopt.Tpo $(DEPDIR)/getopt.Po
362 362
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/getopt.c' object='getopt.o' libtool=no @AMDEPBACKSLASH@
363 363
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
364 364
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o getopt.o `test -f '$(top_srcdir)/shared/getopt.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/getopt.c
365 365
 
366 366
 getopt.obj: $(top_srcdir)/shared/getopt.c
367
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.obj -MD -MP -MF "$(DEPDIR)/getopt.Tpo" -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`; \
368
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/getopt.Tpo" "$(DEPDIR)/getopt.Po"; else rm -f "$(DEPDIR)/getopt.Tpo"; exit 1; fi
367
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT getopt.obj -MD -MP -MF $(DEPDIR)/getopt.Tpo -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`
368
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/getopt.Tpo $(DEPDIR)/getopt.Po
369 369
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/getopt.c' object='getopt.obj' libtool=no @AMDEPBACKSLASH@
370 370
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
371 371
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o getopt.obj `if test -f '$(top_srcdir)/shared/getopt.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/getopt.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/getopt.c'; fi`
372 372
 
373 373
 cfgparser.o: $(top_srcdir)/shared/cfgparser.c
374
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.o -MD -MP -MF "$(DEPDIR)/cfgparser.Tpo" -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c; \
375
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cfgparser.Tpo" "$(DEPDIR)/cfgparser.Po"; else rm -f "$(DEPDIR)/cfgparser.Tpo"; exit 1; fi
374
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.o -MD -MP -MF $(DEPDIR)/cfgparser.Tpo -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c
375
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cfgparser.Tpo $(DEPDIR)/cfgparser.Po
376 376
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cfgparser.c' object='cfgparser.o' libtool=no @AMDEPBACKSLASH@
377 377
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
378 378
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cfgparser.o `test -f '$(top_srcdir)/shared/cfgparser.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cfgparser.c
379 379
 
380 380
 cfgparser.obj: $(top_srcdir)/shared/cfgparser.c
381
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.obj -MD -MP -MF "$(DEPDIR)/cfgparser.Tpo" -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`; \
382
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cfgparser.Tpo" "$(DEPDIR)/cfgparser.Po"; else rm -f "$(DEPDIR)/cfgparser.Tpo"; exit 1; fi
381
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cfgparser.obj -MD -MP -MF $(DEPDIR)/cfgparser.Tpo -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`
382
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cfgparser.Tpo $(DEPDIR)/cfgparser.Po
383 383
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cfgparser.c' object='cfgparser.obj' libtool=no @AMDEPBACKSLASH@
384 384
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
385 385
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cfgparser.obj `if test -f '$(top_srcdir)/shared/cfgparser.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cfgparser.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cfgparser.c'; fi`
386 386
 
387 387
 misc.o: $(top_srcdir)/shared/misc.c
388
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.o -MD -MP -MF "$(DEPDIR)/misc.Tpo" -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c; \
389
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/misc.Tpo" "$(DEPDIR)/misc.Po"; else rm -f "$(DEPDIR)/misc.Tpo"; exit 1; fi
388
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.o -MD -MP -MF $(DEPDIR)/misc.Tpo -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c
389
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/misc.Tpo $(DEPDIR)/misc.Po
390 390
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/misc.c' object='misc.o' libtool=no @AMDEPBACKSLASH@
391 391
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
392 392
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o misc.o `test -f '$(top_srcdir)/shared/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/misc.c
393 393
 
394 394
 misc.obj: $(top_srcdir)/shared/misc.c
395
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.obj -MD -MP -MF "$(DEPDIR)/misc.Tpo" -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`; \
396
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/misc.Tpo" "$(DEPDIR)/misc.Po"; else rm -f "$(DEPDIR)/misc.Tpo"; exit 1; fi
395
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT misc.obj -MD -MP -MF $(DEPDIR)/misc.Tpo -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`
396
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/misc.Tpo $(DEPDIR)/misc.Po
397 397
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/misc.c' object='misc.obj' libtool=no @AMDEPBACKSLASH@
398 398
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
399 399
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o misc.obj `if test -f '$(top_srcdir)/shared/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/misc.c'; fi`
400 400
 
401 401
 options.o: $(top_srcdir)/shared/options.c
402
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.o -MD -MP -MF "$(DEPDIR)/options.Tpo" -c -o options.o `test -f '$(top_srcdir)/shared/options.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/options.c; \
403
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/options.Tpo" "$(DEPDIR)/options.Po"; else rm -f "$(DEPDIR)/options.Tpo"; exit 1; fi
402
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.o -MD -MP -MF $(DEPDIR)/options.Tpo -c -o options.o `test -f '$(top_srcdir)/shared/options.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/options.c
403
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/options.Tpo $(DEPDIR)/options.Po
404 404
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/options.c' object='options.o' libtool=no @AMDEPBACKSLASH@
405 405
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
406 406
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o options.o `test -f '$(top_srcdir)/shared/options.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/options.c
407 407
 
408 408
 options.obj: $(top_srcdir)/shared/options.c
409
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.obj -MD -MP -MF "$(DEPDIR)/options.Tpo" -c -o options.obj `if test -f '$(top_srcdir)/shared/options.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/options.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/options.c'; fi`; \
410
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/options.Tpo" "$(DEPDIR)/options.Po"; else rm -f "$(DEPDIR)/options.Tpo"; exit 1; fi
409
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT options.obj -MD -MP -MF $(DEPDIR)/options.Tpo -c -o options.obj `if test -f '$(top_srcdir)/shared/options.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/options.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/options.c'; fi`
410
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/options.Tpo $(DEPDIR)/options.Po
411 411
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/options.c' object='options.obj' libtool=no @AMDEPBACKSLASH@
412 412
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
413 413
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o options.obj `if test -f '$(top_srcdir)/shared/options.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/options.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/options.c'; fi`
414 414
 
415 415
 sha256.o: $(top_srcdir)/shared/sha256.c
416
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sha256.o -MD -MP -MF "$(DEPDIR)/sha256.Tpo" -c -o sha256.o `test -f '$(top_srcdir)/shared/sha256.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/sha256.c; \
417
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/sha256.Tpo" "$(DEPDIR)/sha256.Po"; else rm -f "$(DEPDIR)/sha256.Tpo"; exit 1; fi
416
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sha256.o -MD -MP -MF $(DEPDIR)/sha256.Tpo -c -o sha256.o `test -f '$(top_srcdir)/shared/sha256.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/sha256.c
417
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/sha256.Tpo $(DEPDIR)/sha256.Po
418 418
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/sha256.c' object='sha256.o' libtool=no @AMDEPBACKSLASH@
419 419
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
420 420
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sha256.o `test -f '$(top_srcdir)/shared/sha256.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/sha256.c
421 421
 
422 422
 sha256.obj: $(top_srcdir)/shared/sha256.c
423
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sha256.obj -MD -MP -MF "$(DEPDIR)/sha256.Tpo" -c -o sha256.obj `if test -f '$(top_srcdir)/shared/sha256.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/sha256.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/sha256.c'; fi`; \
424
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/sha256.Tpo" "$(DEPDIR)/sha256.Po"; else rm -f "$(DEPDIR)/sha256.Tpo"; exit 1; fi
423
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sha256.obj -MD -MP -MF $(DEPDIR)/sha256.Tpo -c -o sha256.obj `if test -f '$(top_srcdir)/shared/sha256.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/sha256.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/sha256.c'; fi`
424
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/sha256.Tpo $(DEPDIR)/sha256.Po
425 425
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/sha256.c' object='sha256.obj' libtool=no @AMDEPBACKSLASH@
426 426
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
427 427
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sha256.obj `if test -f '$(top_srcdir)/shared/sha256.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/sha256.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/sha256.c'; fi`
428 428
 
429 429
 cdiff.o: $(top_srcdir)/shared/cdiff.c
430
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cdiff.o -MD -MP -MF "$(DEPDIR)/cdiff.Tpo" -c -o cdiff.o `test -f '$(top_srcdir)/shared/cdiff.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cdiff.c; \
431
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cdiff.Tpo" "$(DEPDIR)/cdiff.Po"; else rm -f "$(DEPDIR)/cdiff.Tpo"; exit 1; fi
430
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cdiff.o -MD -MP -MF $(DEPDIR)/cdiff.Tpo -c -o cdiff.o `test -f '$(top_srcdir)/shared/cdiff.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cdiff.c
431
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cdiff.Tpo $(DEPDIR)/cdiff.Po
432 432
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cdiff.c' object='cdiff.o' libtool=no @AMDEPBACKSLASH@
433 433
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
434 434
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cdiff.o `test -f '$(top_srcdir)/shared/cdiff.c' || echo '$(srcdir)/'`$(top_srcdir)/shared/cdiff.c
435 435
 
436 436
 cdiff.obj: $(top_srcdir)/shared/cdiff.c
437
-@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cdiff.obj -MD -MP -MF "$(DEPDIR)/cdiff.Tpo" -c -o cdiff.obj `if test -f '$(top_srcdir)/shared/cdiff.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cdiff.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cdiff.c'; fi`; \
438
-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/cdiff.Tpo" "$(DEPDIR)/cdiff.Po"; else rm -f "$(DEPDIR)/cdiff.Tpo"; exit 1; fi
437
+@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cdiff.obj -MD -MP -MF $(DEPDIR)/cdiff.Tpo -c -o cdiff.obj `if test -f '$(top_srcdir)/shared/cdiff.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cdiff.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cdiff.c'; fi`
438
+@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/cdiff.Tpo $(DEPDIR)/cdiff.Po
439 439
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/shared/cdiff.c' object='cdiff.obj' libtool=no @AMDEPBACKSLASH@
440 440
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
441 441
 @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cdiff.obj `if test -f '$(top_srcdir)/shared/cdiff.c'; then $(CYGPATH_W) '$(top_srcdir)/shared/cdiff.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/shared/cdiff.c'; fi`
... ...
@@ -446,10 +439,6 @@ mostlyclean-libtool:
446 446
 clean-libtool:
447 447
 	-rm -rf .libs _libs
448 448
 
449
-distclean-libtool:
450
-	-rm -f libtool
451
-uninstall-info-am:
452
-
453 449
 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
454 450
 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
455 451
 	unique=`for i in $$list; do \
... ...
@@ -499,22 +488,21 @@ distclean-tags:
499 499
 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
500 500
 
501 501
 distdir: $(DISTFILES)
502
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
503
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
504
-	list='$(DISTFILES)'; for file in $$list; do \
505
-	  case $$file in \
506
-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
507
-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
508
-	  esac; \
502
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
503
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
504
+	list='$(DISTFILES)'; \
505
+	  dist_files=`for file in $$list; do echo $$file; done | \
506
+	  sed -e "s|^$$srcdirstrip/||;t" \
507
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
508
+	case $$dist_files in \
509
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
510
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
511
+			   sort -u` ;; \
512
+	esac; \
513
+	for file in $$dist_files; do \
509 514
 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
510
-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
511
-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
512
-	    dir="/$$dir"; \
513
-	    $(mkdir_p) "$(distdir)$$dir"; \
514
-	  else \
515
-	    dir=''; \
516
-	  fi; \
517 515
 	  if test -d $$d/$$file; then \
516
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
518 517
 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
519 518
 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
520 519
 	    fi; \
... ...
@@ -530,7 +518,7 @@ check: check-am
530 530
 all-am: Makefile $(PROGRAMS)
531 531
 installdirs:
532 532
 	for dir in "$(DESTDIR)$(bindir)"; do \
533
-	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
533
+	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
534 534
 	done
535 535
 install: install-am
536 536
 install-exec: install-exec-am
... ...
@@ -564,7 +552,7 @@ distclean: distclean-am
564 564
 	-rm -rf ./$(DEPDIR)
565 565
 	-rm -f Makefile
566 566
 distclean-am: clean-am distclean-compile distclean-generic \
567
-	distclean-libtool distclean-tags
567
+	distclean-tags
568 568
 
569 569
 dvi: dvi-am
570 570
 
... ...
@@ -578,12 +566,20 @@ info-am:
578 578
 
579 579
 install-data-am:
580 580
 
581
+install-dvi: install-dvi-am
582
+
581 583
 install-exec-am: install-binPROGRAMS
582 584
 
585
+install-html: install-html-am
586
+
583 587
 install-info: install-info-am
584 588
 
585 589
 install-man:
586 590
 
591
+install-pdf: install-pdf-am
592
+
593
+install-ps: install-ps-am
594
+
587 595
 installcheck-am:
588 596
 
589 597
 maintainer-clean: maintainer-clean-am
... ...
@@ -604,19 +600,23 @@ ps: ps-am
604 604
 
605 605
 ps-am:
606 606
 
607
-uninstall-am: uninstall-binPROGRAMS uninstall-info-am
607
+uninstall-am: uninstall-binPROGRAMS
608
+
609
+.MAKE: install-am install-strip
608 610
 
609 611
 .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
610 612
 	clean-generic clean-libtool ctags distclean distclean-compile \
611 613
 	distclean-generic distclean-libtool distclean-tags distdir dvi \
612 614
 	dvi-am html html-am info info-am install install-am \
613
-	install-binPROGRAMS install-data install-data-am install-exec \
614
-	install-exec-am install-info install-info-am install-man \
615
+	install-binPROGRAMS install-data install-data-am install-dvi \
616
+	install-dvi-am install-exec install-exec-am install-html \
617
+	install-html-am install-info install-info-am install-man \
618
+	install-pdf install-pdf-am install-ps install-ps-am \
615 619
 	install-strip installcheck installcheck-am installdirs \
616 620
 	maintainer-clean maintainer-clean-generic mostlyclean \
617 621
 	mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
618 622
 	pdf pdf-am ps ps-am tags uninstall uninstall-am \
619
-	uninstall-binPROGRAMS uninstall-info-am
623
+	uninstall-binPROGRAMS
620 624
 
621 625
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
622 626
 # Otherwise a system limit (for SysV at least) may be exceeded.