Browse code

bb1823 - Enable linking with custom zlib

Shawn Webb authored on 2012/11/06 03:36:22
Showing 23 changed files
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -35,6 +35,23 @@
35 35
 
36 36
 
37 37
 VPATH = @srcdir@
38
+am__make_dryrun = \
39
+  { \
40
+    am__dry=no; \
41
+    case $$MAKEFLAGS in \
42
+      *\\[\ \	]*) \
43
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
44
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
45
+      *) \
46
+        for am__flg in $$MAKEFLAGS; do \
47
+          case $$am__flg in \
48
+            *=*|--*) ;; \
49
+            *n*) am__dry=yes; break;; \
50
+          esac; \
51
+        done;; \
52
+    esac; \
53
+    test $$am__dry = yes; \
54
+  }
38 55
 pkgdatadir = $(datadir)/@PACKAGE@
39 56
 pkgincludedir = $(includedir)/@PACKAGE@
40 57
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -143,6 +160,11 @@ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
143 143
 	install-pdf-recursive install-ps-recursive install-recursive \
144 144
 	installcheck-recursive installdirs-recursive pdf-recursive \
145 145
 	ps-recursive uninstall-recursive
146
+am__can_run_installinfo = \
147
+  case $$AM_UPDATE_INFO_DIR in \
148
+    n|no|NO) false;; \
149
+    *) (install-info --version) >/dev/null 2>&1;; \
150
+  esac
146 151
 DATA = $(pkgconfig_DATA)
147 152
 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
148 153
   distclean-recursive maintainer-clean-recursive
... ...
@@ -452,8 +474,11 @@ docs/man/clamdtop.1: $(top_builddir)/config.status $(top_srcdir)/docs/man/clamdt
452 452
 	cd $(top_builddir) && $(SHELL) ./config.status $@
453 453
 install-binSCRIPTS: $(bin_SCRIPTS)
454 454
 	@$(NORMAL_INSTALL)
455
-	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
456 455
 	@list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \
456
+	if test -n "$$list"; then \
457
+	  echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
458
+	  $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
459
+	fi; \
457 460
 	for p in $$list; do \
458 461
 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
459 462
 	  if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
... ...
@@ -508,8 +533,11 @@ distclean-libtool:
508 508
 	-rm -f libtool config.lt
509 509
 install-pkgconfigDATA: $(pkgconfig_DATA)
510 510
 	@$(NORMAL_INSTALL)
511
-	test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
512 511
 	@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
512
+	if test -n "$$list"; then \
513
+	  echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
514
+	  $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
515
+	fi; \
513 516
 	for p in $$list; do \
514 517
 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
515 518
 	  echo "$$d$$p"; \
... ...
@@ -694,13 +722,10 @@ distdir: $(DISTFILES)
694 694
 	done
695 695
 	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
696 696
 	  if test "$$subdir" = .; then :; else \
697
-	    test -d "$(distdir)/$$subdir" \
698
-	    || $(MKDIR_P) "$(distdir)/$$subdir" \
699
-	    || exit 1; \
700
-	  fi; \
701
-	done
702
-	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
703
-	  if test "$$subdir" = .; then :; else \
697
+	    $(am__make_dryrun) \
698
+	      || test -d "$(distdir)/$$subdir" \
699
+	      || $(MKDIR_P) "$(distdir)/$$subdir" \
700
+	      || exit 1; \
704 701
 	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
705 702
 	    $(am__relativize); \
706 703
 	    new_distdir=$$reldir; \
... ...
@@ -789,7 +814,7 @@ distcheck: dist
789 789
 	*.zip*) \
790 790
 	  unzip $(distdir).zip ;;\
791 791
 	esac
792
-	chmod -R a-w $(distdir); chmod a+w $(distdir)
792
+	chmod -R a-w $(distdir); chmod u+w $(distdir)
793 793
 	mkdir $(distdir)/_build
794 794
 	mkdir $(distdir)/_inst
795 795
 	chmod a-w $(distdir)
... ...
@@ -1,4 +1,4 @@
1
-# generated automatically by aclocal 1.11.3 -*- Autoconf -*-
1
+# generated automatically by aclocal 1.11.6 -*- Autoconf -*-
2 2
 
3 3
 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 4
 # 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
... ...
@@ -14,8 +14,8 @@
14 14
 
15 15
 m4_ifndef([AC_AUTOCONF_VERSION],
16 16
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
17
-m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],,
18
-[m4_warning([this file was generated for autoconf 2.68.
17
+m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
18
+[m4_warning([this file was generated for autoconf 2.69.
19 19
 You have another version of autoconf.  It may work, but is not guaranteed to.
20 20
 If you have problems, you may need to regenerate the build system entirely.
21 21
 To do so, use the procedure documented by the package, typically `autoreconf'.])])
... ...
@@ -38,7 +38,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION],
38 38
 [am__api_version='1.11'
39 39
 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
40 40
 dnl require some minimum version.  Point them to the right macro.
41
-m4_if([$1], [1.11.3], [],
41
+m4_if([$1], [1.11.6], [],
42 42
       [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
43 43
 ])
44 44
 
... ...
@@ -54,7 +54,7 @@ m4_define([_AM_AUTOCONF_VERSION], [])
54 54
 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
55 55
 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
56 56
 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
57
-[AM_AUTOMAKE_VERSION([1.11.3])dnl
57
+[AM_AUTOMAKE_VERSION([1.11.6])dnl
58 58
 m4_ifndef([AC_AUTOCONF_VERSION],
59 59
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
60 60
 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -34,6 +34,23 @@
34 34
 #  MA 02110-1301, USA.
35 35
 
36 36
 VPATH = @srcdir@
37
+am__make_dryrun = \
38
+  { \
39
+    am__dry=no; \
40
+    case $$MAKEFLAGS in \
41
+      *\\[\ \	]*) \
42
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
43
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
44
+      *) \
45
+        for am__flg in $$MAKEFLAGS; do \
46
+          case $$am__flg in \
47
+            *=*|--*) ;; \
48
+            *n*) am__dry=yes; break;; \
49
+          esac; \
50
+        done;; \
51
+    esac; \
52
+    test $$am__dry = yes; \
53
+  }
37 54
 pkgdatadir = $(datadir)/@PACKAGE@
38 55
 pkgincludedir = $(includedir)/@PACKAGE@
39 56
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -127,6 +144,11 @@ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
127 127
 am__v_GEN_0 = @echo "  GEN   " $@;
128 128
 SOURCES = $(clamav_milter_SOURCES)
129 129
 DIST_SOURCES = $(am__clamav_milter_SOURCES_DIST)
130
+am__can_run_installinfo = \
131
+  case $$AM_UPDATE_INFO_DIR in \
132
+    n|no|NO) false;; \
133
+    *) (install-info --version) >/dev/null 2>&1;; \
134
+  esac
130 135
 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
131 136
 am__vpath_adj = case $$p in \
132 137
     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
... ...
@@ -384,8 +406,11 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
384 384
 $(am__aclocal_m4_deps):
385 385
 install-sbinPROGRAMS: $(sbin_PROGRAMS)
386 386
 	@$(NORMAL_INSTALL)
387
-	test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
388 387
 	@list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
388
+	if test -n "$$list"; then \
389
+	  echo " $(MKDIR_P) '$(DESTDIR)$(sbindir)'"; \
390
+	  $(MKDIR_P) "$(DESTDIR)$(sbindir)" || exit 1; \
391
+	fi; \
389 392
 	for p in $$list; do echo "$$p $$p"; done | \
390 393
 	sed 's/$(EXEEXT)$$//' | \
391 394
 	while read p p1; do if test -f $$p || test -f $$p1; \
... ...
@@ -545,11 +570,18 @@ clean-libtool:
545 545
 	-rm -rf .libs _libs
546 546
 install-man8: $(man_MANS)
547 547
 	@$(NORMAL_INSTALL)
548
-	test -z "$(man8dir)" || $(MKDIR_P) "$(DESTDIR)$(man8dir)"
549
-	@list=''; test -n "$(man8dir)" || exit 0; \
550
-	{ for i in $$list; do echo "$$i"; done; \
551
-	l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
552
-	  sed -n '/\.8[a-z]*$$/p'; \
548
+	@list1=''; \
549
+	list2='$(man_MANS)'; \
550
+	test -n "$(man8dir)" \
551
+	  && test -n "`echo $$list1$$list2`" \
552
+	  || exit 0; \
553
+	echo " $(MKDIR_P) '$(DESTDIR)$(man8dir)'"; \
554
+	$(MKDIR_P) "$(DESTDIR)$(man8dir)" || exit 1; \
555
+	{ for i in $$list1; do echo "$$i"; done;  \
556
+	if test -n "$$list2"; then \
557
+	  for i in $$list2; do echo "$$i"; done \
558
+	    | sed -n '/\.8[a-z]*$$/p'; \
559
+	fi; \
553 560
 	} | while read p; do \
554 561
 	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
555 562
 	  echo "$$d$$p"; echo "$$p"; \
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -16,6 +16,23 @@
16 16
 @SET_MAKE@
17 17
 
18 18
 VPATH = @srcdir@
19
+am__make_dryrun = \
20
+  { \
21
+    am__dry=no; \
22
+    case $$MAKEFLAGS in \
23
+      *\\[\ \	]*) \
24
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
25
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
26
+      *) \
27
+        for am__flg in $$MAKEFLAGS; do \
28
+          case $$am__flg in \
29
+            *=*|--*) ;; \
30
+            *n*) am__dry=yes; break;; \
31
+          esac; \
32
+        done;; \
33
+    esac; \
34
+    test $$am__dry = yes; \
35
+  }
19 36
 pkgdatadir = $(datadir)/@PACKAGE@
20 37
 pkgincludedir = $(includedir)/@PACKAGE@
21 38
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -93,6 +110,11 @@ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
93 93
 am__v_GEN_0 = @echo "  GEN   " $@;
94 94
 SOURCES = $(clambc_SOURCES)
95 95
 DIST_SOURCES = $(clambc_SOURCES)
96
+am__can_run_installinfo = \
97
+  case $$AM_UPDATE_INFO_DIR in \
98
+    n|no|NO) false;; \
99
+    *) (install-info --version) >/dev/null 2>&1;; \
100
+  esac
96 101
 ETAGS = etags
97 102
 CTAGS = ctags
98 103
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
... ...
@@ -309,8 +331,11 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
309 309
 $(am__aclocal_m4_deps):
310 310
 install-binPROGRAMS: $(bin_PROGRAMS)
311 311
 	@$(NORMAL_INSTALL)
312
-	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
313 312
 	@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
313
+	if test -n "$$list"; then \
314
+	  echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
315
+	  $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
316
+	fi; \
314 317
 	for p in $$list; do echo "$$p $$p"; done | \
315 318
 	sed 's/$(EXEEXT)$$//' | \
316 319
 	while read p p1; do if test -f $$p || test -f $$p1; \
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -34,6 +34,23 @@
34 34
 #  MA 02110-1301, USA.
35 35
 
36 36
 VPATH = @srcdir@
37
+am__make_dryrun = \
38
+  { \
39
+    am__dry=no; \
40
+    case $$MAKEFLAGS in \
41
+      *\\[\ \	]*) \
42
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
43
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
44
+      *) \
45
+        for am__flg in $$MAKEFLAGS; do \
46
+          case $$am__flg in \
47
+            *=*|--*) ;; \
48
+            *n*) am__dry=yes; break;; \
49
+          esac; \
50
+        done;; \
51
+    esac; \
52
+    test $$am__dry = yes; \
53
+  }
37 54
 pkgdatadir = $(datadir)/@PACKAGE@
38 55
 pkgincludedir = $(includedir)/@PACKAGE@
39 56
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -111,6 +128,11 @@ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
111 111
 am__v_GEN_0 = @echo "  GEN   " $@;
112 112
 SOURCES = $(clamconf_SOURCES)
113 113
 DIST_SOURCES = $(clamconf_SOURCES)
114
+am__can_run_installinfo = \
115
+  case $$AM_UPDATE_INFO_DIR in \
116
+    n|no|NO) false;; \
117
+    *) (install-info --version) >/dev/null 2>&1;; \
118
+  esac
114 119
 ETAGS = etags
115 120
 CTAGS = ctags
116 121
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
... ...
@@ -331,8 +353,11 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
331 331
 $(am__aclocal_m4_deps):
332 332
 install-binPROGRAMS: $(bin_PROGRAMS)
333 333
 	@$(NORMAL_INSTALL)
334
-	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
335 334
 	@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
335
+	if test -n "$$list"; then \
336
+	  echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
337
+	  $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
338
+	fi; \
336 339
 	for p in $$list; do echo "$$p $$p"; done | \
337 340
 	sed 's/$(EXEEXT)$$//' | \
338 341
 	while read p p1; do if test -f $$p || test -f $$p1; \
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -34,6 +34,23 @@
34 34
 #  MA 02110-1301, USA.
35 35
 
36 36
 VPATH = @srcdir@
37
+am__make_dryrun = \
38
+  { \
39
+    am__dry=no; \
40
+    case $$MAKEFLAGS in \
41
+      *\\[\ \	]*) \
42
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
43
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
44
+      *) \
45
+        for am__flg in $$MAKEFLAGS; do \
46
+          case $$am__flg in \
47
+            *=*|--*) ;; \
48
+            *n*) am__dry=yes; break;; \
49
+          esac; \
50
+        done;; \
51
+    esac; \
52
+    test $$am__dry = yes; \
53
+  }
37 54
 pkgdatadir = $(datadir)/@PACKAGE@
38 55
 pkgincludedir = $(includedir)/@PACKAGE@
39 56
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -124,6 +141,11 @@ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
124 124
 am__v_GEN_0 = @echo "  GEN   " $@;
125 125
 SOURCES = $(clamd_SOURCES)
126 126
 DIST_SOURCES = $(am__clamd_SOURCES_DIST)
127
+am__can_run_installinfo = \
128
+  case $$AM_UPDATE_INFO_DIR in \
129
+    n|no|NO) false;; \
130
+    *) (install-info --version) >/dev/null 2>&1;; \
131
+  esac
127 132
 ETAGS = etags
128 133
 CTAGS = ctags
129 134
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
... ...
@@ -364,8 +386,11 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
364 364
 $(am__aclocal_m4_deps):
365 365
 install-sbinPROGRAMS: $(sbin_PROGRAMS)
366 366
 	@$(NORMAL_INSTALL)
367
-	test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
368 367
 	@list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
368
+	if test -n "$$list"; then \
369
+	  echo " $(MKDIR_P) '$(DESTDIR)$(sbindir)'"; \
370
+	  $(MKDIR_P) "$(DESTDIR)$(sbindir)" || exit 1; \
371
+	fi; \
369 372
 	for p in $$list; do echo "$$p $$p"; done | \
370 373
 	sed 's/$(EXEEXT)$$//' | \
371 374
 	while read p p1; do if test -f $$p || test -f $$p1; \
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -34,6 +34,23 @@
34 34
 #  MA 02110-1301, USA.
35 35
 
36 36
 VPATH = @srcdir@
37
+am__make_dryrun = \
38
+  { \
39
+    am__dry=no; \
40
+    case $$MAKEFLAGS in \
41
+      *\\[\ \	]*) \
42
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
43
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
44
+      *) \
45
+        for am__flg in $$MAKEFLAGS; do \
46
+          case $$am__flg in \
47
+            *=*|--*) ;; \
48
+            *n*) am__dry=yes; break;; \
49
+          esac; \
50
+        done;; \
51
+    esac; \
52
+    test $$am__dry = yes; \
53
+  }
37 54
 pkgdatadir = $(datadir)/@PACKAGE@
38 55
 pkgincludedir = $(includedir)/@PACKAGE@
39 56
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -122,6 +139,11 @@ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
122 122
 am__v_GEN_0 = @echo "  GEN   " $@;
123 123
 SOURCES = $(clamdscan_SOURCES)
124 124
 DIST_SOURCES = $(am__clamdscan_SOURCES_DIST)
125
+am__can_run_installinfo = \
126
+  case $$AM_UPDATE_INFO_DIR in \
127
+    n|no|NO) false;; \
128
+    *) (install-info --version) >/dev/null 2>&1;; \
129
+  esac
125 130
 ETAGS = etags
126 131
 CTAGS = ctags
127 132
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
... ...
@@ -349,8 +371,11 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
349 349
 $(am__aclocal_m4_deps):
350 350
 install-binPROGRAMS: $(bin_PROGRAMS)
351 351
 	@$(NORMAL_INSTALL)
352
-	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
353 352
 	@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
353
+	if test -n "$$list"; then \
354
+	  echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
355
+	  $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
356
+	fi; \
354 357
 	for p in $$list; do echo "$$p $$p"; done | \
355 358
 	sed 's/$(EXEEXT)$$//' | \
356 359
 	while read p p1; do if test -f $$p || test -f $$p1; \
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -16,6 +16,23 @@
16 16
 @SET_MAKE@
17 17
 
18 18
 VPATH = @srcdir@
19
+am__make_dryrun = \
20
+  { \
21
+    am__dry=no; \
22
+    case $$MAKEFLAGS in \
23
+      *\\[\ \	]*) \
24
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
25
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
26
+      *) \
27
+        for am__flg in $$MAKEFLAGS; do \
28
+          case $$am__flg in \
29
+            *=*|--*) ;; \
30
+            *n*) am__dry=yes; break;; \
31
+          esac; \
32
+        done;; \
33
+    esac; \
34
+    test $$am__dry = yes; \
35
+  }
19 36
 pkgdatadir = $(datadir)/@PACKAGE@
20 37
 pkgincludedir = $(includedir)/@PACKAGE@
21 38
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -98,6 +115,11 @@ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
98 98
 am__v_GEN_0 = @echo "  GEN   " $@;
99 99
 SOURCES = $(clamdtop_SOURCES)
100 100
 DIST_SOURCES = $(am__clamdtop_SOURCES_DIST)
101
+am__can_run_installinfo = \
102
+  case $$AM_UPDATE_INFO_DIR in \
103
+    n|no|NO) false;; \
104
+    *) (install-info --version) >/dev/null 2>&1;; \
105
+  esac
101 106
 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
102 107
 am__vpath_adj = case $$p in \
103 108
     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
... ...
@@ -346,8 +368,11 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
346 346
 $(am__aclocal_m4_deps):
347 347
 install-binPROGRAMS: $(bin_PROGRAMS)
348 348
 	@$(NORMAL_INSTALL)
349
-	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
350 349
 	@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
350
+	if test -n "$$list"; then \
351
+	  echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
352
+	  $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
353
+	fi; \
351 354
 	for p in $$list; do echo "$$p $$p"; done | \
352 355
 	sed 's/$(EXEEXT)$$//' | \
353 356
 	while read p p1; do if test -f $$p || test -f $$p1; \
... ...
@@ -488,11 +513,18 @@ clean-libtool:
488 488
 	-rm -rf .libs _libs
489 489
 install-man1: $(man_MANS)
490 490
 	@$(NORMAL_INSTALL)
491
-	test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)"
492
-	@list=''; test -n "$(man1dir)" || exit 0; \
493
-	{ for i in $$list; do echo "$$i"; done; \
494
-	l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
495
-	  sed -n '/\.1[a-z]*$$/p'; \
491
+	@list1=''; \
492
+	list2='$(man_MANS)'; \
493
+	test -n "$(man1dir)" \
494
+	  && test -n "`echo $$list1$$list2`" \
495
+	  || exit 0; \
496
+	echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
497
+	$(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
498
+	{ for i in $$list1; do echo "$$i"; done;  \
499
+	if test -n "$$list2"; then \
500
+	  for i in $$list2; do echo "$$i"; done \
501
+	    | sed -n '/\.1[a-z]*$$/p'; \
502
+	fi; \
496 503
 	} | while read p; do \
497 504
 	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
498 505
 	  echo "$$d$$p"; echo "$$p"; \
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -35,6 +35,23 @@
35 35
 #  MA 02110-1301, USA.
36 36
 
37 37
 VPATH = @srcdir@
38
+am__make_dryrun = \
39
+  { \
40
+    am__dry=no; \
41
+    case $$MAKEFLAGS in \
42
+      *\\[\ \	]*) \
43
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
44
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
45
+      *) \
46
+        for am__flg in $$MAKEFLAGS; do \
47
+          case $$am__flg in \
48
+            *=*|--*) ;; \
49
+            *n*) am__dry=yes; break;; \
50
+          esac; \
51
+        done;; \
52
+    esac; \
53
+    test $$am__dry = yes; \
54
+  }
38 55
 pkgdatadir = $(datadir)/@PACKAGE@
39 56
 pkgincludedir = $(includedir)/@PACKAGE@
40 57
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -113,6 +130,11 @@ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
113 113
 am__v_GEN_0 = @echo "  GEN   " $@;
114 114
 SOURCES = $(clamscan_SOURCES)
115 115
 DIST_SOURCES = $(clamscan_SOURCES)
116
+am__can_run_installinfo = \
117
+  case $$AM_UPDATE_INFO_DIR in \
118
+    n|no|NO) false;; \
119
+    *) (install-info --version) >/dev/null 2>&1;; \
120
+  esac
116 121
 ETAGS = etags
117 122
 CTAGS = ctags
118 123
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
... ...
@@ -336,8 +358,11 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
336 336
 $(am__aclocal_m4_deps):
337 337
 install-binPROGRAMS: $(bin_PROGRAMS)
338 338
 	@$(NORMAL_INSTALL)
339
-	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
340 339
 	@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
340
+	if test -n "$$list"; then \
341
+	  echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
342
+	  $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
343
+	fi; \
341 344
 	for p in $$list; do echo "$$p $$p"; done | \
342 345
 	sed 's/$(EXEEXT)$$//' | \
343 346
 	while read p p1; do if test -f $$p || test -f $$p1; \
... ...
@@ -1,13 +1,11 @@
1 1
 #! /bin/sh
2 2
 # Guess values for system-dependent variables and create Makefiles.
3
-# Generated by GNU Autoconf 2.68 for ClamAV devel.
3
+# Generated by GNU Autoconf 2.69 for ClamAV devel.
4 4
 #
5 5
 # Report bugs to <http://bugs.clamav.net/>.
6 6
 #
7 7
 #
8
-# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
9
-# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
10
-# Foundation, Inc.
8
+# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
11 9
 #
12 10
 #
13 11
 # This configure script is free software; the Free Software Foundation
... ...
@@ -136,6 +134,31 @@ export LANGUAGE
136 136
 # CDPATH.
137 137
 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
138 138
 
139
+# Use a proper internal environment variable to ensure we don't fall
140
+  # into an infinite loop, continuously re-executing ourselves.
141
+  if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
142
+    _as_can_reexec=no; export _as_can_reexec;
143
+    # We cannot yet assume a decent shell, so we have to provide a
144
+# neutralization value for shells without unset; and this also
145
+# works around shells that cannot unset nonexistent variables.
146
+# Preserve -v and -x to the replacement shell.
147
+BASH_ENV=/dev/null
148
+ENV=/dev/null
149
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
150
+case $- in # ((((
151
+  *v*x* | *x*v* ) as_opts=-vx ;;
152
+  *v* ) as_opts=-v ;;
153
+  *x* ) as_opts=-x ;;
154
+  * ) as_opts= ;;
155
+esac
156
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
157
+# Admittedly, this is quite paranoid, since all the known shells bail
158
+# out after a failed `exec'.
159
+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
160
+as_fn_exit 255
161
+  fi
162
+  # We don't want this to propagate to other subprocesses.
163
+          { _as_can_reexec=; unset _as_can_reexec;}
139 164
 if test "x$CONFIG_SHELL" = x; then
140 165
   as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
141 166
   emulate sh
... ...
@@ -169,7 +192,8 @@ if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
169 169
 else
170 170
   exitcode=1; echo positional parameters were not saved.
171 171
 fi
172
-test x\$exitcode = x0 || exit 1"
172
+test x\$exitcode = x0 || exit 1
173
+test -x / || exit 1"
173 174
   as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
174 175
   as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
175 176
   eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
... ...
@@ -222,21 +246,25 @@ IFS=$as_save_IFS
222 222
 
223 223
 
224 224
       if test "x$CONFIG_SHELL" != x; then :
225
-  # We cannot yet assume a decent shell, so we have to provide a
226
-	# neutralization value for shells without unset; and this also
227
-	# works around shells that cannot unset nonexistent variables.
228
-	# Preserve -v and -x to the replacement shell.
229
-	BASH_ENV=/dev/null
230
-	ENV=/dev/null
231
-	(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
232
-	export CONFIG_SHELL
233
-	case $- in # ((((
234
-	  *v*x* | *x*v* ) as_opts=-vx ;;
235
-	  *v* ) as_opts=-v ;;
236
-	  *x* ) as_opts=-x ;;
237
-	  * ) as_opts= ;;
238
-	esac
239
-	exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"}
225
+  export CONFIG_SHELL
226
+             # We cannot yet assume a decent shell, so we have to provide a
227
+# neutralization value for shells without unset; and this also
228
+# works around shells that cannot unset nonexistent variables.
229
+# Preserve -v and -x to the replacement shell.
230
+BASH_ENV=/dev/null
231
+ENV=/dev/null
232
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
233
+case $- in # ((((
234
+  *v*x* | *x*v* ) as_opts=-vx ;;
235
+  *v* ) as_opts=-v ;;
236
+  *x* ) as_opts=-x ;;
237
+  * ) as_opts= ;;
238
+esac
239
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
240
+# Admittedly, this is quite paranoid, since all the known shells bail
241
+# out after a failed `exec'.
242
+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
243
+exit 255
240 244
 fi
241 245
 
242 246
     if test x$as_have_required = xno; then :
... ...
@@ -339,6 +367,14 @@ $as_echo X"$as_dir" |
339 339
 
340 340
 
341 341
 } # as_fn_mkdir_p
342
+
343
+# as_fn_executable_p FILE
344
+# -----------------------
345
+# Test if FILE is an executable regular file.
346
+as_fn_executable_p ()
347
+{
348
+  test -f "$1" && test -x "$1"
349
+} # as_fn_executable_p
342 350
 # as_fn_append VAR VALUE
343 351
 # ----------------------
344 352
 # Append the text in VALUE to the end of the definition contained in VAR. Take
... ...
@@ -460,6 +496,10 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits
460 460
   chmod +x "$as_me.lineno" ||
461 461
     { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
462 462
 
463
+  # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
464
+  # already done that, so ensure we don't try to do so again and fall
465
+  # in an infinite loop.  This has already happened in practice.
466
+  _as_can_reexec=no; export _as_can_reexec
463 467
   # Don't try to exec as it changes $[0], causing all sort of problems
464 468
   # (the dirname of $[0] is not the place where we might find the
465 469
   # original and so on.  Autoconf is especially sensitive to this).
... ...
@@ -494,16 +534,16 @@ if (echo >conf$$.file) 2>/dev/null; then
494 494
     # ... but there are two gotchas:
495 495
     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
496 496
     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
497
-    # In both cases, we have to default to `cp -p'.
497
+    # In both cases, we have to default to `cp -pR'.
498 498
     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
499
-      as_ln_s='cp -p'
499
+      as_ln_s='cp -pR'
500 500
   elif ln conf$$.file conf$$ 2>/dev/null; then
501 501
     as_ln_s=ln
502 502
   else
503
-    as_ln_s='cp -p'
503
+    as_ln_s='cp -pR'
504 504
   fi
505 505
 else
506
-  as_ln_s='cp -p'
506
+  as_ln_s='cp -pR'
507 507
 fi
508 508
 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
509 509
 rmdir conf$$.dir 2>/dev/null
... ...
@@ -515,28 +555,8 @@ else
515 515
   as_mkdir_p=false
516 516
 fi
517 517
 
518
-if test -x / >/dev/null 2>&1; then
519
-  as_test_x='test -x'
520
-else
521
-  if ls -dL / >/dev/null 2>&1; then
522
-    as_ls_L_option=L
523
-  else
524
-    as_ls_L_option=
525
-  fi
526
-  as_test_x='
527
-    eval sh -c '\''
528
-      if test -d "$1"; then
529
-	test -d "$1/.";
530
-      else
531
-	case $1 in #(
532
-	-*)set "./$1";;
533
-	esac;
534
-	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
535
-	???[sx]*):;;*)false;;esac;fi
536
-    '\'' sh
537
-  '
538
-fi
539
-as_executable_p=$as_test_x
518
+as_test_x='test -x'
519
+as_executable_p=as_fn_executable_p
540 520
 
541 521
 # Sed expression to map a string onto a valid CPP name.
542 522
 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
... ...
@@ -1327,8 +1347,6 @@ target=$target_alias
1327 1327
 if test "x$host_alias" != x; then
1328 1328
   if test "x$build_alias" = x; then
1329 1329
     cross_compiling=maybe
1330
-    $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
1331
-    If a cross compiler is detected then cross compile mode will be used" >&2
1332 1330
   elif test "x$build_alias" != "x$host_alias"; then
1333 1331
     cross_compiling=yes
1334 1332
   fi
... ...
@@ -1644,9 +1662,9 @@ test -n "$ac_init_help" && exit $ac_status
1644 1644
 if $ac_init_version; then
1645 1645
   cat <<\_ACEOF
1646 1646
 ClamAV configure devel
1647
-generated by GNU Autoconf 2.68
1647
+generated by GNU Autoconf 2.69
1648 1648
 
1649
-Copyright (C) 2010 Free Software Foundation, Inc.
1649
+Copyright (C) 2012 Free Software Foundation, Inc.
1650 1650
 This configure script is free software; the Free Software Foundation
1651 1651
 gives unlimited permission to copy, distribute and modify it.
1652 1652
 _ACEOF
... ...
@@ -1722,7 +1740,7 @@ $as_echo "$ac_try_echo"; } >&5
1722 1722
 	 test ! -s conftest.err
1723 1723
        } && test -s conftest$ac_exeext && {
1724 1724
 	 test "$cross_compiling" = yes ||
1725
-	 $as_test_x conftest$ac_exeext
1725
+	 test -x conftest$ac_exeext
1726 1726
        }; then :
1727 1727
   ac_retval=0
1728 1728
 else
... ...
@@ -2113,7 +2131,7 @@ This file contains any messages produced by compilers while
2113 2113
 running configure, to aid debugging if configure makes a mistake.
2114 2114
 
2115 2115
 It was created by ClamAV $as_me devel, which was
2116
-generated by GNU Autoconf 2.68.  Invocation command line was
2116
+generated by GNU Autoconf 2.69.  Invocation command line was
2117 2117
 
2118 2118
   $ $0 $@
2119 2119
 
... ...
@@ -2834,7 +2852,7 @@ case $as_dir/ in #((
2834 2834
     # by default.
2835 2835
     for ac_prog in ginstall scoinst install; do
2836 2836
       for ac_exec_ext in '' $ac_executable_extensions; do
2837
-	if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
2837
+	if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
2838 2838
 	  if test $ac_prog = install &&
2839 2839
 	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
2840 2840
 	    # AIX install.  It has an incompatible calling convention.
... ...
@@ -3003,7 +3021,7 @@ do
3003 3003
   IFS=$as_save_IFS
3004 3004
   test -z "$as_dir" && as_dir=.
3005 3005
     for ac_exec_ext in '' $ac_executable_extensions; do
3006
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3006
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3007 3007
     ac_cv_prog_STRIP="${ac_tool_prefix}strip"
3008 3008
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3009 3009
     break 2
... ...
@@ -3043,7 +3061,7 @@ do
3043 3043
   IFS=$as_save_IFS
3044 3044
   test -z "$as_dir" && as_dir=.
3045 3045
     for ac_exec_ext in '' $ac_executable_extensions; do
3046
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3046
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3047 3047
     ac_cv_prog_ac_ct_STRIP="strip"
3048 3048
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3049 3049
     break 2
... ...
@@ -3094,7 +3112,7 @@ do
3094 3094
   test -z "$as_dir" && as_dir=.
3095 3095
     for ac_prog in mkdir gmkdir; do
3096 3096
 	 for ac_exec_ext in '' $ac_executable_extensions; do
3097
-	   { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue
3097
+	   as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
3098 3098
 	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
3099 3099
 	     'mkdir (GNU coreutils) '* | \
3100 3100
 	     'mkdir (coreutils) '* | \
... ...
@@ -3147,7 +3165,7 @@ do
3147 3147
   IFS=$as_save_IFS
3148 3148
   test -z "$as_dir" && as_dir=.
3149 3149
     for ac_exec_ext in '' $ac_executable_extensions; do
3150
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3150
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3151 3151
     ac_cv_prog_AWK="$ac_prog"
3152 3152
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3153 3153
     break 2
... ...
@@ -3415,7 +3433,7 @@ do
3415 3415
   IFS=$as_save_IFS
3416 3416
   test -z "$as_dir" && as_dir=.
3417 3417
     for ac_exec_ext in '' $ac_executable_extensions; do
3418
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3418
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3419 3419
     ac_cv_prog_AWK="$ac_prog"
3420 3420
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3421 3421
     break 2
... ...
@@ -3669,7 +3687,7 @@ do
3669 3669
   IFS=$as_save_IFS
3670 3670
   test -z "$as_dir" && as_dir=.
3671 3671
     for ac_exec_ext in '' $ac_executable_extensions; do
3672
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3672
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3673 3673
     ac_cv_prog_CC="${ac_tool_prefix}gcc"
3674 3674
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3675 3675
     break 2
... ...
@@ -3709,7 +3727,7 @@ do
3709 3709
   IFS=$as_save_IFS
3710 3710
   test -z "$as_dir" && as_dir=.
3711 3711
     for ac_exec_ext in '' $ac_executable_extensions; do
3712
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3712
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3713 3713
     ac_cv_prog_ac_ct_CC="gcc"
3714 3714
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3715 3715
     break 2
... ...
@@ -3762,7 +3780,7 @@ do
3762 3762
   IFS=$as_save_IFS
3763 3763
   test -z "$as_dir" && as_dir=.
3764 3764
     for ac_exec_ext in '' $ac_executable_extensions; do
3765
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3765
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3766 3766
     ac_cv_prog_CC="${ac_tool_prefix}cc"
3767 3767
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3768 3768
     break 2
... ...
@@ -3803,7 +3821,7 @@ do
3803 3803
   IFS=$as_save_IFS
3804 3804
   test -z "$as_dir" && as_dir=.
3805 3805
     for ac_exec_ext in '' $ac_executable_extensions; do
3806
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3806
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3807 3807
     if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
3808 3808
        ac_prog_rejected=yes
3809 3809
        continue
... ...
@@ -3861,7 +3879,7 @@ do
3861 3861
   IFS=$as_save_IFS
3862 3862
   test -z "$as_dir" && as_dir=.
3863 3863
     for ac_exec_ext in '' $ac_executable_extensions; do
3864
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3864
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3865 3865
     ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
3866 3866
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3867 3867
     break 2
... ...
@@ -3905,7 +3923,7 @@ do
3905 3905
   IFS=$as_save_IFS
3906 3906
   test -z "$as_dir" && as_dir=.
3907 3907
     for ac_exec_ext in '' $ac_executable_extensions; do
3908
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3908
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3909 3909
     ac_cv_prog_ac_ct_CC="$ac_prog"
3910 3910
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3911 3911
     break 2
... ...
@@ -4351,8 +4369,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4351 4351
 /* end confdefs.h.  */
4352 4352
 #include <stdarg.h>
4353 4353
 #include <stdio.h>
4354
-#include <sys/types.h>
4355
-#include <sys/stat.h>
4354
+struct stat;
4356 4355
 /* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
4357 4356
 struct buf { int x; };
4358 4357
 FILE * (*rcsopen) (struct buf *, struct stat *, int);
... ...
@@ -4587,7 +4604,7 @@ do
4587 4587
     for ac_prog in sed gsed; do
4588 4588
     for ac_exec_ext in '' $ac_executable_extensions; do
4589 4589
       ac_path_SED="$as_dir/$ac_prog$ac_exec_ext"
4590
-      { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue
4590
+      as_fn_executable_p "$ac_path_SED" || continue
4591 4591
 # Check for GNU ac_path_SED and select it if it is found.
4592 4592
   # Check for GNU $ac_path_SED
4593 4593
 case `"$ac_path_SED" --version 2>&1` in
... ...
@@ -4663,7 +4680,7 @@ do
4663 4663
     for ac_prog in grep ggrep; do
4664 4664
     for ac_exec_ext in '' $ac_executable_extensions; do
4665 4665
       ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
4666
-      { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
4666
+      as_fn_executable_p "$ac_path_GREP" || continue
4667 4667
 # Check for GNU ac_path_GREP and select it if it is found.
4668 4668
   # Check for GNU $ac_path_GREP
4669 4669
 case `"$ac_path_GREP" --version 2>&1` in
... ...
@@ -4729,7 +4746,7 @@ do
4729 4729
     for ac_prog in egrep; do
4730 4730
     for ac_exec_ext in '' $ac_executable_extensions; do
4731 4731
       ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
4732
-      { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
4732
+      as_fn_executable_p "$ac_path_EGREP" || continue
4733 4733
 # Check for GNU ac_path_EGREP and select it if it is found.
4734 4734
   # Check for GNU $ac_path_EGREP
4735 4735
 case `"$ac_path_EGREP" --version 2>&1` in
... ...
@@ -4796,7 +4813,7 @@ do
4796 4796
     for ac_prog in fgrep; do
4797 4797
     for ac_exec_ext in '' $ac_executable_extensions; do
4798 4798
       ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext"
4799
-      { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue
4799
+      as_fn_executable_p "$ac_path_FGREP" || continue
4800 4800
 # Check for GNU ac_path_FGREP and select it if it is found.
4801 4801
   # Check for GNU $ac_path_FGREP
4802 4802
 case `"$ac_path_FGREP" --version 2>&1` in
... ...
@@ -5052,7 +5069,7 @@ do
5052 5052
   IFS=$as_save_IFS
5053 5053
   test -z "$as_dir" && as_dir=.
5054 5054
     for ac_exec_ext in '' $ac_executable_extensions; do
5055
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5055
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5056 5056
     ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog"
5057 5057
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5058 5058
     break 2
... ...
@@ -5096,7 +5113,7 @@ do
5096 5096
   IFS=$as_save_IFS
5097 5097
   test -z "$as_dir" && as_dir=.
5098 5098
     for ac_exec_ext in '' $ac_executable_extensions; do
5099
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5099
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5100 5100
     ac_cv_prog_ac_ct_DUMPBIN="$ac_prog"
5101 5101
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5102 5102
     break 2
... ...
@@ -5509,7 +5526,7 @@ do
5509 5509
   IFS=$as_save_IFS
5510 5510
   test -z "$as_dir" && as_dir=.
5511 5511
     for ac_exec_ext in '' $ac_executable_extensions; do
5512
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5512
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5513 5513
     ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump"
5514 5514
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5515 5515
     break 2
... ...
@@ -5549,7 +5566,7 @@ do
5549 5549
   IFS=$as_save_IFS
5550 5550
   test -z "$as_dir" && as_dir=.
5551 5551
     for ac_exec_ext in '' $ac_executable_extensions; do
5552
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5552
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5553 5553
     ac_cv_prog_ac_ct_OBJDUMP="objdump"
5554 5554
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5555 5555
     break 2
... ...
@@ -5855,7 +5872,7 @@ do
5855 5855
   IFS=$as_save_IFS
5856 5856
   test -z "$as_dir" && as_dir=.
5857 5857
     for ac_exec_ext in '' $ac_executable_extensions; do
5858
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5858
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5859 5859
     ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool"
5860 5860
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5861 5861
     break 2
... ...
@@ -5895,7 +5912,7 @@ do
5895 5895
   IFS=$as_save_IFS
5896 5896
   test -z "$as_dir" && as_dir=.
5897 5897
     for ac_exec_ext in '' $ac_executable_extensions; do
5898
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5898
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5899 5899
     ac_cv_prog_ac_ct_DLLTOOL="dlltool"
5900 5900
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5901 5901
     break 2
... ...
@@ -5999,7 +6016,7 @@ do
5999 5999
   IFS=$as_save_IFS
6000 6000
   test -z "$as_dir" && as_dir=.
6001 6001
     for ac_exec_ext in '' $ac_executable_extensions; do
6002
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6002
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6003 6003
     ac_cv_prog_AR="$ac_tool_prefix$ac_prog"
6004 6004
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6005 6005
     break 2
... ...
@@ -6043,7 +6060,7 @@ do
6043 6043
   IFS=$as_save_IFS
6044 6044
   test -z "$as_dir" && as_dir=.
6045 6045
     for ac_exec_ext in '' $ac_executable_extensions; do
6046
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6046
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6047 6047
     ac_cv_prog_ac_ct_AR="$ac_prog"
6048 6048
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6049 6049
     break 2
... ...
@@ -6168,7 +6185,7 @@ do
6168 6168
   IFS=$as_save_IFS
6169 6169
   test -z "$as_dir" && as_dir=.
6170 6170
     for ac_exec_ext in '' $ac_executable_extensions; do
6171
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6171
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6172 6172
     ac_cv_prog_STRIP="${ac_tool_prefix}strip"
6173 6173
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6174 6174
     break 2
... ...
@@ -6208,7 +6225,7 @@ do
6208 6208
   IFS=$as_save_IFS
6209 6209
   test -z "$as_dir" && as_dir=.
6210 6210
     for ac_exec_ext in '' $ac_executable_extensions; do
6211
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6211
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6212 6212
     ac_cv_prog_ac_ct_STRIP="strip"
6213 6213
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6214 6214
     break 2
... ...
@@ -6267,7 +6284,7 @@ do
6267 6267
   IFS=$as_save_IFS
6268 6268
   test -z "$as_dir" && as_dir=.
6269 6269
     for ac_exec_ext in '' $ac_executable_extensions; do
6270
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6270
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6271 6271
     ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
6272 6272
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6273 6273
     break 2
... ...
@@ -6307,7 +6324,7 @@ do
6307 6307
   IFS=$as_save_IFS
6308 6308
   test -z "$as_dir" && as_dir=.
6309 6309
     for ac_exec_ext in '' $ac_executable_extensions; do
6310
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6310
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6311 6311
     ac_cv_prog_ac_ct_RANLIB="ranlib"
6312 6312
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6313 6313
     break 2
... ...
@@ -6956,7 +6973,7 @@ do
6956 6956
   IFS=$as_save_IFS
6957 6957
   test -z "$as_dir" && as_dir=.
6958 6958
     for ac_exec_ext in '' $ac_executable_extensions; do
6959
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6959
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6960 6960
     ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt"
6961 6961
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6962 6962
     break 2
... ...
@@ -6996,7 +7013,7 @@ do
6996 6996
   IFS=$as_save_IFS
6997 6997
   test -z "$as_dir" && as_dir=.
6998 6998
     for ac_exec_ext in '' $ac_executable_extensions; do
6999
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6999
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7000 7000
     ac_cv_prog_ac_ct_MANIFEST_TOOL="mt"
7001 7001
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7002 7002
     break 2
... ...
@@ -7076,7 +7093,7 @@ do
7076 7076
   IFS=$as_save_IFS
7077 7077
   test -z "$as_dir" && as_dir=.
7078 7078
     for ac_exec_ext in '' $ac_executable_extensions; do
7079
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7079
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7080 7080
     ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil"
7081 7081
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7082 7082
     break 2
... ...
@@ -7116,7 +7133,7 @@ do
7116 7116
   IFS=$as_save_IFS
7117 7117
   test -z "$as_dir" && as_dir=.
7118 7118
     for ac_exec_ext in '' $ac_executable_extensions; do
7119
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7119
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7120 7120
     ac_cv_prog_ac_ct_DSYMUTIL="dsymutil"
7121 7121
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7122 7122
     break 2
... ...
@@ -7168,7 +7185,7 @@ do
7168 7168
   IFS=$as_save_IFS
7169 7169
   test -z "$as_dir" && as_dir=.
7170 7170
     for ac_exec_ext in '' $ac_executable_extensions; do
7171
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7171
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7172 7172
     ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit"
7173 7173
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7174 7174
     break 2
... ...
@@ -7208,7 +7225,7 @@ do
7208 7208
   IFS=$as_save_IFS
7209 7209
   test -z "$as_dir" && as_dir=.
7210 7210
     for ac_exec_ext in '' $ac_executable_extensions; do
7211
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7211
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7212 7212
     ac_cv_prog_ac_ct_NMEDIT="nmedit"
7213 7213
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7214 7214
     break 2
... ...
@@ -7260,7 +7277,7 @@ do
7260 7260
   IFS=$as_save_IFS
7261 7261
   test -z "$as_dir" && as_dir=.
7262 7262
     for ac_exec_ext in '' $ac_executable_extensions; do
7263
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7263
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7264 7264
     ac_cv_prog_LIPO="${ac_tool_prefix}lipo"
7265 7265
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7266 7266
     break 2
... ...
@@ -7300,7 +7317,7 @@ do
7300 7300
   IFS=$as_save_IFS
7301 7301
   test -z "$as_dir" && as_dir=.
7302 7302
     for ac_exec_ext in '' $ac_executable_extensions; do
7303
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7303
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7304 7304
     ac_cv_prog_ac_ct_LIPO="lipo"
7305 7305
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7306 7306
     break 2
... ...
@@ -7352,7 +7369,7 @@ do
7352 7352
   IFS=$as_save_IFS
7353 7353
   test -z "$as_dir" && as_dir=.
7354 7354
     for ac_exec_ext in '' $ac_executable_extensions; do
7355
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7355
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7356 7356
     ac_cv_prog_OTOOL="${ac_tool_prefix}otool"
7357 7357
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7358 7358
     break 2
... ...
@@ -7392,7 +7409,7 @@ do
7392 7392
   IFS=$as_save_IFS
7393 7393
   test -z "$as_dir" && as_dir=.
7394 7394
     for ac_exec_ext in '' $ac_executable_extensions; do
7395
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7395
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7396 7396
     ac_cv_prog_ac_ct_OTOOL="otool"
7397 7397
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7398 7398
     break 2
... ...
@@ -7444,7 +7461,7 @@ do
7444 7444
   IFS=$as_save_IFS
7445 7445
   test -z "$as_dir" && as_dir=.
7446 7446
     for ac_exec_ext in '' $ac_executable_extensions; do
7447
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7447
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7448 7448
     ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64"
7449 7449
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7450 7450
     break 2
... ...
@@ -7484,7 +7501,7 @@ do
7484 7484
   IFS=$as_save_IFS
7485 7485
   test -z "$as_dir" && as_dir=.
7486 7486
     for ac_exec_ext in '' $ac_executable_extensions; do
7487
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7487
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7488 7488
     ac_cv_prog_ac_ct_OTOOL64="otool64"
7489 7489
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7490 7490
     break 2
... ...
@@ -13281,11 +13298,11 @@ else
13281 13281
 int
13282 13282
 main ()
13283 13283
 {
13284
-/* FIXME: Include the comments suggested by Paul. */
13284
+
13285 13285
 #ifndef __cplusplus
13286
-  /* Ultrix mips cc rejects this.  */
13286
+  /* Ultrix mips cc rejects this sort of thing.  */
13287 13287
   typedef int charset[2];
13288
-  const charset cs;
13288
+  const charset cs = { 0, 0 };
13289 13289
   /* SunOS 4.1.1 cc rejects this.  */
13290 13290
   char const *const *pcpcc;
13291 13291
   char **ppc;
... ...
@@ -13302,8 +13319,9 @@ main ()
13302 13302
   ++pcpcc;
13303 13303
   ppc = (char**) pcpcc;
13304 13304
   pcpcc = (char const *const *) ppc;
13305
-  { /* SCO 3.2v4 cc rejects this.  */
13306
-    char *t;
13305
+  { /* SCO 3.2v4 cc rejects this sort of thing.  */
13306
+    char tx;
13307
+    char *t = &tx;
13307 13308
     char const *s = 0 ? (char *) 0 : (char const *) 0;
13308 13309
 
13309 13310
     *t++ = 0;
... ...
@@ -13319,10 +13337,10 @@ main ()
13319 13319
     iptr p = 0;
13320 13320
     ++p;
13321 13321
   }
13322
-  { /* AIX XL C 1.02.0.0 rejects this saying
13322
+  { /* AIX XL C 1.02.0.0 rejects this sort of thing, saying
13323 13323
        "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
13324
-    struct s { int j; const int *ap[3]; };
13325
-    struct s *b; b->j = 5;
13324
+    struct s { int j; const int *ap[3]; } bx;
13325
+    struct s *b = &bx; b->j = 5;
13326 13326
   }
13327 13327
   { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
13328 13328
     const int foo = 10;
... ...
@@ -15720,7 +15738,7 @@ do
15720 15720
   IFS=$as_save_IFS
15721 15721
   test -z "$as_dir" && as_dir=.
15722 15722
     for ac_exec_ext in '' $ac_executable_extensions; do
15723
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
15723
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
15724 15724
     ac_cv_prog_GCOV="$ac_prog"
15725 15725
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
15726 15726
     break 2
... ...
@@ -15763,7 +15781,7 @@ do
15763 15763
   IFS=$as_save_IFS
15764 15764
   test -z "$as_dir" && as_dir=.
15765 15765
     for ac_exec_ext in '' $ac_executable_extensions; do
15766
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
15766
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
15767 15767
     ac_cv_prog_LCOV="$ac_prog"
15768 15768
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
15769 15769
     break 2
... ...
@@ -15806,7 +15824,7 @@ do
15806 15806
   IFS=$as_save_IFS
15807 15807
   test -z "$as_dir" && as_dir=.
15808 15808
     for ac_exec_ext in '' $ac_executable_extensions; do
15809
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
15809
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
15810 15810
     ac_cv_prog_GENHTML="$ac_prog"
15811 15811
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
15812 15812
     break 2
... ...
@@ -15934,7 +15952,7 @@ $as_echo "$as_me: WARNING: ****** stability problems to the ClamAV developers!"
15934 15934
     if test "$ZLIB_HOME" != "/usr"; then
15935 15935
 	CPPFLAGS="$CPPFLAGS -I$ZLIB_HOME/include"
15936 15936
 	save_LDFLAGS="$LDFLAGS"
15937
-	LDFLAGS="$LDFLAGS -L$ZLIB_HOME/lib"
15937
+	LDFLAGS="$LDFLAGS -Wl,-rpath=$ZLIB_HOME/lib"
15938 15938
 	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for inflateEnd in -lz" >&5
15939 15939
 $as_echo_n "checking for inflateEnd in -lz... " >&6; }
15940 15940
 if ${ac_cv_lib_z_inflateEnd+:} false; then :
... ...
@@ -15972,7 +15990,7 @@ fi
15972 15972
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_inflateEnd" >&5
15973 15973
 $as_echo "$ac_cv_lib_z_inflateEnd" >&6; }
15974 15974
 if test "x$ac_cv_lib_z_inflateEnd" = xyes; then :
15975
-  LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -L$ZLIB_HOME/lib -lz"; FRESHCLAM_LIBS="$FRESHCLAM_LIBS -L$ZLIB_HOME/lib -lz"
15975
+  LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -Wl,-rpath=$ZLIB_HOME/lib -lz"; FRESHCLAM_LIBS="$FRESHCLAM_LIBS -Wl,-rpath=$ZLIB_HOME/lib -lz"
15976 15976
 else
15977 15977
   as_fn_error $? "Please install zlib and zlib-devel packages" "$LINENO" 5
15978 15978
 fi
... ...
@@ -18330,7 +18348,7 @@ do
18330 18330
   IFS=$as_save_IFS
18331 18331
   test -z "$as_dir" && as_dir=.
18332 18332
     for ac_exec_ext in '' $ac_executable_extensions; do
18333
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
18333
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
18334 18334
     ac_cv_path_GETENT="$as_dir/$ac_word$ac_exec_ext"
18335 18335
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
18336 18336
     break 2
... ...
@@ -21404,16 +21422,16 @@ if (echo >conf$$.file) 2>/dev/null; then
21404 21404
     # ... but there are two gotchas:
21405 21405
     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
21406 21406
     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
21407
-    # In both cases, we have to default to `cp -p'.
21407
+    # In both cases, we have to default to `cp -pR'.
21408 21408
     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
21409
-      as_ln_s='cp -p'
21409
+      as_ln_s='cp -pR'
21410 21410
   elif ln conf$$.file conf$$ 2>/dev/null; then
21411 21411
     as_ln_s=ln
21412 21412
   else
21413
-    as_ln_s='cp -p'
21413
+    as_ln_s='cp -pR'
21414 21414
   fi
21415 21415
 else
21416
-  as_ln_s='cp -p'
21416
+  as_ln_s='cp -pR'
21417 21417
 fi
21418 21418
 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
21419 21419
 rmdir conf$$.dir 2>/dev/null
... ...
@@ -21473,28 +21491,16 @@ else
21473 21473
   as_mkdir_p=false
21474 21474
 fi
21475 21475
 
21476
-if test -x / >/dev/null 2>&1; then
21477
-  as_test_x='test -x'
21478
-else
21479
-  if ls -dL / >/dev/null 2>&1; then
21480
-    as_ls_L_option=L
21481
-  else
21482
-    as_ls_L_option=
21483
-  fi
21484
-  as_test_x='
21485
-    eval sh -c '\''
21486
-      if test -d "$1"; then
21487
-	test -d "$1/.";
21488
-      else
21489
-	case $1 in #(
21490
-	-*)set "./$1";;
21491
-	esac;
21492
-	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
21493
-	???[sx]*):;;*)false;;esac;fi
21494
-    '\'' sh
21495
-  '
21496
-fi
21497
-as_executable_p=$as_test_x
21476
+
21477
+# as_fn_executable_p FILE
21478
+# -----------------------
21479
+# Test if FILE is an executable regular file.
21480
+as_fn_executable_p ()
21481
+{
21482
+  test -f "$1" && test -x "$1"
21483
+} # as_fn_executable_p
21484
+as_test_x='test -x'
21485
+as_executable_p=as_fn_executable_p
21498 21486
 
21499 21487
 # Sed expression to map a string onto a valid CPP name.
21500 21488
 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
... ...
@@ -21516,7 +21522,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
21516 21516
 # values after options handling.
21517 21517
 ac_log="
21518 21518
 This file was extended by ClamAV $as_me devel, which was
21519
-generated by GNU Autoconf 2.68.  Invocation command line was
21519
+generated by GNU Autoconf 2.69.  Invocation command line was
21520 21520
 
21521 21521
   CONFIG_FILES    = $CONFIG_FILES
21522 21522
   CONFIG_HEADERS  = $CONFIG_HEADERS
... ...
@@ -21583,10 +21589,10 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
21583 21583
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
21584 21584
 ac_cs_version="\\
21585 21585
 ClamAV config.status devel
21586
-configured by $0, generated by GNU Autoconf 2.68,
21586
+configured by $0, generated by GNU Autoconf 2.69,
21587 21587
   with options \\"\$ac_cs_config\\"
21588 21588
 
21589
-Copyright (C) 2010 Free Software Foundation, Inc.
21589
+Copyright (C) 2012 Free Software Foundation, Inc.
21590 21590
 This config.status script is free software; the Free Software Foundation
21591 21591
 gives unlimited permission to copy, distribute and modify it."
21592 21592
 
... ...
@@ -21677,7 +21683,7 @@ fi
21677 21677
 _ACEOF
21678 21678
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
21679 21679
 if \$ac_cs_recheck; then
21680
-  set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
21680
+  set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
21681 21681
   shift
21682 21682
   \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
21683 21683
   CONFIG_SHELL='$SHELL'
... ...
@@ -24032,16 +24038,16 @@ if (echo >conf$$.file) 2>/dev/null; then
24032 24032
     # ... but there are two gotchas:
24033 24033
     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
24034 24034
     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
24035
-    # In both cases, we have to default to `cp -p'.
24035
+    # In both cases, we have to default to `cp -pR'.
24036 24036
     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
24037
-      as_ln_s='cp -p'
24037
+      as_ln_s='cp -pR'
24038 24038
   elif ln conf$$.file conf$$ 2>/dev/null; then
24039 24039
     as_ln_s=ln
24040 24040
   else
24041
-    as_ln_s='cp -p'
24041
+    as_ln_s='cp -pR'
24042 24042
   fi
24043 24043
 else
24044
-  as_ln_s='cp -p'
24044
+  as_ln_s='cp -pR'
24045 24045
 fi
24046 24046
 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
24047 24047
 rmdir conf$$.dir 2>/dev/null
... ...
@@ -24101,28 +24107,16 @@ else
24101 24101
   as_mkdir_p=false
24102 24102
 fi
24103 24103
 
24104
-if test -x / >/dev/null 2>&1; then
24105
-  as_test_x='test -x'
24106
-else
24107
-  if ls -dL / >/dev/null 2>&1; then
24108
-    as_ls_L_option=L
24109
-  else
24110
-    as_ls_L_option=
24111
-  fi
24112
-  as_test_x='
24113
-    eval sh -c '\''
24114
-      if test -d "$1"; then
24115
-	test -d "$1/.";
24116
-      else
24117
-	case $1 in #(
24118
-	-*)set "./$1";;
24119
-	esac;
24120
-	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
24121
-	???[sx]*):;;*)false;;esac;fi
24122
-    '\'' sh
24123
-  '
24124
-fi
24125
-as_executable_p=$as_test_x
24104
+
24105
+# as_fn_executable_p FILE
24106
+# -----------------------
24107
+# Test if FILE is an executable regular file.
24108
+as_fn_executable_p ()
24109
+{
24110
+  test -f "$1" && test -x "$1"
24111
+} # as_fn_executable_p
24112
+as_test_x='test -x'
24113
+as_executable_p=as_fn_executable_p
24126 24114
 
24127 24115
 # Sed expression to map a string onto a valid CPP name.
24128 24116
 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
... ...
@@ -24144,7 +24138,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
24144 24144
 # values after options handling.
24145 24145
 ac_log="
24146 24146
 This file was extended by ClamAV $as_me devel, which was
24147
-generated by GNU Autoconf 2.68.  Invocation command line was
24147
+generated by GNU Autoconf 2.69.  Invocation command line was
24148 24148
 
24149 24149
   CONFIG_FILES    = $CONFIG_FILES
24150 24150
   CONFIG_HEADERS  = $CONFIG_HEADERS
... ...
@@ -24211,10 +24205,10 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
24211 24211
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
24212 24212
 ac_cs_version="\\
24213 24213
 ClamAV config.status devel
24214
-configured by $0, generated by GNU Autoconf 2.68,
24214
+configured by $0, generated by GNU Autoconf 2.69,
24215 24215
   with options \\"\$ac_cs_config\\"
24216 24216
 
24217
-Copyright (C) 2010 Free Software Foundation, Inc.
24217
+Copyright (C) 2012 Free Software Foundation, Inc.
24218 24218
 This config.status script is free software; the Free Software Foundation
24219 24219
 gives unlimited permission to copy, distribute and modify it."
24220 24220
 
... ...
@@ -24305,7 +24299,7 @@ fi
24305 24305
 _ACEOF
24306 24306
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
24307 24307
 if \$ac_cs_recheck; then
24308
-  set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
24308
+  set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
24309 24309
   shift
24310 24310
   \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
24311 24311
   CONFIG_SHELL='$SHELL'
... ...
@@ -557,8 +557,8 @@ else
557 557
     if test "$ZLIB_HOME" != "/usr"; then
558 558
 	CPPFLAGS="$CPPFLAGS -I$ZLIB_HOME/include"
559 559
 	save_LDFLAGS="$LDFLAGS"
560
-	LDFLAGS="$LDFLAGS -L$ZLIB_HOME/lib"
561
-	AC_CHECK_LIB([z], [inflateEnd], [LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -L$ZLIB_HOME/lib -lz"; FRESHCLAM_LIBS="$FRESHCLAM_LIBS -L$ZLIB_HOME/lib -lz"], AC_MSG_ERROR([Please install zlib and zlib-devel packages]))
560
+	LDFLAGS="$LDFLAGS -Wl,-rpath=$ZLIB_HOME/lib"
561
+	AC_CHECK_LIB([z], [inflateEnd], [LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -Wl,-rpath=$ZLIB_HOME/lib -lz"; FRESHCLAM_LIBS="$FRESHCLAM_LIBS -Wl,-rpath=$ZLIB_HOME/lib -lz"], AC_MSG_ERROR([Please install zlib and zlib-devel packages]))
562 562
 	AC_CHECK_LIB([z], [gzopen], [], AC_MSG_ERROR([Your zlib is missing gzopen()]))
563 563
 	LDFLAGS="$save_LDFLAGS"
564 564
     else
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -34,6 +34,23 @@
34 34
 #  along with this program; if not, write to the Free Software
35 35
 #  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
36 36
 VPATH = @srcdir@
37
+am__make_dryrun = \
38
+  { \
39
+    am__dry=no; \
40
+    case $$MAKEFLAGS in \
41
+      *\\[\ \	]*) \
42
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
43
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
44
+      *) \
45
+        for am__flg in $$MAKEFLAGS; do \
46
+          case $$am__flg in \
47
+            *=*|--*) ;; \
48
+            *n*) am__dry=yes; break;; \
49
+          esac; \
50
+        done;; \
51
+    esac; \
52
+    test $$am__dry = yes; \
53
+  }
37 54
 pkgdatadir = $(datadir)/@PACKAGE@
38 55
 pkgincludedir = $(includedir)/@PACKAGE@
39 56
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -81,6 +98,11 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
81 81
 am__v_at_0 = @
82 82
 SOURCES =
83 83
 DIST_SOURCES =
84
+am__can_run_installinfo = \
85
+  case $$AM_UPDATE_INFO_DIR in \
86
+    n|no|NO) false;; \
87
+    *) (install-info --version) >/dev/null 2>&1;; \
88
+  esac
84 89
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
85 90
 ACLOCAL = @ACLOCAL@
86 91
 AMTAR = @AMTAR@
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -33,6 +33,23 @@
33 33
 #  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
34 34
 #  MA 02110-1301, USA.
35 35
 VPATH = @srcdir@
36
+am__make_dryrun = \
37
+  { \
38
+    am__dry=no; \
39
+    case $$MAKEFLAGS in \
40
+      *\\[\ \	]*) \
41
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
42
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
43
+      *) \
44
+        for am__flg in $$MAKEFLAGS; do \
45
+          case $$am__flg in \
46
+            *=*|--*) ;; \
47
+            *n*) am__dry=yes; break;; \
48
+          esac; \
49
+        done;; \
50
+    esac; \
51
+    test $$am__dry = yes; \
52
+  }
36 53
 pkgdatadir = $(datadir)/@PACKAGE@
37 54
 pkgincludedir = $(includedir)/@PACKAGE@
38 55
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -80,6 +97,11 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
80 80
 am__v_at_0 = @
81 81
 SOURCES =
82 82
 DIST_SOURCES =
83
+am__can_run_installinfo = \
84
+  case $$AM_UPDATE_INFO_DIR in \
85
+    n|no|NO) false;; \
86
+    *) (install-info --version) >/dev/null 2>&1;; \
87
+  esac
83 88
 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
84 89
 am__vpath_adj = case $$p in \
85 90
     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
... ...
@@ -323,11 +345,18 @@ clean-libtool:
323 323
 	-rm -rf .libs _libs
324 324
 install-man1: $(man_MANS)
325 325
 	@$(NORMAL_INSTALL)
326
-	test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)"
327
-	@list=''; test -n "$(man1dir)" || exit 0; \
328
-	{ for i in $$list; do echo "$$i"; done; \
329
-	l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
330
-	  sed -n '/\.1[a-z]*$$/p'; \
326
+	@list1=''; \
327
+	list2='$(man_MANS)'; \
328
+	test -n "$(man1dir)" \
329
+	  && test -n "`echo $$list1$$list2`" \
330
+	  || exit 0; \
331
+	echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
332
+	$(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
333
+	{ for i in $$list1; do echo "$$i"; done;  \
334
+	if test -n "$$list2"; then \
335
+	  for i in $$list2; do echo "$$i"; done \
336
+	    | sed -n '/\.1[a-z]*$$/p'; \
337
+	fi; \
331 338
 	} | while read p; do \
332 339
 	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
333 340
 	  echo "$$d$$p"; echo "$$p"; \
... ...
@@ -359,11 +388,18 @@ uninstall-man1:
359 359
 	dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
360 360
 install-man5: $(man_MANS)
361 361
 	@$(NORMAL_INSTALL)
362
-	test -z "$(man5dir)" || $(MKDIR_P) "$(DESTDIR)$(man5dir)"
363
-	@list=''; test -n "$(man5dir)" || exit 0; \
364
-	{ for i in $$list; do echo "$$i"; done; \
365
-	l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
366
-	  sed -n '/\.5[a-z]*$$/p'; \
362
+	@list1=''; \
363
+	list2='$(man_MANS)'; \
364
+	test -n "$(man5dir)" \
365
+	  && test -n "`echo $$list1$$list2`" \
366
+	  || exit 0; \
367
+	echo " $(MKDIR_P) '$(DESTDIR)$(man5dir)'"; \
368
+	$(MKDIR_P) "$(DESTDIR)$(man5dir)" || exit 1; \
369
+	{ for i in $$list1; do echo "$$i"; done;  \
370
+	if test -n "$$list2"; then \
371
+	  for i in $$list2; do echo "$$i"; done \
372
+	    | sed -n '/\.5[a-z]*$$/p'; \
373
+	fi; \
367 374
 	} | while read p; do \
368 375
 	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
369 376
 	  echo "$$d$$p"; echo "$$p"; \
... ...
@@ -395,11 +431,18 @@ uninstall-man5:
395 395
 	dir='$(DESTDIR)$(man5dir)'; $(am__uninstall_files_from_dir)
396 396
 install-man8: $(man_MANS)
397 397
 	@$(NORMAL_INSTALL)
398
-	test -z "$(man8dir)" || $(MKDIR_P) "$(DESTDIR)$(man8dir)"
399
-	@list=''; test -n "$(man8dir)" || exit 0; \
400
-	{ for i in $$list; do echo "$$i"; done; \
401
-	l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
402
-	  sed -n '/\.8[a-z]*$$/p'; \
398
+	@list1=''; \
399
+	list2='$(man_MANS)'; \
400
+	test -n "$(man8dir)" \
401
+	  && test -n "`echo $$list1$$list2`" \
402
+	  || exit 0; \
403
+	echo " $(MKDIR_P) '$(DESTDIR)$(man8dir)'"; \
404
+	$(MKDIR_P) "$(DESTDIR)$(man8dir)" || exit 1; \
405
+	{ for i in $$list1; do echo "$$i"; done;  \
406
+	if test -n "$$list2"; then \
407
+	  for i in $$list2; do echo "$$i"; done \
408
+	    | sed -n '/\.8[a-z]*$$/p'; \
409
+	fi; \
403 410
 	} | while read p; do \
404 411
 	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
405 412
 	  echo "$$d$$p"; echo "$$p"; \
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -34,6 +34,23 @@
34 34
 #  MA 02110-1301, USA.
35 35
 
36 36
 VPATH = @srcdir@
37
+am__make_dryrun = \
38
+  { \
39
+    am__dry=no; \
40
+    case $$MAKEFLAGS in \
41
+      *\\[\ \	]*) \
42
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
43
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
44
+      *) \
45
+        for am__flg in $$MAKEFLAGS; do \
46
+          case $$am__flg in \
47
+            *=*|--*) ;; \
48
+            *n*) am__dry=yes; break;; \
49
+          esac; \
50
+        done;; \
51
+    esac; \
52
+    test $$am__dry = yes; \
53
+  }
37 54
 pkgdatadir = $(datadir)/@PACKAGE@
38 55
 pkgincludedir = $(includedir)/@PACKAGE@
39 56
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -82,6 +99,11 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
82 82
 am__v_at_0 = @
83 83
 SOURCES =
84 84
 DIST_SOURCES =
85
+am__can_run_installinfo = \
86
+  case $$AM_UPDATE_INFO_DIR in \
87
+    n|no|NO) false;; \
88
+    *) (install-info --version) >/dev/null 2>&1;; \
89
+  esac
85 90
 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
86 91
 am__vpath_adj = case $$p in \
87 92
     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
... ...
@@ -321,8 +343,11 @@ clean-libtool:
321 321
 	-rm -rf .libs _libs
322 322
 install-sysconfDATA: $(sysconf_DATA)
323 323
 	@$(NORMAL_INSTALL)
324
-	test -z "$(sysconfdir)" || $(MKDIR_P) "$(DESTDIR)$(sysconfdir)"
325 324
 	@list='$(sysconf_DATA)'; test -n "$(sysconfdir)" || list=; \
325
+	if test -n "$$list"; then \
326
+	  echo " $(MKDIR_P) '$(DESTDIR)$(sysconfdir)'"; \
327
+	  $(MKDIR_P) "$(DESTDIR)$(sysconfdir)" || exit 1; \
328
+	fi; \
326 329
 	for p in $$list; do \
327 330
 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
328 331
 	  echo "$$d$$p"; \
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -35,6 +35,23 @@
35 35
 #  MA 02110-1301, USA.
36 36
 
37 37
 VPATH = @srcdir@
38
+am__make_dryrun = \
39
+  { \
40
+    am__dry=no; \
41
+    case $$MAKEFLAGS in \
42
+      *\\[\ \	]*) \
43
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
44
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
45
+      *) \
46
+        for am__flg in $$MAKEFLAGS; do \
47
+          case $$am__flg in \
48
+            *=*|--*) ;; \
49
+            *n*) am__dry=yes; break;; \
50
+          esac; \
51
+        done;; \
52
+    esac; \
53
+    test $$am__dry = yes; \
54
+  }
38 55
 pkgdatadir = $(datadir)/@PACKAGE@
39 56
 pkgincludedir = $(includedir)/@PACKAGE@
40 57
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -115,6 +132,11 @@ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
115 115
 am__v_GEN_0 = @echo "  GEN   " $@;
116 116
 SOURCES = $(freshclam_SOURCES)
117 117
 DIST_SOURCES = $(freshclam_SOURCES)
118
+am__can_run_installinfo = \
119
+  case $$AM_UPDATE_INFO_DIR in \
120
+    n|no|NO) false;; \
121
+    *) (install-info --version) >/dev/null 2>&1;; \
122
+  esac
118 123
 ETAGS = etags
119 124
 CTAGS = ctags
120 125
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
... ...
@@ -352,8 +374,11 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
352 352
 $(am__aclocal_m4_deps):
353 353
 install-binPROGRAMS: $(bin_PROGRAMS)
354 354
 	@$(NORMAL_INSTALL)
355
-	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
356 355
 	@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
356
+	if test -n "$$list"; then \
357
+	  echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
358
+	  $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
359
+	fi; \
357 360
 	for p in $$list; do echo "$$p $$p"; done | \
358 361
 	sed 's/$(EXEEXT)$$//' | \
359 362
 	while read p p1; do if test -f $$p || test -f $$p1; \
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -35,6 +35,23 @@
35 35
 
36 36
 
37 37
 VPATH = @srcdir@
38
+am__make_dryrun = \
39
+  { \
40
+    am__dry=no; \
41
+    case $$MAKEFLAGS in \
42
+      *\\[\ \	]*) \
43
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
44
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
45
+      *) \
46
+        for am__flg in $$MAKEFLAGS; do \
47
+          case $$am__flg in \
48
+            *=*|--*) ;; \
49
+            *n*) am__dry=yes; break;; \
50
+          esac; \
51
+        done;; \
52
+    esac; \
53
+    test $$am__dry = yes; \
54
+  }
38 55
 pkgdatadir = $(datadir)/@PACKAGE@
39 56
 pkgincludedir = $(includedir)/@PACKAGE@
40 57
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -343,6 +360,11 @@ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
343 343
 	install-pdf-recursive install-ps-recursive install-recursive \
344 344
 	installcheck-recursive installdirs-recursive pdf-recursive \
345 345
 	ps-recursive uninstall-recursive
346
+am__can_run_installinfo = \
347
+  case $$AM_UPDATE_INFO_DIR in \
348
+    n|no|NO) false;; \
349
+    *) (install-info --version) >/dev/null 2>&1;; \
350
+  esac
346 351
 HEADERS = $(include_HEADERS)
347 352
 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
348 353
   distclean-recursive maintainer-clean-recursive
... ...
@@ -793,7 +815,6 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
793 793
 $(am__aclocal_m4_deps):
794 794
 install-libLTLIBRARIES: $(lib_LTLIBRARIES)
795 795
 	@$(NORMAL_INSTALL)
796
-	test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
797 796
 	@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
798 797
 	list2=; for p in $$list; do \
799 798
 	  if test -f $$p; then \
... ...
@@ -801,6 +822,8 @@ install-libLTLIBRARIES: $(lib_LTLIBRARIES)
801 801
 	  else :; fi; \
802 802
 	done; \
803 803
 	test -z "$$list2" || { \
804
+	  echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
805
+	  $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
804 806
 	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
805 807
 	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
806 808
 	}
... ...
@@ -2648,8 +2671,11 @@ clean-libtool:
2648 2648
 	-rm -rf .libs _libs
2649 2649
 install-includeHEADERS: $(include_HEADERS)
2650 2650
 	@$(NORMAL_INSTALL)
2651
-	test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
2652 2651
 	@list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
2652
+	if test -n "$$list"; then \
2653
+	  echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \
2654
+	  $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \
2655
+	fi; \
2653 2656
 	for p in $$list; do \
2654 2657
 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
2655 2658
 	  echo "$$d$$p"; \
... ...
@@ -2832,13 +2858,10 @@ distdir: $(DISTFILES)
2832 2832
 	done
2833 2833
 	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
2834 2834
 	  if test "$$subdir" = .; then :; else \
2835
-	    test -d "$(distdir)/$$subdir" \
2836
-	    || $(MKDIR_P) "$(distdir)/$$subdir" \
2837
-	    || exit 1; \
2838
-	  fi; \
2839
-	done
2840
-	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
2841
-	  if test "$$subdir" = .; then :; else \
2835
+	    $(am__make_dryrun) \
2836
+	      || test -d "$(distdir)/$$subdir" \
2837
+	      || $(MKDIR_P) "$(distdir)/$$subdir" \
2838
+	      || exit 1; \
2842 2839
 	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
2843 2840
 	    $(am__relativize); \
2844 2841
 	    new_distdir=$$reldir; \
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -32,6 +32,23 @@
32 32
 
33 33
 
34 34
 VPATH = @srcdir@
35
+am__make_dryrun = \
36
+  { \
37
+    am__dry=no; \
38
+    case $$MAKEFLAGS in \
39
+      *\\[\ \	]*) \
40
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
41
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
42
+      *) \
43
+        for am__flg in $$MAKEFLAGS; do \
44
+          case $$am__flg in \
45
+            *=*|--*) ;; \
46
+            *n*) am__dry=yes; break;; \
47
+          esac; \
48
+        done;; \
49
+    esac; \
50
+    test $$am__dry = yes; \
51
+  }
35 52
 pkgdatadir = $(datadir)/@PACKAGE@
36 53
 pkgincludedir = $(includedir)/@PACKAGE@
37 54
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -815,6 +832,11 @@ DIST_SOURCES = $(am__libclamavcxx_la_SOURCES_DIST) \
815 815
 	$(am__libllvmsystem_la_SOURCES_DIST) \
816 816
 	$(am__libllvmx86codegen_la_SOURCES_DIST) \
817 817
 	$(am__tblgen_SOURCES_DIST)
818
+am__can_run_installinfo = \
819
+  case $$AM_UPDATE_INFO_DIR in \
820
+    n|no|NO) false;; \
821
+    *) (install-info --version) >/dev/null 2>&1;; \
822
+  esac
818 823
 ETAGS = etags
819 824
 CTAGS = ctags
820 825
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
... ...
@@ -5543,7 +5565,7 @@ distcheck: dist
5543 5543
 	*.zip*) \
5544 5544
 	  unzip $(distdir).zip ;;\
5545 5545
 	esac
5546
-	chmod -R a-w $(distdir); chmod a+w $(distdir)
5546
+	chmod -R a-w $(distdir); chmod u+w $(distdir)
5547 5547
 	mkdir $(distdir)/_build
5548 5548
 	mkdir $(distdir)/_inst
5549 5549
 	chmod a-w $(distdir)
... ...
@@ -1,4 +1,4 @@
1
-# generated automatically by aclocal 1.11.3 -*- Autoconf -*-
1
+# generated automatically by aclocal 1.11.6 -*- Autoconf -*-
2 2
 
3 3
 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 4
 # 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
... ...
@@ -14,8 +14,8 @@
14 14
 
15 15
 m4_ifndef([AC_AUTOCONF_VERSION],
16 16
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
17
-m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],,
18
-[m4_warning([this file was generated for autoconf 2.68.
17
+m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
18
+[m4_warning([this file was generated for autoconf 2.69.
19 19
 You have another version of autoconf.  It may work, but is not guaranteed to.
20 20
 If you have problems, you may need to regenerate the build system entirely.
21 21
 To do so, use the procedure documented by the package, typically `autoreconf'.])])
... ...
@@ -38,7 +38,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION],
38 38
 [am__api_version='1.11'
39 39
 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
40 40
 dnl require some minimum version.  Point them to the right macro.
41
-m4_if([$1], [1.11.3], [],
41
+m4_if([$1], [1.11.6], [],
42 42
       [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
43 43
 ])
44 44
 
... ...
@@ -54,7 +54,7 @@ m4_define([_AM_AUTOCONF_VERSION], [])
54 54
 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
55 55
 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
56 56
 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
57
-[AM_AUTOMAKE_VERSION([1.11.3])dnl
57
+[AM_AUTOMAKE_VERSION([1.11.6])dnl
58 58
 m4_ifndef([AC_AUTOCONF_VERSION],
59 59
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
60 60
 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
... ...
@@ -1,13 +1,11 @@
1 1
 #! /bin/sh
2 2
 # Guess values for system-dependent variables and create Makefiles.
3
-# Generated by GNU Autoconf 2.68 for libclamavc++ devel.
3
+# Generated by GNU Autoconf 2.69 for libclamavc++ devel.
4 4
 #
5 5
 # Report bugs to <http://bugs.clamav.net>.
6 6
 #
7 7
 #
8
-# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
9
-# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
10
-# Foundation, Inc.
8
+# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
11 9
 #
12 10
 #
13 11
 # This configure script is free software; the Free Software Foundation
... ...
@@ -136,6 +134,31 @@ export LANGUAGE
136 136
 # CDPATH.
137 137
 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
138 138
 
139
+# Use a proper internal environment variable to ensure we don't fall
140
+  # into an infinite loop, continuously re-executing ourselves.
141
+  if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
142
+    _as_can_reexec=no; export _as_can_reexec;
143
+    # We cannot yet assume a decent shell, so we have to provide a
144
+# neutralization value for shells without unset; and this also
145
+# works around shells that cannot unset nonexistent variables.
146
+# Preserve -v and -x to the replacement shell.
147
+BASH_ENV=/dev/null
148
+ENV=/dev/null
149
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
150
+case $- in # ((((
151
+  *v*x* | *x*v* ) as_opts=-vx ;;
152
+  *v* ) as_opts=-v ;;
153
+  *x* ) as_opts=-x ;;
154
+  * ) as_opts= ;;
155
+esac
156
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
157
+# Admittedly, this is quite paranoid, since all the known shells bail
158
+# out after a failed `exec'.
159
+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
160
+as_fn_exit 255
161
+  fi
162
+  # We don't want this to propagate to other subprocesses.
163
+          { _as_can_reexec=; unset _as_can_reexec;}
139 164
 if test "x$CONFIG_SHELL" = x; then
140 165
   as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
141 166
   emulate sh
... ...
@@ -169,7 +192,8 @@ if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
169 169
 else
170 170
   exitcode=1; echo positional parameters were not saved.
171 171
 fi
172
-test x\$exitcode = x0 || exit 1"
172
+test x\$exitcode = x0 || exit 1
173
+test -x / || exit 1"
173 174
   as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
174 175
   as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
175 176
   eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
... ...
@@ -222,21 +246,25 @@ IFS=$as_save_IFS
222 222
 
223 223
 
224 224
       if test "x$CONFIG_SHELL" != x; then :
225
-  # We cannot yet assume a decent shell, so we have to provide a
226
-	# neutralization value for shells without unset; and this also
227
-	# works around shells that cannot unset nonexistent variables.
228
-	# Preserve -v and -x to the replacement shell.
229
-	BASH_ENV=/dev/null
230
-	ENV=/dev/null
231
-	(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
232
-	export CONFIG_SHELL
233
-	case $- in # ((((
234
-	  *v*x* | *x*v* ) as_opts=-vx ;;
235
-	  *v* ) as_opts=-v ;;
236
-	  *x* ) as_opts=-x ;;
237
-	  * ) as_opts= ;;
238
-	esac
239
-	exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"}
225
+  export CONFIG_SHELL
226
+             # We cannot yet assume a decent shell, so we have to provide a
227
+# neutralization value for shells without unset; and this also
228
+# works around shells that cannot unset nonexistent variables.
229
+# Preserve -v and -x to the replacement shell.
230
+BASH_ENV=/dev/null
231
+ENV=/dev/null
232
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
233
+case $- in # ((((
234
+  *v*x* | *x*v* ) as_opts=-vx ;;
235
+  *v* ) as_opts=-v ;;
236
+  *x* ) as_opts=-x ;;
237
+  * ) as_opts= ;;
238
+esac
239
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
240
+# Admittedly, this is quite paranoid, since all the known shells bail
241
+# out after a failed `exec'.
242
+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
243
+exit 255
240 244
 fi
241 245
 
242 246
     if test x$as_have_required = xno; then :
... ...
@@ -339,6 +367,14 @@ $as_echo X"$as_dir" |
339 339
 
340 340
 
341 341
 } # as_fn_mkdir_p
342
+
343
+# as_fn_executable_p FILE
344
+# -----------------------
345
+# Test if FILE is an executable regular file.
346
+as_fn_executable_p ()
347
+{
348
+  test -f "$1" && test -x "$1"
349
+} # as_fn_executable_p
342 350
 # as_fn_append VAR VALUE
343 351
 # ----------------------
344 352
 # Append the text in VALUE to the end of the definition contained in VAR. Take
... ...
@@ -460,6 +496,10 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits
460 460
   chmod +x "$as_me.lineno" ||
461 461
     { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
462 462
 
463
+  # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
464
+  # already done that, so ensure we don't try to do so again and fall
465
+  # in an infinite loop.  This has already happened in practice.
466
+  _as_can_reexec=no; export _as_can_reexec
463 467
   # Don't try to exec as it changes $[0], causing all sort of problems
464 468
   # (the dirname of $[0] is not the place where we might find the
465 469
   # original and so on.  Autoconf is especially sensitive to this).
... ...
@@ -494,16 +534,16 @@ if (echo >conf$$.file) 2>/dev/null; then
494 494
     # ... but there are two gotchas:
495 495
     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
496 496
     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
497
-    # In both cases, we have to default to `cp -p'.
497
+    # In both cases, we have to default to `cp -pR'.
498 498
     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
499
-      as_ln_s='cp -p'
499
+      as_ln_s='cp -pR'
500 500
   elif ln conf$$.file conf$$ 2>/dev/null; then
501 501
     as_ln_s=ln
502 502
   else
503
-    as_ln_s='cp -p'
503
+    as_ln_s='cp -pR'
504 504
   fi
505 505
 else
506
-  as_ln_s='cp -p'
506
+  as_ln_s='cp -pR'
507 507
 fi
508 508
 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
509 509
 rmdir conf$$.dir 2>/dev/null
... ...
@@ -515,28 +555,8 @@ else
515 515
   as_mkdir_p=false
516 516
 fi
517 517
 
518
-if test -x / >/dev/null 2>&1; then
519
-  as_test_x='test -x'
520
-else
521
-  if ls -dL / >/dev/null 2>&1; then
522
-    as_ls_L_option=L
523
-  else
524
-    as_ls_L_option=
525
-  fi
526
-  as_test_x='
527
-    eval sh -c '\''
528
-      if test -d "$1"; then
529
-	test -d "$1/.";
530
-      else
531
-	case $1 in #(
532
-	-*)set "./$1";;
533
-	esac;
534
-	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
535
-	???[sx]*):;;*)false;;esac;fi
536
-    '\'' sh
537
-  '
538
-fi
539
-as_executable_p=$as_test_x
518
+as_test_x='test -x'
519
+as_executable_p=as_fn_executable_p
540 520
 
541 521
 # Sed expression to map a string onto a valid CPP name.
542 522
 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
... ...
@@ -1249,8 +1269,6 @@ target=$target_alias
1249 1249
 if test "x$host_alias" != x; then
1250 1250
   if test "x$build_alias" = x; then
1251 1251
     cross_compiling=maybe
1252
-    $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
1253
-    If a cross compiler is detected then cross compile mode will be used" >&2
1254 1252
   elif test "x$build_alias" != "x$host_alias"; then
1255 1253
     cross_compiling=yes
1256 1254
   fi
... ...
@@ -1522,9 +1540,9 @@ test -n "$ac_init_help" && exit $ac_status
1522 1522
 if $ac_init_version; then
1523 1523
   cat <<\_ACEOF
1524 1524
 libclamavc++ configure devel
1525
-generated by GNU Autoconf 2.68
1525
+generated by GNU Autoconf 2.69
1526 1526
 
1527
-Copyright (C) 2010 Free Software Foundation, Inc.
1527
+Copyright (C) 2012 Free Software Foundation, Inc.
1528 1528
 This configure script is free software; the Free Software Foundation
1529 1529
 gives unlimited permission to copy, distribute and modify it.
1530 1530
 _ACEOF
... ...
@@ -1748,7 +1766,7 @@ $as_echo "$ac_try_echo"; } >&5
1748 1748
 	 test ! -s conftest.err
1749 1749
        } && test -s conftest$ac_exeext && {
1750 1750
 	 test "$cross_compiling" = yes ||
1751
-	 $as_test_x conftest$ac_exeext
1751
+	 test -x conftest$ac_exeext
1752 1752
        }; then :
1753 1753
   ac_retval=0
1754 1754
 else
... ...
@@ -1898,7 +1916,7 @@ $as_echo "$ac_try_echo"; } >&5
1898 1898
 	 test ! -s conftest.err
1899 1899
        } && test -s conftest$ac_exeext && {
1900 1900
 	 test "$cross_compiling" = yes ||
1901
-	 $as_test_x conftest$ac_exeext
1901
+	 test -x conftest$ac_exeext
1902 1902
        }; then :
1903 1903
   ac_retval=0
1904 1904
 else
... ...
@@ -1963,7 +1981,7 @@ This file contains any messages produced by compilers while
1963 1963
 running configure, to aid debugging if configure makes a mistake.
1964 1964
 
1965 1965
 It was created by libclamavc++ $as_me devel, which was
1966
-generated by GNU Autoconf 2.68.  Invocation command line was
1966
+generated by GNU Autoconf 2.69.  Invocation command line was
1967 1967
 
1968 1968
   $ $0 $@
1969 1969
 
... ...
@@ -2492,7 +2510,7 @@ case $as_dir/ in #((
2492 2492
     # by default.
2493 2493
     for ac_prog in ginstall scoinst install; do
2494 2494
       for ac_exec_ext in '' $ac_executable_extensions; do
2495
-	if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
2495
+	if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
2496 2496
 	  if test $ac_prog = install &&
2497 2497
 	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
2498 2498
 	    # AIX install.  It has an incompatible calling convention.
... ...
@@ -2661,7 +2679,7 @@ do
2661 2661
   IFS=$as_save_IFS
2662 2662
   test -z "$as_dir" && as_dir=.
2663 2663
     for ac_exec_ext in '' $ac_executable_extensions; do
2664
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2664
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2665 2665
     ac_cv_prog_STRIP="${ac_tool_prefix}strip"
2666 2666
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2667 2667
     break 2
... ...
@@ -2701,7 +2719,7 @@ do
2701 2701
   IFS=$as_save_IFS
2702 2702
   test -z "$as_dir" && as_dir=.
2703 2703
     for ac_exec_ext in '' $ac_executable_extensions; do
2704
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2704
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2705 2705
     ac_cv_prog_ac_ct_STRIP="strip"
2706 2706
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2707 2707
     break 2
... ...
@@ -2752,7 +2770,7 @@ do
2752 2752
   test -z "$as_dir" && as_dir=.
2753 2753
     for ac_prog in mkdir gmkdir; do
2754 2754
 	 for ac_exec_ext in '' $ac_executable_extensions; do
2755
-	   { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue
2755
+	   as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
2756 2756
 	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
2757 2757
 	     'mkdir (GNU coreutils) '* | \
2758 2758
 	     'mkdir (coreutils) '* | \
... ...
@@ -2805,7 +2823,7 @@ do
2805 2805
   IFS=$as_save_IFS
2806 2806
   test -z "$as_dir" && as_dir=.
2807 2807
     for ac_exec_ext in '' $ac_executable_extensions; do
2808
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2808
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2809 2809
     ac_cv_prog_AWK="$ac_prog"
2810 2810
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2811 2811
     break 2
... ...
@@ -3072,7 +3090,7 @@ do
3072 3072
   IFS=$as_save_IFS
3073 3073
   test -z "$as_dir" && as_dir=.
3074 3074
     for ac_exec_ext in '' $ac_executable_extensions; do
3075
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3075
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3076 3076
     ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
3077 3077
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3078 3078
     break 2
... ...
@@ -3116,7 +3134,7 @@ do
3116 3116
   IFS=$as_save_IFS
3117 3117
   test -z "$as_dir" && as_dir=.
3118 3118
     for ac_exec_ext in '' $ac_executable_extensions; do
3119
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3119
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3120 3120
     ac_cv_prog_ac_ct_CXX="$ac_prog"
3121 3121
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3122 3122
     break 2
... ...
@@ -3764,7 +3782,7 @@ do
3764 3764
   IFS=$as_save_IFS
3765 3765
   test -z "$as_dir" && as_dir=.
3766 3766
     for ac_exec_ext in '' $ac_executable_extensions; do
3767
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3767
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3768 3768
     ac_cv_prog_CC="${ac_tool_prefix}gcc"
3769 3769
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3770 3770
     break 2
... ...
@@ -3804,7 +3822,7 @@ do
3804 3804
   IFS=$as_save_IFS
3805 3805
   test -z "$as_dir" && as_dir=.
3806 3806
     for ac_exec_ext in '' $ac_executable_extensions; do
3807
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3807
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3808 3808
     ac_cv_prog_ac_ct_CC="gcc"
3809 3809
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3810 3810
     break 2
... ...
@@ -3857,7 +3875,7 @@ do
3857 3857
   IFS=$as_save_IFS
3858 3858
   test -z "$as_dir" && as_dir=.
3859 3859
     for ac_exec_ext in '' $ac_executable_extensions; do
3860
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3860
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3861 3861
     ac_cv_prog_CC="${ac_tool_prefix}cc"
3862 3862
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3863 3863
     break 2
... ...
@@ -3898,7 +3916,7 @@ do
3898 3898
   IFS=$as_save_IFS
3899 3899
   test -z "$as_dir" && as_dir=.
3900 3900
     for ac_exec_ext in '' $ac_executable_extensions; do
3901
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3901
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3902 3902
     if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
3903 3903
        ac_prog_rejected=yes
3904 3904
        continue
... ...
@@ -3956,7 +3974,7 @@ do
3956 3956
   IFS=$as_save_IFS
3957 3957
   test -z "$as_dir" && as_dir=.
3958 3958
     for ac_exec_ext in '' $ac_executable_extensions; do
3959
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3959
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3960 3960
     ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
3961 3961
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3962 3962
     break 2
... ...
@@ -4000,7 +4018,7 @@ do
4000 4000
   IFS=$as_save_IFS
4001 4001
   test -z "$as_dir" && as_dir=.
4002 4002
     for ac_exec_ext in '' $ac_executable_extensions; do
4003
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
4003
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4004 4004
     ac_cv_prog_ac_ct_CC="$ac_prog"
4005 4005
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4006 4006
     break 2
... ...
@@ -4196,8 +4214,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4196 4196
 /* end confdefs.h.  */
4197 4197
 #include <stdarg.h>
4198 4198
 #include <stdio.h>
4199
-#include <sys/types.h>
4200
-#include <sys/stat.h>
4199
+struct stat;
4201 4200
 /* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
4202 4201
 struct buf { int x; };
4203 4202
 FILE * (*rcsopen) (struct buf *, struct stat *, int);
... ...
@@ -4565,7 +4582,7 @@ do
4565 4565
     for ac_prog in grep ggrep; do
4566 4566
     for ac_exec_ext in '' $ac_executable_extensions; do
4567 4567
       ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
4568
-      { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
4568
+      as_fn_executable_p "$ac_path_GREP" || continue
4569 4569
 # Check for GNU ac_path_GREP and select it if it is found.
4570 4570
   # Check for GNU $ac_path_GREP
4571 4571
 case `"$ac_path_GREP" --version 2>&1` in
... ...
@@ -4631,7 +4648,7 @@ do
4631 4631
     for ac_prog in egrep; do
4632 4632
     for ac_exec_ext in '' $ac_executable_extensions; do
4633 4633
       ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
4634
-      { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
4634
+      as_fn_executable_p "$ac_path_EGREP" || continue
4635 4635
 # Check for GNU ac_path_EGREP and select it if it is found.
4636 4636
   # Check for GNU $ac_path_EGREP
4637 4637
 case `"$ac_path_EGREP" --version 2>&1` in
... ...
@@ -5184,7 +5201,7 @@ do
5184 5184
     for ac_prog in sed gsed; do
5185 5185
     for ac_exec_ext in '' $ac_executable_extensions; do
5186 5186
       ac_path_SED="$as_dir/$ac_prog$ac_exec_ext"
5187
-      { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue
5187
+      as_fn_executable_p "$ac_path_SED" || continue
5188 5188
 # Check for GNU ac_path_SED and select it if it is found.
5189 5189
   # Check for GNU $ac_path_SED
5190 5190
 case `"$ac_path_SED" --version 2>&1` in
... ...
@@ -5263,7 +5280,7 @@ do
5263 5263
     for ac_prog in fgrep; do
5264 5264
     for ac_exec_ext in '' $ac_executable_extensions; do
5265 5265
       ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext"
5266
-      { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue
5266
+      as_fn_executable_p "$ac_path_FGREP" || continue
5267 5267
 # Check for GNU ac_path_FGREP and select it if it is found.
5268 5268
   # Check for GNU $ac_path_FGREP
5269 5269
 case `"$ac_path_FGREP" --version 2>&1` in
... ...
@@ -5519,7 +5536,7 @@ do
5519 5519
   IFS=$as_save_IFS
5520 5520
   test -z "$as_dir" && as_dir=.
5521 5521
     for ac_exec_ext in '' $ac_executable_extensions; do
5522
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5522
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5523 5523
     ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog"
5524 5524
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5525 5525
     break 2
... ...
@@ -5563,7 +5580,7 @@ do
5563 5563
   IFS=$as_save_IFS
5564 5564
   test -z "$as_dir" && as_dir=.
5565 5565
     for ac_exec_ext in '' $ac_executable_extensions; do
5566
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5566
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5567 5567
     ac_cv_prog_ac_ct_DUMPBIN="$ac_prog"
5568 5568
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5569 5569
     break 2
... ...
@@ -5987,7 +6004,7 @@ do
5987 5987
   IFS=$as_save_IFS
5988 5988
   test -z "$as_dir" && as_dir=.
5989 5989
     for ac_exec_ext in '' $ac_executable_extensions; do
5990
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5990
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5991 5991
     ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump"
5992 5992
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5993 5993
     break 2
... ...
@@ -6027,7 +6044,7 @@ do
6027 6027
   IFS=$as_save_IFS
6028 6028
   test -z "$as_dir" && as_dir=.
6029 6029
     for ac_exec_ext in '' $ac_executable_extensions; do
6030
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6030
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6031 6031
     ac_cv_prog_ac_ct_OBJDUMP="objdump"
6032 6032
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6033 6033
     break 2
... ...
@@ -6333,7 +6350,7 @@ do
6333 6333
   IFS=$as_save_IFS
6334 6334
   test -z "$as_dir" && as_dir=.
6335 6335
     for ac_exec_ext in '' $ac_executable_extensions; do
6336
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6336
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6337 6337
     ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool"
6338 6338
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6339 6339
     break 2
... ...
@@ -6373,7 +6390,7 @@ do
6373 6373
   IFS=$as_save_IFS
6374 6374
   test -z "$as_dir" && as_dir=.
6375 6375
     for ac_exec_ext in '' $ac_executable_extensions; do
6376
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6376
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6377 6377
     ac_cv_prog_ac_ct_DLLTOOL="dlltool"
6378 6378
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6379 6379
     break 2
... ...
@@ -6476,7 +6493,7 @@ do
6476 6476
   IFS=$as_save_IFS
6477 6477
   test -z "$as_dir" && as_dir=.
6478 6478
     for ac_exec_ext in '' $ac_executable_extensions; do
6479
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6479
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6480 6480
     ac_cv_prog_AR="$ac_tool_prefix$ac_prog"
6481 6481
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6482 6482
     break 2
... ...
@@ -6520,7 +6537,7 @@ do
6520 6520
   IFS=$as_save_IFS
6521 6521
   test -z "$as_dir" && as_dir=.
6522 6522
     for ac_exec_ext in '' $ac_executable_extensions; do
6523
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6523
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6524 6524
     ac_cv_prog_ac_ct_AR="$ac_prog"
6525 6525
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6526 6526
     break 2
... ...
@@ -6645,7 +6662,7 @@ do
6645 6645
   IFS=$as_save_IFS
6646 6646
   test -z "$as_dir" && as_dir=.
6647 6647
     for ac_exec_ext in '' $ac_executable_extensions; do
6648
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6648
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6649 6649
     ac_cv_prog_STRIP="${ac_tool_prefix}strip"
6650 6650
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6651 6651
     break 2
... ...
@@ -6685,7 +6702,7 @@ do
6685 6685
   IFS=$as_save_IFS
6686 6686
   test -z "$as_dir" && as_dir=.
6687 6687
     for ac_exec_ext in '' $ac_executable_extensions; do
6688
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6688
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6689 6689
     ac_cv_prog_ac_ct_STRIP="strip"
6690 6690
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6691 6691
     break 2
... ...
@@ -6744,7 +6761,7 @@ do
6744 6744
   IFS=$as_save_IFS
6745 6745
   test -z "$as_dir" && as_dir=.
6746 6746
     for ac_exec_ext in '' $ac_executable_extensions; do
6747
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6747
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6748 6748
     ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
6749 6749
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6750 6750
     break 2
... ...
@@ -6784,7 +6801,7 @@ do
6784 6784
   IFS=$as_save_IFS
6785 6785
   test -z "$as_dir" && as_dir=.
6786 6786
     for ac_exec_ext in '' $ac_executable_extensions; do
6787
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6787
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6788 6788
     ac_cv_prog_ac_ct_RANLIB="ranlib"
6789 6789
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6790 6790
     break 2
... ...
@@ -7433,7 +7450,7 @@ do
7433 7433
   IFS=$as_save_IFS
7434 7434
   test -z "$as_dir" && as_dir=.
7435 7435
     for ac_exec_ext in '' $ac_executable_extensions; do
7436
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7436
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7437 7437
     ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt"
7438 7438
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7439 7439
     break 2
... ...
@@ -7473,7 +7490,7 @@ do
7473 7473
   IFS=$as_save_IFS
7474 7474
   test -z "$as_dir" && as_dir=.
7475 7475
     for ac_exec_ext in '' $ac_executable_extensions; do
7476
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7476
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7477 7477
     ac_cv_prog_ac_ct_MANIFEST_TOOL="mt"
7478 7478
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7479 7479
     break 2
... ...
@@ -7553,7 +7570,7 @@ do
7553 7553
   IFS=$as_save_IFS
7554 7554
   test -z "$as_dir" && as_dir=.
7555 7555
     for ac_exec_ext in '' $ac_executable_extensions; do
7556
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7556
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7557 7557
     ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil"
7558 7558
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7559 7559
     break 2
... ...
@@ -7593,7 +7610,7 @@ do
7593 7593
   IFS=$as_save_IFS
7594 7594
   test -z "$as_dir" && as_dir=.
7595 7595
     for ac_exec_ext in '' $ac_executable_extensions; do
7596
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7596
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7597 7597
     ac_cv_prog_ac_ct_DSYMUTIL="dsymutil"
7598 7598
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7599 7599
     break 2
... ...
@@ -7645,7 +7662,7 @@ do
7645 7645
   IFS=$as_save_IFS
7646 7646
   test -z "$as_dir" && as_dir=.
7647 7647
     for ac_exec_ext in '' $ac_executable_extensions; do
7648
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7648
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7649 7649
     ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit"
7650 7650
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7651 7651
     break 2
... ...
@@ -7685,7 +7702,7 @@ do
7685 7685
   IFS=$as_save_IFS
7686 7686
   test -z "$as_dir" && as_dir=.
7687 7687
     for ac_exec_ext in '' $ac_executable_extensions; do
7688
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7688
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7689 7689
     ac_cv_prog_ac_ct_NMEDIT="nmedit"
7690 7690
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7691 7691
     break 2
... ...
@@ -7737,7 +7754,7 @@ do
7737 7737
   IFS=$as_save_IFS
7738 7738
   test -z "$as_dir" && as_dir=.
7739 7739
     for ac_exec_ext in '' $ac_executable_extensions; do
7740
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7740
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7741 7741
     ac_cv_prog_LIPO="${ac_tool_prefix}lipo"
7742 7742
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7743 7743
     break 2
... ...
@@ -7777,7 +7794,7 @@ do
7777 7777
   IFS=$as_save_IFS
7778 7778
   test -z "$as_dir" && as_dir=.
7779 7779
     for ac_exec_ext in '' $ac_executable_extensions; do
7780
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7780
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7781 7781
     ac_cv_prog_ac_ct_LIPO="lipo"
7782 7782
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7783 7783
     break 2
... ...
@@ -7829,7 +7846,7 @@ do
7829 7829
   IFS=$as_save_IFS
7830 7830
   test -z "$as_dir" && as_dir=.
7831 7831
     for ac_exec_ext in '' $ac_executable_extensions; do
7832
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7832
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7833 7833
     ac_cv_prog_OTOOL="${ac_tool_prefix}otool"
7834 7834
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7835 7835
     break 2
... ...
@@ -7869,7 +7886,7 @@ do
7869 7869
   IFS=$as_save_IFS
7870 7870
   test -z "$as_dir" && as_dir=.
7871 7871
     for ac_exec_ext in '' $ac_executable_extensions; do
7872
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7872
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7873 7873
     ac_cv_prog_ac_ct_OTOOL="otool"
7874 7874
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7875 7875
     break 2
... ...
@@ -7921,7 +7938,7 @@ do
7921 7921
   IFS=$as_save_IFS
7922 7922
   test -z "$as_dir" && as_dir=.
7923 7923
     for ac_exec_ext in '' $ac_executable_extensions; do
7924
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7924
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7925 7925
     ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64"
7926 7926
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7927 7927
     break 2
... ...
@@ -7961,7 +7978,7 @@ do
7961 7961
   IFS=$as_save_IFS
7962 7962
   test -z "$as_dir" && as_dir=.
7963 7963
     for ac_exec_ext in '' $ac_executable_extensions; do
7964
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7964
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7965 7965
     ac_cv_prog_ac_ct_OTOOL64="otool64"
7966 7966
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7967 7967
     break 2
... ...
@@ -16178,16 +16195,16 @@ if (echo >conf$$.file) 2>/dev/null; then
16178 16178
     # ... but there are two gotchas:
16179 16179
     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
16180 16180
     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
16181
-    # In both cases, we have to default to `cp -p'.
16181
+    # In both cases, we have to default to `cp -pR'.
16182 16182
     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
16183
-      as_ln_s='cp -p'
16183
+      as_ln_s='cp -pR'
16184 16184
   elif ln conf$$.file conf$$ 2>/dev/null; then
16185 16185
     as_ln_s=ln
16186 16186
   else
16187
-    as_ln_s='cp -p'
16187
+    as_ln_s='cp -pR'
16188 16188
   fi
16189 16189
 else
16190
-  as_ln_s='cp -p'
16190
+  as_ln_s='cp -pR'
16191 16191
 fi
16192 16192
 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
16193 16193
 rmdir conf$$.dir 2>/dev/null
... ...
@@ -16247,28 +16264,16 @@ else
16247 16247
   as_mkdir_p=false
16248 16248
 fi
16249 16249
 
16250
-if test -x / >/dev/null 2>&1; then
16251
-  as_test_x='test -x'
16252
-else
16253
-  if ls -dL / >/dev/null 2>&1; then
16254
-    as_ls_L_option=L
16255
-  else
16256
-    as_ls_L_option=
16257
-  fi
16258
-  as_test_x='
16259
-    eval sh -c '\''
16260
-      if test -d "$1"; then
16261
-	test -d "$1/.";
16262
-      else
16263
-	case $1 in #(
16264
-	-*)set "./$1";;
16265
-	esac;
16266
-	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
16267
-	???[sx]*):;;*)false;;esac;fi
16268
-    '\'' sh
16269
-  '
16270
-fi
16271
-as_executable_p=$as_test_x
16250
+
16251
+# as_fn_executable_p FILE
16252
+# -----------------------
16253
+# Test if FILE is an executable regular file.
16254
+as_fn_executable_p ()
16255
+{
16256
+  test -f "$1" && test -x "$1"
16257
+} # as_fn_executable_p
16258
+as_test_x='test -x'
16259
+as_executable_p=as_fn_executable_p
16272 16260
 
16273 16261
 # Sed expression to map a string onto a valid CPP name.
16274 16262
 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
... ...
@@ -16290,7 +16295,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
16290 16290
 # values after options handling.
16291 16291
 ac_log="
16292 16292
 This file was extended by libclamavc++ $as_me devel, which was
16293
-generated by GNU Autoconf 2.68.  Invocation command line was
16293
+generated by GNU Autoconf 2.69.  Invocation command line was
16294 16294
 
16295 16295
   CONFIG_FILES    = $CONFIG_FILES
16296 16296
   CONFIG_HEADERS  = $CONFIG_HEADERS
... ...
@@ -16356,10 +16361,10 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
16356 16356
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
16357 16357
 ac_cs_version="\\
16358 16358
 libclamavc++ config.status devel
16359
-configured by $0, generated by GNU Autoconf 2.68,
16359
+configured by $0, generated by GNU Autoconf 2.69,
16360 16360
   with options \\"\$ac_cs_config\\"
16361 16361
 
16362
-Copyright (C) 2010 Free Software Foundation, Inc.
16362
+Copyright (C) 2012 Free Software Foundation, Inc.
16363 16363
 This config.status script is free software; the Free Software Foundation
16364 16364
 gives unlimited permission to copy, distribute and modify it."
16365 16365
 
... ...
@@ -16450,7 +16455,7 @@ fi
16450 16450
 _ACEOF
16451 16451
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
16452 16452
 if \$ac_cs_recheck; then
16453
-  set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
16453
+  set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
16454 16454
   shift
16455 16455
   \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
16456 16456
   CONFIG_SHELL='$SHELL'
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -19,6 +19,23 @@
19 19
 
20 20
 
21 21
 VPATH = @srcdir@
22
+am__make_dryrun = \
23
+  { \
24
+    am__dry=no; \
25
+    case $$MAKEFLAGS in \
26
+      *\\[\ \	]*) \
27
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
28
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
29
+      *) \
30
+        for am__flg in $$MAKEFLAGS; do \
31
+          case $$am__flg in \
32
+            *=*|--*) ;; \
33
+            *n*) am__dry=yes; break;; \
34
+          esac; \
35
+        done;; \
36
+    esac; \
37
+    test $$am__dry = yes; \
38
+  }
22 39
 pkgdatadir = $(datadir)/@PACKAGE@
23 40
 pkgincludedir = $(includedir)/@PACKAGE@
24 41
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -187,6 +204,11 @@ DIST_SOURCES = $(dld_link_la_SOURCES) $(dlopen_la_SOURCES) \
187 187
 	$(dyld_la_SOURCES) $(libltdl_la_SOURCES) \
188 188
 	$(libltdlc_la_SOURCES) $(load_add_on_la_SOURCES) \
189 189
 	$(loadlibrary_la_SOURCES) $(shl_load_la_SOURCES)
190
+am__can_run_installinfo = \
191
+  case $$AM_UPDATE_INFO_DIR in \
192
+    n|no|NO) false;; \
193
+    *) (install-info --version) >/dev/null 2>&1;; \
194
+  esac
190 195
 am__include_HEADERS_DIST = ltdl.h
191 196
 am__ltdlinclude_HEADERS_DIST = libltdl/lt_system.h libltdl/lt_error.h \
192 197
 	libltdl/lt_dlloader.h
... ...
@@ -461,7 +483,6 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
461 461
 $(am__aclocal_m4_deps):
462 462
 install-libLTLIBRARIES: $(lib_LTLIBRARIES)
463 463
 	@$(NORMAL_INSTALL)
464
-	test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
465 464
 	@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
466 465
 	list2=; for p in $$list; do \
467 466
 	  if test -f $$p; then \
... ...
@@ -469,6 +490,8 @@ install-libLTLIBRARIES: $(lib_LTLIBRARIES)
469 469
 	  else :; fi; \
470 470
 	done; \
471 471
 	test -z "$$list2" || { \
472
+	  echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
473
+	  $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
472 474
 	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
473 475
 	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
474 476
 	}
... ...
@@ -695,8 +718,11 @@ clean-libtool:
695 695
 	-rm -rf .libs _libs
696 696
 install-includeHEADERS: $(include_HEADERS)
697 697
 	@$(NORMAL_INSTALL)
698
-	test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
699 698
 	@list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
699
+	if test -n "$$list"; then \
700
+	  echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \
701
+	  $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \
702
+	fi; \
700 703
 	for p in $$list; do \
701 704
 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
702 705
 	  echo "$$d$$p"; \
... ...
@@ -713,8 +739,11 @@ uninstall-includeHEADERS:
713 713
 	dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
714 714
 install-ltdlincludeHEADERS: $(ltdlinclude_HEADERS)
715 715
 	@$(NORMAL_INSTALL)
716
-	test -z "$(ltdlincludedir)" || $(MKDIR_P) "$(DESTDIR)$(ltdlincludedir)"
717 716
 	@list='$(ltdlinclude_HEADERS)'; test -n "$(ltdlincludedir)" || list=; \
717
+	if test -n "$$list"; then \
718
+	  echo " $(MKDIR_P) '$(DESTDIR)$(ltdlincludedir)'"; \
719
+	  $(MKDIR_P) "$(DESTDIR)$(ltdlincludedir)" || exit 1; \
720
+	fi; \
718 721
 	for p in $$list; do \
719 722
 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
720 723
 	  echo "$$d$$p"; \
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -34,6 +34,23 @@
34 34
 #  MA 02110-1301, USA.
35 35
 
36 36
 VPATH = @srcdir@
37
+am__make_dryrun = \
38
+  { \
39
+    am__dry=no; \
40
+    case $$MAKEFLAGS in \
41
+      *\\[\ \	]*) \
42
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
43
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
44
+      *) \
45
+        for am__flg in $$MAKEFLAGS; do \
46
+          case $$am__flg in \
47
+            *=*|--*) ;; \
48
+            *n*) am__dry=yes; break;; \
49
+          esac; \
50
+        done;; \
51
+    esac; \
52
+    test $$am__dry = yes; \
53
+  }
37 54
 pkgdatadir = $(datadir)/@PACKAGE@
38 55
 pkgincludedir = $(includedir)/@PACKAGE@
39 56
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -112,6 +129,11 @@ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
112 112
 am__v_GEN_0 = @echo "  GEN   " $@;
113 113
 SOURCES = $(sigtool_SOURCES)
114 114
 DIST_SOURCES = $(sigtool_SOURCES)
115
+am__can_run_installinfo = \
116
+  case $$AM_UPDATE_INFO_DIR in \
117
+    n|no|NO) false;; \
118
+    *) (install-info --version) >/dev/null 2>&1;; \
119
+  esac
115 120
 ETAGS = etags
116 121
 CTAGS = ctags
117 122
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
... ...
@@ -336,8 +358,11 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
336 336
 $(am__aclocal_m4_deps):
337 337
 install-binPROGRAMS: $(bin_PROGRAMS)
338 338
 	@$(NORMAL_INSTALL)
339
-	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
340 339
 	@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
340
+	if test -n "$$list"; then \
341
+	  echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
342
+	  $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
343
+	fi; \
341 344
 	for p in $$list; do echo "$$p $$p"; done | \
342 345
 	sed 's/$(EXEEXT)$$//' | \
343 346
 	while read p p1; do if test -f $$p || test -f $$p1; \
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -15,6 +15,23 @@
15 15
 
16 16
 @SET_MAKE@
17 17
 VPATH = @srcdir@
18
+am__make_dryrun = \
19
+  { \
20
+    am__dry=no; \
21
+    case $$MAKEFLAGS in \
22
+      *\\[\ \	]*) \
23
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
24
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
25
+      *) \
26
+        for am__flg in $$MAKEFLAGS; do \
27
+          case $$am__flg in \
28
+            *=*|--*) ;; \
29
+            *n*) am__dry=yes; break;; \
30
+          esac; \
31
+        done;; \
32
+    esac; \
33
+    test $$am__dry = yes; \
34
+  }
18 35
 pkgdatadir = $(datadir)/@PACKAGE@
19 36
 pkgincludedir = $(includedir)/@PACKAGE@
20 37
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -62,6 +79,11 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
62 62
 am__v_at_0 = @
63 63
 SOURCES =
64 64
 DIST_SOURCES =
65
+am__can_run_installinfo = \
66
+  case $$AM_UPDATE_INFO_DIR in \
67
+    n|no|NO) false;; \
68
+    *) (install-info --version) >/dev/null 2>&1;; \
69
+  esac
65 70
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
66 71
 ACLOCAL = @ACLOCAL@
67 72
 AMTAR = @AMTAR@
... ...
@@ -1,4 +1,4 @@
1
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+# Makefile.in generated by automake 1.11.6 from Makefile.am.
2 2
 # @configure_input@
3 3
 
4 4
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
... ...
@@ -15,6 +15,23 @@
15 15
 
16 16
 @SET_MAKE@
17 17
 VPATH = @srcdir@
18
+am__make_dryrun = \
19
+  { \
20
+    am__dry=no; \
21
+    case $$MAKEFLAGS in \
22
+      *\\[\ \	]*) \
23
+        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
24
+          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
25
+      *) \
26
+        for am__flg in $$MAKEFLAGS; do \
27
+          case $$am__flg in \
28
+            *=*|--*) ;; \
29
+            *n*) am__dry=yes; break;; \
30
+          esac; \
31
+        done;; \
32
+    esac; \
33
+    test $$am__dry = yes; \
34
+  }
18 35
 pkgdatadir = $(datadir)/@PACKAGE@
19 36
 pkgincludedir = $(includedir)/@PACKAGE@
20 37
 pkglibdir = $(libdir)/@PACKAGE@
... ...
@@ -118,6 +135,11 @@ am__v_GEN_0 = @echo "  GEN   " $@;
118 118
 SOURCES = $(check_clamav_SOURCES) $(check_clamd_SOURCES)
119 119
 DIST_SOURCES = $(am__check_clamav_SOURCES_DIST) \
120 120
 	$(am__check_clamd_SOURCES_DIST)
121
+am__can_run_installinfo = \
122
+  case $$AM_UPDATE_INFO_DIR in \
123
+    n|no|NO) false;; \
124
+    *) (install-info --version) >/dev/null 2>&1;; \
125
+  esac
121 126
 ETAGS = etags
122 127
 CTAGS = ctags
123 128
 # If stdout is a non-dumb tty, use colors.  If test -t is not supported,
... ...
@@ -853,8 +875,7 @@ check-TESTS recheck:
853 853
 	  if test -z "$$list"; then list=$$f; else list="$$list $$f"; fi; \
854 854
 	done; \
855 855
 	if test $@ = recheck && test -n "$$list"; then \
856
-	  echo "am--clean: ; rm -f $$list" \
857
-	    | $(MAKE) $(AM_MAKEFLAGS) -f - am--clean || exit 1; \
856
+	  $(am__make_dryrun) || rm -f $$list || exit 1; \
858 857
 	fi; \
859 858
 	$(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$list"
860 859
 recheck: $(check_PROGRAMS) $(check_SCRIPTS)