Browse code

bb#1443 please don't touch the build stuff for a coupel of hours so i can easily revert this commit

git-svn: trunk@4884

aCaB authored on 2009/03/03 01:39:54
Showing 22 changed files
... ...
@@ -1,3 +1,7 @@
1
+Mon Mar  2 17:37:15 CET 2009 (acab)
2
+-----------------------------------
3
+ * build system: update to autoconf 2.63 (bb#1443)
4
+
1 5
 Mon Mar  2 17:41:12 CET 2009 (tk)
2 6
 ---------------------------------
3 7
  * clamscan/manager.c: make error reporting compatible with clamd and previous
... ...
@@ -277,6 +277,7 @@ target_alias = @target_alias@
277 277
 target_cpu = @target_cpu@
278 278
 target_os = @target_os@
279 279
 target_vendor = @target_vendor@
280
+top_build_prefix = @top_build_prefix@
280 281
 top_builddir = @top_builddir@
281 282
 top_srcdir = @top_srcdir@
282 283
 ACLOCAL_AMFLAGS = -I m4
... ...
@@ -13,8 +13,8 @@
13 13
 
14 14
 m4_ifndef([AC_AUTOCONF_VERSION],
15 15
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
16
-m4_if(AC_AUTOCONF_VERSION, [2.61],,
17
-[m4_warning([this file was generated for autoconf 2.61.
16
+m4_if(AC_AUTOCONF_VERSION, [2.63],,
17
+[m4_warning([this file was generated for autoconf 2.63.
18 18
 You have another version of autoconf.  It may work, but is not guaranteed to.
19 19
 If you have problems, you may need to regenerate the build system entirely.
20 20
 To do so, use the procedure documented by the package, typically `autoreconf'.])])
... ...
@@ -1,5 +1,8 @@
1 1
 /* clamav-config.h.in.  Generated from configure.in by autoheader.  */
2 2
 
3
+/* Define if building universal (internal helper macro) */
4
+#undef AC_APPLE_UNIVERSAL_BUILD
5
+
3 6
 /* mmap flag for anonymous maps */
4 7
 #undef ANONYMOUS_MAP
5 8
 
... ...
@@ -517,9 +520,18 @@
517 517
 /* Define to `long int' if <sys/types.h> does not define. */
518 518
 #undef off_t
519 519
 
520
-/* Define to equivalent of C99 restrict keyword, or to nothing if this is not
521
-   supported. Do not define if restrict is supported directly. */
520
+/* Define to the equivalent of the C99 'restrict' keyword, or to
521
+   nothing if this is not supported.  Do not define if restrict is
522
+   supported directly.  */
522 523
 #undef restrict
524
+/* Work around a bug in Sun C++: it does not support _Restrict, even
525
+   though the corresponding Sun C compiler does, which causes
526
+   "#define restrict _Restrict" in the previous line.  Perhaps some future
527
+   version of Sun C++ will work with _Restrict; if so, it'll probably
528
+   define __RESTRICT, just as Sun C does.  */
529
+#if defined __SUNPRO_CC && !defined __RESTRICT
530
+# define _Restrict
531
+#endif
523 532
 
524 533
 /* Define to "int" if <sys/socket.h> does not define. */
525 534
 #undef socklen_t
... ...
@@ -263,6 +263,7 @@ target_alias = @target_alias@
263 263
 target_cpu = @target_cpu@
264 264
 target_os = @target_os@
265 265
 target_vendor = @target_vendor@
266
+top_build_prefix = @top_build_prefix@
266 267
 top_builddir = @top_builddir@
267 268
 top_srcdir = @top_srcdir@
268 269
 @BUILD_CLAMD_TRUE@@HAVE_MILTER_TRUE@clamav_milter_SOURCES = \
... ...
@@ -244,6 +244,7 @@ target_alias = @target_alias@
244 244
 target_cpu = @target_cpu@
245 245
 target_os = @target_os@
246 246
 target_vendor = @target_vendor@
247
+top_build_prefix = @top_build_prefix@
247 248
 top_builddir = @top_builddir@
248 249
 top_srcdir = @top_srcdir@
249 250
 clamconf_SOURCES = \
... ...
@@ -263,6 +263,7 @@ target_alias = @target_alias@
263 263
 target_cpu = @target_cpu@
264 264
 target_os = @target_os@
265 265
 target_vendor = @target_vendor@
266
+top_build_prefix = @top_build_prefix@
266 267
 top_builddir = @top_builddir@
267 268
 top_srcdir = @top_srcdir@
268 269
 @BUILD_CLAMD_TRUE@clamd_SOURCES = \
... ...
@@ -255,6 +255,7 @@ target_alias = @target_alias@
255 255
 target_cpu = @target_cpu@
256 256
 target_os = @target_os@
257 257
 target_vendor = @target_vendor@
258
+top_build_prefix = @top_build_prefix@
258 259
 top_builddir = @top_builddir@
259 260
 top_srcdir = @top_srcdir@
260 261
 @BUILD_CLAMD_TRUE@clamdscan_SOURCES = \
... ...
@@ -234,6 +234,7 @@ target_alias = @target_alias@
234 234
 target_cpu = @target_cpu@
235 235
 target_os = @target_os@
236 236
 target_vendor = @target_vendor@
237
+top_build_prefix = @top_build_prefix@
237 238
 top_builddir = @top_builddir@
238 239
 top_srcdir = @top_srcdir@
239 240
 @HAVE_CURSES_TRUE@man_MANS = $(top_builddir)/docs/man/clamdtop.1
... ...
@@ -246,6 +246,7 @@ target_alias = @target_alias@
246 246
 target_cpu = @target_cpu@
247 247
 target_os = @target_os@
248 248
 target_vendor = @target_vendor@
249
+top_build_prefix = @top_build_prefix@
249 250
 top_builddir = @top_builddir@
250 251
 top_srcdir = @top_srcdir@
251 252
 clamscan_SOURCES = \
... ...
@@ -1,11 +1,11 @@
1 1
 #! /bin/sh
2 2
 # Guess values for system-dependent variables and create Makefiles.
3
-# Generated by GNU Autoconf 2.61 for clamav devel.
3
+# Generated by GNU Autoconf 2.63 for clamav devel.
4 4
 #
5 5
 # Report bugs to <http://bugs.clamav.net/>.
6 6
 #
7 7
 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
8
-# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
8
+# 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
9 9
 # This configure script is free software; the Free Software Foundation
10 10
 # gives unlimited permission to copy, distribute and modify it.
11 11
 ## --------------------- ##
... ...
@@ -17,7 +17,7 @@ DUALCASE=1; export DUALCASE # for MKS sh
17 17
 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
18 18
   emulate sh
19 19
   NULLCMD=:
20
-  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
20
+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
21 21
   # is contrary to our usage.  Disable this feature.
22 22
   alias -g '${1+"$@"}'='"$@"'
23 23
   setopt NO_GLOB_SUBST
... ...
@@ -39,17 +39,45 @@ as_cr_Letters=$as_cr_letters$as_cr_LETTERS
39 39
 as_cr_digits='0123456789'
40 40
 as_cr_alnum=$as_cr_Letters$as_cr_digits
41 41
 
42
-# The user is always right.
43
-if test "${PATH_SEPARATOR+set}" != set; then
44
-  echo "#! /bin/sh" >conf$$.sh
45
-  echo  "exit 0"   >>conf$$.sh
46
-  chmod +x conf$$.sh
47
-  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
48
-    PATH_SEPARATOR=';'
42
+as_nl='
43
+'
44
+export as_nl
45
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
46
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
47
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
48
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
49
+if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
50
+  as_echo='printf %s\n'
51
+  as_echo_n='printf %s'
52
+else
53
+  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
54
+    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
55
+    as_echo_n='/usr/ucb/echo -n'
49 56
   else
50
-    PATH_SEPARATOR=:
57
+    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
58
+    as_echo_n_body='eval
59
+      arg=$1;
60
+      case $arg in
61
+      *"$as_nl"*)
62
+	expr "X$arg" : "X\\(.*\\)$as_nl";
63
+	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
64
+      esac;
65
+      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
66
+    '
67
+    export as_echo_n_body
68
+    as_echo_n='sh -c $as_echo_n_body as_echo'
51 69
   fi
52
-  rm -f conf$$.sh
70
+  export as_echo_body
71
+  as_echo='sh -c $as_echo_body as_echo'
72
+fi
73
+
74
+# The user is always right.
75
+if test "${PATH_SEPARATOR+set}" != set; then
76
+  PATH_SEPARATOR=:
77
+  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
78
+    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
79
+      PATH_SEPARATOR=';'
80
+  }
53 81
 fi
54 82
 
55 83
 # Support unset when possible.
... ...
@@ -65,8 +93,6 @@ fi
65 65
 # there to prevent editors from complaining about space-tab.
66 66
 # (If _AS_PATH_WALK were called with IFS unset, it would disable word
67 67
 # splitting by setting IFS to empty value.)
68
-as_nl='
69
-'
70 68
 IFS=" ""	$as_nl"
71 69
 
72 70
 # Find who we are.  Look in the path if we contain no directory separator.
... ...
@@ -89,7 +115,7 @@ if test "x$as_myself" = x; then
89 89
   as_myself=$0
90 90
 fi
91 91
 if test ! -f "$as_myself"; then
92
-  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
92
+  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
93 93
   { (exit 1); exit 1; }
94 94
 fi
95 95
 
... ...
@@ -102,17 +128,10 @@ PS2='> '
102 102
 PS4='+ '
103 103
 
104 104
 # NLS nuisances.
105
-for as_var in \
106
-  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
107
-  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
108
-  LC_TELEPHONE LC_TIME
109
-do
110
-  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
111
-    eval $as_var=C; export $as_var
112
-  else
113
-    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
114
-  fi
115
-done
105
+LC_ALL=C
106
+export LC_ALL
107
+LANGUAGE=C
108
+export LANGUAGE
116 109
 
117 110
 # Required to use basename.
118 111
 if expr a : '\(a\)' >/dev/null 2>&1 &&
... ...
@@ -134,7 +153,7 @@ as_me=`$as_basename -- "$0" ||
134 134
 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
135 135
 	 X"$0" : 'X\(//\)$' \| \
136 136
 	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
137
-echo X/"$0" |
137
+$as_echo X/"$0" |
138 138
     sed '/^.*\/\([^/][^/]*\)\/*$/{
139 139
 	    s//\1/
140 140
 	    q
... ...
@@ -160,7 +179,7 @@ else
160 160
   as_have_required=no
161 161
 fi
162 162
 
163
-  if test $as_have_required = yes && 	 (eval ":
163
+  if test $as_have_required = yes &&	 (eval ":
164 164
 (as_func_return () {
165 165
   (exit \$1)
166 166
 }
... ...
@@ -242,7 +261,7 @@ IFS=$as_save_IFS
242 242
 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
243 243
   emulate sh
244 244
   NULLCMD=:
245
-  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
245
+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
246 246
   # is contrary to our usage.  Disable this feature.
247 247
   alias -g '${1+"$@"}'='"$@"'
248 248
   setopt NO_GLOB_SUBST
... ...
@@ -263,7 +282,7 @@ _ASEOF
263 263
 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
264 264
   emulate sh
265 265
   NULLCMD=:
266
-  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
266
+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
267 267
   # is contrary to our usage.  Disable this feature.
268 268
   alias -g '${1+"$@"}'='"$@"'
269 269
   setopt NO_GLOB_SUBST
... ...
@@ -343,10 +362,10 @@ fi
343 343
 
344 344
       if test "x$CONFIG_SHELL" != x; then
345 345
   for as_var in BASH_ENV ENV
346
-        do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
347
-        done
348
-        export CONFIG_SHELL
349
-        exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
346
+	do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
347
+	done
348
+	export CONFIG_SHELL
349
+	exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
350 350
 fi
351 351
 
352 352
 
... ...
@@ -415,9 +434,10 @@ fi
415 415
 
416 416
 test \$exitcode = 0") || {
417 417
   echo No shell found that supports shell functions.
418
-  echo Please tell autoconf@gnu.org about your system,
419
-  echo including any error possibly output before this
420
-  echo message
418
+  echo Please tell bug-autoconf@gnu.org about your system,
419
+  echo including any error possibly output before this message.
420
+  echo This can help us improve future autoconf versions.
421
+  echo Configuration will now proceed without shell functions.
421 422
 }
422 423
 
423 424
 
... ...
@@ -453,7 +473,7 @@ test \$exitcode = 0") || {
453 453
       s/-\n.*//
454 454
     ' >$as_me.lineno &&
455 455
   chmod +x "$as_me.lineno" ||
456
-    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
456
+    { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
457 457
    { (exit 1); exit 1; }; }
458 458
 
459 459
   # Don't try to exec as it changes $[0], causing all sort of problems
... ...
@@ -481,7 +501,6 @@ case `echo -n x` in
481 481
 *)
482 482
   ECHO_N='-n';;
483 483
 esac
484
-
485 484
 if expr a : '\(a\)' >/dev/null 2>&1 &&
486 485
    test "X`expr 00001 : '.*\(...\)'`" = X001; then
487 486
   as_expr=expr
... ...
@@ -494,19 +513,22 @@ if test -d conf$$.dir; then
494 494
   rm -f conf$$.dir/conf$$.file
495 495
 else
496 496
   rm -f conf$$.dir
497
-  mkdir conf$$.dir
498
-fi
499
-echo >conf$$.file
500
-if ln -s conf$$.file conf$$ 2>/dev/null; then
501
-  as_ln_s='ln -s'
502
-  # ... but there are two gotchas:
503
-  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
504
-  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
505
-  # In both cases, we have to default to `cp -p'.
506
-  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
497
+  mkdir conf$$.dir 2>/dev/null
498
+fi
499
+if (echo >conf$$.file) 2>/dev/null; then
500
+  if ln -s conf$$.file conf$$ 2>/dev/null; then
501
+    as_ln_s='ln -s'
502
+    # ... but there are two gotchas:
503
+    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
504
+    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
505
+    # In both cases, we have to default to `cp -p'.
506
+    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
507
+      as_ln_s='cp -p'
508
+  elif ln conf$$.file conf$$ 2>/dev/null; then
509
+    as_ln_s=ln
510
+  else
507 511
     as_ln_s='cp -p'
508
-elif ln conf$$.file conf$$ 2>/dev/null; then
509
-  as_ln_s=ln
512
+  fi
510 513
 else
511 514
   as_ln_s='cp -p'
512 515
 fi
... ...
@@ -531,10 +553,10 @@ else
531 531
   as_test_x='
532 532
     eval sh -c '\''
533 533
       if test -d "$1"; then
534
-        test -d "$1/.";
534
+	test -d "$1/.";
535 535
       else
536 536
 	case $1 in
537
-        -*)set "./$1";;
537
+	-*)set "./$1";;
538 538
 	esac;
539 539
 	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
540 540
 	???[sx]*):;;*)false;;esac;fi
... ...
@@ -766,181 +788,235 @@ ac_includes_default="\
766 766
 # include <unistd.h>
767 767
 #endif"
768 768
 
769
-ac_subst_vars='SHELL
770
-PATH_SEPARATOR
771
-PACKAGE_NAME
772
-PACKAGE_TARNAME
773
-PACKAGE_VERSION
774
-PACKAGE_STRING
775
-PACKAGE_BUGREPORT
776
-exec_prefix
777
-prefix
778
-program_transform_name
779
-bindir
780
-sbindir
781
-libexecdir
782
-datarootdir
783
-datadir
784
-sysconfdir
785
-sharedstatedir
786
-localstatedir
787
-includedir
788
-oldincludedir
789
-docdir
790
-infodir
791
-htmldir
792
-dvidir
793
-pdfdir
794
-psdir
795
-libdir
796
-localedir
797
-mandir
798
-DEFS
799
-ECHO_C
800
-ECHO_N
801
-ECHO_T
802
-LIBS
803
-build_alias
804
-host_alias
805
-target_alias
806
-build
807
-build_cpu
808
-build_vendor
809
-build_os
810
-host
811
-host_cpu
812
-host_vendor
813
-host_os
814
-target
815
-target_cpu
816
-target_vendor
817
-target_os
818
-INSTALL_PROGRAM
819
-INSTALL_SCRIPT
820
-INSTALL_DATA
821
-am__isrc
822
-CYGPATH_W
823
-PACKAGE
824
-VERSION
825
-ACLOCAL
826
-AUTOCONF
827
-AUTOMAKE
828
-AUTOHEADER
829
-MAKEINFO
830
-install_sh
831
-STRIP
832
-INSTALL_STRIP_PROGRAM
833
-mkdir_p
834
-AWK
835
-SET_MAKE
836
-am__leading_dot
837
-AMTAR
838
-am__tar
839
-am__untar
840
-LIBCLAMAV_VERSION
841
-LN_S
842
-LIBTOOL
843
-CC
844
-CFLAGS
845
-LDFLAGS
846
-CPPFLAGS
847
-ac_ct_CC
848
-EXEEXT
849
-OBJEXT
850
-DEPDIR
851
-am__include
852
-am__quote
853
-AMDEP_TRUE
854
-AMDEP_FALSE
855
-AMDEPBACKSLASH
856
-CCDEPMODE
857
-am__fastdepCC_TRUE
858
-am__fastdepCC_FALSE
859
-SED
860
-GREP
861
-EGREP
862
-FGREP
863
-LD
864
-DUMPBIN
865
-ac_ct_DUMPBIN
866
-NM
867
-OBJDUMP
868
-AR
869
-RANLIB
870
-lt_ECHO
871
-DSYMUTIL
872
-NMEDIT
873
-LIPO
874
-OTOOL
875
-OTOOL64
876
-CPP
877
-LIBLTDL
878
-LTDLDEPS
879
-LTDLINCL
880
-INCLTDL
881
-LT_DLLOADERS
882
-LIBADD_DLOPEN
883
-LIBADD_SHL_LOAD
884
-LIBADD_DLD_LINK
885
-LT_DLPREOPEN
886
-LIBADD_DL
887
-sys_symbol_underscore
888
-ARGZ_H
889
-INSTALL_LTDL_TRUE
890
-INSTALL_LTDL_FALSE
891
-CONVENIENCE_LTDL_TRUE
892
-CONVENIENCE_LTDL_FALSE
893
-LT_CONFIG_H
894
-LTDLOPEN
895
-DISTCHECK_ENABLE_FLAGS_TRUE
896
-DISTCHECK_ENABLE_FLAGS_FALSE
897
-VERSIONSCRIPTFLAG
898
-VERSIONSCRIPT_TRUE
899
-VERSIONSCRIPT_FALSE
900
-GPERF
901
-CHECK_CPPFLAGS
902
-CHECK_LIBS
903
-HAVE_LIBCHECK_TRUE
904
-HAVE_LIBCHECK_FALSE
905
-GCOV
906
-LCOV
907
-GENHTML
908
-ENABLE_COVERAGE_TRUE
909
-ENABLE_COVERAGE_FALSE
910
-MAINTAINER_MODE_TRUE
911
-MAINTAINER_MODE_FALSE
912
-MAINT
913
-LIBBZ2
914
-LTLIBBZ2
915
-LIBBZ2_PREFIX
916
-ENABLE_UNRAR_TRUE
917
-ENABLE_UNRAR_FALSE
918
-LINK_TOMMATH_TRUE
919
-LINK_TOMMATH_FALSE
920
-DBDIR
921
-CFGDIR
922
-LIBCLAMAV_LIBS
923
-CLAMD_LIBS
924
-CLAMAV_MILTER_LIBS
925
-FRESHCLAM_LIBS
926
-TH_SAFE
927
-THREAD_LIBS
928
-BUILD_CLAMD_TRUE
929
-BUILD_CLAMD_FALSE
930
-HAVE_MILTER_TRUE
931
-HAVE_MILTER_FALSE
932
-GETENT
933
-CLAMAVUSER
934
-CLAMAVGROUP
935
-CURSES_CPPFLAGS
936
-CURSES_LIBS
937
-HAVE_CURSES_TRUE
938
-HAVE_CURSES_FALSE
939
-LIBOBJS
940
-LTLIBOBJS
769
+ac_subst_vars='ltdl_LTLIBOBJS
941 770
 ltdl_LIBOBJS
942
-ltdl_LTLIBOBJS'
771
+LTLIBOBJS
772
+LIBOBJS
773
+HAVE_CURSES_FALSE
774
+HAVE_CURSES_TRUE
775
+CURSES_LIBS
776
+CURSES_CPPFLAGS
777
+CLAMAVGROUP
778
+CLAMAVUSER
779
+GETENT
780
+HAVE_MILTER_FALSE
781
+HAVE_MILTER_TRUE
782
+BUILD_CLAMD_FALSE
783
+BUILD_CLAMD_TRUE
784
+THREAD_LIBS
785
+TH_SAFE
786
+FRESHCLAM_LIBS
787
+CLAMAV_MILTER_LIBS
788
+CLAMD_LIBS
789
+LIBCLAMAV_LIBS
790
+CFGDIR
791
+DBDIR
792
+LINK_TOMMATH_FALSE
793
+LINK_TOMMATH_TRUE
794
+ENABLE_UNRAR_FALSE
795
+ENABLE_UNRAR_TRUE
796
+LIBBZ2_PREFIX
797
+LTLIBBZ2
798
+LIBBZ2
799
+MAINT
800
+MAINTAINER_MODE_FALSE
801
+MAINTAINER_MODE_TRUE
802
+ENABLE_COVERAGE_FALSE
803
+ENABLE_COVERAGE_TRUE
804
+GENHTML
805
+LCOV
806
+GCOV
807
+HAVE_LIBCHECK_FALSE
808
+HAVE_LIBCHECK_TRUE
809
+CHECK_LIBS
810
+CHECK_CPPFLAGS
811
+GPERF
812
+VERSIONSCRIPT_FALSE
813
+VERSIONSCRIPT_TRUE
814
+VERSIONSCRIPTFLAG
815
+DISTCHECK_ENABLE_FLAGS_FALSE
816
+DISTCHECK_ENABLE_FLAGS_TRUE
817
+LTDLOPEN
818
+LT_CONFIG_H
819
+CONVENIENCE_LTDL_FALSE
820
+CONVENIENCE_LTDL_TRUE
821
+INSTALL_LTDL_FALSE
822
+INSTALL_LTDL_TRUE
823
+ARGZ_H
824
+sys_symbol_underscore
825
+LIBADD_DL
826
+LT_DLPREOPEN
827
+LIBADD_DLD_LINK
828
+LIBADD_SHL_LOAD
829
+LIBADD_DLOPEN
830
+LT_DLLOADERS
831
+INCLTDL
832
+LTDLINCL
833
+LTDLDEPS
834
+LIBLTDL
835
+CPP
836
+OTOOL64
837
+OTOOL
838
+LIPO
839
+NMEDIT
840
+DSYMUTIL
841
+lt_ECHO
842
+RANLIB
843
+AR
844
+OBJDUMP
845
+NM
846
+ac_ct_DUMPBIN
847
+DUMPBIN
848
+LD
849
+FGREP
850
+EGREP
851
+GREP
852
+SED
853
+am__fastdepCC_FALSE
854
+am__fastdepCC_TRUE
855
+CCDEPMODE
856
+AMDEPBACKSLASH
857
+AMDEP_FALSE
858
+AMDEP_TRUE
859
+am__quote
860
+am__include
861
+DEPDIR
862
+OBJEXT
863
+EXEEXT
864
+ac_ct_CC
865
+CPPFLAGS
866
+LDFLAGS
867
+CFLAGS
868
+CC
869
+LIBTOOL
870
+LN_S
871
+LIBCLAMAV_VERSION
872
+am__untar
873
+am__tar
874
+AMTAR
875
+am__leading_dot
876
+SET_MAKE
877
+AWK
878
+mkdir_p
879
+MKDIR_P
880
+INSTALL_STRIP_PROGRAM
881
+STRIP
882
+install_sh
883
+MAKEINFO
884
+AUTOHEADER
885
+AUTOMAKE
886
+AUTOCONF
887
+ACLOCAL
888
+VERSION
889
+PACKAGE
890
+CYGPATH_W
891
+am__isrc
892
+INSTALL_DATA
893
+INSTALL_SCRIPT
894
+INSTALL_PROGRAM
895
+target_os
896
+target_vendor
897
+target_cpu
898
+target
899
+host_os
900
+host_vendor
901
+host_cpu
902
+host
903
+build_os
904
+build_vendor
905
+build_cpu
906
+build
907
+target_alias
908
+host_alias
909
+build_alias
910
+LIBS
911
+ECHO_T
912
+ECHO_N
913
+ECHO_C
914
+DEFS
915
+mandir
916
+localedir
917
+libdir
918
+psdir
919
+pdfdir
920
+dvidir
921
+htmldir
922
+infodir
923
+docdir
924
+oldincludedir
925
+includedir
926
+localstatedir
927
+sharedstatedir
928
+sysconfdir
929
+datadir
930
+datarootdir
931
+libexecdir
932
+sbindir
933
+bindir
934
+program_transform_name
935
+prefix
936
+exec_prefix
937
+PACKAGE_BUGREPORT
938
+PACKAGE_STRING
939
+PACKAGE_VERSION
940
+PACKAGE_TARNAME
941
+PACKAGE_NAME
942
+PATH_SEPARATOR
943
+SHELL'
943 944
 ac_subst_files=''
945
+ac_user_opts='
946
+enable_option_checking
947
+enable_shared
948
+enable_static
949
+with_pic
950
+enable_fast_install
951
+enable_dependency_tracking
952
+with_gnu_ld
953
+enable_libtool_lock
954
+with_included_ltdl
955
+with_ltdl_include
956
+with_ltdl_lib
957
+enable_ltdl_install
958
+with_fpu_words_bigendian
959
+enable_gcc_vcheck
960
+enable_experimental
961
+enable_mempool
962
+enable_check
963
+enable_rpath
964
+with_libcheck_prefix
965
+enable_coverage
966
+enable_maintainer_mode
967
+with_zlib
968
+enable_zlib_vcheck
969
+enable_bzip2
970
+with_libbz2_prefix
971
+enable_unrar
972
+enable_getaddrinfo
973
+enable_ipv6
974
+enable_dns
975
+enable_clamuko
976
+enable_milter
977
+with_system_tommath
978
+with_iconv
979
+enable_pthreads
980
+enable_cr
981
+enable_id_check
982
+enable_yp_check
983
+with_user
984
+with_group
985
+enable_clamav
986
+enable_debug
987
+enable_no_cache
988
+enable_dns_fix
989
+enable_bigstack
990
+with_dbdir
991
+enable_gethostbyname_r
992
+enable_readdir_r
993
+enable_fdpassing
994
+enable_clamdtop
995
+with_libncurses_prefix
996
+with_libpdcurses_prefix
997
+'
944 998
       ac_precious_vars='build_alias
945 999
 host_alias
946 1000
 target_alias
... ...
@@ -955,6 +1031,8 @@ CPP'
955 955
 # Initialize some variables set by options.
956 956
 ac_init_help=
957 957
 ac_init_version=false
958
+ac_unrecognized_opts=
959
+ac_unrecognized_sep=
958 960
 # The variables have the same names as the options, with
959 961
 # dashes changed to underlines.
960 962
 cache_file=/dev/null
... ...
@@ -1053,13 +1131,21 @@ do
1053 1053
     datarootdir=$ac_optarg ;;
1054 1054
 
1055 1055
   -disable-* | --disable-*)
1056
-    ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
1056
+    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
1057 1057
     # Reject names that are not valid shell variable names.
1058
-    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1059
-      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
1058
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1059
+      { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2
1060 1060
    { (exit 1); exit 1; }; }
1061
-    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
1062
-    eval enable_$ac_feature=no ;;
1061
+    ac_useropt_orig=$ac_useropt
1062
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1063
+    case $ac_user_opts in
1064
+      *"
1065
+"enable_$ac_useropt"
1066
+"*) ;;
1067
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
1068
+	 ac_unrecognized_sep=', ';;
1069
+    esac
1070
+    eval enable_$ac_useropt=no ;;
1063 1071
 
1064 1072
   -docdir | --docdir | --docdi | --doc | --do)
1065 1073
     ac_prev=docdir ;;
... ...
@@ -1072,13 +1158,21 @@ do
1072 1072
     dvidir=$ac_optarg ;;
1073 1073
 
1074 1074
   -enable-* | --enable-*)
1075
-    ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
1075
+    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
1076 1076
     # Reject names that are not valid shell variable names.
1077
-    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1078
-      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
1077
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1078
+      { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2
1079 1079
    { (exit 1); exit 1; }; }
1080
-    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
1081
-    eval enable_$ac_feature=\$ac_optarg ;;
1080
+    ac_useropt_orig=$ac_useropt
1081
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1082
+    case $ac_user_opts in
1083
+      *"
1084
+"enable_$ac_useropt"
1085
+"*) ;;
1086
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
1087
+	 ac_unrecognized_sep=', ';;
1088
+    esac
1089
+    eval enable_$ac_useropt=\$ac_optarg ;;
1082 1090
 
1083 1091
   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
1084 1092
   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
... ...
@@ -1269,22 +1363,38 @@ do
1269 1269
     ac_init_version=: ;;
1270 1270
 
1271 1271
   -with-* | --with-*)
1272
-    ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1272
+    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1273 1273
     # Reject names that are not valid shell variable names.
1274
-    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1275
-      { echo "$as_me: error: invalid package name: $ac_package" >&2
1274
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1275
+      { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2
1276 1276
    { (exit 1); exit 1; }; }
1277
-    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
1278
-    eval with_$ac_package=\$ac_optarg ;;
1277
+    ac_useropt_orig=$ac_useropt
1278
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1279
+    case $ac_user_opts in
1280
+      *"
1281
+"with_$ac_useropt"
1282
+"*) ;;
1283
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
1284
+	 ac_unrecognized_sep=', ';;
1285
+    esac
1286
+    eval with_$ac_useropt=\$ac_optarg ;;
1279 1287
 
1280 1288
   -without-* | --without-*)
1281
-    ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1289
+    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1282 1290
     # Reject names that are not valid shell variable names.
1283
-    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1284
-      { echo "$as_me: error: invalid package name: $ac_package" >&2
1291
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1292
+      { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2
1285 1293
    { (exit 1); exit 1; }; }
1286
-    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
1287
-    eval with_$ac_package=no ;;
1294
+    ac_useropt_orig=$ac_useropt
1295
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1296
+    case $ac_user_opts in
1297
+      *"
1298
+"with_$ac_useropt"
1299
+"*) ;;
1300
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
1301
+	 ac_unrecognized_sep=', ';;
1302
+    esac
1303
+    eval with_$ac_useropt=no ;;
1288 1304
 
1289 1305
   --x)
1290 1306
     # Obsolete; use --with-x.
... ...
@@ -1304,7 +1414,7 @@ do
1304 1304
   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
1305 1305
     x_libraries=$ac_optarg ;;
1306 1306
 
1307
-  -*) { echo "$as_me: error: unrecognized option: $ac_option
1307
+  -*) { $as_echo "$as_me: error: unrecognized option: $ac_option
1308 1308
 Try \`$0 --help' for more information." >&2
1309 1309
    { (exit 1); exit 1; }; }
1310 1310
     ;;
... ...
@@ -1313,16 +1423,16 @@ Try \`$0 --help' for more information." >&2
1313 1313
     ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
1314 1314
     # Reject names that are not valid shell variable names.
1315 1315
     expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
1316
-      { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
1316
+      { $as_echo "$as_me: error: invalid variable name: $ac_envvar" >&2
1317 1317
    { (exit 1); exit 1; }; }
1318 1318
     eval $ac_envvar=\$ac_optarg
1319 1319
     export $ac_envvar ;;
1320 1320
 
1321 1321
   *)
1322 1322
     # FIXME: should be removed in autoconf 3.0.
1323
-    echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1323
+    $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1324 1324
     expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1325
-      echo "$as_me: WARNING: invalid host type: $ac_option" >&2
1325
+      $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
1326 1326
     : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
1327 1327
     ;;
1328 1328
 
... ...
@@ -1331,22 +1441,38 @@ done
1331 1331
 
1332 1332
 if test -n "$ac_prev"; then
1333 1333
   ac_option=--`echo $ac_prev | sed 's/_/-/g'`
1334
-  { echo "$as_me: error: missing argument to $ac_option" >&2
1334
+  { $as_echo "$as_me: error: missing argument to $ac_option" >&2
1335 1335
    { (exit 1); exit 1; }; }
1336 1336
 fi
1337 1337
 
1338
-# Be sure to have absolute directory names.
1338
+if test -n "$ac_unrecognized_opts"; then
1339
+  case $enable_option_checking in
1340
+    no) ;;
1341
+    fatal) { $as_echo "$as_me: error: unrecognized options: $ac_unrecognized_opts" >&2
1342
+   { (exit 1); exit 1; }; } ;;
1343
+    *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
1344
+  esac
1345
+fi
1346
+
1347
+# Check all directory arguments for consistency.
1339 1348
 for ac_var in	exec_prefix prefix bindir sbindir libexecdir datarootdir \
1340 1349
 		datadir sysconfdir sharedstatedir localstatedir includedir \
1341 1350
 		oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
1342 1351
 		libdir localedir mandir
1343 1352
 do
1344 1353
   eval ac_val=\$$ac_var
1354
+  # Remove trailing slashes.
1355
+  case $ac_val in
1356
+    */ )
1357
+      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
1358
+      eval $ac_var=\$ac_val;;
1359
+  esac
1360
+  # Be sure to have absolute directory names.
1345 1361
   case $ac_val in
1346 1362
     [\\/$]* | ?:[\\/]* )  continue;;
1347 1363
     NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
1348 1364
   esac
1349
-  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
1365
+  { $as_echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
1350 1366
    { (exit 1); exit 1; }; }
1351 1367
 done
1352 1368
 
... ...
@@ -1361,7 +1487,7 @@ target=$target_alias
1361 1361
 if test "x$host_alias" != x; then
1362 1362
   if test "x$build_alias" = x; then
1363 1363
     cross_compiling=maybe
1364
-    echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
1364
+    $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
1365 1365
     If a cross compiler is detected then cross compile mode will be used." >&2
1366 1366
   elif test "x$build_alias" != "x$host_alias"; then
1367 1367
     cross_compiling=yes
... ...
@@ -1377,10 +1503,10 @@ test "$silent" = yes && exec 6>/dev/null
1377 1377
 ac_pwd=`pwd` && test -n "$ac_pwd" &&
1378 1378
 ac_ls_di=`ls -di .` &&
1379 1379
 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
1380
-  { echo "$as_me: error: Working directory cannot be determined" >&2
1380
+  { $as_echo "$as_me: error: working directory cannot be determined" >&2
1381 1381
    { (exit 1); exit 1; }; }
1382 1382
 test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
1383
-  { echo "$as_me: error: pwd does not report name of working directory" >&2
1383
+  { $as_echo "$as_me: error: pwd does not report name of working directory" >&2
1384 1384
    { (exit 1); exit 1; }; }
1385 1385
 
1386 1386
 
... ...
@@ -1388,12 +1514,12 @@ test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
1388 1388
 if test -z "$srcdir"; then
1389 1389
   ac_srcdir_defaulted=yes
1390 1390
   # Try the directory containing this script, then the parent directory.
1391
-  ac_confdir=`$as_dirname -- "$0" ||
1392
-$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1393
-	 X"$0" : 'X\(//\)[^/]' \| \
1394
-	 X"$0" : 'X\(//\)$' \| \
1395
-	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
1396
-echo X"$0" |
1391
+  ac_confdir=`$as_dirname -- "$as_myself" ||
1392
+$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1393
+	 X"$as_myself" : 'X\(//\)[^/]' \| \
1394
+	 X"$as_myself" : 'X\(//\)$' \| \
1395
+	 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
1396
+$as_echo X"$as_myself" |
1397 1397
     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1398 1398
 	    s//\1/
1399 1399
 	    q
... ...
@@ -1420,12 +1546,12 @@ else
1420 1420
 fi
1421 1421
 if test ! -r "$srcdir/$ac_unique_file"; then
1422 1422
   test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
1423
-  { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
1423
+  { $as_echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
1424 1424
    { (exit 1); exit 1; }; }
1425 1425
 fi
1426 1426
 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
1427 1427
 ac_abs_confdir=`(
1428
-	cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2
1428
+	cd "$srcdir" && test -r "./$ac_unique_file" || { $as_echo "$as_me: error: $ac_msg" >&2
1429 1429
    { (exit 1); exit 1; }; }
1430 1430
 	pwd)`
1431 1431
 # When building in place, set srcdir=.
... ...
@@ -1474,9 +1600,9 @@ Configuration:
1474 1474
 
1475 1475
 Installation directories:
1476 1476
   --prefix=PREFIX         install architecture-independent files in PREFIX
1477
-			  [$ac_default_prefix]
1477
+                          [$ac_default_prefix]
1478 1478
   --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
1479
-			  [PREFIX]
1479
+                          [PREFIX]
1480 1480
 
1481 1481
 By default, \`make install' will install all the files in
1482 1482
 \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
... ...
@@ -1486,25 +1612,25 @@ for instance \`--prefix=\$HOME'.
1486 1486
 For better control, use the options below.
1487 1487
 
1488 1488
 Fine tuning of the installation directories:
1489
-  --bindir=DIR           user executables [EPREFIX/bin]
1490
-  --sbindir=DIR          system admin executables [EPREFIX/sbin]
1491
-  --libexecdir=DIR       program executables [EPREFIX/libexec]
1492
-  --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]
1493
-  --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]
1494
-  --localstatedir=DIR    modifiable single-machine data [PREFIX/var]
1495
-  --libdir=DIR           object code libraries [EPREFIX/lib]
1496
-  --includedir=DIR       C header files [PREFIX/include]
1497
-  --oldincludedir=DIR    C header files for non-gcc [/usr/include]
1498
-  --datarootdir=DIR      read-only arch.-independent data root [PREFIX/share]
1499
-  --datadir=DIR          read-only architecture-independent data [DATAROOTDIR]
1500
-  --infodir=DIR          info documentation [DATAROOTDIR/info]
1501
-  --localedir=DIR        locale-dependent data [DATAROOTDIR/locale]
1502
-  --mandir=DIR           man documentation [DATAROOTDIR/man]
1503
-  --docdir=DIR           documentation root [DATAROOTDIR/doc/clamav]
1504
-  --htmldir=DIR          html documentation [DOCDIR]
1505
-  --dvidir=DIR           dvi documentation [DOCDIR]
1506
-  --pdfdir=DIR           pdf documentation [DOCDIR]
1507
-  --psdir=DIR            ps documentation [DOCDIR]
1489
+  --bindir=DIR            user executables [EPREFIX/bin]
1490
+  --sbindir=DIR           system admin executables [EPREFIX/sbin]
1491
+  --libexecdir=DIR        program executables [EPREFIX/libexec]
1492
+  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
1493
+  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
1494
+  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
1495
+  --libdir=DIR            object code libraries [EPREFIX/lib]
1496
+  --includedir=DIR        C header files [PREFIX/include]
1497
+  --oldincludedir=DIR     C header files for non-gcc [/usr/include]
1498
+  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
1499
+  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
1500
+  --infodir=DIR           info documentation [DATAROOTDIR/info]
1501
+  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
1502
+  --mandir=DIR            man documentation [DATAROOTDIR/man]
1503
+  --docdir=DIR            documentation root [DATAROOTDIR/doc/clamav]
1504
+  --htmldir=DIR           html documentation [DOCDIR]
1505
+  --dvidir=DIR            dvi documentation [DOCDIR]
1506
+  --pdfdir=DIR            pdf documentation [DOCDIR]
1507
+  --psdir=DIR             ps documentation [DOCDIR]
1508 1508
 _ACEOF
1509 1509
 
1510 1510
   cat <<\_ACEOF
... ...
@@ -1528,6 +1654,7 @@ if test -n "$ac_init_help"; then
1528 1528
   cat <<\_ACEOF
1529 1529
 
1530 1530
 Optional Features:
1531
+  --disable-option-checking  ignore unrecognized --enable/--with options
1531 1532
   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
1532 1533
   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
1533 1534
   --enable-shared[=PKGS]  build shared libraries [default=yes]
... ...
@@ -1617,15 +1744,17 @@ fi
1617 1617
 if test "$ac_init_help" = "recursive"; then
1618 1618
   # If there are subdirs, report their specific --help.
1619 1619
   for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
1620
-    test -d "$ac_dir" || continue
1620
+    test -d "$ac_dir" ||
1621
+      { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
1622
+      continue
1621 1623
     ac_builddir=.
1622 1624
 
1623 1625
 case "$ac_dir" in
1624 1626
 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1625 1627
 *)
1626
-  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
1628
+  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1627 1629
   # A ".." for each directory in $ac_dir_suffix.
1628
-  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
1630
+  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1629 1631
   case $ac_top_builddir_sub in
1630 1632
   "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1631 1633
   *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
... ...
@@ -1661,7 +1790,7 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1661 1661
       echo &&
1662 1662
       $SHELL "$ac_srcdir/configure" --help=recursive
1663 1663
     else
1664
-      echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
1664
+      $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
1665 1665
     fi || ac_status=$?
1666 1666
     cd "$ac_pwd" || { ac_status=$?; break; }
1667 1667
   done
... ...
@@ -1671,10 +1800,10 @@ test -n "$ac_init_help" && exit $ac_status
1671 1671
 if $ac_init_version; then
1672 1672
   cat <<\_ACEOF
1673 1673
 clamav configure devel
1674
-generated by GNU Autoconf 2.61
1674
+generated by GNU Autoconf 2.63
1675 1675
 
1676 1676
 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
1677
-2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
1677
+2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
1678 1678
 This configure script is free software; the Free Software Foundation
1679 1679
 gives unlimited permission to copy, distribute and modify it.
1680 1680
 _ACEOF
... ...
@@ -1685,7 +1814,7 @@ This file contains any messages produced by compilers while
1685 1685
 running configure, to aid debugging if configure makes a mistake.
1686 1686
 
1687 1687
 It was created by clamav $as_me devel, which was
1688
-generated by GNU Autoconf 2.61.  Invocation command line was
1688
+generated by GNU Autoconf 2.63.  Invocation command line was
1689 1689
 
1690 1690
   $ $0 $@
1691 1691
 
... ...
@@ -1721,7 +1850,7 @@ for as_dir in $PATH
1721 1721
 do
1722 1722
   IFS=$as_save_IFS
1723 1723
   test -z "$as_dir" && as_dir=.
1724
-  echo "PATH: $as_dir"
1724
+  $as_echo "PATH: $as_dir"
1725 1725
 done
1726 1726
 IFS=$as_save_IFS
1727 1727
 
... ...
@@ -1756,7 +1885,7 @@ do
1756 1756
     | -silent | --silent | --silen | --sile | --sil)
1757 1757
       continue ;;
1758 1758
     *\'*)
1759
-      ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1759
+      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1760 1760
     esac
1761 1761
     case $ac_pass in
1762 1762
     1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
... ...
@@ -1808,11 +1937,12 @@ _ASBOX
1808 1808
     case $ac_val in #(
1809 1809
     *${as_nl}*)
1810 1810
       case $ac_var in #(
1811
-      *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
1812
-echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
1811
+      *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5
1812
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
1813 1813
       esac
1814 1814
       case $ac_var in #(
1815 1815
       _ | IFS | as_nl) ;; #(
1816
+      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
1816 1817
       *) $as_unset $ac_var ;;
1817 1818
       esac ;;
1818 1819
     esac
... ...
@@ -1842,9 +1972,9 @@ _ASBOX
1842 1842
     do
1843 1843
       eval ac_val=\$$ac_var
1844 1844
       case $ac_val in
1845
-      *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1845
+      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1846 1846
       esac
1847
-      echo "$ac_var='\''$ac_val'\''"
1847
+      $as_echo "$ac_var='\''$ac_val'\''"
1848 1848
     done | sort
1849 1849
     echo
1850 1850
 
... ...
@@ -1859,9 +1989,9 @@ _ASBOX
1859 1859
       do
1860 1860
 	eval ac_val=\$$ac_var
1861 1861
 	case $ac_val in
1862
-	*\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1862
+	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1863 1863
 	esac
1864
-	echo "$ac_var='\''$ac_val'\''"
1864
+	$as_echo "$ac_var='\''$ac_val'\''"
1865 1865
       done | sort
1866 1866
       echo
1867 1867
     fi
... ...
@@ -1877,8 +2007,8 @@ _ASBOX
1877 1877
       echo
1878 1878
     fi
1879 1879
     test "$ac_signal" != 0 &&
1880
-      echo "$as_me: caught signal $ac_signal"
1881
-    echo "$as_me: exit $exit_status"
1880
+      $as_echo "$as_me: caught signal $ac_signal"
1881
+    $as_echo "$as_me: exit $exit_status"
1882 1882
   } >&5
1883 1883
   rm -f core *.core core.conftest.* &&
1884 1884
     rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
... ...
@@ -1920,21 +2050,24 @@ _ACEOF
1920 1920
 
1921 1921
 
1922 1922
 # Let the site file select an alternate cache file if it wants to.
1923
-# Prefer explicitly selected file to automatically selected ones.
1923
+# Prefer an explicitly selected file to automatically selected ones.
1924
+ac_site_file1=NONE
1925
+ac_site_file2=NONE
1924 1926
 if test -n "$CONFIG_SITE"; then
1925
-  set x "$CONFIG_SITE"
1927
+  ac_site_file1=$CONFIG_SITE
1926 1928
 elif test "x$prefix" != xNONE; then
1927
-  set x "$prefix/share/config.site" "$prefix/etc/config.site"
1929
+  ac_site_file1=$prefix/share/config.site
1930
+  ac_site_file2=$prefix/etc/config.site
1928 1931
 else
1929
-  set x "$ac_default_prefix/share/config.site" \
1930
-	"$ac_default_prefix/etc/config.site"
1932
+  ac_site_file1=$ac_default_prefix/share/config.site
1933
+  ac_site_file2=$ac_default_prefix/etc/config.site
1931 1934
 fi
1932
-shift
1933
-for ac_site_file
1935
+for ac_site_file in "$ac_site_file1" "$ac_site_file2"
1934 1936
 do
1937
+  test "x$ac_site_file" = xNONE && continue
1935 1938
   if test -r "$ac_site_file"; then
1936
-    { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
1937
-echo "$as_me: loading site script $ac_site_file" >&6;}
1939
+    { $as_echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
1940
+$as_echo "$as_me: loading site script $ac_site_file" >&6;}
1938 1941
     sed 's/^/| /' "$ac_site_file" >&5
1939 1942
     . "$ac_site_file"
1940 1943
   fi
... ...
@@ -1944,16 +2077,16 @@ if test -r "$cache_file"; then
1944 1944
   # Some versions of bash will fail to source /dev/null (special
1945 1945
   # files actually), so we avoid doing that.
1946 1946
   if test -f "$cache_file"; then
1947
-    { echo "$as_me:$LINENO: loading cache $cache_file" >&5
1948
-echo "$as_me: loading cache $cache_file" >&6;}
1947
+    { $as_echo "$as_me:$LINENO: loading cache $cache_file" >&5
1948
+$as_echo "$as_me: loading cache $cache_file" >&6;}
1949 1949
     case $cache_file in
1950 1950
       [\\/]* | ?:[\\/]* ) . "$cache_file";;
1951 1951
       *)                      . "./$cache_file";;
1952 1952
     esac
1953 1953
   fi
1954 1954
 else
1955
-  { echo "$as_me:$LINENO: creating cache $cache_file" >&5
1956
-echo "$as_me: creating cache $cache_file" >&6;}
1955
+  { $as_echo "$as_me:$LINENO: creating cache $cache_file" >&5
1956
+$as_echo "$as_me: creating cache $cache_file" >&6;}
1957 1957
   >$cache_file
1958 1958
 fi
1959 1959
 
... ...
@@ -1967,29 +2100,38 @@ for ac_var in $ac_precious_vars; do
1967 1967
   eval ac_new_val=\$ac_env_${ac_var}_value
1968 1968
   case $ac_old_set,$ac_new_set in
1969 1969
     set,)
1970
-      { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1971
-echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1970
+      { $as_echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1971
+$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1972 1972
       ac_cache_corrupted=: ;;
1973 1973
     ,set)
1974
-      { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
1975
-echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1974
+      { $as_echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
1975
+$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1976 1976
       ac_cache_corrupted=: ;;
1977 1977
     ,);;
1978 1978
     *)
1979 1979
       if test "x$ac_old_val" != "x$ac_new_val"; then
1980
-	{ echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
1981
-echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1982
-	{ echo "$as_me:$LINENO:   former value:  $ac_old_val" >&5
1983
-echo "$as_me:   former value:  $ac_old_val" >&2;}
1984
-	{ echo "$as_me:$LINENO:   current value: $ac_new_val" >&5
1985
-echo "$as_me:   current value: $ac_new_val" >&2;}
1986
-	ac_cache_corrupted=:
1980
+	# differences in whitespace do not lead to failure.
1981
+	ac_old_val_w=`echo x $ac_old_val`
1982
+	ac_new_val_w=`echo x $ac_new_val`
1983
+	if test "$ac_old_val_w" != "$ac_new_val_w"; then
1984
+	  { $as_echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
1985
+$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1986
+	  ac_cache_corrupted=:
1987
+	else
1988
+	  { $as_echo "$as_me:$LINENO: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
1989
+$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
1990
+	  eval $ac_var=\$ac_old_val
1991
+	fi
1992
+	{ $as_echo "$as_me:$LINENO:   former value:  \`$ac_old_val'" >&5
1993
+$as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
1994
+	{ $as_echo "$as_me:$LINENO:   current value: \`$ac_new_val'" >&5
1995
+$as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
1987 1996
       fi;;
1988 1997
   esac
1989 1998
   # Pass precious variables to config.status.
1990 1999
   if test "$ac_new_set" = set; then
1991 2000
     case $ac_new_val in
1992
-    *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
2001
+    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1993 2002
     *) ac_arg=$ac_var=$ac_new_val ;;
1994 2003
     esac
1995 2004
     case " $ac_configure_args " in
... ...
@@ -1999,10 +2141,12 @@ echo "$as_me:   current value: $ac_new_val" >&2;}
1999 1999
   fi
2000 2000
 done
2001 2001
 if $ac_cache_corrupted; then
2002
-  { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
2003
-echo "$as_me: error: changes in the environment can compromise the build" >&2;}
2004
-  { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
2005
-echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
2002
+  { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
2003
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2004
+  { $as_echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
2005
+$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
2006
+  { { $as_echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
2007
+$as_echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
2006 2008
    { (exit 1); exit 1; }; }
2007 2009
 fi
2008 2010
 
... ...
@@ -2055,8 +2199,8 @@ for ac_dir in config "$srcdir"/config; do
2055 2055
   fi
2056 2056
 done
2057 2057
 if test -z "$ac_aux_dir"; then
2058
-  { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in config \"$srcdir\"/config" >&5
2059
-echo "$as_me: error: cannot find install-sh or install.sh in config \"$srcdir\"/config" >&2;}
2058
+  { { $as_echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in config \"$srcdir\"/config" >&5
2059
+$as_echo "$as_me: error: cannot find install-sh or install.sh in config \"$srcdir\"/config" >&2;}
2060 2060
    { (exit 1); exit 1; }; }
2061 2061
 fi
2062 2062
 
... ...
@@ -2076,34 +2220,34 @@ ac_config_headers="$ac_config_headers clamav-config.h"
2076 2076
 
2077 2077
 # Make sure we can run config.sub.
2078 2078
 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
2079
-  { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5
2080
-echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;}
2079
+  { { $as_echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5
2080
+$as_echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;}
2081 2081
    { (exit 1); exit 1; }; }
2082 2082
 
2083
-{ echo "$as_me:$LINENO: checking build system type" >&5
2084
-echo $ECHO_N "checking build system type... $ECHO_C" >&6; }
2083
+{ $as_echo "$as_me:$LINENO: checking build system type" >&5
2084
+$as_echo_n "checking build system type... " >&6; }
2085 2085
 if test "${ac_cv_build+set}" = set; then
2086
-  echo $ECHO_N "(cached) $ECHO_C" >&6
2086
+  $as_echo_n "(cached) " >&6
2087 2087
 else
2088 2088
   ac_build_alias=$build_alias
2089 2089
 test "x$ac_build_alias" = x &&
2090 2090
   ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
2091 2091
 test "x$ac_build_alias" = x &&
2092
-  { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
2093
-echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
2092
+  { { $as_echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
2093
+$as_echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
2094 2094
    { (exit 1); exit 1; }; }
2095 2095
 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
2096
-  { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5
2097
-echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;}
2096
+  { { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5
2097
+$as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;}
2098 2098
    { (exit 1); exit 1; }; }
2099 2099
 
2100 2100
 fi
2101
-{ echo "$as_me:$LINENO: result: $ac_cv_build" >&5
2102
-echo "${ECHO_T}$ac_cv_build" >&6; }
2101
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_build" >&5
2102
+$as_echo "$ac_cv_build" >&6; }
2103 2103
 case $ac_cv_build in
2104 2104
 *-*-*) ;;
2105
-*) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5
2106
-echo "$as_me: error: invalid value of canonical build" >&2;}
2105
+*) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical build" >&5
2106
+$as_echo "$as_me: error: invalid value of canonical build" >&2;}
2107 2107
    { (exit 1); exit 1; }; };;
2108 2108
 esac
2109 2109
 build=$ac_cv_build
... ...
@@ -2120,27 +2264,27 @@ IFS=$ac_save_IFS
2120 2120
 case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
2121 2121
 
2122 2122
 
2123
-{ echo "$as_me:$LINENO: checking host system type" >&5
2124
-echo $ECHO_N "checking host system type... $ECHO_C" >&6; }
2123
+{ $as_echo "$as_me:$LINENO: checking host system type" >&5
2124
+$as_echo_n "checking host system type... " >&6; }
2125 2125
 if test "${ac_cv_host+set}" = set; then
2126
-  echo $ECHO_N "(cached) $ECHO_C" >&6
2126
+  $as_echo_n "(cached) " >&6
2127 2127
 else
2128 2128
   if test "x$host_alias" = x; then
2129 2129
   ac_cv_host=$ac_cv_build
2130 2130
 else
2131 2131
   ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
2132
-    { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5
2133
-echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;}
2132
+    { { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5
2133
+$as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;}
2134 2134
    { (exit 1); exit 1; }; }
2135 2135
 fi
2136 2136
 
2137 2137
 fi
2138
-{ echo "$as_me:$LINENO: result: $ac_cv_host" >&5
2139
-echo "${ECHO_T}$ac_cv_host" >&6; }
2138
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_host" >&5
2139
+$as_echo "$ac_cv_host" >&6; }
2140 2140
 case $ac_cv_host in
2141 2141
 *-*-*) ;;
2142
-*) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5
2143
-echo "$as_me: error: invalid value of canonical host" >&2;}
2142
+*) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical host" >&5
2143
+$as_echo "$as_me: error: invalid value of canonical host" >&2;}
2144 2144
    { (exit 1); exit 1; }; };;
2145 2145
 esac
2146 2146
 host=$ac_cv_host
... ...
@@ -2157,27 +2301,27 @@ IFS=$ac_save_IFS
2157 2157
 case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
2158 2158
 
2159 2159
 
2160
-{ echo "$as_me:$LINENO: checking target system type" >&5
2161
-echo $ECHO_N "checking target system type... $ECHO_C" >&6; }
2160
+{ $as_echo "$as_me:$LINENO: checking target system type" >&5
2161
+$as_echo_n "checking target system type... " >&6; }
2162 2162
 if test "${ac_cv_target+set}" = set; then
2163
-  echo $ECHO_N "(cached) $ECHO_C" >&6
2163
+  $as_echo_n "(cached) " >&6
2164 2164
 else
2165 2165
   if test "x$target_alias" = x; then
2166 2166
   ac_cv_target=$ac_cv_host
2167 2167
 else
2168 2168
   ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||
2169
-    { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&5
2170
-echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&2;}
2169
+    { { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&5
2170
+$as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&2;}
2171 2171
    { (exit 1); exit 1; }; }
2172 2172
 fi
2173 2173
 
2174 2174
 fi
2175
-{ echo "$as_me:$LINENO: result: $ac_cv_target" >&5
2176
-echo "${ECHO_T}$ac_cv_target" >&6; }
2175
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_target" >&5
2176
+$as_echo "$ac_cv_target" >&6; }
2177 2177
 case $ac_cv_target in
2178 2178
 *-*-*) ;;
2179
-*) { { echo "$as_me:$LINENO: error: invalid value of canonical target" >&5
2180
-echo "$as_me: error: invalid value of canonical target" >&2;}
2179
+*) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical target" >&5
2180
+$as_echo "$as_me: error: invalid value of canonical target" >&2;}
2181 2181
    { (exit 1); exit 1; }; };;
2182 2182
 esac
2183 2183
 target=$ac_cv_target
... ...
@@ -2257,8 +2401,8 @@ target_cpu_arch0=`echo "$target_cpu_arch" | sed -e 'y:abcdefghijklmnopqrstuvwxyz
2257 2257
 #
2258 2258
 #
2259 2259
 if $ac_need_target_h_file_new ; then
2260
-{ echo "$as_me:$LINENO: result: creating $ac_need_target_h_file - canonical system defines" >&5
2261
-echo "${ECHO_T}creating $ac_need_target_h_file - canonical system defines" >&6; }
2260
+{ $as_echo "$as_me:$LINENO: result: creating $ac_need_target_h_file - canonical system defines" >&5
2261
+$as_echo "creating $ac_need_target_h_file - canonical system defines" >&6; }
2262 2262
 echo /'*' automatically generated by $PACKAGE configure '*'/ >$ac_need_target_h_file
2263 2263
 echo /'*' on `date` '*'/ >>$ac_need_target_h_file
2264 2264
 ac_need_target_h_file_new=false
... ...
@@ -2331,8 +2475,8 @@ host_cpu_arch0=`echo "$host_cpu_arch" | sed -e 'y:abcdefghijklmnopqrstuvwxyz:ABC
2331 2331
 #
2332 2332
 #
2333 2333
 if $ac_need_target_h_file_new ; then
2334
-{ echo "$as_me:$LINENO: result: creating $ac_need_target_h_file - canonical system defines" >&5
2335
-echo "${ECHO_T}creating $ac_need_target_h_file - canonical system defines" >&6; }
2334
+{ $as_echo "$as_me:$LINENO: result: creating $ac_need_target_h_file - canonical system defines" >&5
2335
+$as_echo "creating $ac_need_target_h_file - canonical system defines" >&6; }
2336 2336
 echo /'*' automatically generated by $PACKAGE configure '*'/ >$ac_need_target_h_file
2337 2337
 echo /'*' on `date` '*'/ >>$ac_need_target_h_file
2338 2338
 ac_need_target_h_file_new=false
... ...
@@ -2403,11 +2547,12 @@ am__api_version='1.10'
2403 2403
 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
2404 2404
 # OS/2's system install, which has a completely different semantic
2405 2405
 # ./install, which can be erroneously created by make from ./install.sh.
2406
-{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
2407
-echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; }
2406
+# Reject install programs that cannot install multiple files.
2407
+{ $as_echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
2408
+$as_echo_n "checking for a BSD-compatible install... " >&6; }
2408 2409
 if test -z "$INSTALL"; then
2409 2410
 if test "${ac_cv_path_install+set}" = set; then
2410
-  echo $ECHO_N "(cached) $ECHO_C" >&6
2411
+  $as_echo_n "(cached) " >&6
2411 2412
 else
2412 2413
   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2413 2414
 for as_dir in $PATH
... ...
@@ -2436,17 +2581,29 @@ case $as_dir/ in
2436 2436
 	    # program-specific install script used by HP pwplus--don't use.
2437 2437
 	    :
2438 2438
 	  else
2439
-	    ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
2440
-	    break 3
2439
+	    rm -rf conftest.one conftest.two conftest.dir
2440
+	    echo one > conftest.one
2441
+	    echo two > conftest.two
2442
+	    mkdir conftest.dir
2443
+	    if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
2444
+	      test -s conftest.one && test -s conftest.two &&
2445
+	      test -s conftest.dir/conftest.one &&
2446
+	      test -s conftest.dir/conftest.two
2447
+	    then
2448
+	      ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
2449
+	      break 3
2450
+	    fi
2441 2451
 	  fi
2442 2452
 	fi
2443 2453
       done
2444 2454
     done
2445 2455
     ;;
2446 2456
 esac
2457
+
2447 2458
 done
2448 2459
 IFS=$as_save_IFS
2449 2460
 
2461
+rm -rf conftest.one conftest.two conftest.dir
2450 2462
 
2451 2463
 fi
2452 2464
   if test "${ac_cv_path_install+set}" = set; then
... ...
@@ -2459,8 +2616,8 @@ fi
2459 2459
     INSTALL=$ac_install_sh
2460 2460
   fi
2461 2461
 fi
2462
-{ echo "$as_me:$LINENO: result: $INSTALL" >&5
2463
-echo "${ECHO_T}$INSTALL" >&6; }
2462
+{ $as_echo "$as_me:$LINENO: result: $INSTALL" >&5
2463
+$as_echo "$INSTALL" >&6; }
2464 2464
 
2465 2465
 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
2466 2466
 # It thinks the first close brace ends the variable substitution.
... ...
@@ -2470,8 +2627,8 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
2470 2470
 
2471 2471
 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
2472 2472
 
2473
-{ echo "$as_me:$LINENO: checking whether build environment is sane" >&5
2474
-echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; }
2473
+{ $as_echo "$as_me:$LINENO: checking whether build environment is sane" >&5
2474
+$as_echo_n "checking whether build environment is sane... " >&6; }
2475 2475
 # Just in case
2476 2476
 sleep 1
2477 2477
 echo timestamp > conftest.file
... ...
@@ -2494,9 +2651,9 @@ if (
2494 2494
       # if, for instance, CONFIG_SHELL is bash and it inherits a
2495 2495
       # broken ls alias from the environment.  This has actually
2496 2496
       # happened.  Such a system could not be considered "sane".
2497
-      { { echo "$as_me:$LINENO: error: ls -t appears to fail.  Make sure there is not a broken
2497
+      { { $as_echo "$as_me:$LINENO: error: ls -t appears to fail.  Make sure there is not a broken
2498 2498
 alias in your environment" >&5
2499
-echo "$as_me: error: ls -t appears to fail.  Make sure there is not a broken
2499
+$as_echo "$as_me: error: ls -t appears to fail.  Make sure there is not a broken
2500 2500
 alias in your environment" >&2;}
2501 2501
    { (exit 1); exit 1; }; }
2502 2502
    fi
... ...
@@ -2507,26 +2664,23 @@ then
2507 2507
    # Ok.
2508 2508
    :
2509 2509
 else
2510
-   { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
2510
+   { { $as_echo "$as_me:$LINENO: error: newly created file is older than distributed files!
2511 2511
 Check your system clock" >&5
2512
-echo "$as_me: error: newly created file is older than distributed files!
2512
+$as_echo "$as_me: error: newly created file is older than distributed files!
2513 2513
 Check your system clock" >&2;}
2514 2514
    { (exit 1); exit 1; }; }
2515 2515
 fi
2516
-{ echo "$as_me:$LINENO: result: yes" >&5
2517
-echo "${ECHO_T}yes" >&6; }
2516
+{ $as_echo "$as_me:$LINENO: result: yes" >&5
2517
+$as_echo "yes" >&6; }
2518 2518
 test "$program_prefix" != NONE &&
2519 2519
   program_transform_name="s&^&$program_prefix&;$program_transform_name"
2520 2520
 # Use a double $ so make ignores it.
2521 2521
 test "$program_suffix" != NONE &&
2522 2522
   program_transform_name="s&\$&$program_suffix&;$program_transform_name"
2523
-# Double any \ or $.  echo might interpret backslashes.
2523
+# Double any \ or $.
2524 2524
 # By default was `s,x,x', remove it if useless.
2525
-cat <<\_ACEOF >conftest.sed
2526
-s/[\\$]/&&/g;s/;s,x,x,$//
2527
-_ACEOF
2528
-program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
2529
-rm -f conftest.sed
2525
+ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
2526
+program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
2530 2527
 
2531 2528
 # expand $ac_aux_dir to an absolute path
2532 2529
 am_aux_dir=`cd $ac_aux_dir && pwd`
... ...
@@ -2537,15 +2691,15 @@ if eval "$MISSING --run true"; then
2537 2537
   am_missing_run="$MISSING --run "
2538 2538
 else
2539 2539
   am_missing_run=
2540
-  { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
2541
-echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
2540
+  { $as_echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
2541
+$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
2542 2542
 fi
2543 2543
 
2544
-{ echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5
2545
-echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; }
2544
+{ $as_echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5
2545
+$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
2546 2546
 if test -z "$MKDIR_P"; then
2547 2547
   if test "${ac_cv_path_mkdir+set}" = set; then
2548
-  echo $ECHO_N "(cached) $ECHO_C" >&6
2548
+  $as_echo_n "(cached) " >&6
2549 2549
 else
2550 2550
   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2551 2551
 for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
... ...
@@ -2580,8 +2734,8 @@ fi
2580 2580
     MKDIR_P="$ac_install_sh -d"
2581 2581
   fi
2582 2582
 fi
2583
-{ echo "$as_me:$LINENO: result: $MKDIR_P" >&5
2584
-echo "${ECHO_T}$MKDIR_P" >&6; }
2583
+{ $as_echo "$as_me:$LINENO: result: $MKDIR_P" >&5
2584
+$as_echo "$MKDIR_P" >&6; }
2585 2585
 
2586 2586
 mkdir_p="$MKDIR_P"
2587 2587
 case $mkdir_p in
... ...
@@ -2593,10 +2747,10 @@ for ac_prog in gawk mawk nawk awk
2593 2593
 do
2594 2594
   # Extract the first word of "$ac_prog", so it can be a program name with args.
2595 2595
 set dummy $ac_prog; ac_word=$2
2596
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
2597
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2596
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
2597
+$as_echo_n "checking for $ac_word... " >&6; }
2598 2598
 if test "${ac_cv_prog_AWK+set}" = set; then
2599
-  echo $ECHO_N "(cached) $ECHO_C" >&6
2599
+  $as_echo_n "(cached) " >&6
2600 2600
 else
2601 2601
   if test -n "$AWK"; then
2602 2602
   ac_cv_prog_AWK="$AWK" # Let the user override the test.
... ...
@@ -2609,7 +2763,7 @@ do
2609 2609
   for ac_exec_ext in '' $ac_executable_extensions; do
2610 2610
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2611 2611
     ac_cv_prog_AWK="$ac_prog"
2612
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2612
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2613 2613
     break 2
2614 2614
   fi
2615 2615
 done
... ...
@@ -2620,22 +2774,23 @@ fi
2620 2620
 fi
2621 2621
 AWK=$ac_cv_prog_AWK
2622 2622
 if test -n "$AWK"; then
2623
-  { echo "$as_me:$LINENO: result: $AWK" >&5
2624
-echo "${ECHO_T}$AWK" >&6; }
2623
+  { $as_echo "$as_me:$LINENO: result: $AWK" >&5
2624
+$as_echo "$AWK" >&6; }
2625 2625
 else
2626
-  { echo "$as_me:$LINENO: result: no" >&5
2627
-echo "${ECHO_T}no" >&6; }
2626
+  { $as_echo "$as_me:$LINENO: result: no" >&5
2627
+$as_echo "no" >&6; }
2628 2628
 fi
2629 2629
 
2630 2630
 
2631 2631
   test -n "$AWK" && break
2632 2632
 done
2633 2633
 
2634
-{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
2635
-echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; }
2636
-set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
2634
+{ $as_echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
2635
+$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
2636
+set x ${MAKE-make}
2637
+ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
2637 2638
 if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then
2638
-  echo $ECHO_N "(cached) $ECHO_C" >&6
2639
+  $as_echo_n "(cached) " >&6
2639 2640
 else
2640 2641
   cat >conftest.make <<\_ACEOF
2641 2642
 SHELL = /bin/sh
... ...
@@ -2652,12 +2807,12 @@ esac
2652 2652
 rm -f conftest.make
2653 2653
 fi
2654 2654
 if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
2655
-  { echo "$as_me:$LINENO: result: yes" >&5
2656
-echo "${ECHO_T}yes" >&6; }
2655
+  { $as_echo "$as_me:$LINENO: result: yes" >&5
2656
+$as_echo "yes" >&6; }
2657 2657
   SET_MAKE=
2658 2658
 else
2659
-  { echo "$as_me:$LINENO: result: no" >&5
2660
-echo "${ECHO_T}no" >&6; }
2659
+  { $as_echo "$as_me:$LINENO: result: no" >&5
2660
+$as_echo "no" >&6; }
2661 2661
   SET_MAKE="MAKE=${MAKE-make}"
2662 2662
 fi
2663 2663
 
... ...
@@ -2676,8 +2831,8 @@ if test "`cd $srcdir && pwd`" != "`pwd`"; then
2676 2676
   am__isrc=' -I$(srcdir)'
2677 2677
   # test to see if srcdir already configured
2678 2678
   if test -f $srcdir/config.status; then
2679
-    { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
2680
-echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
2679
+    { { $as_echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
2680
+$as_echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
2681 2681
    { (exit 1); exit 1; }; }
2682 2682
   fi
2683 2683
 fi
... ...
@@ -2723,10 +2878,10 @@ if test "$cross_compiling" != no; then
2723 2723
   if test -n "$ac_tool_prefix"; then
2724 2724
   # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
2725 2725
 set dummy ${ac_tool_prefix}strip; ac_word=$2
2726
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
2727
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2726
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
2727
+$as_echo_n "checking for $ac_word... " >&6; }
2728 2728
 if test "${ac_cv_prog_STRIP+set}" = set; then
2729
-  echo $ECHO_N "(cached) $ECHO_C" >&6
2729
+  $as_echo_n "(cached) " >&6
2730 2730
 else
2731 2731
   if test -n "$STRIP"; then
2732 2732
   ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
... ...
@@ -2739,7 +2894,7 @@ do
2739 2739
   for ac_exec_ext in '' $ac_executable_extensions; do
2740 2740
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2741 2741
     ac_cv_prog_STRIP="${ac_tool_prefix}strip"
2742
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2742
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2743 2743
     break 2
2744 2744
   fi
2745 2745
 done
... ...
@@ -2750,11 +2905,11 @@ fi
2750 2750
 fi
2751 2751
 STRIP=$ac_cv_prog_STRIP
2752 2752
 if test -n "$STRIP"; then
2753
-  { echo "$as_me:$LINENO: result: $STRIP" >&5
2754
-echo "${ECHO_T}$STRIP" >&6; }
2753
+  { $as_echo "$as_me:$LINENO: result: $STRIP" >&5
2754
+$as_echo "$STRIP" >&6; }
2755 2755
 else
2756
-  { echo "$as_me:$LINENO: result: no" >&5
2757
-echo "${ECHO_T}no" >&6; }
2756
+  { $as_echo "$as_me:$LINENO: result: no" >&5
2757
+$as_echo "no" >&6; }
2758 2758
 fi
2759 2759
 
2760 2760
 
... ...
@@ -2763,10 +2918,10 @@ if test -z "$ac_cv_prog_STRIP"; then
2763 2763
   ac_ct_STRIP=$STRIP
2764 2764
   # Extract the first word of "strip", so it can be a program name with args.
2765 2765
 set dummy strip; ac_word=$2
2766
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
2767
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2766
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
2767
+$as_echo_n "checking for $ac_word... " >&6; }
2768 2768
 if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
2769
-  echo $ECHO_N "(cached) $ECHO_C" >&6
2769
+  $as_echo_n "(cached) " >&6
2770 2770
 else
2771 2771
   if test -n "$ac_ct_STRIP"; then
2772 2772
   ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
... ...
@@ -2779,7 +2934,7 @@ do
2779 2779
   for ac_exec_ext in '' $ac_executable_extensions; do
2780 2780
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2781 2781
     ac_cv_prog_ac_ct_STRIP="strip"
2782
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2782
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2783 2783
     break 2
2784 2784
   fi
2785 2785
 done
... ...
@@ -2790,11 +2945,11 @@ fi
2790 2790
 fi
2791 2791
 ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
2792 2792
 if test -n "$ac_ct_STRIP"; then
2793
-  { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
2794
-echo "${ECHO_T}$ac_ct_STRIP" >&6; }
2793
+  { $as_echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
2794
+$as_echo "$ac_ct_STRIP" >&6; }
2795 2795
 else
2796
-  { echo "$as_me:$LINENO: result: no" >&5
2797
-echo "${ECHO_T}no" >&6; }
2796
+  { $as_echo "$as_me:$LINENO: result: no" >&5
2797
+$as_echo "no" >&6; }
2798 2798
 fi
2799 2799
 
2800 2800
   if test "x$ac_ct_STRIP" = x; then
... ...
@@ -2802,12 +2957,8 @@ fi
2802 2802
   else
2803 2803
     case $cross_compiling:$ac_tool_warned in
2804 2804
 yes:)
2805
-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
2806
-whose name does not start with the host triplet.  If you think this
2807
-configuration is useful to you, please write to autoconf@gnu.org." >&5
2808
-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
2809
-whose name does not start with the host triplet.  If you think this
2810
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
2805
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
2806
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
2811 2807
 ac_tool_warned=yes ;;
2812 2808
 esac
2813 2809
     STRIP=$ac_ct_STRIP
... ...
@@ -2855,10 +3006,10 @@ for ac_prog in gawk mawk nawk awk
2855 2855
 do
2856 2856
   # Extract the first word of "$ac_prog", so it can be a program name with args.
2857 2857
 set dummy $ac_prog; ac_word=$2
2858
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
2859
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2858
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
2859
+$as_echo_n "checking for $ac_word... " >&6; }
2860 2860
 if test "${ac_cv_prog_AWK+set}" = set; then
2861
-  echo $ECHO_N "(cached) $ECHO_C" >&6
2861
+  $as_echo_n "(cached) " >&6
2862 2862
 else
2863 2863
   if test -n "$AWK"; then
2864 2864
   ac_cv_prog_AWK="$AWK" # Let the user override the test.
... ...
@@ -2871,7 +3022,7 @@ do
2871 2871
   for ac_exec_ext in '' $ac_executable_extensions; do
2872 2872
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2873 2873
     ac_cv_prog_AWK="$ac_prog"
2874
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2874
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2875 2875
     break 2
2876 2876
   fi
2877 2877
 done
... ...
@@ -2882,11 +3033,11 @@ fi
2882 2882
 fi
2883 2883
 AWK=$ac_cv_prog_AWK
2884 2884
 if test -n "$AWK"; then
2885
-  { echo "$as_me:$LINENO: result: $AWK" >&5
2886
-echo "${ECHO_T}$AWK" >&6; }
2885
+  { $as_echo "$as_me:$LINENO: result: $AWK" >&5
2886
+$as_echo "$AWK" >&6; }
2887 2887
 else
2888
-  { echo "$as_me:$LINENO: result: no" >&5
2889
-echo "${ECHO_T}no" >&6; }
2888
+  { $as_echo "$as_me:$LINENO: result: no" >&5
2889
+$as_echo "no" >&6; }
2890 2890
 fi
2891 2891
 
2892 2892
 
... ...
@@ -2906,11 +3057,12 @@ done
2906 2906
 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
2907 2907
 # OS/2's system install, which has a completely different semantic
2908 2908
 # ./install, which can be erroneously created by make from ./install.sh.
2909
-{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
2910
-echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; }
2909
+# Reject install programs that cannot install multiple files.
2910
+{ $as_echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
2911
+$as_echo_n "checking for a BSD-compatible install... " >&6; }
2911 2912
 if test -z "$INSTALL"; then
2912 2913
 if test "${ac_cv_path_install+set}" = set; then
2913
-  echo $ECHO_N "(cached) $ECHO_C" >&6
2914
+  $as_echo_n "(cached) " >&6
2914 2915
 else
2915 2916
   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2916 2917
 for as_dir in $PATH
... ...
@@ -2939,17 +3091,29 @@ case $as_dir/ in
2939 2939
 	    # program-specific install script used by HP pwplus--don't use.
2940 2940
 	    :
2941 2941
 	  else
2942
-	    ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
2943
-	    break 3
2942
+	    rm -rf conftest.one conftest.two conftest.dir
2943
+	    echo one > conftest.one
2944
+	    echo two > conftest.two
2945
+	    mkdir conftest.dir
2946
+	    if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
2947
+	      test -s conftest.one && test -s conftest.two &&
2948
+	      test -s conftest.dir/conftest.one &&
2949
+	      test -s conftest.dir/conftest.two
2950
+	    then
2951
+	      ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
2952
+	      break 3
2953
+	    fi
2944 2954
 	  fi
2945 2955
 	fi
2946 2956
       done
2947 2957
     done
2948 2958
     ;;
2949 2959
 esac
2960
+
2950 2961
 done
2951 2962
 IFS=$as_save_IFS
2952 2963
 
2964
+rm -rf conftest.one conftest.two conftest.dir
2953 2965
 
2954 2966
 fi
2955 2967
   if test "${ac_cv_path_install+set}" = set; then
... ...
@@ -2962,8 +3126,8 @@ fi
2962 2962
     INSTALL=$ac_install_sh
2963 2963
   fi
2964 2964
 fi
2965
-{ echo "$as_me:$LINENO: result: $INSTALL" >&5
2966
-echo "${ECHO_T}$INSTALL" >&6; }
2965
+{ $as_echo "$as_me:$LINENO: result: $INSTALL" >&5
2966
+$as_echo "$INSTALL" >&6; }
2967 2967
 
2968 2968
 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
2969 2969
 # It thinks the first close brace ends the variable substitution.
... ...
@@ -2973,22 +3137,23 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
2973 2973
 
2974 2974
 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
2975 2975
 
2976
-{ echo "$as_me:$LINENO: checking whether ln -s works" >&5
2977
-echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6; }
2976
+{ $as_echo "$as_me:$LINENO: checking whether ln -s works" >&5
2977
+$as_echo_n "checking whether ln -s works... " >&6; }
2978 2978
 LN_S=$as_ln_s
2979 2979
 if test "$LN_S" = "ln -s"; then
2980
-  { echo "$as_me:$LINENO: result: yes" >&5
2981
-echo "${ECHO_T}yes" >&6; }
2980
+  { $as_echo "$as_me:$LINENO: result: yes" >&5
2981
+$as_echo "yes" >&6; }
2982 2982
 else
2983
-  { echo "$as_me:$LINENO: result: no, using $LN_S" >&5
2984
-echo "${ECHO_T}no, using $LN_S" >&6; }
2983
+  { $as_echo "$as_me:$LINENO: result: no, using $LN_S" >&5
2984
+$as_echo "no, using $LN_S" >&6; }
2985 2985
 fi
2986 2986
 
2987
-{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
2988
-echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; }
2989
-set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
2987
+{ $as_echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
2988
+$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
2989
+set x ${MAKE-make}
2990
+ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
2990 2991
 if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then
2991
-  echo $ECHO_N "(cached) $ECHO_C" >&6
2992
+  $as_echo_n "(cached) " >&6
2992 2993
 else
2993 2994
   cat >conftest.make <<\_ACEOF
2994 2995
 SHELL = /bin/sh
... ...
@@ -3005,12 +3170,12 @@ esac
3005 3005
 rm -f conftest.make
3006 3006
 fi
3007 3007
 if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
3008
-  { echo "$as_me:$LINENO: result: yes" >&5
3009
-echo "${ECHO_T}yes" >&6; }
3008
+  { $as_echo "$as_me:$LINENO: result: yes" >&5
3009
+$as_echo "yes" >&6; }
3010 3010
   SET_MAKE=
3011 3011
 else
3012
-  { echo "$as_me:$LINENO: result: no" >&5
3013
-echo "${ECHO_T}no" >&6; }
3012
+  { $as_echo "$as_me:$LINENO: result: no" >&5
3013
+$as_echo "no" >&6; }
3014 3014
   SET_MAKE="MAKE=${MAKE-make}"
3015 3015
 fi
3016 3016
 
... ...
@@ -3025,8 +3190,8 @@ fi
3025 3025
 
3026 3026
 case `pwd` in
3027 3027
   *\ * | *\	*)
3028
-    { echo "$as_me:$LINENO: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5
3029
-echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;;
3028
+    { $as_echo "$as_me:$LINENO: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5
3029
+$as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;;
3030 3030
 esac
3031 3031
 
3032 3032
 
... ...
@@ -3060,8 +3225,8 @@ am__doit:
3060 3060
 .PHONY: am__doit
3061 3061
 END
3062 3062
 # If we don't find an include directive, just comment out the code.
3063
-{ echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
3064
-echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; }
3063
+{ $as_echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
3064
+$as_echo_n "checking for style of include used by $am_make... " >&6; }
3065 3065
 am__include="#"
3066 3066
 am__quote=
3067 3067
 _am_result=none
... ...
@@ -3088,8 +3253,8 @@ if test "$am__include" = "#"; then
3088 3088
 fi
3089 3089
 
3090 3090
 
3091
-{ echo "$as_me:$LINENO: result: $_am_result" >&5
3092
-echo "${ECHO_T}$_am_result" >&6; }
3091
+{ $as_echo "$as_me:$LINENO: result: $_am_result" >&5
3092
+$as_echo "$_am_result" >&6; }
3093 3093
 rm -f confinc confmf
3094 3094
 
3095 3095
 # Check whether --enable-dependency-tracking was given.
... ...
@@ -3118,10 +3283,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
3118 3118
 if test -n "$ac_tool_prefix"; then
3119 3119
   # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
3120 3120
 set dummy ${ac_tool_prefix}gcc; ac_word=$2
3121
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
3122
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
3121
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
3122
+$as_echo_n "checking for $ac_word... " >&6; }
3123 3123
 if test "${ac_cv_prog_CC+set}" = set; then
3124
-  echo $ECHO_N "(cached) $ECHO_C" >&6
3124
+  $as_echo_n "(cached) " >&6
3125 3125
 else
3126 3126
   if test -n "$CC"; then
3127 3127
   ac_cv_prog_CC="$CC" # Let the user override the test.
... ...
@@ -3134,7 +3299,7 @@ do
3134 3134
   for ac_exec_ext in '' $ac_executable_extensions; do
3135 3135
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3136 3136
     ac_cv_prog_CC="${ac_tool_prefix}gcc"
3137
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3137
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3138 3138
     break 2
3139 3139
   fi
3140 3140
 done
... ...
@@ -3145,11 +3310,11 @@ fi
3145 3145
 fi
3146 3146
 CC=$ac_cv_prog_CC
3147 3147
 if test -n "$CC"; then
3148
-  { echo "$as_me:$LINENO: result: $CC" >&5
3149
-echo "${ECHO_T}$CC" >&6; }
3148
+  { $as_echo "$as_me:$LINENO: result: $CC" >&5
3149
+$as_echo "$CC" >&6; }
3150 3150
 else
3151
-  { echo "$as_me:$LINENO: result: no" >&5
3152
-echo "${ECHO_T}no" >&6; }
3151
+  { $as_echo "$as_me:$LINENO: result: no" >&5
3152
+$as_echo "no" >&6; }
3153 3153
 fi
3154 3154
 
3155 3155
 
... ...
@@ -3158,10 +3323,10 @@ if test -z "$ac_cv_prog_CC"; then
3158 3158
   ac_ct_CC=$CC
3159 3159
   # Extract the first word of "gcc", so it can be a program name with args.
3160 3160
 set dummy gcc; ac_word=$2
3161
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
3162
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
3161
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
3162
+$as_echo_n "checking for $ac_word... " >&6; }
3163 3163
 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
3164
-  echo $ECHO_N "(cached) $ECHO_C" >&6
3164
+  $as_echo_n "(cached) " >&6
3165 3165
 else
3166 3166
   if test -n "$ac_ct_CC"; then
3167 3167
   ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
... ...
@@ -3174,7 +3339,7 @@ do
3174 3174
   for ac_exec_ext in '' $ac_executable_extensions; do
3175 3175
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3176 3176
     ac_cv_prog_ac_ct_CC="gcc"
3177
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3177
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3178 3178
     break 2
3179 3179
   fi
3180 3180
 done
... ...
@@ -3185,11 +3350,11 @@ fi
3185 3185
 fi
3186 3186
 ac_ct_CC=$ac_cv_prog_ac_ct_CC
3187 3187
 if test -n "$ac_ct_CC"; then
3188
-  { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
3189
-echo "${ECHO_T}$ac_ct_CC" >&6; }
3188
+  { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
3189
+$as_echo "$ac_ct_CC" >&6; }
3190 3190
 else
3191
-  { echo "$as_me:$LINENO: result: no" >&5
3192
-echo "${ECHO_T}no" >&6; }
3191
+  { $as_echo "$as_me:$LINENO: result: no" >&5
3192
+$as_echo "no" >&6; }
3193 3193
 fi
3194 3194
 
3195 3195
   if test "x$ac_ct_CC" = x; then
... ...
@@ -3197,12 +3362,8 @@ fi
3197 3197
   else
3198 3198
     case $cross_compiling:$ac_tool_warned in
3199 3199
 yes:)
3200
-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
3201
-whose name does not start with the host triplet.  If you think this
3202
-configuration is useful to you, please write to autoconf@gnu.org." >&5
3203
-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
3204
-whose name does not start with the host triplet.  If you think this
3205
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
3200
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
3201
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
3206 3202
 ac_tool_warned=yes ;;
3207 3203
 esac
3208 3204
     CC=$ac_ct_CC
... ...
@@ -3215,10 +3376,10 @@ if test -z "$CC"; then
3215 3215
           if test -n "$ac_tool_prefix"; then
3216 3216
     # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
3217 3217
 set dummy ${ac_tool_prefix}cc; ac_word=$2
3218
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
3219
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
3218
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
3219
+$as_echo_n "checking for $ac_word... " >&6; }
3220 3220
 if test "${ac_cv_prog_CC+set}" = set; then
3221
-  echo $ECHO_N "(cached) $ECHO_C" >&6
3221
+  $as_echo_n "(cached) " >&6
3222 3222
 else
3223 3223
   if test -n "$CC"; then
3224 3224
   ac_cv_prog_CC="$CC" # Let the user override the test.
... ...
@@ -3231,7 +3392,7 @@ do
3231 3231
   for ac_exec_ext in '' $ac_executable_extensions; do
3232 3232
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3233 3233
     ac_cv_prog_CC="${ac_tool_prefix}cc"
3234
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3234
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3235 3235
     break 2
3236 3236
   fi
3237 3237
 done
... ...
@@ -3242,11 +3403,11 @@ fi
3242 3242
 fi
3243 3243
 CC=$ac_cv_prog_CC
3244 3244
 if test -n "$CC"; then
3245
-  { echo "$as_me:$LINENO: result: $CC" >&5
3246
-echo "${ECHO_T}$CC" >&6; }
3245
+  { $as_echo "$as_me:$LINENO: result: $CC" >&5
3246
+$as_echo "$CC" >&6; }
3247 3247
 else
3248
-  { echo "$as_me:$LINENO: result: no" >&5
3249
-echo "${ECHO_T}no" >&6; }
3248
+  { $as_echo "$as_me:$LINENO: result: no" >&5
3249
+$as_echo "no" >&6; }
3250 3250
 fi
3251 3251
 
3252 3252
 
... ...
@@ -3255,10 +3416,10 @@ fi
3255 3255
 if test -z "$CC"; then
3256 3256
   # Extract the first word of "cc", so it can be a program name with args.
3257 3257
 set dummy cc; ac_word=$2
3258
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
3259
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
3258
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
3259
+$as_echo_n "checking for $ac_word... " >&6; }
3260 3260
 if test "${ac_cv_prog_CC+set}" = set; then
3261
-  echo $ECHO_N "(cached) $ECHO_C" >&6
3261
+  $as_echo_n "(cached) " >&6
3262 3262
 else
3263 3263
   if test -n "$CC"; then
3264 3264
   ac_cv_prog_CC="$CC" # Let the user override the test.
... ...
@@ -3276,7 +3437,7 @@ do
3276 3276
        continue
3277 3277
      fi
3278 3278
     ac_cv_prog_CC="cc"
3279
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3279
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3280 3280
     break 2
3281 3281
   fi
3282 3282
 done
... ...
@@ -3299,11 +3460,11 @@ fi
3299 3299
 fi
3300 3300
 CC=$ac_cv_prog_CC
3301 3301
 if test -n "$CC"; then
3302
-  { echo "$as_me:$LINENO: result: $CC" >&5
3303
-echo "${ECHO_T}$CC" >&6; }
3302
+  { $as_echo "$as_me:$LINENO: result: $CC" >&5
3303
+$as_echo "$CC" >&6; }
3304 3304
 else
3305
-  { echo "$as_me:$LINENO: result: no" >&5
3306
-echo "${ECHO_T}no" >&6; }
3305
+  { $as_echo "$as_me:$LINENO: result: no" >&5
3306
+$as_echo "no" >&6; }
3307 3307
 fi
3308 3308
 
3309 3309
 
... ...
@@ -3314,10 +3475,10 @@ if test -z "$CC"; then
3314 3314
   do
3315 3315
     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
3316 3316
 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
3317
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
3318
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
3317
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
3318
+$as_echo_n "checking for $ac_word... " >&6; }
3319 3319
 if test "${ac_cv_prog_CC+set}" = set; then
3320
-  echo $ECHO_N "(cached) $ECHO_C" >&6
3320
+  $as_echo_n "(cached) " >&6
3321 3321
 else
3322 3322
   if test -n "$CC"; then
3323 3323
   ac_cv_prog_CC="$CC" # Let the user override the test.
... ...
@@ -3330,7 +3491,7 @@ do
3330 3330
   for ac_exec_ext in '' $ac_executable_extensions; do
3331 3331
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3332 3332
     ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
3333
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3333
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3334 3334
     break 2
3335 3335
   fi
3336 3336
 done
... ...
@@ -3341,11 +3502,11 @@ fi
3341 3341
 fi
3342 3342
 CC=$ac_cv_prog_CC
3343 3343
 if test -n "$CC"; then
3344
-  { echo "$as_me:$LINENO: result: $CC" >&5
3345
-echo "${ECHO_T}$CC" >&6; }
3344
+  { $as_echo "$as_me:$LINENO: result: $CC" >&5
3345
+$as_echo "$CC" >&6; }
3346 3346
 else
3347
-  { echo "$as_me:$LINENO: result: no" >&5
3348
-echo "${ECHO_T}no" >&6; }
3347
+  { $as_echo "$as_me:$LINENO: result: no" >&5
3348
+$as_echo "no" >&6; }
3349 3349
 fi
3350 3350
 
3351 3351
 
... ...
@@ -3358,10 +3519,10 @@ if test -z "$CC"; then
3358 3358
 do
3359 3359
   # Extract the first word of "$ac_prog", so it can be a program name with args.
3360 3360
 set dummy $ac_prog; ac_word=$2
3361
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
3362
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
3361
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
3362
+$as_echo_n "checking for $ac_word... " >&6; }
3363 3363
 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
3364
-  echo $ECHO_N "(cached) $ECHO_C" >&6
3364
+  $as_echo_n "(cached) " >&6
3365 3365
 else
3366 3366
   if test -n "$ac_ct_CC"; then
3367 3367
   ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
... ...
@@ -3374,7 +3535,7 @@ do
3374 3374
   for ac_exec_ext in '' $ac_executable_extensions; do
3375 3375
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3376 3376
     ac_cv_prog_ac_ct_CC="$ac_prog"
3377
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3377
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3378 3378
     break 2
3379 3379
   fi
3380 3380
 done
... ...
@@ -3385,11 +3546,11 @@ fi
3385 3385
 fi
3386 3386
 ac_ct_CC=$ac_cv_prog_ac_ct_CC
3387 3387
 if test -n "$ac_ct_CC"; then
3388
-  { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
3389
-echo "${ECHO_T}$ac_ct_CC" >&6; }
3388
+  { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
3389
+$as_echo "$ac_ct_CC" >&6; }
3390 3390
 else
3391
-  { echo "$as_me:$LINENO: result: no" >&5
3392
-echo "${ECHO_T}no" >&6; }
3391
+  { $as_echo "$as_me:$LINENO: result: no" >&5
3392
+$as_echo "no" >&6; }
3393 3393
 fi
3394 3394
 
3395 3395
 
... ...
@@ -3401,12 +3562,8 @@ done
3401 3401
   else
3402 3402
     case $cross_compiling:$ac_tool_warned in
3403 3403
 yes:)
3404
-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
3405
-whose name does not start with the host triplet.  If you think this
3406
-configuration is useful to you, please write to autoconf@gnu.org." >&5
3407
-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
3408
-whose name does not start with the host triplet.  If you think this
3409
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
3404
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
3405
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
3410 3406
 ac_tool_warned=yes ;;
3411 3407
 esac
3412 3408
     CC=$ac_ct_CC
... ...
@@ -3416,44 +3573,50 @@ fi
3416 3416
 fi
3417 3417
 
3418 3418
 
3419
-test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
3419
+test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
3420
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3421
+{ { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
3420 3422
 See \`config.log' for more details." >&5
3421
-echo "$as_me: error: no acceptable C compiler found in \$PATH
3423
+$as_echo "$as_me: error: no acceptable C compiler found in \$PATH
3422 3424
 See \`config.log' for more details." >&2;}
3423
-   { (exit 1); exit 1; }; }
3425
+   { (exit 1); exit 1; }; }; }
3424 3426
 
3425 3427
 # Provide some information about the compiler.
3426
-echo "$as_me:$LINENO: checking for C compiler version" >&5
3427
-ac_compiler=`set X $ac_compile; echo $2`
3428
+$as_echo "$as_me:$LINENO: checking for C compiler version" >&5
3429
+set X $ac_compile
3430
+ac_compiler=$2
3428 3431
 { (ac_try="$ac_compiler --version >&5"
3429 3432
 case "(($ac_try" in
3430 3433
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3431 3434
   *) ac_try_echo=$ac_try;;
3432 3435
 esac
3433
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3436
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
3437
+$as_echo "$ac_try_echo") >&5
3434 3438
   (eval "$ac_compiler --version >&5") 2>&5
3435 3439
   ac_status=$?
3436
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
3440
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
3437 3441
   (exit $ac_status); }
3438 3442
 { (ac_try="$ac_compiler -v >&5"
3439 3443
 case "(($ac_try" in
3440 3444
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3441 3445
   *) ac_try_echo=$ac_try;;
3442 3446
 esac
3443
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3447
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
3448
+$as_echo "$ac_try_echo") >&5
3444 3449
   (eval "$ac_compiler -v >&5") 2>&5
3445 3450
   ac_status=$?
3446
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
3451
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
3447 3452
   (exit $ac_status); }
3448 3453
 { (ac_try="$ac_compiler -V >&5"
3449 3454
 case "(($ac_try" in
3450 3455
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3451 3456
   *) ac_try_echo=$ac_try;;
3452 3457
 esac
3453
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3458
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
3459
+$as_echo "$ac_try_echo") >&5
3454 3460
   (eval "$ac_compiler -V >&5") 2>&5
3455 3461
   ac_status=$?
3456
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
3462
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
3457 3463
   (exit $ac_status); }
3458 3464
 
3459 3465
 cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -3472,27 +3635,22 @@ main ()
3472 3472
 }
3473 3473
 _ACEOF
3474 3474
 ac_clean_files_save=$ac_clean_files
3475
-ac_clean_files="$ac_clean_files a.out a.exe b.out"
3475
+ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
3476 3476
 # Try to create an executable without -o first, disregard a.out.
3477 3477
 # It will help us diagnose broken compilers, and finding out an intuition
3478 3478
 # of exeext.
3479
-{ echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
3480
-echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; }
3481
-ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
3482
-#
3483
-# List of possible output files, starting from the most likely.
3484
-# The algorithm is not robust to junk in `.', hence go to wildcards (a.*)
3485
-# only as a last resort.  b.out is created by i960 compilers.
3486
-ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out'
3487
-#
3488
-# The IRIX 6 linker writes into existing files which may not be
3489
-# executable, retaining their permissions.  Remove them first so a
3490
-# subsequent execution test works.
3479
+{ $as_echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
3480
+$as_echo_n "checking for C compiler default output file name... " >&6; }
3481
+ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
3482
+
3483
+# The possible output files:
3484
+ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
3485
+
3491 3486
 ac_rmfiles=
3492 3487
 for ac_file in $ac_files
3493 3488
 do
3494 3489
   case $ac_file in
3495
-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
3490
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
3496 3491
     * ) ac_rmfiles="$ac_rmfiles $ac_file";;
3497 3492
   esac
3498 3493
 done
... ...
@@ -3503,10 +3661,11 @@ case "(($ac_try" in
3503 3503
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3504 3504
   *) ac_try_echo=$ac_try;;
3505 3505
 esac
3506
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3506
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
3507
+$as_echo "$ac_try_echo") >&5
3507 3508
   (eval "$ac_link_default") 2>&5
3508 3509
   ac_status=$?
3509
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
3510
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
3510 3511
   (exit $ac_status); }; then
3511 3512
   # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
3512 3513
 # So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
... ...
@@ -3517,7 +3676,7 @@ for ac_file in $ac_files ''
3517 3517
 do
3518 3518
   test -f "$ac_file" || continue
3519 3519
   case $ac_file in
3520
-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj )
3520
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
3521 3521
 	;;
3522 3522
     [ab].out )
3523 3523
 	# We found the default executable, but exeext='' is most
... ...
@@ -3544,25 +3703,27 @@ else
3544 3544
   ac_file=''
3545 3545
 fi
3546 3546
 
3547
-{ echo "$as_me:$LINENO: result: $ac_file" >&5
3548
-echo "${ECHO_T}$ac_file" >&6; }
3547
+{ $as_echo "$as_me:$LINENO: result: $ac_file" >&5
3548
+$as_echo "$ac_file" >&6; }
3549 3549
 if test -z "$ac_file"; then
3550
-  echo "$as_me: failed program was:" >&5
3550
+  $as_echo "$as_me: failed program was:" >&5
3551 3551
 sed 's/^/| /' conftest.$ac_ext >&5
3552 3552
 
3553
-{ { echo "$as_me:$LINENO: error: C compiler cannot create executables
3553
+{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
3554
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3555
+{ { $as_echo "$as_me:$LINENO: error: C compiler cannot create executables
3554 3556
 See \`config.log' for more details." >&5
3555
-echo "$as_me: error: C compiler cannot create executables
3557
+$as_echo "$as_me: error: C compiler cannot create executables
3556 3558
 See \`config.log' for more details." >&2;}
3557
-   { (exit 77); exit 77; }; }
3559
+   { (exit 77); exit 77; }; }; }
3558 3560
 fi
3559 3561
 
3560 3562
 ac_exeext=$ac_cv_exeext
3561 3563
 
3562 3564
 # Check that the compiler produces executables we can run.  If not, either
3563 3565
 # the compiler is broken, or we cross compile.
3564
-{ echo "$as_me:$LINENO: checking whether the C compiler works" >&5
3565
-echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; }
3566
+{ $as_echo "$as_me:$LINENO: checking whether the C compiler works" >&5
3567
+$as_echo_n "checking whether the C compiler works... " >&6; }
3566 3568
 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0
3567 3569
 # If not cross compiling, check that we can run a simple program.
3568 3570
 if test "$cross_compiling" != yes; then
... ...
@@ -3571,49 +3732,53 @@ if test "$cross_compiling" != yes; then
3571 3571
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3572 3572
   *) ac_try_echo=$ac_try;;
3573 3573
 esac
3574
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3574
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
3575
+$as_echo "$ac_try_echo") >&5
3575 3576
   (eval "$ac_try") 2>&5
3576 3577
   ac_status=$?
3577
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
3578
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
3578 3579
   (exit $ac_status); }; }; then
3579 3580
     cross_compiling=no
3580 3581
   else
3581 3582
     if test "$cross_compiling" = maybe; then
3582 3583
 	cross_compiling=yes
3583 3584
     else
3584
-	{ { echo "$as_me:$LINENO: error: cannot run C compiled programs.
3585
+	{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
3586
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3587
+{ { $as_echo "$as_me:$LINENO: error: cannot run C compiled programs.
3585 3588
 If you meant to cross compile, use \`--host'.
3586 3589
 See \`config.log' for more details." >&5
3587
-echo "$as_me: error: cannot run C compiled programs.
3590
+$as_echo "$as_me: error: cannot run C compiled programs.
3588 3591
 If you meant to cross compile, use \`--host'.
3589 3592
 See \`config.log' for more details." >&2;}
3590
-   { (exit 1); exit 1; }; }
3593
+   { (exit 1); exit 1; }; }; }
3591 3594
     fi
3592 3595
   fi
3593 3596
 fi
3594
-{ echo "$as_me:$LINENO: result: yes" >&5
3595
-echo "${ECHO_T}yes" >&6; }
3597
+{ $as_echo "$as_me:$LINENO: result: yes" >&5
3598
+$as_echo "yes" >&6; }
3596 3599
 
3597
-rm -f a.out a.exe conftest$ac_cv_exeext b.out
3600
+rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
3598 3601
 ac_clean_files=$ac_clean_files_save
3599 3602
 # Check that the compiler produces executables we can run.  If not, either
3600 3603
 # the compiler is broken, or we cross compile.
3601
-{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
3602
-echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }
3603
-{ echo "$as_me:$LINENO: result: $cross_compiling" >&5
3604
-echo "${ECHO_T}$cross_compiling" >&6; }
3604
+{ $as_echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
3605
+$as_echo_n "checking whether we are cross compiling... " >&6; }
3606
+{ $as_echo "$as_me:$LINENO: result: $cross_compiling" >&5
3607
+$as_echo "$cross_compiling" >&6; }
3605 3608
 
3606
-{ echo "$as_me:$LINENO: checking for suffix of executables" >&5
3607
-echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; }
3609
+{ $as_echo "$as_me:$LINENO: checking for suffix of executables" >&5
3610
+$as_echo_n "checking for suffix of executables... " >&6; }
3608 3611
 if { (ac_try="$ac_link"
3609 3612
 case "(($ac_try" in
3610 3613
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3611 3614
   *) ac_try_echo=$ac_try;;
3612 3615
 esac
3613
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3616
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
3617
+$as_echo "$ac_try_echo") >&5
3614 3618
   (eval "$ac_link") 2>&5
3615 3619
   ac_status=$?
3616
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
3620
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
3617 3621
   (exit $ac_status); }; then
3618 3622
   # If both `conftest.exe' and `conftest' are `present' (well, observable)
3619 3623
 # catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
... ...
@@ -3622,31 +3787,33 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3622 3622
 for ac_file in conftest.exe conftest conftest.*; do
3623 3623
   test -f "$ac_file" || continue
3624 3624
   case $ac_file in
3625
-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
3625
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
3626 3626
     *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
3627 3627
 	  break;;
3628 3628
     * ) break;;
3629 3629
   esac
3630 3630
 done
3631 3631
 else
3632
-  { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
3632
+  { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
3633
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3634
+{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
3633 3635
 See \`config.log' for more details." >&5
3634
-echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
3636
+$as_echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
3635 3637
 See \`config.log' for more details." >&2;}
3636
-   { (exit 1); exit 1; }; }
3638
+   { (exit 1); exit 1; }; }; }
3637 3639
 fi
3638 3640
 
3639 3641
 rm -f conftest$ac_cv_exeext
3640
-{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
3641
-echo "${ECHO_T}$ac_cv_exeext" >&6; }
3642
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
3643
+$as_echo "$ac_cv_exeext" >&6; }
3642 3644
 
3643 3645
 rm -f conftest.$ac_ext
3644 3646
 EXEEXT=$ac_cv_exeext
3645 3647
 ac_exeext=$EXEEXT
3646
-{ echo "$as_me:$LINENO: checking for suffix of object files" >&5
3647
-echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; }
3648
+{ $as_echo "$as_me:$LINENO: checking for suffix of object files" >&5
3649
+$as_echo_n "checking for suffix of object files... " >&6; }
3648 3650
 if test "${ac_cv_objext+set}" = set; then
3649
-  echo $ECHO_N "(cached) $ECHO_C" >&6
3651
+  $as_echo_n "(cached) " >&6
3650 3652
 else
3651 3653
   cat >conftest.$ac_ext <<_ACEOF
3652 3654
 /* confdefs.h.  */
... ...
@@ -3669,40 +3836,43 @@ case "(($ac_try" in
3669 3669
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3670 3670
   *) ac_try_echo=$ac_try;;
3671 3671
 esac
3672
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3672
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
3673
+$as_echo "$ac_try_echo") >&5
3673 3674
   (eval "$ac_compile") 2>&5
3674 3675
   ac_status=$?
3675
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
3676
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
3676 3677
   (exit $ac_status); }; then
3677 3678
   for ac_file in conftest.o conftest.obj conftest.*; do
3678 3679
   test -f "$ac_file" || continue;
3679 3680
   case $ac_file in
3680
-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;
3681
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
3681 3682
     *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
3682 3683
        break;;
3683 3684
   esac
3684 3685
 done
3685 3686
 else
3686
-  echo "$as_me: failed program was:" >&5
3687
+  $as_echo "$as_me: failed program was:" >&5
3687 3688
 sed 's/^/| /' conftest.$ac_ext >&5
3688 3689
 
3689
-{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
3690
+{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
3691
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3692
+{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
3690 3693
 See \`config.log' for more details." >&5
3691
-echo "$as_me: error: cannot compute suffix of object files: cannot compile
3694
+$as_echo "$as_me: error: cannot compute suffix of object files: cannot compile
3692 3695
 See \`config.log' for more details." >&2;}
3693
-   { (exit 1); exit 1; }; }
3696
+   { (exit 1); exit 1; }; }; }
3694 3697
 fi
3695 3698
 
3696 3699
 rm -f conftest.$ac_cv_objext conftest.$ac_ext
3697 3700
 fi
3698
-{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
3699
-echo "${ECHO_T}$ac_cv_objext" >&6; }
3701
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
3702
+$as_echo "$ac_cv_objext" >&6; }
3700 3703
 OBJEXT=$ac_cv_objext
3701 3704
 ac_objext=$OBJEXT
3702
-{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
3703
-echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; }
3705
+{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
3706
+$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
3704 3707
 if test "${ac_cv_c_compiler_gnu+set}" = set; then
3705
-  echo $ECHO_N "(cached) $ECHO_C" >&6
3708
+  $as_echo_n "(cached) " >&6
3706 3709
 else
3707 3710
   cat >conftest.$ac_ext <<_ACEOF
3708 3711
 /* confdefs.h.  */
... ...
@@ -3728,20 +3898,21 @@ case "(($ac_try" in
3728 3728
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3729 3729
   *) ac_try_echo=$ac_try;;
3730 3730
 esac
3731
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3731
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
3732
+$as_echo "$ac_try_echo") >&5
3732 3733
   (eval "$ac_compile") 2>conftest.er1
3733 3734
   ac_status=$?
3734 3735
   grep -v '^ *+' conftest.er1 >conftest.err
3735 3736
   rm -f conftest.er1
3736 3737
   cat conftest.err >&5
3737
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
3738
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
3738 3739
   (exit $ac_status); } && {
3739 3740
 	 test -z "$ac_c_werror_flag" ||
3740 3741
 	 test ! -s conftest.err
3741 3742
        } && test -s conftest.$ac_objext; then
3742 3743
   ac_compiler_gnu=yes
3743 3744
 else
3744
-  echo "$as_me: failed program was:" >&5
3745
+  $as_echo "$as_me: failed program was:" >&5
3745 3746
 sed 's/^/| /' conftest.$ac_ext >&5
3746 3747
 
3747 3748
 	ac_compiler_gnu=no
... ...
@@ -3751,15 +3922,19 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3751 3751
 ac_cv_c_compiler_gnu=$ac_compiler_gnu
3752 3752
 
3753 3753
 fi
3754
-{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
3755
-echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; }
3756
-GCC=`test $ac_compiler_gnu = yes && echo yes`
3754
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
3755
+$as_echo "$ac_cv_c_compiler_gnu" >&6; }
3756
+if test $ac_compiler_gnu = yes; then
3757
+  GCC=yes
3758
+else
3759
+  GCC=
3760
+fi
3757 3761
 ac_test_CFLAGS=${CFLAGS+set}
3758 3762
 ac_save_CFLAGS=$CFLAGS
3759
-{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
3760
-echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; }
3763
+{ $as_echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
3764
+$as_echo_n "checking whether $CC accepts -g... " >&6; }
3761 3765
 if test "${ac_cv_prog_cc_g+set}" = set; then
3762
-  echo $ECHO_N "(cached) $ECHO_C" >&6
3766
+  $as_echo_n "(cached) " >&6
3763 3767
 else
3764 3768
   ac_save_c_werror_flag=$ac_c_werror_flag
3765 3769
    ac_c_werror_flag=yes
... ...
@@ -3786,20 +3961,21 @@ case "(($ac_try" in
3786 3786
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3787 3787
   *) ac_try_echo=$ac_try;;
3788 3788
 esac
3789
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3789
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
3790
+$as_echo "$ac_try_echo") >&5
3790 3791
   (eval "$ac_compile") 2>conftest.er1
3791 3792
   ac_status=$?
3792 3793
   grep -v '^ *+' conftest.er1 >conftest.err
3793 3794
   rm -f conftest.er1
3794 3795
   cat conftest.err >&5
3795
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
3796
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
3796 3797
   (exit $ac_status); } && {
3797 3798
 	 test -z "$ac_c_werror_flag" ||
3798 3799
 	 test ! -s conftest.err
3799 3800
        } && test -s conftest.$ac_objext; then
3800 3801
   ac_cv_prog_cc_g=yes
3801 3802
 else
3802
-  echo "$as_me: failed program was:" >&5
3803
+  $as_echo "$as_me: failed program was:" >&5
3803 3804
 sed 's/^/| /' conftest.$ac_ext >&5
3804 3805
 
3805 3806
 	CFLAGS=""
... ...
@@ -3824,20 +4000,21 @@ case "(($ac_try" in
3824 3824
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3825 3825
   *) ac_try_echo=$ac_try;;
3826 3826
 esac
3827
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3827
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
3828
+$as_echo "$ac_try_echo") >&5
3828 3829
   (eval "$ac_compile") 2>conftest.er1
3829 3830
   ac_status=$?
3830 3831
   grep -v '^ *+' conftest.er1 >conftest.err
3831 3832
   rm -f conftest.er1
3832 3833
   cat conftest.err >&5
3833
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
3834
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
3834 3835
   (exit $ac_status); } && {
3835 3836
 	 test -z "$ac_c_werror_flag" ||
3836 3837
 	 test ! -s conftest.err
3837 3838
        } && test -s conftest.$ac_objext; then
3838 3839
   :
3839 3840
 else
3840
-  echo "$as_me: failed program was:" >&5
3841
+  $as_echo "$as_me: failed program was:" >&5
3841 3842
 sed 's/^/| /' conftest.$ac_ext >&5
3842 3843
 
3843 3844
 	ac_c_werror_flag=$ac_save_c_werror_flag
... ...
@@ -3863,20 +4040,21 @@ case "(($ac_try" in
3863 3863
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3864 3864
   *) ac_try_echo=$ac_try;;
3865 3865
 esac
3866
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3866
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
3867
+$as_echo "$ac_try_echo") >&5
3867 3868
   (eval "$ac_compile") 2>conftest.er1
3868 3869
   ac_status=$?
3869 3870
   grep -v '^ *+' conftest.er1 >conftest.err
3870 3871
   rm -f conftest.er1
3871 3872
   cat conftest.err >&5
3872
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
3873
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
3873 3874
   (exit $ac_status); } && {
3874 3875
 	 test -z "$ac_c_werror_flag" ||
3875 3876
 	 test ! -s conftest.err
3876 3877
        } && test -s conftest.$ac_objext; then
3877 3878
   ac_cv_prog_cc_g=yes
3878 3879
 else
3879
-  echo "$as_me: failed program was:" >&5
3880
+  $as_echo "$as_me: failed program was:" >&5
3880 3881
 sed 's/^/| /' conftest.$ac_ext >&5
3881 3882
 
3882 3883
 
... ...
@@ -3891,8 +4069,8 @@ fi
3891 3891
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3892 3892
    ac_c_werror_flag=$ac_save_c_werror_flag
3893 3893
 fi
3894
-{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
3895
-echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; }
3894
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
3895
+$as_echo "$ac_cv_prog_cc_g" >&6; }
3896 3896
 if test "$ac_test_CFLAGS" = set; then
3897 3897
   CFLAGS=$ac_save_CFLAGS
3898 3898
 elif test $ac_cv_prog_cc_g = yes; then
... ...
@@ -3908,10 +4086,10 @@ else
3908 3908
     CFLAGS=
3909 3909
   fi
3910 3910
 fi
3911
-{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5
3912
-echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; }
3911
+{ $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5
3912
+$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
3913 3913
 if test "${ac_cv_prog_cc_c89+set}" = set; then
3914
-  echo $ECHO_N "(cached) $ECHO_C" >&6
3914
+  $as_echo_n "(cached) " >&6
3915 3915
 else
3916 3916
   ac_cv_prog_cc_c89=no
3917 3917
 ac_save_CC=$CC
... ...
@@ -3982,20 +4160,21 @@ case "(($ac_try" in
3982 3982
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3983 3983
   *) ac_try_echo=$ac_try;;
3984 3984
 esac
3985
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3985
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
3986
+$as_echo "$ac_try_echo") >&5
3986 3987
   (eval "$ac_compile") 2>conftest.er1
3987 3988
   ac_status=$?
3988 3989
   grep -v '^ *+' conftest.er1 >conftest.err
3989 3990
   rm -f conftest.er1
3990 3991
   cat conftest.err >&5
3991
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
3992
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
3992 3993
   (exit $ac_status); } && {
3993 3994
 	 test -z "$ac_c_werror_flag" ||
3994 3995
 	 test ! -s conftest.err
3995 3996
        } && test -s conftest.$ac_objext; then
3996 3997
   ac_cv_prog_cc_c89=$ac_arg
3997 3998
 else
3998
-  echo "$as_me: failed program was:" >&5
3999
+  $as_echo "$as_me: failed program was:" >&5
3999 4000
 sed 's/^/| /' conftest.$ac_ext >&5
4000 4001
 
4001 4002
 
... ...
@@ -4011,15 +4190,15 @@ fi
4011 4011
 # AC_CACHE_VAL
4012 4012
 case "x$ac_cv_prog_cc_c89" in
4013 4013
   x)
4014
-    { echo "$as_me:$LINENO: result: none needed" >&5
4015
-echo "${ECHO_T}none needed" >&6; } ;;
4014
+    { $as_echo "$as_me:$LINENO: result: none needed" >&5
4015
+$as_echo "none needed" >&6; } ;;
4016 4016
   xno)
4017
-    { echo "$as_me:$LINENO: result: unsupported" >&5
4018
-echo "${ECHO_T}unsupported" >&6; } ;;
4017
+    { $as_echo "$as_me:$LINENO: result: unsupported" >&5
4018
+$as_echo "unsupported" >&6; } ;;
4019 4019
   *)
4020 4020
     CC="$CC $ac_cv_prog_cc_c89"
4021
-    { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5
4022
-echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;;
4021
+    { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5
4022
+$as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
4023 4023
 esac
4024 4024
 
4025 4025
 
... ...
@@ -4031,10 +4210,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
4031 4031
 
4032 4032
 depcc="$CC"   am_compiler_list=
4033 4033
 
4034
-{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
4035
-echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; }
4034
+{ $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
4035
+$as_echo_n "checking dependency style of $depcc... " >&6; }
4036 4036
 if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
4037
-  echo $ECHO_N "(cached) $ECHO_C" >&6
4037
+  $as_echo_n "(cached) " >&6
4038 4038
 else
4039 4039
   if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
4040 4040
   # We make a subdir and do the tests there.  Otherwise we can end up
... ...
@@ -4122,8 +4301,8 @@ else
4122 4122
 fi
4123 4123
 
4124 4124
 fi
4125
-{ echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
4126
-echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }
4125
+{ $as_echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
4126
+$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; }
4127 4127
 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
4128 4128
 
4129 4129
  if
... ...
@@ -4137,48 +4316,43 @@ else
4137 4137
 fi
4138 4138
 
4139 4139
 
4140
-{ echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5
4141
-echo $ECHO_N "checking for a sed that does not truncate output... $ECHO_C" >&6; }
4140
+{ $as_echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5
4141
+$as_echo_n "checking for a sed that does not truncate output... " >&6; }
4142 4142
 if test "${ac_cv_path_SED+set}" = set; then
4143
-  echo $ECHO_N "(cached) $ECHO_C" >&6
4143
+  $as_echo_n "(cached) " >&6
4144 4144
 else
4145 4145
             ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/
4146 4146
      for ac_i in 1 2 3 4 5 6 7; do
4147 4147
        ac_script="$ac_script$as_nl$ac_script"
4148 4148
      done
4149
-     echo "$ac_script" | sed 99q >conftest.sed
4149
+     echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed
4150 4150
      $as_unset ac_script || ac_script=
4151
-     # Extract the first word of "sed gsed" to use in msg output
4152
-if test -z "$SED"; then
4153
-set dummy sed gsed; ac_prog_name=$2
4154
-if test "${ac_cv_path_SED+set}" = set; then
4155
-  echo $ECHO_N "(cached) $ECHO_C" >&6
4156
-else
4151
+     if test -z "$SED"; then
4157 4152
   ac_path_SED_found=false
4158
-# Loop through the user's path and test for each of PROGNAME-LIST
4159
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4153
+  # Loop through the user's path and test for each of PROGNAME-LIST
4154
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4160 4155
 for as_dir in $PATH
4161 4156
 do
4162 4157
   IFS=$as_save_IFS
4163 4158
   test -z "$as_dir" && as_dir=.
4164 4159
   for ac_prog in sed gsed; do
4165
-  for ac_exec_ext in '' $ac_executable_extensions; do
4166
-    ac_path_SED="$as_dir/$ac_prog$ac_exec_ext"
4167
-    { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue
4168
-    # Check for GNU ac_path_SED and select it if it is found.
4160
+    for ac_exec_ext in '' $ac_executable_extensions; do
4161
+      ac_path_SED="$as_dir/$ac_prog$ac_exec_ext"
4162
+      { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue
4163
+# Check for GNU ac_path_SED and select it if it is found.
4169 4164
   # Check for GNU $ac_path_SED
4170 4165
 case `"$ac_path_SED" --version 2>&1` in
4171 4166
 *GNU*)
4172 4167
   ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;;
4173 4168
 *)
4174 4169
   ac_count=0
4175
-  echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
4170
+  $as_echo_n 0123456789 >"conftest.in"
4176 4171
   while :
4177 4172
   do
4178 4173
     cat "conftest.in" "conftest.in" >"conftest.tmp"
4179 4174
     mv "conftest.tmp" "conftest.in"
4180 4175
     cp "conftest.in" "conftest.nl"
4181
-    echo '' >> "conftest.nl"
4176
+    $as_echo '' >> "conftest.nl"
4182 4177
     "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break
4183 4178
     diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
4184 4179
     ac_count=`expr $ac_count + 1`
... ...
@@ -4193,31 +4367,23 @@ case `"$ac_path_SED" --version 2>&1` in
4193 4193
   rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
4194 4194
 esac
4195 4195
 
4196
-
4197
-    $ac_path_SED_found && break 3
4196
+      $ac_path_SED_found && break 3
4197
+    done
4198 4198
   done
4199 4199
 done
4200
-
4201
-done
4202 4200
 IFS=$as_save_IFS
4203
-
4204
-
4205
-fi
4206
-
4207
-SED="$ac_cv_path_SED"
4208
-if test -z "$SED"; then
4209
-  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in \$PATH" >&5
4210
-echo "$as_me: error: no acceptable $ac_prog_name could be found in \$PATH" >&2;}
4201
+  if test -z "$ac_cv_path_SED"; then
4202
+    { { $as_echo "$as_me:$LINENO: error: no acceptable sed could be found in \$PATH" >&5
4203
+$as_echo "$as_me: error: no acceptable sed could be found in \$PATH" >&2;}
4211 4204
    { (exit 1); exit 1; }; }
4212
-fi
4213
-
4205
+  fi
4214 4206
 else
4215 4207
   ac_cv_path_SED=$SED
4216 4208
 fi
4217 4209
 
4218 4210
 fi
4219
-{ echo "$as_me:$LINENO: result: $ac_cv_path_SED" >&5
4220
-echo "${ECHO_T}$ac_cv_path_SED" >&6; }
4211
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_SED" >&5
4212
+$as_echo "$ac_cv_path_SED" >&6; }
4221 4213
  SED="$ac_cv_path_SED"
4222 4214
   rm -f conftest.sed
4223 4215
 
... ...
@@ -4234,42 +4400,37 @@ Xsed="$SED -e 1s/^X//"
4234 4234
 
4235 4235
 
4236 4236
 
4237
-{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5
4238
-echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; }
4237
+{ $as_echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5
4238
+$as_echo_n "checking for grep that handles long lines and -e... " >&6; }
4239 4239
 if test "${ac_cv_path_GREP+set}" = set; then
4240
-  echo $ECHO_N "(cached) $ECHO_C" >&6
4241
-else
4242
-  # Extract the first word of "grep ggrep" to use in msg output
4243
-if test -z "$GREP"; then
4244
-set dummy grep ggrep; ac_prog_name=$2
4245
-if test "${ac_cv_path_GREP+set}" = set; then
4246
-  echo $ECHO_N "(cached) $ECHO_C" >&6
4240
+  $as_echo_n "(cached) " >&6
4247 4241
 else
4242
+  if test -z "$GREP"; then
4248 4243
   ac_path_GREP_found=false
4249
-# Loop through the user's path and test for each of PROGNAME-LIST
4250
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4244
+  # Loop through the user's path and test for each of PROGNAME-LIST
4245
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4251 4246
 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
4252 4247
 do
4253 4248
   IFS=$as_save_IFS
4254 4249
   test -z "$as_dir" && as_dir=.
4255 4250
   for ac_prog in grep ggrep; do
4256
-  for ac_exec_ext in '' $ac_executable_extensions; do
4257
-    ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
4258
-    { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
4259
-    # Check for GNU ac_path_GREP and select it if it is found.
4251
+    for ac_exec_ext in '' $ac_executable_extensions; do
4252
+      ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
4253
+      { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
4254
+# Check for GNU ac_path_GREP and select it if it is found.
4260 4255
   # Check for GNU $ac_path_GREP
4261 4256
 case `"$ac_path_GREP" --version 2>&1` in
4262 4257
 *GNU*)
4263 4258
   ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
4264 4259
 *)
4265 4260
   ac_count=0
4266
-  echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
4261
+  $as_echo_n 0123456789 >"conftest.in"
4267 4262
   while :
4268 4263
   do
4269 4264
     cat "conftest.in" "conftest.in" >"conftest.tmp"
4270 4265
     mv "conftest.tmp" "conftest.in"
4271 4266
     cp "conftest.in" "conftest.nl"
4272
-    echo 'GREP' >> "conftest.nl"
4267
+    $as_echo 'GREP' >> "conftest.nl"
4273 4268
     "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
4274 4269
     diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
4275 4270
     ac_count=`expr $ac_count + 1`
... ...
@@ -4284,74 +4445,60 @@ case `"$ac_path_GREP" --version 2>&1` in
4284 4284
   rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
4285 4285
 esac
4286 4286
 
4287
-
4288
-    $ac_path_GREP_found && break 3
4287
+      $ac_path_GREP_found && break 3
4288
+    done
4289 4289
   done
4290 4290
 done
4291
-
4292
-done
4293 4291
 IFS=$as_save_IFS
4294
-
4295
-
4296
-fi
4297
-
4298
-GREP="$ac_cv_path_GREP"
4299
-if test -z "$GREP"; then
4300
-  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
4301
-echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
4292
+  if test -z "$ac_cv_path_GREP"; then
4293
+    { { $as_echo "$as_me:$LINENO: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
4294
+$as_echo "$as_me: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
4302 4295
    { (exit 1); exit 1; }; }
4303
-fi
4304
-
4296
+  fi
4305 4297
 else
4306 4298
   ac_cv_path_GREP=$GREP
4307 4299
 fi
4308 4300
 
4309
-
4310 4301
 fi
4311
-{ echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5
4312
-echo "${ECHO_T}$ac_cv_path_GREP" >&6; }
4302
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5
4303
+$as_echo "$ac_cv_path_GREP" >&6; }
4313 4304
  GREP="$ac_cv_path_GREP"
4314 4305
 
4315 4306
 
4316
-{ echo "$as_me:$LINENO: checking for egrep" >&5
4317
-echo $ECHO_N "checking for egrep... $ECHO_C" >&6; }
4307
+{ $as_echo "$as_me:$LINENO: checking for egrep" >&5
4308
+$as_echo_n "checking for egrep... " >&6; }
4318 4309
 if test "${ac_cv_path_EGREP+set}" = set; then
4319
-  echo $ECHO_N "(cached) $ECHO_C" >&6
4310
+  $as_echo_n "(cached) " >&6
4320 4311
 else
4321 4312
   if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
4322 4313
    then ac_cv_path_EGREP="$GREP -E"
4323 4314
    else
4324
-     # Extract the first word of "egrep" to use in msg output
4325
-if test -z "$EGREP"; then
4326
-set dummy egrep; ac_prog_name=$2
4327
-if test "${ac_cv_path_EGREP+set}" = set; then
4328
-  echo $ECHO_N "(cached) $ECHO_C" >&6
4329
-else
4315
+     if test -z "$EGREP"; then
4330 4316
   ac_path_EGREP_found=false
4331
-# Loop through the user's path and test for each of PROGNAME-LIST
4332
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4317
+  # Loop through the user's path and test for each of PROGNAME-LIST
4318
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4333 4319
 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
4334 4320
 do
4335 4321
   IFS=$as_save_IFS
4336 4322
   test -z "$as_dir" && as_dir=.
4337 4323
   for ac_prog in egrep; do
4338
-  for ac_exec_ext in '' $ac_executable_extensions; do
4339
-    ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
4340
-    { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
4341
-    # Check for GNU ac_path_EGREP and select it if it is found.
4324
+    for ac_exec_ext in '' $ac_executable_extensions; do
4325
+      ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
4326
+      { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
4327
+# Check for GNU ac_path_EGREP and select it if it is found.
4342 4328
   # Check for GNU $ac_path_EGREP
4343 4329
 case `"$ac_path_EGREP" --version 2>&1` in
4344 4330
 *GNU*)
4345 4331
   ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
4346 4332
 *)
4347 4333
   ac_count=0
4348
-  echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
4334
+  $as_echo_n 0123456789 >"conftest.in"
4349 4335
   while :
4350 4336
   do
4351 4337
     cat "conftest.in" "conftest.in" >"conftest.tmp"
4352 4338
     mv "conftest.tmp" "conftest.in"
4353 4339
     cp "conftest.in" "conftest.nl"
4354
-    echo 'EGREP' >> "conftest.nl"
4340
+    $as_echo 'EGREP' >> "conftest.nl"
4355 4341
     "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
4356 4342
     diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
4357 4343
     ac_count=`expr $ac_count + 1`
... ...
@@ -4366,75 +4513,61 @@ case `"$ac_path_EGREP" --version 2>&1` in
4366 4366
   rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
4367 4367
 esac
4368 4368
 
4369
-
4370
-    $ac_path_EGREP_found && break 3
4369
+      $ac_path_EGREP_found && break 3
4370
+    done
4371 4371
   done
4372 4372
 done
4373
-
4374
-done
4375 4373
 IFS=$as_save_IFS
4376
-
4377
-
4378
-fi
4379
-
4380
-EGREP="$ac_cv_path_EGREP"
4381
-if test -z "$EGREP"; then
4382
-  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
4383
-echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
4374
+  if test -z "$ac_cv_path_EGREP"; then
4375
+    { { $as_echo "$as_me:$LINENO: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
4376
+$as_echo "$as_me: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
4384 4377
    { (exit 1); exit 1; }; }
4385
-fi
4386
-
4378
+  fi
4387 4379
 else
4388 4380
   ac_cv_path_EGREP=$EGREP
4389 4381
 fi
4390 4382
 
4391
-
4392 4383
    fi
4393 4384
 fi
4394
-{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5
4395
-echo "${ECHO_T}$ac_cv_path_EGREP" >&6; }
4385
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5
4386
+$as_echo "$ac_cv_path_EGREP" >&6; }
4396 4387
  EGREP="$ac_cv_path_EGREP"
4397 4388
 
4398 4389
 
4399
-{ echo "$as_me:$LINENO: checking for fgrep" >&5
4400
-echo $ECHO_N "checking for fgrep... $ECHO_C" >&6; }
4390
+{ $as_echo "$as_me:$LINENO: checking for fgrep" >&5
4391
+$as_echo_n "checking for fgrep... " >&6; }
4401 4392
 if test "${ac_cv_path_FGREP+set}" = set; then
4402
-  echo $ECHO_N "(cached) $ECHO_C" >&6
4393
+  $as_echo_n "(cached) " >&6
4403 4394
 else
4404 4395
   if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1
4405 4396
    then ac_cv_path_FGREP="$GREP -F"
4406 4397
    else
4407
-     # Extract the first word of "fgrep" to use in msg output
4408
-if test -z "$FGREP"; then
4409
-set dummy fgrep; ac_prog_name=$2
4410
-if test "${ac_cv_path_FGREP+set}" = set; then
4411
-  echo $ECHO_N "(cached) $ECHO_C" >&6
4412
-else
4398
+     if test -z "$FGREP"; then
4413 4399
   ac_path_FGREP_found=false
4414
-# Loop through the user's path and test for each of PROGNAME-LIST
4415
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4400
+  # Loop through the user's path and test for each of PROGNAME-LIST
4401
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4416 4402
 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
4417 4403
 do
4418 4404
   IFS=$as_save_IFS
4419 4405
   test -z "$as_dir" && as_dir=.
4420 4406
   for ac_prog in fgrep; do
4421
-  for ac_exec_ext in '' $ac_executable_extensions; do
4422
-    ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext"
4423
-    { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue
4424
-    # Check for GNU ac_path_FGREP and select it if it is found.
4407
+    for ac_exec_ext in '' $ac_executable_extensions; do
4408
+      ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext"
4409
+      { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue
4410
+# Check for GNU ac_path_FGREP and select it if it is found.
4425 4411
   # Check for GNU $ac_path_FGREP
4426 4412
 case `"$ac_path_FGREP" --version 2>&1` in
4427 4413
 *GNU*)
4428 4414
   ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;;
4429 4415
 *)
4430 4416
   ac_count=0
4431
-  echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
4417
+  $as_echo_n 0123456789 >"conftest.in"
4432 4418
   while :
4433 4419
   do
4434 4420
     cat "conftest.in" "conftest.in" >"conftest.tmp"
4435 4421
     mv "conftest.tmp" "conftest.in"
4436 4422
     cp "conftest.in" "conftest.nl"
4437
-    echo 'FGREP' >> "conftest.nl"
4423
+    $as_echo 'FGREP' >> "conftest.nl"
4438 4424
     "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break
4439 4425
     diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
4440 4426
     ac_count=`expr $ac_count + 1`
... ...
@@ -4449,33 +4582,24 @@ case `"$ac_path_FGREP" --version 2>&1` in
4449 4449
   rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
4450 4450
 esac
4451 4451
 
4452
-
4453
-    $ac_path_FGREP_found && break 3
4452
+      $ac_path_FGREP_found && break 3
4453
+    done
4454 4454
   done
4455 4455
 done
4456
-
4457
-done
4458 4456
 IFS=$as_save_IFS
4459
-
4460
-
4461
-fi
4462
-
4463
-FGREP="$ac_cv_path_FGREP"
4464
-if test -z "$FGREP"; then
4465
-  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
4466
-echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
4457
+  if test -z "$ac_cv_path_FGREP"; then
4458
+    { { $as_echo "$as_me:$LINENO: error: no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
4459
+$as_echo "$as_me: error: no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
4467 4460
    { (exit 1); exit 1; }; }
4468
-fi
4469
-
4461
+  fi
4470 4462
 else
4471 4463
   ac_cv_path_FGREP=$FGREP
4472 4464
 fi
4473 4465
 
4474
-
4475 4466
    fi
4476 4467
 fi
4477
-{ echo "$as_me:$LINENO: result: $ac_cv_path_FGREP" >&5
4478
-echo "${ECHO_T}$ac_cv_path_FGREP" >&6; }
4468
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_FGREP" >&5
4469
+$as_echo "$ac_cv_path_FGREP" >&6; }
4479 4470
  FGREP="$ac_cv_path_FGREP"
4480 4471
 
4481 4472
 
... ...
@@ -4509,8 +4633,8 @@ fi
4509 4509
 ac_prog=ld
4510 4510
 if test "$GCC" = yes; then
4511 4511
   # Check if gcc -print-prog-name=ld gives a path.
4512
-  { echo "$as_me:$LINENO: checking for ld used by $CC" >&5
4513
-echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; }
4512
+  { $as_echo "$as_me:$LINENO: checking for ld used by $CC" >&5
4513
+$as_echo_n "checking for ld used by $CC... " >&6; }
4514 4514
   case $host in
4515 4515
   *-*-mingw*)
4516 4516
     # gcc leaves a trailing carriage return which upsets mingw
... ...
@@ -4539,14 +4663,14 @@ echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; }
4539 4539
     ;;
4540 4540
   esac
4541 4541
 elif test "$with_gnu_ld" = yes; then
4542
-  { echo "$as_me:$LINENO: checking for GNU ld" >&5
4543
-echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; }
4542
+  { $as_echo "$as_me:$LINENO: checking for GNU ld" >&5
4543
+$as_echo_n "checking for GNU ld... " >&6; }
4544 4544
 else
4545
-  { echo "$as_me:$LINENO: checking for non-GNU ld" >&5
4546
-echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; }
4545
+  { $as_echo "$as_me:$LINENO: checking for non-GNU ld" >&5
4546
+$as_echo_n "checking for non-GNU ld... " >&6; }
4547 4547
 fi
4548 4548
 if test "${lt_cv_path_LD+set}" = set; then
4549
-  echo $ECHO_N "(cached) $ECHO_C" >&6
4549
+  $as_echo_n "(cached) " >&6
4550 4550
 else
4551 4551
   if test -z "$LD"; then
4552 4552
   lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
... ...
@@ -4576,19 +4700,19 @@ fi
4576 4576
 
4577 4577
 LD="$lt_cv_path_LD"
4578 4578
 if test -n "$LD"; then
4579
-  { echo "$as_me:$LINENO: result: $LD" >&5
4580
-echo "${ECHO_T}$LD" >&6; }
4579
+  { $as_echo "$as_me:$LINENO: result: $LD" >&5
4580
+$as_echo "$LD" >&6; }
4581 4581
 else
4582
-  { echo "$as_me:$LINENO: result: no" >&5
4583
-echo "${ECHO_T}no" >&6; }
4582
+  { $as_echo "$as_me:$LINENO: result: no" >&5
4583
+$as_echo "no" >&6; }
4584 4584
 fi
4585
-test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
4586
-echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
4585
+test -z "$LD" && { { $as_echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
4586
+$as_echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
4587 4587
    { (exit 1); exit 1; }; }
4588
-{ echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
4589
-echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; }
4588
+{ $as_echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
4589
+$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
4590 4590
 if test "${lt_cv_prog_gnu_ld+set}" = set; then
4591
-  echo $ECHO_N "(cached) $ECHO_C" >&6
4591
+  $as_echo_n "(cached) " >&6
4592 4592
 else
4593 4593
   # I'd rather use --version here, but apparently some GNU lds only accept -v.
4594 4594
 case `$LD -v 2>&1 </dev/null` in
... ...
@@ -4600,8 +4724,8 @@ case `$LD -v 2>&1 </dev/null` in
4600 4600
   ;;
4601 4601
 esac
4602 4602
 fi
4603
-{ echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5
4604
-echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6; }
4603
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5
4604
+$as_echo "$lt_cv_prog_gnu_ld" >&6; }
4605 4605
 with_gnu_ld=$lt_cv_prog_gnu_ld
4606 4606
 
4607 4607
 
... ...
@@ -4612,10 +4736,10 @@ with_gnu_ld=$lt_cv_prog_gnu_ld
4612 4612
 
4613 4613
 
4614 4614
 
4615
-{ echo "$as_me:$LINENO: checking for BSD- or MS-compatible name lister (nm)" >&5
4616
-echo $ECHO_N "checking for BSD- or MS-compatible name lister (nm)... $ECHO_C" >&6; }
4615
+{ $as_echo "$as_me:$LINENO: checking for BSD- or MS-compatible name lister (nm)" >&5
4616
+$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; }
4617 4617
 if test "${lt_cv_path_NM+set}" = set; then
4618
-  echo $ECHO_N "(cached) $ECHO_C" >&6
4618
+  $as_echo_n "(cached) " >&6
4619 4619
 else
4620 4620
   if test -n "$NM"; then
4621 4621
   # Let the user override the test.
... ...
@@ -4661,8 +4785,8 @@ else
4661 4661
   : ${lt_cv_path_NM=no}
4662 4662
 fi
4663 4663
 fi
4664
-{ echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5
4665
-echo "${ECHO_T}$lt_cv_path_NM" >&6; }
4664
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5
4665
+$as_echo "$lt_cv_path_NM" >&6; }
4666 4666
 if test "$lt_cv_path_NM" != "no"; then
4667 4667
   NM="$lt_cv_path_NM"
4668 4668
 else
... ...
@@ -4672,10 +4796,10 @@ else
4672 4672
   do
4673 4673
     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
4674 4674
 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
4675
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
4676
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
4675
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
4676
+$as_echo_n "checking for $ac_word... " >&6; }
4677 4677
 if test "${ac_cv_prog_DUMPBIN+set}" = set; then
4678
-  echo $ECHO_N "(cached) $ECHO_C" >&6
4678
+  $as_echo_n "(cached) " >&6
4679 4679
 else
4680 4680
   if test -n "$DUMPBIN"; then
4681 4681
   ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test.
... ...
@@ -4688,7 +4812,7 @@ do
4688 4688
   for ac_exec_ext in '' $ac_executable_extensions; do
4689 4689
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
4690 4690
     ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog"
4691
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4691
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4692 4692
     break 2
4693 4693
   fi
4694 4694
 done
... ...
@@ -4699,11 +4823,11 @@ fi
4699 4699
 fi
4700 4700
 DUMPBIN=$ac_cv_prog_DUMPBIN
4701 4701
 if test -n "$DUMPBIN"; then
4702
-  { echo "$as_me:$LINENO: result: $DUMPBIN" >&5
4703
-echo "${ECHO_T}$DUMPBIN" >&6; }
4702
+  { $as_echo "$as_me:$LINENO: result: $DUMPBIN" >&5
4703
+$as_echo "$DUMPBIN" >&6; }
4704 4704
 else
4705
-  { echo "$as_me:$LINENO: result: no" >&5
4706
-echo "${ECHO_T}no" >&6; }
4705
+  { $as_echo "$as_me:$LINENO: result: no" >&5
4706
+$as_echo "no" >&6; }
4707 4707
 fi
4708 4708
 
4709 4709
 
... ...
@@ -4716,10 +4840,10 @@ if test -z "$DUMPBIN"; then
4716 4716
 do
4717 4717
   # Extract the first word of "$ac_prog", so it can be a program name with args.
4718 4718
 set dummy $ac_prog; ac_word=$2
4719
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
4720
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
4719
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
4720
+$as_echo_n "checking for $ac_word... " >&6; }
4721 4721
 if test "${ac_cv_prog_ac_ct_DUMPBIN+set}" = set; then
4722
-  echo $ECHO_N "(cached) $ECHO_C" >&6
4722
+  $as_echo_n "(cached) " >&6
4723 4723
 else
4724 4724
   if test -n "$ac_ct_DUMPBIN"; then
4725 4725
   ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test.
... ...
@@ -4732,7 +4856,7 @@ do
4732 4732
   for ac_exec_ext in '' $ac_executable_extensions; do
4733 4733
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
4734 4734
     ac_cv_prog_ac_ct_DUMPBIN="$ac_prog"
4735
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4735
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4736 4736
     break 2
4737 4737
   fi
4738 4738
 done
... ...
@@ -4743,11 +4867,11 @@ fi
4743 4743
 fi
4744 4744
 ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN
4745 4745
 if test -n "$ac_ct_DUMPBIN"; then
4746
-  { echo "$as_me:$LINENO: result: $ac_ct_DUMPBIN" >&5
4747
-echo "${ECHO_T}$ac_ct_DUMPBIN" >&6; }
4746
+  { $as_echo "$as_me:$LINENO: result: $ac_ct_DUMPBIN" >&5
4747
+$as_echo "$ac_ct_DUMPBIN" >&6; }
4748 4748
 else
4749
-  { echo "$as_me:$LINENO: result: no" >&5
4750
-echo "${ECHO_T}no" >&6; }
4749
+  { $as_echo "$as_me:$LINENO: result: no" >&5
4750
+$as_echo "no" >&6; }
4751 4751
 fi
4752 4752
 
4753 4753
 
... ...
@@ -4759,12 +4883,8 @@ done
4759 4759
   else
4760 4760
     case $cross_compiling:$ac_tool_warned in
4761 4761
 yes:)
4762
-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
4763
-whose name does not start with the host triplet.  If you think this
4764
-configuration is useful to you, please write to autoconf@gnu.org." >&5
4765
-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
4766
-whose name does not start with the host triplet.  If you think this
4767
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
4762
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
4763
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
4768 4764
 ac_tool_warned=yes ;;
4769 4765
 esac
4770 4766
     DUMPBIN=$ac_ct_DUMPBIN
... ...
@@ -4783,34 +4903,34 @@ test -z "$NM" && NM=nm
4783 4783
 
4784 4784
 
4785 4785
 
4786
-{ echo "$as_me:$LINENO: checking the name lister ($NM) interface" >&5
4787
-echo $ECHO_N "checking the name lister ($NM) interface... $ECHO_C" >&6; }
4786
+{ $as_echo "$as_me:$LINENO: checking the name lister ($NM) interface" >&5
4787
+$as_echo_n "checking the name lister ($NM) interface... " >&6; }
4788 4788
 if test "${lt_cv_nm_interface+set}" = set; then
4789
-  echo $ECHO_N "(cached) $ECHO_C" >&6
4789
+  $as_echo_n "(cached) " >&6
4790 4790
 else
4791 4791
   lt_cv_nm_interface="BSD nm"
4792 4792
   echo "int some_variable = 0;" > conftest.$ac_ext
4793
-  (eval echo "\"\$as_me:4793: $ac_compile\"" >&5)
4793
+  (eval echo "\"\$as_me:4913: $ac_compile\"" >&5)
4794 4794
   (eval "$ac_compile" 2>conftest.err)
4795 4795
   cat conftest.err >&5
4796
-  (eval echo "\"\$as_me:4796: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
4796
+  (eval echo "\"\$as_me:4916: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
4797 4797
   (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
4798 4798
   cat conftest.err >&5
4799
-  (eval echo "\"\$as_me:4799: output\"" >&5)
4799
+  (eval echo "\"\$as_me:4919: output\"" >&5)
4800 4800
   cat conftest.out >&5
4801 4801
   if $GREP 'External.*some_variable' conftest.out > /dev/null; then
4802 4802
     lt_cv_nm_interface="MS dumpbin"
4803 4803
   fi
4804 4804
   rm -f conftest*
4805 4805
 fi
4806
-{ echo "$as_me:$LINENO: result: $lt_cv_nm_interface" >&5
4807
-echo "${ECHO_T}$lt_cv_nm_interface" >&6; }
4806
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_nm_interface" >&5
4807
+$as_echo "$lt_cv_nm_interface" >&6; }
4808 4808
 
4809 4809
 # find the maximum length of command line arguments
4810
-{ echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5
4811
-echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6; }
4810
+{ $as_echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5
4811
+$as_echo_n "checking the maximum length of command line arguments... " >&6; }
4812 4812
 if test "${lt_cv_sys_max_cmd_len+set}" = set; then
4813
-  echo $ECHO_N "(cached) $ECHO_C" >&6
4813
+  $as_echo_n "(cached) " >&6
4814 4814
 else
4815 4815
     i=0
4816 4816
   teststring="ABCD"
... ...
@@ -4927,11 +5047,11 @@ else
4927 4927
 fi
4928 4928
 
4929 4929
 if test -n $lt_cv_sys_max_cmd_len ; then
4930
-  { echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5
4931
-echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6; }
4930
+  { $as_echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5
4931
+$as_echo "$lt_cv_sys_max_cmd_len" >&6; }
4932 4932
 else
4933
-  { echo "$as_me:$LINENO: result: none" >&5
4934
-echo "${ECHO_T}none" >&6; }
4933
+  { $as_echo "$as_me:$LINENO: result: none" >&5
4934
+$as_echo "none" >&6; }
4935 4935
 fi
4936 4936
 max_cmd_len=$lt_cv_sys_max_cmd_len
4937 4937
 
... ...
@@ -4944,8 +5064,8 @@ max_cmd_len=$lt_cv_sys_max_cmd_len
4944 4944
 : ${MV="mv -f"}
4945 4945
 : ${RM="rm -f"}
4946 4946
 
4947
-{ echo "$as_me:$LINENO: checking whether the shell understands some XSI constructs" >&5
4948
-echo $ECHO_N "checking whether the shell understands some XSI constructs... $ECHO_C" >&6; }
4947
+{ $as_echo "$as_me:$LINENO: checking whether the shell understands some XSI constructs" >&5
4948
+$as_echo_n "checking whether the shell understands some XSI constructs... " >&6; }
4949 4949
 # Try some XSI features
4950 4950
 xsi_shell=no
4951 4951
 ( _lt_dummy="a/b/c"
... ...
@@ -4954,18 +5074,18 @@ xsi_shell=no
4954 4954
     && eval 'test $(( 1 + 1 )) -eq 2 \
4955 4955
     && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \
4956 4956
   && xsi_shell=yes
4957
-{ echo "$as_me:$LINENO: result: $xsi_shell" >&5
4958
-echo "${ECHO_T}$xsi_shell" >&6; }
4957
+{ $as_echo "$as_me:$LINENO: result: $xsi_shell" >&5
4958
+$as_echo "$xsi_shell" >&6; }
4959 4959
 
4960 4960
 
4961
-{ echo "$as_me:$LINENO: checking whether the shell understands \"+=\"" >&5
4962
-echo $ECHO_N "checking whether the shell understands \"+=\"... $ECHO_C" >&6; }
4961
+{ $as_echo "$as_me:$LINENO: checking whether the shell understands \"+=\"" >&5
4962
+$as_echo_n "checking whether the shell understands \"+=\"... " >&6; }
4963 4963
 lt_shell_append=no
4964 4964
 ( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \
4965 4965
     >/dev/null 2>&1 \
4966 4966
   && lt_shell_append=yes
4967
-{ echo "$as_me:$LINENO: result: $lt_shell_append" >&5
4968
-echo "${ECHO_T}$lt_shell_append" >&6; }
4967
+{ $as_echo "$as_me:$LINENO: result: $lt_shell_append" >&5
4968
+$as_echo "$lt_shell_append" >&6; }
4969 4969
 
4970 4970
 
4971 4971
 if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
... ...
@@ -4999,15 +5119,15 @@ esac
4999 4999
 
5000 5000
 
5001 5001
 
5002
-{ echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5
5003
-echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6; }
5002
+{ $as_echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5
5003
+$as_echo_n "checking for $LD option to reload object files... " >&6; }
5004 5004
 if test "${lt_cv_ld_reload_flag+set}" = set; then
5005
-  echo $ECHO_N "(cached) $ECHO_C" >&6
5005
+  $as_echo_n "(cached) " >&6
5006 5006
 else
5007 5007
   lt_cv_ld_reload_flag='-r'
5008 5008
 fi
5009
-{ echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5
5010
-echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6; }
5009
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5
5010
+$as_echo "$lt_cv_ld_reload_flag" >&6; }
5011 5011
 reload_flag=$lt_cv_ld_reload_flag
5012 5012
 case $reload_flag in
5013 5013
 "" | " "*) ;;
... ...
@@ -5035,10 +5155,10 @@ esac
5035 5035
 if test -n "$ac_tool_prefix"; then
5036 5036
   # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args.
5037 5037
 set dummy ${ac_tool_prefix}objdump; ac_word=$2
5038
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
5039
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5038
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
5039
+$as_echo_n "checking for $ac_word... " >&6; }
5040 5040
 if test "${ac_cv_prog_OBJDUMP+set}" = set; then
5041
-  echo $ECHO_N "(cached) $ECHO_C" >&6
5041
+  $as_echo_n "(cached) " >&6
5042 5042
 else
5043 5043
   if test -n "$OBJDUMP"; then
5044 5044
   ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test.
... ...
@@ -5051,7 +5171,7 @@ do
5051 5051
   for ac_exec_ext in '' $ac_executable_extensions; do
5052 5052
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5053 5053
     ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump"
5054
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5054
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5055 5055
     break 2
5056 5056
   fi
5057 5057
 done
... ...
@@ -5062,11 +5182,11 @@ fi
5062 5062
 fi
5063 5063
 OBJDUMP=$ac_cv_prog_OBJDUMP
5064 5064
 if test -n "$OBJDUMP"; then
5065
-  { echo "$as_me:$LINENO: result: $OBJDUMP" >&5
5066
-echo "${ECHO_T}$OBJDUMP" >&6; }
5065
+  { $as_echo "$as_me:$LINENO: result: $OBJDUMP" >&5
5066
+$as_echo "$OBJDUMP" >&6; }
5067 5067
 else
5068
-  { echo "$as_me:$LINENO: result: no" >&5
5069
-echo "${ECHO_T}no" >&6; }
5068
+  { $as_echo "$as_me:$LINENO: result: no" >&5
5069
+$as_echo "no" >&6; }
5070 5070
 fi
5071 5071
 
5072 5072
 
... ...
@@ -5075,10 +5195,10 @@ if test -z "$ac_cv_prog_OBJDUMP"; then
5075 5075
   ac_ct_OBJDUMP=$OBJDUMP
5076 5076
   # Extract the first word of "objdump", so it can be a program name with args.
5077 5077
 set dummy objdump; ac_word=$2
5078
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
5079
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5078
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
5079
+$as_echo_n "checking for $ac_word... " >&6; }
5080 5080
 if test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then
5081
-  echo $ECHO_N "(cached) $ECHO_C" >&6
5081
+  $as_echo_n "(cached) " >&6
5082 5082
 else
5083 5083
   if test -n "$ac_ct_OBJDUMP"; then
5084 5084
   ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test.
... ...
@@ -5091,7 +5211,7 @@ do
5091 5091
   for ac_exec_ext in '' $ac_executable_extensions; do
5092 5092
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5093 5093
     ac_cv_prog_ac_ct_OBJDUMP="objdump"
5094
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5094
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5095 5095
     break 2
5096 5096
   fi
5097 5097
 done
... ...
@@ -5102,11 +5222,11 @@ fi
5102 5102
 fi
5103 5103
 ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP
5104 5104
 if test -n "$ac_ct_OBJDUMP"; then
5105
-  { echo "$as_me:$LINENO: result: $ac_ct_OBJDUMP" >&5
5106
-echo "${ECHO_T}$ac_ct_OBJDUMP" >&6; }
5105
+  { $as_echo "$as_me:$LINENO: result: $ac_ct_OBJDUMP" >&5
5106
+$as_echo "$ac_ct_OBJDUMP" >&6; }
5107 5107
 else
5108
-  { echo "$as_me:$LINENO: result: no" >&5
5109
-echo "${ECHO_T}no" >&6; }
5108
+  { $as_echo "$as_me:$LINENO: result: no" >&5
5109
+$as_echo "no" >&6; }
5110 5110
 fi
5111 5111
 
5112 5112
   if test "x$ac_ct_OBJDUMP" = x; then
... ...
@@ -5114,12 +5234,8 @@ fi
5114 5114
   else
5115 5115
     case $cross_compiling:$ac_tool_warned in
5116 5116
 yes:)
5117
-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
5118
-whose name does not start with the host triplet.  If you think this
5119
-configuration is useful to you, please write to autoconf@gnu.org." >&5
5120
-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
5121
-whose name does not start with the host triplet.  If you think this
5122
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
5117
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
5118
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
5123 5119
 ac_tool_warned=yes ;;
5124 5120
 esac
5125 5121
     OBJDUMP=$ac_ct_OBJDUMP
... ...
@@ -5138,10 +5254,10 @@ test -z "$OBJDUMP" && OBJDUMP=objdump
5138 5138
 
5139 5139
 
5140 5140
 
5141
-{ echo "$as_me:$LINENO: checking how to recognize dependent libraries" >&5
5142
-echo $ECHO_N "checking how to recognize dependent libraries... $ECHO_C" >&6; }
5141
+{ $as_echo "$as_me:$LINENO: checking how to recognize dependent libraries" >&5
5142
+$as_echo_n "checking how to recognize dependent libraries... " >&6; }
5143 5143
 if test "${lt_cv_deplibs_check_method+set}" = set; then
5144
-  echo $ECHO_N "(cached) $ECHO_C" >&6
5144
+  $as_echo_n "(cached) " >&6
5145 5145
 else
5146 5146
   lt_cv_file_magic_cmd='$MAGIC_CMD'
5147 5147
 lt_cv_file_magic_test_file=
... ...
@@ -5334,8 +5450,8 @@ tpf*)
5334 5334
 esac
5335 5335
 
5336 5336
 fi
5337
-{ echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5
5338
-echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6; }
5337
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5
5338
+$as_echo "$lt_cv_deplibs_check_method" >&6; }
5339 5339
 file_magic_cmd=$lt_cv_file_magic_cmd
5340 5340
 deplibs_check_method=$lt_cv_deplibs_check_method
5341 5341
 test -z "$deplibs_check_method" && deplibs_check_method=unknown
... ...
@@ -5354,10 +5470,10 @@ test -z "$deplibs_check_method" && deplibs_check_method=unknown
5354 5354
 if test -n "$ac_tool_prefix"; then
5355 5355
   # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
5356 5356
 set dummy ${ac_tool_prefix}ar; ac_word=$2
5357
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
5358
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5357
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
5358
+$as_echo_n "checking for $ac_word... " >&6; }
5359 5359
 if test "${ac_cv_prog_AR+set}" = set; then
5360
-  echo $ECHO_N "(cached) $ECHO_C" >&6
5360
+  $as_echo_n "(cached) " >&6
5361 5361
 else
5362 5362
   if test -n "$AR"; then
5363 5363
   ac_cv_prog_AR="$AR" # Let the user override the test.
... ...
@@ -5370,7 +5486,7 @@ do
5370 5370
   for ac_exec_ext in '' $ac_executable_extensions; do
5371 5371
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5372 5372
     ac_cv_prog_AR="${ac_tool_prefix}ar"
5373
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5373
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5374 5374
     break 2
5375 5375
   fi
5376 5376
 done
... ...
@@ -5381,11 +5497,11 @@ fi
5381 5381
 fi
5382 5382
 AR=$ac_cv_prog_AR
5383 5383
 if test -n "$AR"; then
5384
-  { echo "$as_me:$LINENO: result: $AR" >&5
5385
-echo "${ECHO_T}$AR" >&6; }
5384
+  { $as_echo "$as_me:$LINENO: result: $AR" >&5
5385
+$as_echo "$AR" >&6; }
5386 5386
 else
5387
-  { echo "$as_me:$LINENO: result: no" >&5
5388
-echo "${ECHO_T}no" >&6; }
5387
+  { $as_echo "$as_me:$LINENO: result: no" >&5
5388
+$as_echo "no" >&6; }
5389 5389
 fi
5390 5390
 
5391 5391
 
... ...
@@ -5394,10 +5510,10 @@ if test -z "$ac_cv_prog_AR"; then
5394 5394
   ac_ct_AR=$AR
5395 5395
   # Extract the first word of "ar", so it can be a program name with args.
5396 5396
 set dummy ar; ac_word=$2
5397
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
5398
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5397
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
5398
+$as_echo_n "checking for $ac_word... " >&6; }
5399 5399
 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
5400
-  echo $ECHO_N "(cached) $ECHO_C" >&6
5400
+  $as_echo_n "(cached) " >&6
5401 5401
 else
5402 5402
   if test -n "$ac_ct_AR"; then
5403 5403
   ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test.
... ...
@@ -5410,7 +5526,7 @@ do
5410 5410
   for ac_exec_ext in '' $ac_executable_extensions; do
5411 5411
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5412 5412
     ac_cv_prog_ac_ct_AR="ar"
5413
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5413
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5414 5414
     break 2
5415 5415
   fi
5416 5416
 done
... ...
@@ -5421,11 +5537,11 @@ fi
5421 5421
 fi
5422 5422
 ac_ct_AR=$ac_cv_prog_ac_ct_AR
5423 5423
 if test -n "$ac_ct_AR"; then
5424
-  { echo "$as_me:$LINENO: result: $ac_ct_AR" >&5
5425
-echo "${ECHO_T}$ac_ct_AR" >&6; }
5424
+  { $as_echo "$as_me:$LINENO: result: $ac_ct_AR" >&5
5425
+$as_echo "$ac_ct_AR" >&6; }
5426 5426
 else
5427
-  { echo "$as_me:$LINENO: result: no" >&5
5428
-echo "${ECHO_T}no" >&6; }
5427
+  { $as_echo "$as_me:$LINENO: result: no" >&5
5428
+$as_echo "no" >&6; }
5429 5429
 fi
5430 5430
 
5431 5431
   if test "x$ac_ct_AR" = x; then
... ...
@@ -5433,12 +5549,8 @@ fi
5433 5433
   else
5434 5434
     case $cross_compiling:$ac_tool_warned in
5435 5435
 yes:)
5436
-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
5437
-whose name does not start with the host triplet.  If you think this
5438
-configuration is useful to you, please write to autoconf@gnu.org." >&5
5439
-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
5440
-whose name does not start with the host triplet.  If you think this
5441
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
5436
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
5437
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
5442 5438
 ac_tool_warned=yes ;;
5443 5439
 esac
5444 5440
     AR=$ac_ct_AR
... ...
@@ -5463,10 +5575,10 @@ test -z "$AR_FLAGS" && AR_FLAGS=cru
5463 5463
 if test -n "$ac_tool_prefix"; then
5464 5464
   # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
5465 5465
 set dummy ${ac_tool_prefix}strip; ac_word=$2
5466
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
5467
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5466
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
5467
+$as_echo_n "checking for $ac_word... " >&6; }
5468 5468
 if test "${ac_cv_prog_STRIP+set}" = set; then
5469
-  echo $ECHO_N "(cached) $ECHO_C" >&6
5469
+  $as_echo_n "(cached) " >&6
5470 5470
 else
5471 5471
   if test -n "$STRIP"; then
5472 5472
   ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
... ...
@@ -5479,7 +5591,7 @@ do
5479 5479
   for ac_exec_ext in '' $ac_executable_extensions; do
5480 5480
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5481 5481
     ac_cv_prog_STRIP="${ac_tool_prefix}strip"
5482
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5482
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5483 5483
     break 2
5484 5484
   fi
5485 5485
 done
... ...
@@ -5490,11 +5602,11 @@ fi
5490 5490
 fi
5491 5491
 STRIP=$ac_cv_prog_STRIP
5492 5492
 if test -n "$STRIP"; then
5493
-  { echo "$as_me:$LINENO: result: $STRIP" >&5
5494
-echo "${ECHO_T}$STRIP" >&6; }
5493
+  { $as_echo "$as_me:$LINENO: result: $STRIP" >&5
5494
+$as_echo "$STRIP" >&6; }
5495 5495
 else
5496
-  { echo "$as_me:$LINENO: result: no" >&5
5497
-echo "${ECHO_T}no" >&6; }
5496
+  { $as_echo "$as_me:$LINENO: result: no" >&5
5497
+$as_echo "no" >&6; }
5498 5498
 fi
5499 5499
 
5500 5500
 
... ...
@@ -5503,10 +5615,10 @@ if test -z "$ac_cv_prog_STRIP"; then
5503 5503
   ac_ct_STRIP=$STRIP
5504 5504
   # Extract the first word of "strip", so it can be a program name with args.
5505 5505
 set dummy strip; ac_word=$2
5506
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
5507
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5506
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
5507
+$as_echo_n "checking for $ac_word... " >&6; }
5508 5508
 if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
5509
-  echo $ECHO_N "(cached) $ECHO_C" >&6
5509
+  $as_echo_n "(cached) " >&6
5510 5510
 else
5511 5511
   if test -n "$ac_ct_STRIP"; then
5512 5512
   ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
... ...
@@ -5519,7 +5631,7 @@ do
5519 5519
   for ac_exec_ext in '' $ac_executable_extensions; do
5520 5520
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5521 5521
     ac_cv_prog_ac_ct_STRIP="strip"
5522
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5522
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5523 5523
     break 2
5524 5524
   fi
5525 5525
 done
... ...
@@ -5530,11 +5642,11 @@ fi
5530 5530
 fi
5531 5531
 ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
5532 5532
 if test -n "$ac_ct_STRIP"; then
5533
-  { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
5534
-echo "${ECHO_T}$ac_ct_STRIP" >&6; }
5533
+  { $as_echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
5534
+$as_echo "$ac_ct_STRIP" >&6; }
5535 5535
 else
5536
-  { echo "$as_me:$LINENO: result: no" >&5
5537
-echo "${ECHO_T}no" >&6; }
5536
+  { $as_echo "$as_me:$LINENO: result: no" >&5
5537
+$as_echo "no" >&6; }
5538 5538
 fi
5539 5539
 
5540 5540
   if test "x$ac_ct_STRIP" = x; then
... ...
@@ -5542,12 +5654,8 @@ fi
5542 5542
   else
5543 5543
     case $cross_compiling:$ac_tool_warned in
5544 5544
 yes:)
5545
-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
5546
-whose name does not start with the host triplet.  If you think this
5547
-configuration is useful to you, please write to autoconf@gnu.org." >&5
5548
-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
5549
-whose name does not start with the host triplet.  If you think this
5550
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
5545
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
5546
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
5551 5547
 ac_tool_warned=yes ;;
5552 5548
 esac
5553 5549
     STRIP=$ac_ct_STRIP
... ...
@@ -5566,10 +5674,10 @@ test -z "$STRIP" && STRIP=:
5566 5566
 if test -n "$ac_tool_prefix"; then
5567 5567
   # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
5568 5568
 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
5569
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
5570
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5569
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
5570
+$as_echo_n "checking for $ac_word... " >&6; }
5571 5571
 if test "${ac_cv_prog_RANLIB+set}" = set; then
5572
-  echo $ECHO_N "(cached) $ECHO_C" >&6
5572
+  $as_echo_n "(cached) " >&6
5573 5573
 else
5574 5574
   if test -n "$RANLIB"; then
5575 5575
   ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
... ...
@@ -5582,7 +5690,7 @@ do
5582 5582
   for ac_exec_ext in '' $ac_executable_extensions; do
5583 5583
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5584 5584
     ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
5585
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5585
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5586 5586
     break 2
5587 5587
   fi
5588 5588
 done
... ...
@@ -5593,11 +5701,11 @@ fi
5593 5593
 fi
5594 5594
 RANLIB=$ac_cv_prog_RANLIB
5595 5595
 if test -n "$RANLIB"; then
5596
-  { echo "$as_me:$LINENO: result: $RANLIB" >&5
5597
-echo "${ECHO_T}$RANLIB" >&6; }
5596
+  { $as_echo "$as_me:$LINENO: result: $RANLIB" >&5
5597
+$as_echo "$RANLIB" >&6; }
5598 5598
 else
5599
-  { echo "$as_me:$LINENO: result: no" >&5
5600
-echo "${ECHO_T}no" >&6; }
5599
+  { $as_echo "$as_me:$LINENO: result: no" >&5
5600
+$as_echo "no" >&6; }
5601 5601
 fi
5602 5602
 
5603 5603
 
... ...
@@ -5606,10 +5714,10 @@ if test -z "$ac_cv_prog_RANLIB"; then
5606 5606
   ac_ct_RANLIB=$RANLIB
5607 5607
   # Extract the first word of "ranlib", so it can be a program name with args.
5608 5608
 set dummy ranlib; ac_word=$2
5609
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
5610
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5609
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
5610
+$as_echo_n "checking for $ac_word... " >&6; }
5611 5611
 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
5612
-  echo $ECHO_N "(cached) $ECHO_C" >&6
5612
+  $as_echo_n "(cached) " >&6
5613 5613
 else
5614 5614
   if test -n "$ac_ct_RANLIB"; then
5615 5615
   ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
... ...
@@ -5622,7 +5730,7 @@ do
5622 5622
   for ac_exec_ext in '' $ac_executable_extensions; do
5623 5623
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5624 5624
     ac_cv_prog_ac_ct_RANLIB="ranlib"
5625
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5625
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5626 5626
     break 2
5627 5627
   fi
5628 5628
 done
... ...
@@ -5633,11 +5741,11 @@ fi
5633 5633
 fi
5634 5634
 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
5635 5635
 if test -n "$ac_ct_RANLIB"; then
5636
-  { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
5637
-echo "${ECHO_T}$ac_ct_RANLIB" >&6; }
5636
+  { $as_echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
5637
+$as_echo "$ac_ct_RANLIB" >&6; }
5638 5638
 else
5639
-  { echo "$as_me:$LINENO: result: no" >&5
5640
-echo "${ECHO_T}no" >&6; }
5639
+  { $as_echo "$as_me:$LINENO: result: no" >&5
5640
+$as_echo "no" >&6; }
5641 5641
 fi
5642 5642
 
5643 5643
   if test "x$ac_ct_RANLIB" = x; then
... ...
@@ -5645,12 +5753,8 @@ fi
5645 5645
   else
5646 5646
     case $cross_compiling:$ac_tool_warned in
5647 5647
 yes:)
5648
-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
5649
-whose name does not start with the host triplet.  If you think this
5650
-configuration is useful to you, please write to autoconf@gnu.org." >&5
5651
-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
5652
-whose name does not start with the host triplet.  If you think this
5653
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
5648
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
5649
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
5654 5650
 ac_tool_warned=yes ;;
5655 5651
 esac
5656 5652
     RANLIB=$ac_ct_RANLIB
... ...
@@ -5727,10 +5831,10 @@ compiler=$CC
5727 5727
 
5728 5728
 
5729 5729
 # Check for command to grab the raw symbol name followed by C symbol from nm.
5730
-{ echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5
5731
-echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6; }
5730
+{ $as_echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5
5731
+$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; }
5732 5732
 if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then
5733
-  echo $ECHO_N "(cached) $ECHO_C" >&6
5733
+  $as_echo_n "(cached) " >&6
5734 5734
 else
5735 5735
 
5736 5736
 # These are sane defaults that work on at least a few old systems.
... ...
@@ -5848,14 +5952,14 @@ _LT_EOF
5848 5848
   if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5849 5849
   (eval $ac_compile) 2>&5
5850 5850
   ac_status=$?
5851
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
5851
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
5852 5852
   (exit $ac_status); }; then
5853 5853
     # Now try to grab the symbols.
5854 5854
     nlist=conftest.nm
5855 5855
     if { (eval echo "$as_me:$LINENO: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5
5856 5856
   (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5
5857 5857
   ac_status=$?
5858
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
5858
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
5859 5859
   (exit $ac_status); } && test -s "$nlist"; then
5860 5860
       # Try sorting and uniquifying the output.
5861 5861
       if sort "$nlist" | uniq > "$nlist"T; then
... ...
@@ -5912,7 +6016,7 @@ _LT_EOF
5912 5912
 	  if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5913 5913
   (eval $ac_link) 2>&5
5914 5914
   ac_status=$?
5915
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
5915
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
5916 5916
   (exit $ac_status); } && test -s conftest${ac_exeext}; then
5917 5917
 	    pipe_works=yes
5918 5918
 	  fi
... ...
@@ -5947,11 +6051,11 @@ if test -z "$lt_cv_sys_global_symbol_pipe"; then
5947 5947
   lt_cv_sys_global_symbol_to_cdecl=
5948 5948
 fi
5949 5949
 if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
5950
-  { echo "$as_me:$LINENO: result: failed" >&5
5951
-echo "${ECHO_T}failed" >&6; }
5950
+  { $as_echo "$as_me:$LINENO: result: failed" >&5
5951
+$as_echo "failed" >&6; }
5952 5952
 else
5953
-  { echo "$as_me:$LINENO: result: ok" >&5
5954
-echo "${ECHO_T}ok" >&6; }
5953
+  { $as_echo "$as_me:$LINENO: result: ok" >&5
5954
+$as_echo "ok" >&6; }
5955 5955
 fi
5956 5956
 
5957 5957
 
... ...
@@ -5992,7 +6096,7 @@ ia64-*-hpux*)
5992 5992
   if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5993 5993
   (eval $ac_compile) 2>&5
5994 5994
   ac_status=$?
5995
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
5995
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
5996 5996
   (exit $ac_status); }; then
5997 5997
     case `/usr/bin/file conftest.$ac_objext` in
5998 5998
       *ELF-32*)
... ...
@@ -6007,11 +6111,11 @@ ia64-*-hpux*)
6007 6007
   ;;
6008 6008
 *-*-irix6*)
6009 6009
   # Find out which ABI we are using.
6010
-  echo '#line 6010 "configure"' > conftest.$ac_ext
6010
+  echo '#line 6114 "configure"' > conftest.$ac_ext
6011 6011
   if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6012 6012
   (eval $ac_compile) 2>&5
6013 6013
   ac_status=$?
6014
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
6014
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
6015 6015
   (exit $ac_status); }; then
6016 6016
     if test "$lt_cv_prog_gnu_ld" = yes; then
6017 6017
       case `/usr/bin/file conftest.$ac_objext` in
... ...
@@ -6049,7 +6153,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
6049 6049
   if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6050 6050
   (eval $ac_compile) 2>&5
6051 6051
   ac_status=$?
6052
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
6052
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
6053 6053
   (exit $ac_status); }; then
6054 6054
     case `/usr/bin/file conftest.o` in
6055 6055
       *32-bit*)
... ...
@@ -6099,10 +6203,10 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
6099 6099
   # On SCO OpenServer 5, we need -belf to get full-featured binaries.
6100 6100
   SAVE_CFLAGS="$CFLAGS"
6101 6101
   CFLAGS="$CFLAGS -belf"
6102
-  { echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5
6103
-echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6; }
6102
+  { $as_echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5
6103
+$as_echo_n "checking whether the C compiler needs -belf... " >&6; }
6104 6104
 if test "${lt_cv_cc_needs_belf+set}" = set; then
6105
-  echo $ECHO_N "(cached) $ECHO_C" >&6
6105
+  $as_echo_n "(cached) " >&6
6106 6106
 else
6107 6107
   ac_ext=c
6108 6108
 ac_cpp='$CPP $CPPFLAGS'
... ...
@@ -6131,26 +6235,30 @@ case "(($ac_try" in
6131 6131
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
6132 6132
   *) ac_try_echo=$ac_try;;
6133 6133
 esac
6134
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
6134
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
6135
+$as_echo "$ac_try_echo") >&5
6135 6136
   (eval "$ac_link") 2>conftest.er1
6136 6137
   ac_status=$?
6137 6138
   grep -v '^ *+' conftest.er1 >conftest.err
6138 6139
   rm -f conftest.er1
6139 6140
   cat conftest.err >&5
6140
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
6141
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
6141 6142
   (exit $ac_status); } && {
6142 6143
 	 test -z "$ac_c_werror_flag" ||
6143 6144
 	 test ! -s conftest.err
6144
-       } && test -s conftest$ac_exeext &&
6145
-       $as_test_x conftest$ac_exeext; then
6145
+       } && test -s conftest$ac_exeext && {
6146
+	 test "$cross_compiling" = yes ||
6147
+	 $as_test_x conftest$ac_exeext
6148
+       }; then
6146 6149
   lt_cv_cc_needs_belf=yes
6147 6150
 else
6148
-  echo "$as_me: failed program was:" >&5
6151
+  $as_echo "$as_me: failed program was:" >&5
6149 6152
 sed 's/^/| /' conftest.$ac_ext >&5
6150 6153
 
6151 6154
 	lt_cv_cc_needs_belf=no
6152 6155
 fi
6153 6156
 
6157
+rm -rf conftest.dSYM
6154 6158
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
6155 6159
       conftest$ac_exeext conftest.$ac_ext
6156 6160
      ac_ext=c
... ...
@@ -6160,8 +6268,8 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
6160 6160
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
6161 6161
 
6162 6162
 fi
6163
-{ echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5
6164
-echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6; }
6163
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5
6164
+$as_echo "$lt_cv_cc_needs_belf" >&6; }
6165 6165
   if test x"$lt_cv_cc_needs_belf" != x"yes"; then
6166 6166
     # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
6167 6167
     CFLAGS="$SAVE_CFLAGS"
... ...
@@ -6173,7 +6281,7 @@ sparc*-*solaris*)
6173 6173
   if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6174 6174
   (eval $ac_compile) 2>&5
6175 6175
   ac_status=$?
6176
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
6176
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
6177 6177
   (exit $ac_status); }; then
6178 6178
     case `/usr/bin/file conftest.o` in
6179 6179
     *64-bit*)
... ...
@@ -6200,10 +6308,10 @@ need_locks="$enable_libtool_lock"
6200 6200
     if test -n "$ac_tool_prefix"; then
6201 6201
   # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args.
6202 6202
 set dummy ${ac_tool_prefix}dsymutil; ac_word=$2
6203
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
6204
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
6203
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
6204
+$as_echo_n "checking for $ac_word... " >&6; }
6205 6205
 if test "${ac_cv_prog_DSYMUTIL+set}" = set; then
6206
-  echo $ECHO_N "(cached) $ECHO_C" >&6
6206
+  $as_echo_n "(cached) " >&6
6207 6207
 else
6208 6208
   if test -n "$DSYMUTIL"; then
6209 6209
   ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test.
... ...
@@ -6216,7 +6324,7 @@ do
6216 6216
   for ac_exec_ext in '' $ac_executable_extensions; do
6217 6217
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6218 6218
     ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil"
6219
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6219
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6220 6220
     break 2
6221 6221
   fi
6222 6222
 done
... ...
@@ -6227,11 +6335,11 @@ fi
6227 6227
 fi
6228 6228
 DSYMUTIL=$ac_cv_prog_DSYMUTIL
6229 6229
 if test -n "$DSYMUTIL"; then
6230
-  { echo "$as_me:$LINENO: result: $DSYMUTIL" >&5
6231
-echo "${ECHO_T}$DSYMUTIL" >&6; }
6230
+  { $as_echo "$as_me:$LINENO: result: $DSYMUTIL" >&5
6231
+$as_echo "$DSYMUTIL" >&6; }
6232 6232
 else
6233
-  { echo "$as_me:$LINENO: result: no" >&5
6234
-echo "${ECHO_T}no" >&6; }
6233
+  { $as_echo "$as_me:$LINENO: result: no" >&5
6234
+$as_echo "no" >&6; }
6235 6235
 fi
6236 6236
 
6237 6237
 
... ...
@@ -6240,10 +6348,10 @@ if test -z "$ac_cv_prog_DSYMUTIL"; then
6240 6240
   ac_ct_DSYMUTIL=$DSYMUTIL
6241 6241
   # Extract the first word of "dsymutil", so it can be a program name with args.
6242 6242
 set dummy dsymutil; ac_word=$2
6243
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
6244
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
6243
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
6244
+$as_echo_n "checking for $ac_word... " >&6; }
6245 6245
 if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then
6246
-  echo $ECHO_N "(cached) $ECHO_C" >&6
6246
+  $as_echo_n "(cached) " >&6
6247 6247
 else
6248 6248
   if test -n "$ac_ct_DSYMUTIL"; then
6249 6249
   ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test.
... ...
@@ -6256,7 +6364,7 @@ do
6256 6256
   for ac_exec_ext in '' $ac_executable_extensions; do
6257 6257
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6258 6258
     ac_cv_prog_ac_ct_DSYMUTIL="dsymutil"
6259
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6259
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6260 6260
     break 2
6261 6261
   fi
6262 6262
 done
... ...
@@ -6267,11 +6375,11 @@ fi
6267 6267
 fi
6268 6268
 ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL
6269 6269
 if test -n "$ac_ct_DSYMUTIL"; then
6270
-  { echo "$as_me:$LINENO: result: $ac_ct_DSYMUTIL" >&5
6271
-echo "${ECHO_T}$ac_ct_DSYMUTIL" >&6; }
6270
+  { $as_echo "$as_me:$LINENO: result: $ac_ct_DSYMUTIL" >&5
6271
+$as_echo "$ac_ct_DSYMUTIL" >&6; }
6272 6272
 else
6273
-  { echo "$as_me:$LINENO: result: no" >&5
6274
-echo "${ECHO_T}no" >&6; }
6273
+  { $as_echo "$as_me:$LINENO: result: no" >&5
6274
+$as_echo "no" >&6; }
6275 6275
 fi
6276 6276
 
6277 6277
   if test "x$ac_ct_DSYMUTIL" = x; then
... ...
@@ -6279,12 +6387,8 @@ fi
6279 6279
   else
6280 6280
     case $cross_compiling:$ac_tool_warned in
6281 6281
 yes:)
6282
-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
6283
-whose name does not start with the host triplet.  If you think this
6284
-configuration is useful to you, please write to autoconf@gnu.org." >&5
6285
-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
6286
-whose name does not start with the host triplet.  If you think this
6287
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
6282
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
6283
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
6288 6284
 ac_tool_warned=yes ;;
6289 6285
 esac
6290 6286
     DSYMUTIL=$ac_ct_DSYMUTIL
... ...
@@ -6296,10 +6400,10 @@ fi
6296 6296
     if test -n "$ac_tool_prefix"; then
6297 6297
   # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args.
6298 6298
 set dummy ${ac_tool_prefix}nmedit; ac_word=$2
6299
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
6300
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
6299
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
6300
+$as_echo_n "checking for $ac_word... " >&6; }
6301 6301
 if test "${ac_cv_prog_NMEDIT+set}" = set; then
6302
-  echo $ECHO_N "(cached) $ECHO_C" >&6
6302
+  $as_echo_n "(cached) " >&6
6303 6303
 else
6304 6304
   if test -n "$NMEDIT"; then
6305 6305
   ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test.
... ...
@@ -6312,7 +6416,7 @@ do
6312 6312
   for ac_exec_ext in '' $ac_executable_extensions; do
6313 6313
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6314 6314
     ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit"
6315
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6315
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6316 6316
     break 2
6317 6317
   fi
6318 6318
 done
... ...
@@ -6323,11 +6427,11 @@ fi
6323 6323
 fi
6324 6324
 NMEDIT=$ac_cv_prog_NMEDIT
6325 6325
 if test -n "$NMEDIT"; then
6326
-  { echo "$as_me:$LINENO: result: $NMEDIT" >&5
6327
-echo "${ECHO_T}$NMEDIT" >&6; }
6326
+  { $as_echo "$as_me:$LINENO: result: $NMEDIT" >&5
6327
+$as_echo "$NMEDIT" >&6; }
6328 6328
 else
6329
-  { echo "$as_me:$LINENO: result: no" >&5
6330
-echo "${ECHO_T}no" >&6; }
6329
+  { $as_echo "$as_me:$LINENO: result: no" >&5
6330
+$as_echo "no" >&6; }
6331 6331
 fi
6332 6332
 
6333 6333
 
... ...
@@ -6336,10 +6440,10 @@ if test -z "$ac_cv_prog_NMEDIT"; then
6336 6336
   ac_ct_NMEDIT=$NMEDIT
6337 6337
   # Extract the first word of "nmedit", so it can be a program name with args.
6338 6338
 set dummy nmedit; ac_word=$2
6339
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
6340
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
6339
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
6340
+$as_echo_n "checking for $ac_word... " >&6; }
6341 6341
 if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then
6342
-  echo $ECHO_N "(cached) $ECHO_C" >&6
6342
+  $as_echo_n "(cached) " >&6
6343 6343
 else
6344 6344
   if test -n "$ac_ct_NMEDIT"; then
6345 6345
   ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test.
... ...
@@ -6352,7 +6456,7 @@ do
6352 6352
   for ac_exec_ext in '' $ac_executable_extensions; do
6353 6353
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6354 6354
     ac_cv_prog_ac_ct_NMEDIT="nmedit"
6355
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6355
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6356 6356
     break 2
6357 6357
   fi
6358 6358
 done
... ...
@@ -6363,11 +6467,11 @@ fi
6363 6363
 fi
6364 6364
 ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT
6365 6365
 if test -n "$ac_ct_NMEDIT"; then
6366
-  { echo "$as_me:$LINENO: result: $ac_ct_NMEDIT" >&5
6367
-echo "${ECHO_T}$ac_ct_NMEDIT" >&6; }
6366
+  { $as_echo "$as_me:$LINENO: result: $ac_ct_NMEDIT" >&5
6367
+$as_echo "$ac_ct_NMEDIT" >&6; }
6368 6368
 else
6369
-  { echo "$as_me:$LINENO: result: no" >&5
6370
-echo "${ECHO_T}no" >&6; }
6369
+  { $as_echo "$as_me:$LINENO: result: no" >&5
6370
+$as_echo "no" >&6; }
6371 6371
 fi
6372 6372
 
6373 6373
   if test "x$ac_ct_NMEDIT" = x; then
... ...
@@ -6375,12 +6479,8 @@ fi
6375 6375
   else
6376 6376
     case $cross_compiling:$ac_tool_warned in
6377 6377
 yes:)
6378
-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
6379
-whose name does not start with the host triplet.  If you think this
6380
-configuration is useful to you, please write to autoconf@gnu.org." >&5
6381
-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
6382
-whose name does not start with the host triplet.  If you think this
6383
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
6378
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
6379
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
6384 6380
 ac_tool_warned=yes ;;
6385 6381
 esac
6386 6382
     NMEDIT=$ac_ct_NMEDIT
... ...
@@ -6392,10 +6492,10 @@ fi
6392 6392
     if test -n "$ac_tool_prefix"; then
6393 6393
   # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args.
6394 6394
 set dummy ${ac_tool_prefix}lipo; ac_word=$2
6395
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
6396
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
6395
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
6396
+$as_echo_n "checking for $ac_word... " >&6; }
6397 6397
 if test "${ac_cv_prog_LIPO+set}" = set; then
6398
-  echo $ECHO_N "(cached) $ECHO_C" >&6
6398
+  $as_echo_n "(cached) " >&6
6399 6399
 else
6400 6400
   if test -n "$LIPO"; then
6401 6401
   ac_cv_prog_LIPO="$LIPO" # Let the user override the test.
... ...
@@ -6408,7 +6508,7 @@ do
6408 6408
   for ac_exec_ext in '' $ac_executable_extensions; do
6409 6409
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6410 6410
     ac_cv_prog_LIPO="${ac_tool_prefix}lipo"
6411
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6411
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6412 6412
     break 2
6413 6413
   fi
6414 6414
 done
... ...
@@ -6419,11 +6519,11 @@ fi
6419 6419
 fi
6420 6420
 LIPO=$ac_cv_prog_LIPO
6421 6421
 if test -n "$LIPO"; then
6422
-  { echo "$as_me:$LINENO: result: $LIPO" >&5
6423
-echo "${ECHO_T}$LIPO" >&6; }
6422
+  { $as_echo "$as_me:$LINENO: result: $LIPO" >&5
6423
+$as_echo "$LIPO" >&6; }
6424 6424
 else
6425
-  { echo "$as_me:$LINENO: result: no" >&5
6426
-echo "${ECHO_T}no" >&6; }
6425
+  { $as_echo "$as_me:$LINENO: result: no" >&5
6426
+$as_echo "no" >&6; }
6427 6427
 fi
6428 6428
 
6429 6429
 
... ...
@@ -6432,10 +6532,10 @@ if test -z "$ac_cv_prog_LIPO"; then
6432 6432
   ac_ct_LIPO=$LIPO
6433 6433
   # Extract the first word of "lipo", so it can be a program name with args.
6434 6434
 set dummy lipo; ac_word=$2
6435
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
6436
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
6435
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
6436
+$as_echo_n "checking for $ac_word... " >&6; }
6437 6437
 if test "${ac_cv_prog_ac_ct_LIPO+set}" = set; then
6438
-  echo $ECHO_N "(cached) $ECHO_C" >&6
6438
+  $as_echo_n "(cached) " >&6
6439 6439
 else
6440 6440
   if test -n "$ac_ct_LIPO"; then
6441 6441
   ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test.
... ...
@@ -6448,7 +6548,7 @@ do
6448 6448
   for ac_exec_ext in '' $ac_executable_extensions; do
6449 6449
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6450 6450
     ac_cv_prog_ac_ct_LIPO="lipo"
6451
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6451
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6452 6452
     break 2
6453 6453
   fi
6454 6454
 done
... ...
@@ -6459,11 +6559,11 @@ fi
6459 6459
 fi
6460 6460
 ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO
6461 6461
 if test -n "$ac_ct_LIPO"; then
6462
-  { echo "$as_me:$LINENO: result: $ac_ct_LIPO" >&5
6463
-echo "${ECHO_T}$ac_ct_LIPO" >&6; }
6462
+  { $as_echo "$as_me:$LINENO: result: $ac_ct_LIPO" >&5
6463
+$as_echo "$ac_ct_LIPO" >&6; }
6464 6464
 else
6465
-  { echo "$as_me:$LINENO: result: no" >&5
6466
-echo "${ECHO_T}no" >&6; }
6465
+  { $as_echo "$as_me:$LINENO: result: no" >&5
6466
+$as_echo "no" >&6; }
6467 6467
 fi
6468 6468
 
6469 6469
   if test "x$ac_ct_LIPO" = x; then
... ...
@@ -6471,12 +6571,8 @@ fi
6471 6471
   else
6472 6472
     case $cross_compiling:$ac_tool_warned in
6473 6473
 yes:)
6474
-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
6475
-whose name does not start with the host triplet.  If you think this
6476
-configuration is useful to you, please write to autoconf@gnu.org." >&5
6477
-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
6478
-whose name does not start with the host triplet.  If you think this
6479
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
6474
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
6475
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
6480 6476
 ac_tool_warned=yes ;;
6481 6477
 esac
6482 6478
     LIPO=$ac_ct_LIPO
... ...
@@ -6488,10 +6584,10 @@ fi
6488 6488
     if test -n "$ac_tool_prefix"; then
6489 6489
   # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args.
6490 6490
 set dummy ${ac_tool_prefix}otool; ac_word=$2
6491
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
6492
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
6491
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
6492
+$as_echo_n "checking for $ac_word... " >&6; }
6493 6493
 if test "${ac_cv_prog_OTOOL+set}" = set; then
6494
-  echo $ECHO_N "(cached) $ECHO_C" >&6
6494
+  $as_echo_n "(cached) " >&6
6495 6495
 else
6496 6496
   if test -n "$OTOOL"; then
6497 6497
   ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test.
... ...
@@ -6504,7 +6600,7 @@ do
6504 6504
   for ac_exec_ext in '' $ac_executable_extensions; do
6505 6505
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6506 6506
     ac_cv_prog_OTOOL="${ac_tool_prefix}otool"
6507
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6507
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6508 6508
     break 2
6509 6509
   fi
6510 6510
 done
... ...
@@ -6515,11 +6611,11 @@ fi
6515 6515
 fi
6516 6516
 OTOOL=$ac_cv_prog_OTOOL
6517 6517
 if test -n "$OTOOL"; then
6518
-  { echo "$as_me:$LINENO: result: $OTOOL" >&5
6519
-echo "${ECHO_T}$OTOOL" >&6; }
6518
+  { $as_echo "$as_me:$LINENO: result: $OTOOL" >&5
6519
+$as_echo "$OTOOL" >&6; }
6520 6520
 else
6521
-  { echo "$as_me:$LINENO: result: no" >&5
6522
-echo "${ECHO_T}no" >&6; }
6521
+  { $as_echo "$as_me:$LINENO: result: no" >&5
6522
+$as_echo "no" >&6; }
6523 6523
 fi
6524 6524
 
6525 6525
 
... ...
@@ -6528,10 +6624,10 @@ if test -z "$ac_cv_prog_OTOOL"; then
6528 6528
   ac_ct_OTOOL=$OTOOL
6529 6529
   # Extract the first word of "otool", so it can be a program name with args.
6530 6530
 set dummy otool; ac_word=$2
6531
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
6532
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
6531
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
6532
+$as_echo_n "checking for $ac_word... " >&6; }
6533 6533
 if test "${ac_cv_prog_ac_ct_OTOOL+set}" = set; then
6534
-  echo $ECHO_N "(cached) $ECHO_C" >&6
6534
+  $as_echo_n "(cached) " >&6
6535 6535
 else
6536 6536
   if test -n "$ac_ct_OTOOL"; then
6537 6537
   ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test.
... ...
@@ -6544,7 +6640,7 @@ do
6544 6544
   for ac_exec_ext in '' $ac_executable_extensions; do
6545 6545
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6546 6546
     ac_cv_prog_ac_ct_OTOOL="otool"
6547
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6547
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6548 6548
     break 2
6549 6549
   fi
6550 6550
 done
... ...
@@ -6555,11 +6651,11 @@ fi
6555 6555
 fi
6556 6556
 ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL
6557 6557
 if test -n "$ac_ct_OTOOL"; then
6558
-  { echo "$as_me:$LINENO: result: $ac_ct_OTOOL" >&5
6559
-echo "${ECHO_T}$ac_ct_OTOOL" >&6; }
6558
+  { $as_echo "$as_me:$LINENO: result: $ac_ct_OTOOL" >&5
6559
+$as_echo "$ac_ct_OTOOL" >&6; }
6560 6560
 else
6561
-  { echo "$as_me:$LINENO: result: no" >&5
6562
-echo "${ECHO_T}no" >&6; }
6561
+  { $as_echo "$as_me:$LINENO: result: no" >&5
6562
+$as_echo "no" >&6; }
6563 6563
 fi
6564 6564
 
6565 6565
   if test "x$ac_ct_OTOOL" = x; then
... ...
@@ -6567,12 +6663,8 @@ fi
6567 6567
   else
6568 6568
     case $cross_compiling:$ac_tool_warned in
6569 6569
 yes:)
6570
-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
6571
-whose name does not start with the host triplet.  If you think this
6572
-configuration is useful to you, please write to autoconf@gnu.org." >&5
6573
-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
6574
-whose name does not start with the host triplet.  If you think this
6575
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
6570
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
6571
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
6576 6572
 ac_tool_warned=yes ;;
6577 6573
 esac
6578 6574
     OTOOL=$ac_ct_OTOOL
... ...
@@ -6584,10 +6676,10 @@ fi
6584 6584
     if test -n "$ac_tool_prefix"; then
6585 6585
   # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args.
6586 6586
 set dummy ${ac_tool_prefix}otool64; ac_word=$2
6587
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
6588
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
6587
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
6588
+$as_echo_n "checking for $ac_word... " >&6; }
6589 6589
 if test "${ac_cv_prog_OTOOL64+set}" = set; then
6590
-  echo $ECHO_N "(cached) $ECHO_C" >&6
6590
+  $as_echo_n "(cached) " >&6
6591 6591
 else
6592 6592
   if test -n "$OTOOL64"; then
6593 6593
   ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test.
... ...
@@ -6600,7 +6692,7 @@ do
6600 6600
   for ac_exec_ext in '' $ac_executable_extensions; do
6601 6601
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6602 6602
     ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64"
6603
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6603
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6604 6604
     break 2
6605 6605
   fi
6606 6606
 done
... ...
@@ -6611,11 +6703,11 @@ fi
6611 6611
 fi
6612 6612
 OTOOL64=$ac_cv_prog_OTOOL64
6613 6613
 if test -n "$OTOOL64"; then
6614
-  { echo "$as_me:$LINENO: result: $OTOOL64" >&5
6615
-echo "${ECHO_T}$OTOOL64" >&6; }
6614
+  { $as_echo "$as_me:$LINENO: result: $OTOOL64" >&5
6615
+$as_echo "$OTOOL64" >&6; }
6616 6616
 else
6617
-  { echo "$as_me:$LINENO: result: no" >&5
6618
-echo "${ECHO_T}no" >&6; }
6617
+  { $as_echo "$as_me:$LINENO: result: no" >&5
6618
+$as_echo "no" >&6; }
6619 6619
 fi
6620 6620
 
6621 6621
 
... ...
@@ -6624,10 +6716,10 @@ if test -z "$ac_cv_prog_OTOOL64"; then
6624 6624
   ac_ct_OTOOL64=$OTOOL64
6625 6625
   # Extract the first word of "otool64", so it can be a program name with args.
6626 6626
 set dummy otool64; ac_word=$2
6627
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
6628
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
6627
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
6628
+$as_echo_n "checking for $ac_word... " >&6; }
6629 6629
 if test "${ac_cv_prog_ac_ct_OTOOL64+set}" = set; then
6630
-  echo $ECHO_N "(cached) $ECHO_C" >&6
6630
+  $as_echo_n "(cached) " >&6
6631 6631
 else
6632 6632
   if test -n "$ac_ct_OTOOL64"; then
6633 6633
   ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test.
... ...
@@ -6640,7 +6732,7 @@ do
6640 6640
   for ac_exec_ext in '' $ac_executable_extensions; do
6641 6641
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6642 6642
     ac_cv_prog_ac_ct_OTOOL64="otool64"
6643
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6643
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6644 6644
     break 2
6645 6645
   fi
6646 6646
 done
... ...
@@ -6651,11 +6743,11 @@ fi
6651 6651
 fi
6652 6652
 ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64
6653 6653
 if test -n "$ac_ct_OTOOL64"; then
6654
-  { echo "$as_me:$LINENO: result: $ac_ct_OTOOL64" >&5
6655
-echo "${ECHO_T}$ac_ct_OTOOL64" >&6; }
6654
+  { $as_echo "$as_me:$LINENO: result: $ac_ct_OTOOL64" >&5
6655
+$as_echo "$ac_ct_OTOOL64" >&6; }
6656 6656
 else
6657
-  { echo "$as_me:$LINENO: result: no" >&5
6658
-echo "${ECHO_T}no" >&6; }
6657
+  { $as_echo "$as_me:$LINENO: result: no" >&5
6658
+$as_echo "no" >&6; }
6659 6659
 fi
6660 6660
 
6661 6661
   if test "x$ac_ct_OTOOL64" = x; then
... ...
@@ -6663,12 +6755,8 @@ fi
6663 6663
   else
6664 6664
     case $cross_compiling:$ac_tool_warned in
6665 6665
 yes:)
6666
-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
6667
-whose name does not start with the host triplet.  If you think this
6668
-configuration is useful to you, please write to autoconf@gnu.org." >&5
6669
-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
6670
-whose name does not start with the host triplet.  If you think this
6671
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
6666
+{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
6667
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
6672 6668
 ac_tool_warned=yes ;;
6673 6669
 esac
6674 6670
     OTOOL64=$ac_ct_OTOOL64
... ...
@@ -6703,10 +6791,10 @@ fi
6703 6703
 
6704 6704
 
6705 6705
 
6706
-    { echo "$as_me:$LINENO: checking for -single_module linker flag" >&5
6707
-echo $ECHO_N "checking for -single_module linker flag... $ECHO_C" >&6; }
6706
+    { $as_echo "$as_me:$LINENO: checking for -single_module linker flag" >&5
6707
+$as_echo_n "checking for -single_module linker flag... " >&6; }
6708 6708
 if test "${lt_cv_apple_cc_single_mod+set}" = set; then
6709
-  echo $ECHO_N "(cached) $ECHO_C" >&6
6709
+  $as_echo_n "(cached) " >&6
6710 6710
 else
6711 6711
   lt_cv_apple_cc_single_mod=no
6712 6712
       if test -z "${LT_MULTI_MODULE}"; then
... ...
@@ -6730,12 +6818,12 @@ else
6730 6730
 	rm -f conftest.*
6731 6731
       fi
6732 6732
 fi
6733
-{ echo "$as_me:$LINENO: result: $lt_cv_apple_cc_single_mod" >&5
6734
-echo "${ECHO_T}$lt_cv_apple_cc_single_mod" >&6; }
6735
-    { echo "$as_me:$LINENO: checking for -exported_symbols_list linker flag" >&5
6736
-echo $ECHO_N "checking for -exported_symbols_list linker flag... $ECHO_C" >&6; }
6733
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_apple_cc_single_mod" >&5
6734
+$as_echo "$lt_cv_apple_cc_single_mod" >&6; }
6735
+    { $as_echo "$as_me:$LINENO: checking for -exported_symbols_list linker flag" >&5
6736
+$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; }
6737 6737
 if test "${lt_cv_ld_exported_symbols_list+set}" = set; then
6738
-  echo $ECHO_N "(cached) $ECHO_C" >&6
6738
+  $as_echo_n "(cached) " >&6
6739 6739
 else
6740 6740
   lt_cv_ld_exported_symbols_list=no
6741 6741
       save_LDFLAGS=$LDFLAGS
... ...
@@ -6762,33 +6850,37 @@ case "(($ac_try" in
6762 6762
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
6763 6763
   *) ac_try_echo=$ac_try;;
6764 6764
 esac
6765
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
6765
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
6766
+$as_echo "$ac_try_echo") >&5
6766 6767
   (eval "$ac_link") 2>conftest.er1
6767 6768
   ac_status=$?
6768 6769
   grep -v '^ *+' conftest.er1 >conftest.err
6769 6770
   rm -f conftest.er1
6770 6771
   cat conftest.err >&5
6771
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
6772
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
6772 6773
   (exit $ac_status); } && {
6773 6774
 	 test -z "$ac_c_werror_flag" ||
6774 6775
 	 test ! -s conftest.err
6775
-       } && test -s conftest$ac_exeext &&
6776
-       $as_test_x conftest$ac_exeext; then
6776
+       } && test -s conftest$ac_exeext && {
6777
+	 test "$cross_compiling" = yes ||
6778
+	 $as_test_x conftest$ac_exeext
6779
+       }; then
6777 6780
   lt_cv_ld_exported_symbols_list=yes
6778 6781
 else
6779
-  echo "$as_me: failed program was:" >&5
6782
+  $as_echo "$as_me: failed program was:" >&5
6780 6783
 sed 's/^/| /' conftest.$ac_ext >&5
6781 6784
 
6782 6785
 	lt_cv_ld_exported_symbols_list=no
6783 6786
 fi
6784 6787
 
6788
+rm -rf conftest.dSYM
6785 6789
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
6786 6790
       conftest$ac_exeext conftest.$ac_ext
6787 6791
 	LDFLAGS="$save_LDFLAGS"
6788 6792
 
6789 6793
 fi
6790
-{ echo "$as_me:$LINENO: result: $lt_cv_ld_exported_symbols_list" >&5
6791
-echo "${ECHO_T}$lt_cv_ld_exported_symbols_list" >&6; }
6794
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_ld_exported_symbols_list" >&5
6795
+$as_echo "$lt_cv_ld_exported_symbols_list" >&6; }
6792 6796
     case $host_os in
6793 6797
     rhapsody* | darwin1.[012])
6794 6798
       _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;
... ...
@@ -6829,15 +6921,15 @@ ac_cpp='$CPP $CPPFLAGS'
6829 6829
 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
6830 6830
 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
6831 6831
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
6832
-{ echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
6833
-echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; }
6832
+{ $as_echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
6833
+$as_echo_n "checking how to run the C preprocessor... " >&6; }
6834 6834
 # On Suns, sometimes $CPP names a directory.
6835 6835
 if test -n "$CPP" && test -d "$CPP"; then
6836 6836
   CPP=
6837 6837
 fi
6838 6838
 if test -z "$CPP"; then
6839 6839
   if test "${ac_cv_prog_CPP+set}" = set; then
6840
-  echo $ECHO_N "(cached) $ECHO_C" >&6
6840
+  $as_echo_n "(cached) " >&6
6841 6841
 else
6842 6842
       # Double quotes because CPP needs to be expanded
6843 6843
     for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
... ...
@@ -6869,20 +6961,21 @@ case "(($ac_try" in
6869 6869
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
6870 6870
   *) ac_try_echo=$ac_try;;
6871 6871
 esac
6872
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
6872
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
6873
+$as_echo "$ac_try_echo") >&5
6873 6874
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
6874 6875
   ac_status=$?
6875 6876
   grep -v '^ *+' conftest.er1 >conftest.err
6876 6877
   rm -f conftest.er1
6877 6878
   cat conftest.err >&5
6878
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
6879
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
6879 6880
   (exit $ac_status); } >/dev/null && {
6880 6881
 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
6881 6882
 	 test ! -s conftest.err
6882 6883
        }; then
6883 6884
   :
6884 6885
 else
6885
-  echo "$as_me: failed program was:" >&5
6886
+  $as_echo "$as_me: failed program was:" >&5
6886 6887
 sed 's/^/| /' conftest.$ac_ext >&5
6887 6888
 
6888 6889
   # Broken: fails on valid input.
... ...
@@ -6906,13 +6999,14 @@ case "(($ac_try" in
6906 6906
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
6907 6907
   *) ac_try_echo=$ac_try;;
6908 6908
 esac
6909
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
6909
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
6910
+$as_echo "$ac_try_echo") >&5
6910 6911
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
6911 6912
   ac_status=$?
6912 6913
   grep -v '^ *+' conftest.er1 >conftest.err
6913 6914
   rm -f conftest.er1
6914 6915
   cat conftest.err >&5
6915
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
6916
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
6916 6917
   (exit $ac_status); } >/dev/null && {
6917 6918
 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
6918 6919
 	 test ! -s conftest.err
... ...
@@ -6920,7 +7014,7 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
6920 6920
   # Broken: success on invalid input.
6921 6921
 continue
6922 6922
 else
6923
-  echo "$as_me: failed program was:" >&5
6923
+  $as_echo "$as_me: failed program was:" >&5
6924 6924
 sed 's/^/| /' conftest.$ac_ext >&5
6925 6925
 
6926 6926
   # Passes both tests.
... ...
@@ -6945,8 +7039,8 @@ fi
6945 6945
 else
6946 6946
   ac_cv_prog_CPP=$CPP
6947 6947
 fi
6948
-{ echo "$as_me:$LINENO: result: $CPP" >&5
6949
-echo "${ECHO_T}$CPP" >&6; }
6948
+{ $as_echo "$as_me:$LINENO: result: $CPP" >&5
6949
+$as_echo "$CPP" >&6; }
6950 6950
 ac_preproc_ok=false
6951 6951
 for ac_c_preproc_warn_flag in '' yes
6952 6952
 do
... ...
@@ -6974,20 +7068,21 @@ case "(($ac_try" in
6974 6974
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
6975 6975
   *) ac_try_echo=$ac_try;;
6976 6976
 esac
6977
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
6977
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
6978
+$as_echo "$ac_try_echo") >&5
6978 6979
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
6979 6980
   ac_status=$?
6980 6981
   grep -v '^ *+' conftest.er1 >conftest.err
6981 6982
   rm -f conftest.er1
6982 6983
   cat conftest.err >&5
6983
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
6984
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
6984 6985
   (exit $ac_status); } >/dev/null && {
6985 6986
 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
6986 6987
 	 test ! -s conftest.err
6987 6988
        }; then
6988 6989
   :
6989 6990
 else
6990
-  echo "$as_me: failed program was:" >&5
6991
+  $as_echo "$as_me: failed program was:" >&5
6991 6992
 sed 's/^/| /' conftest.$ac_ext >&5
6992 6993
 
6993 6994
   # Broken: fails on valid input.
... ...
@@ -7011,13 +7106,14 @@ case "(($ac_try" in
7011 7011
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7012 7012
   *) ac_try_echo=$ac_try;;
7013 7013
 esac
7014
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7014
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
7015
+$as_echo "$ac_try_echo") >&5
7015 7016
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
7016 7017
   ac_status=$?
7017 7018
   grep -v '^ *+' conftest.er1 >conftest.err
7018 7019
   rm -f conftest.er1
7019 7020
   cat conftest.err >&5
7020
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
7021
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
7021 7022
   (exit $ac_status); } >/dev/null && {
7022 7023
 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
7023 7024
 	 test ! -s conftest.err
... ...
@@ -7025,7 +7121,7 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7025 7025
   # Broken: success on invalid input.
7026 7026
 continue
7027 7027
 else
7028
-  echo "$as_me: failed program was:" >&5
7028
+  $as_echo "$as_me: failed program was:" >&5
7029 7029
 sed 's/^/| /' conftest.$ac_ext >&5
7030 7030
 
7031 7031
   # Passes both tests.
... ...
@@ -7041,11 +7137,13 @@ rm -f conftest.err conftest.$ac_ext
7041 7041
 if $ac_preproc_ok; then
7042 7042
   :
7043 7043
 else
7044
-  { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
7044
+  { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
7045
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
7046
+{ { $as_echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
7045 7047
 See \`config.log' for more details." >&5
7046
-echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
7048
+$as_echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
7047 7049
 See \`config.log' for more details." >&2;}
7048
-   { (exit 1); exit 1; }; }
7050
+   { (exit 1); exit 1; }; }; }
7049 7051
 fi
7050 7052
 
7051 7053
 ac_ext=c
... ...
@@ -7055,10 +7153,10 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
7055 7055
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
7056 7056
 
7057 7057
 
7058
-{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5
7059
-echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }
7058
+{ $as_echo "$as_me:$LINENO: checking for ANSI C header files" >&5
7059
+$as_echo_n "checking for ANSI C header files... " >&6; }
7060 7060
 if test "${ac_cv_header_stdc+set}" = set; then
7061
-  echo $ECHO_N "(cached) $ECHO_C" >&6
7061
+  $as_echo_n "(cached) " >&6
7062 7062
 else
7063 7063
   cat >conftest.$ac_ext <<_ACEOF
7064 7064
 /* confdefs.h.  */
... ...
@@ -7085,20 +7183,21 @@ case "(($ac_try" in
7085 7085
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7086 7086
   *) ac_try_echo=$ac_try;;
7087 7087
 esac
7088
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7088
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
7089
+$as_echo "$ac_try_echo") >&5
7089 7090
   (eval "$ac_compile") 2>conftest.er1
7090 7091
   ac_status=$?
7091 7092
   grep -v '^ *+' conftest.er1 >conftest.err
7092 7093
   rm -f conftest.er1
7093 7094
   cat conftest.err >&5
7094
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
7095
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
7095 7096
   (exit $ac_status); } && {
7096 7097
 	 test -z "$ac_c_werror_flag" ||
7097 7098
 	 test ! -s conftest.err
7098 7099
        } && test -s conftest.$ac_objext; then
7099 7100
   ac_cv_header_stdc=yes
7100 7101
 else
7101
-  echo "$as_me: failed program was:" >&5
7102
+  $as_echo "$as_me: failed program was:" >&5
7102 7103
 sed 's/^/| /' conftest.$ac_ext >&5
7103 7104
 
7104 7105
 	ac_cv_header_stdc=no
... ...
@@ -7190,37 +7289,40 @@ case "(($ac_try" in
7190 7190
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7191 7191
   *) ac_try_echo=$ac_try;;
7192 7192
 esac
7193
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7193
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
7194
+$as_echo "$ac_try_echo") >&5
7194 7195
   (eval "$ac_link") 2>&5
7195 7196
   ac_status=$?
7196
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
7197
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
7197 7198
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
7198 7199
   { (case "(($ac_try" in
7199 7200
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7200 7201
   *) ac_try_echo=$ac_try;;
7201 7202
 esac
7202
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7203
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
7204
+$as_echo "$ac_try_echo") >&5
7203 7205
   (eval "$ac_try") 2>&5
7204 7206
   ac_status=$?
7205
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
7207
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
7206 7208
   (exit $ac_status); }; }; then
7207 7209
   :
7208 7210
 else
7209
-  echo "$as_me: program exited with status $ac_status" >&5
7210
-echo "$as_me: failed program was:" >&5
7211
+  $as_echo "$as_me: program exited with status $ac_status" >&5
7212
+$as_echo "$as_me: failed program was:" >&5
7211 7213
 sed 's/^/| /' conftest.$ac_ext >&5
7212 7214
 
7213 7215
 ( exit $ac_status )
7214 7216
 ac_cv_header_stdc=no
7215 7217
 fi
7218
+rm -rf conftest.dSYM
7216 7219
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
7217 7220
 fi
7218 7221
 
7219 7222
 
7220 7223
 fi
7221 7224
 fi
7222
-{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
7223
-echo "${ECHO_T}$ac_cv_header_stdc" >&6; }
7225
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
7226
+$as_echo "$ac_cv_header_stdc" >&6; }
7224 7227
 if test $ac_cv_header_stdc = yes; then
7225 7228
 
7226 7229
 cat >>confdefs.h <<\_ACEOF
... ...
@@ -7242,11 +7344,11 @@ fi
7242 7242
 for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
7243 7243
 		  inttypes.h stdint.h unistd.h
7244 7244
 do
7245
-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
7246
-{ echo "$as_me:$LINENO: checking for $ac_header" >&5
7247
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
7245
+as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
7246
+{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
7247
+$as_echo_n "checking for $ac_header... " >&6; }
7248 7248
 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
7249
-  echo $ECHO_N "(cached) $ECHO_C" >&6
7249
+  $as_echo_n "(cached) " >&6
7250 7250
 else
7251 7251
   cat >conftest.$ac_ext <<_ACEOF
7252 7252
 /* confdefs.h.  */
... ...
@@ -7264,20 +7366,21 @@ case "(($ac_try" in
7264 7264
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7265 7265
   *) ac_try_echo=$ac_try;;
7266 7266
 esac
7267
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7267
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
7268
+$as_echo "$ac_try_echo") >&5
7268 7269
   (eval "$ac_compile") 2>conftest.er1
7269 7270
   ac_status=$?
7270 7271
   grep -v '^ *+' conftest.er1 >conftest.err
7271 7272
   rm -f conftest.er1
7272 7273
   cat conftest.err >&5
7273
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
7274
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
7274 7275
   (exit $ac_status); } && {
7275 7276
 	 test -z "$ac_c_werror_flag" ||
7276 7277
 	 test ! -s conftest.err
7277 7278
        } && test -s conftest.$ac_objext; then
7278 7279
   eval "$as_ac_Header=yes"
7279 7280
 else
7280
-  echo "$as_me: failed program was:" >&5
7281
+  $as_echo "$as_me: failed program was:" >&5
7281 7282
 sed 's/^/| /' conftest.$ac_ext >&5
7282 7283
 
7283 7284
 	eval "$as_ac_Header=no"
... ...
@@ -7285,12 +7388,15 @@ fi
7285 7285
 
7286 7286
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
7287 7287
 fi
7288
-ac_res=`eval echo '${'$as_ac_Header'}'`
7289
-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
7290
-echo "${ECHO_T}$ac_res" >&6; }
7291
-if test `eval echo '${'$as_ac_Header'}'` = yes; then
7288
+ac_res=`eval 'as_val=${'$as_ac_Header'}
7289
+		 $as_echo "$as_val"'`
7290
+	       { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
7291
+$as_echo "$ac_res" >&6; }
7292
+as_val=`eval 'as_val=${'$as_ac_Header'}
7293
+		 $as_echo "$as_val"'`
7294
+   if test "x$as_val" = x""yes; then
7292 7295
   cat >>confdefs.h <<_ACEOF
7293
-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
7296
+#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
7294 7297
 _ACEOF
7295 7298
 
7296 7299
 fi
... ...
@@ -7301,11 +7407,11 @@ done
7301 7301
 
7302 7302
 for ac_header in dlfcn.h
7303 7303
 do
7304
-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
7305
-{ echo "$as_me:$LINENO: checking for $ac_header" >&5
7306
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
7304
+as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
7305
+{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
7306
+$as_echo_n "checking for $ac_header... " >&6; }
7307 7307
 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
7308
-  echo $ECHO_N "(cached) $ECHO_C" >&6
7308
+  $as_echo_n "(cached) " >&6
7309 7309
 else
7310 7310
   cat >conftest.$ac_ext <<_ACEOF
7311 7311
 /* confdefs.h.  */
... ...
@@ -7323,20 +7429,21 @@ case "(($ac_try" in
7323 7323
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7324 7324
   *) ac_try_echo=$ac_try;;
7325 7325
 esac
7326
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7326
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
7327
+$as_echo "$ac_try_echo") >&5
7327 7328
   (eval "$ac_compile") 2>conftest.er1
7328 7329
   ac_status=$?
7329 7330
   grep -v '^ *+' conftest.er1 >conftest.err
7330 7331
   rm -f conftest.er1
7331 7332
   cat conftest.err >&5
7332
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
7333
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
7333 7334
   (exit $ac_status); } && {
7334 7335
 	 test -z "$ac_c_werror_flag" ||
7335 7336
 	 test ! -s conftest.err
7336 7337
        } && test -s conftest.$ac_objext; then
7337 7338
   eval "$as_ac_Header=yes"
7338 7339
 else
7339
-  echo "$as_me: failed program was:" >&5
7340
+  $as_echo "$as_me: failed program was:" >&5
7340 7341
 sed 's/^/| /' conftest.$ac_ext >&5
7341 7342
 
7342 7343
 	eval "$as_ac_Header=no"
... ...
@@ -7344,12 +7451,15 @@ fi
7344 7344
 
7345 7345
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
7346 7346
 fi
7347
-ac_res=`eval echo '${'$as_ac_Header'}'`
7348
-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
7349
-echo "${ECHO_T}$ac_res" >&6; }
7350
-if test `eval echo '${'$as_ac_Header'}'` = yes; then
7347
+ac_res=`eval 'as_val=${'$as_ac_Header'}
7348
+		 $as_echo "$as_val"'`
7349
+	       { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
7350
+$as_echo "$ac_res" >&6; }
7351
+as_val=`eval 'as_val=${'$as_ac_Header'}
7352
+		 $as_echo "$as_val"'`
7353
+   if test "x$as_val" = x""yes; then
7351 7354
   cat >>confdefs.h <<_ACEOF
7352
-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
7355
+#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
7353 7356
 _ACEOF
7354 7357
 
7355 7358
 fi
... ...
@@ -7528,10 +7638,10 @@ if test -n "${ZSH_VERSION+set}" ; then
7528 7528
    setopt NO_GLOB_SUBST
7529 7529
 fi
7530 7530
 
7531
-{ echo "$as_me:$LINENO: checking for objdir" >&5
7532
-echo $ECHO_N "checking for objdir... $ECHO_C" >&6; }
7531
+{ $as_echo "$as_me:$LINENO: checking for objdir" >&5
7532
+$as_echo_n "checking for objdir... " >&6; }
7533 7533
 if test "${lt_cv_objdir+set}" = set; then
7534
-  echo $ECHO_N "(cached) $ECHO_C" >&6
7534
+  $as_echo_n "(cached) " >&6
7535 7535
 else
7536 7536
   rm -f .libs 2>/dev/null
7537 7537
 mkdir .libs 2>/dev/null
... ...
@@ -7543,8 +7653,8 @@ else
7543 7543
 fi
7544 7544
 rmdir .libs 2>/dev/null
7545 7545
 fi
7546
-{ echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5
7547
-echo "${ECHO_T}$lt_cv_objdir" >&6; }
7546
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5
7547
+$as_echo "$lt_cv_objdir" >&6; }
7548 7548
 objdir=$lt_cv_objdir
7549 7549
 
7550 7550
 
... ...
@@ -7636,10 +7746,10 @@ test -z "$MAGIC_CMD" && MAGIC_CMD=file
7636 7636
 case $deplibs_check_method in
7637 7637
 file_magic*)
7638 7638
   if test "$file_magic_cmd" = '$MAGIC_CMD'; then
7639
-    { echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5
7640
-echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6; }
7639
+    { $as_echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5
7640
+$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; }
7641 7641
 if test "${lt_cv_path_MAGIC_CMD+set}" = set; then
7642
-  echo $ECHO_N "(cached) $ECHO_C" >&6
7642
+  $as_echo_n "(cached) " >&6
7643 7643
 else
7644 7644
   case $MAGIC_CMD in
7645 7645
 [\\/*] |  ?:[\\/]*)
... ...
@@ -7689,11 +7799,11 @@ fi
7689 7689
 
7690 7690
 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
7691 7691
 if test -n "$MAGIC_CMD"; then
7692
-  { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
7693
-echo "${ECHO_T}$MAGIC_CMD" >&6; }
7692
+  { $as_echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
7693
+$as_echo "$MAGIC_CMD" >&6; }
7694 7694
 else
7695
-  { echo "$as_me:$LINENO: result: no" >&5
7696
-echo "${ECHO_T}no" >&6; }
7695
+  { $as_echo "$as_me:$LINENO: result: no" >&5
7696
+$as_echo "no" >&6; }
7697 7697
 fi
7698 7698
 
7699 7699
 
... ...
@@ -7702,10 +7812,10 @@ fi
7702 7702
 
7703 7703
 if test -z "$lt_cv_path_MAGIC_CMD"; then
7704 7704
   if test -n "$ac_tool_prefix"; then
7705
-    { echo "$as_me:$LINENO: checking for file" >&5
7706
-echo $ECHO_N "checking for file... $ECHO_C" >&6; }
7705
+    { $as_echo "$as_me:$LINENO: checking for file" >&5
7706
+$as_echo_n "checking for file... " >&6; }
7707 7707
 if test "${lt_cv_path_MAGIC_CMD+set}" = set; then
7708
-  echo $ECHO_N "(cached) $ECHO_C" >&6
7708
+  $as_echo_n "(cached) " >&6
7709 7709
 else
7710 7710
   case $MAGIC_CMD in
7711 7711
 [\\/*] |  ?:[\\/]*)
... ...
@@ -7755,11 +7865,11 @@ fi
7755 7755
 
7756 7756
 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
7757 7757
 if test -n "$MAGIC_CMD"; then
7758
-  { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
7759
-echo "${ECHO_T}$MAGIC_CMD" >&6; }
7758
+  { $as_echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
7759
+$as_echo "$MAGIC_CMD" >&6; }
7760 7760
 else
7761
-  { echo "$as_me:$LINENO: result: no" >&5
7762
-echo "${ECHO_T}no" >&6; }
7761
+  { $as_echo "$as_me:$LINENO: result: no" >&5
7762
+$as_echo "no" >&6; }
7763 7763
 fi
7764 7764
 
7765 7765
 
... ...
@@ -7839,10 +7949,10 @@ lt_prog_compiler_no_builtin_flag=
7839 7839
 if test "$GCC" = yes; then
7840 7840
   lt_prog_compiler_no_builtin_flag=' -fno-builtin'
7841 7841
 
7842
-  { echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
7843
-echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6; }
7842
+  { $as_echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
7843
+$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; }
7844 7844
 if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then
7845
-  echo $ECHO_N "(cached) $ECHO_C" >&6
7845
+  $as_echo_n "(cached) " >&6
7846 7846
 else
7847 7847
   lt_cv_prog_compiler_rtti_exceptions=no
7848 7848
    ac_outfile=conftest.$ac_objext
... ...
@@ -7857,11 +7967,11 @@ else
7857 7857
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
7858 7858
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
7859 7859
    -e 's:$: $lt_compiler_flag:'`
7860
-   (eval echo "\"\$as_me:7860: $lt_compile\"" >&5)
7860
+   (eval echo "\"\$as_me:7970: $lt_compile\"" >&5)
7861 7861
    (eval "$lt_compile" 2>conftest.err)
7862 7862
    ac_status=$?
7863 7863
    cat conftest.err >&5
7864
-   echo "$as_me:7864: \$? = $ac_status" >&5
7864
+   echo "$as_me:7974: \$? = $ac_status" >&5
7865 7865
    if (exit $ac_status) && test -s "$ac_outfile"; then
7866 7866
      # The compiler can only warn and ignore the option if not recognized
7867 7867
      # So say no if there are warnings other than the usual output.
... ...
@@ -7874,8 +7984,8 @@ else
7874 7874
    $RM conftest*
7875 7875
 
7876 7876
 fi
7877
-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5
7878
-echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6; }
7877
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5
7878
+$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; }
7879 7879
 
7880 7880
 if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then
7881 7881
     lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions"
... ...
@@ -7894,8 +8004,8 @@ fi
7894 7894
 lt_prog_compiler_pic=
7895 7895
 lt_prog_compiler_static=
7896 7896
 
7897
-{ echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5
7898
-echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; }
7897
+{ $as_echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5
7898
+$as_echo_n "checking for $compiler option to produce PIC... " >&6; }
7899 7899
 
7900 7900
   if test "$GCC" = yes; then
7901 7901
     lt_prog_compiler_wl='-Wl,'
... ...
@@ -8166,8 +8276,8 @@ case $host_os in
8166 8166
     lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC"
8167 8167
     ;;
8168 8168
 esac
8169
-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5
8170
-echo "${ECHO_T}$lt_prog_compiler_pic" >&6; }
8169
+{ $as_echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5
8170
+$as_echo "$lt_prog_compiler_pic" >&6; }
8171 8171
 
8172 8172
 
8173 8173
 
... ...
@@ -8178,10 +8288,10 @@ echo "${ECHO_T}$lt_prog_compiler_pic" >&6; }
8178 8178
 # Check to make sure the PIC flag actually works.
8179 8179
 #
8180 8180
 if test -n "$lt_prog_compiler_pic"; then
8181
-  { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5
8182
-echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6; }
8181
+  { $as_echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5
8182
+$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; }
8183 8183
 if test "${lt_cv_prog_compiler_pic_works+set}" = set; then
8184
-  echo $ECHO_N "(cached) $ECHO_C" >&6
8184
+  $as_echo_n "(cached) " >&6
8185 8185
 else
8186 8186
   lt_cv_prog_compiler_pic_works=no
8187 8187
    ac_outfile=conftest.$ac_objext
... ...
@@ -8196,11 +8306,11 @@ else
8196 8196
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
8197 8197
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
8198 8198
    -e 's:$: $lt_compiler_flag:'`
8199
-   (eval echo "\"\$as_me:8199: $lt_compile\"" >&5)
8199
+   (eval echo "\"\$as_me:8309: $lt_compile\"" >&5)
8200 8200
    (eval "$lt_compile" 2>conftest.err)
8201 8201
    ac_status=$?
8202 8202
    cat conftest.err >&5
8203
-   echo "$as_me:8203: \$? = $ac_status" >&5
8203
+   echo "$as_me:8313: \$? = $ac_status" >&5
8204 8204
    if (exit $ac_status) && test -s "$ac_outfile"; then
8205 8205
      # The compiler can only warn and ignore the option if not recognized
8206 8206
      # So say no if there are warnings other than the usual output.
... ...
@@ -8213,8 +8323,8 @@ else
8213 8213
    $RM conftest*
8214 8214
 
8215 8215
 fi
8216
-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works" >&5
8217
-echo "${ECHO_T}$lt_cv_prog_compiler_pic_works" >&6; }
8216
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works" >&5
8217
+$as_echo "$lt_cv_prog_compiler_pic_works" >&6; }
8218 8218
 
8219 8219
 if test x"$lt_cv_prog_compiler_pic_works" = xyes; then
8220 8220
     case $lt_prog_compiler_pic in
... ...
@@ -8237,10 +8347,10 @@ fi
8237 8237
 # Check to make sure the static flag actually works.
8238 8238
 #
8239 8239
 wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"
8240
-{ echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5
8241
-echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; }
8240
+{ $as_echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5
8241
+$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
8242 8242
 if test "${lt_cv_prog_compiler_static_works+set}" = set; then
8243
-  echo $ECHO_N "(cached) $ECHO_C" >&6
8243
+  $as_echo_n "(cached) " >&6
8244 8244
 else
8245 8245
   lt_cv_prog_compiler_static_works=no
8246 8246
    save_LDFLAGS="$LDFLAGS"
... ...
@@ -8265,8 +8375,8 @@ else
8265 8265
    LDFLAGS="$save_LDFLAGS"
8266 8266
 
8267 8267
 fi
8268
-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works" >&5
8269
-echo "${ECHO_T}$lt_cv_prog_compiler_static_works" >&6; }
8268
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works" >&5
8269
+$as_echo "$lt_cv_prog_compiler_static_works" >&6; }
8270 8270
 
8271 8271
 if test x"$lt_cv_prog_compiler_static_works" = xyes; then
8272 8272
     :
... ...
@@ -8280,10 +8390,10 @@ fi
8280 8280
 
8281 8281
 
8282 8282
 
8283
-  { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
8284
-echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; }
8283
+  { $as_echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
8284
+$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
8285 8285
 if test "${lt_cv_prog_compiler_c_o+set}" = set; then
8286
-  echo $ECHO_N "(cached) $ECHO_C" >&6
8286
+  $as_echo_n "(cached) " >&6
8287 8287
 else
8288 8288
   lt_cv_prog_compiler_c_o=no
8289 8289
    $RM -r conftest 2>/dev/null
... ...
@@ -8301,11 +8411,11 @@ else
8301 8301
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
8302 8302
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
8303 8303
    -e 's:$: $lt_compiler_flag:'`
8304
-   (eval echo "\"\$as_me:8304: $lt_compile\"" >&5)
8304
+   (eval echo "\"\$as_me:8414: $lt_compile\"" >&5)
8305 8305
    (eval "$lt_compile" 2>out/conftest.err)
8306 8306
    ac_status=$?
8307 8307
    cat out/conftest.err >&5
8308
-   echo "$as_me:8308: \$? = $ac_status" >&5
8308
+   echo "$as_me:8418: \$? = $ac_status" >&5
8309 8309
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
8310 8310
    then
8311 8311
      # The compiler can only warn and ignore the option if not recognized
... ...
@@ -8327,18 +8437,18 @@ else
8327 8327
    $RM conftest*
8328 8328
 
8329 8329
 fi
8330
-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5
8331
-echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6; }
8330
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5
8331
+$as_echo "$lt_cv_prog_compiler_c_o" >&6; }
8332 8332
 
8333 8333
 
8334 8334
 
8335 8335
 
8336 8336
 
8337 8337
 
8338
-  { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
8339
-echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; }
8338
+  { $as_echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
8339
+$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
8340 8340
 if test "${lt_cv_prog_compiler_c_o+set}" = set; then
8341
-  echo $ECHO_N "(cached) $ECHO_C" >&6
8341
+  $as_echo_n "(cached) " >&6
8342 8342
 else
8343 8343
   lt_cv_prog_compiler_c_o=no
8344 8344
    $RM -r conftest 2>/dev/null
... ...
@@ -8356,11 +8466,11 @@ else
8356 8356
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
8357 8357
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
8358 8358
    -e 's:$: $lt_compiler_flag:'`
8359
-   (eval echo "\"\$as_me:8359: $lt_compile\"" >&5)
8359
+   (eval echo "\"\$as_me:8469: $lt_compile\"" >&5)
8360 8360
    (eval "$lt_compile" 2>out/conftest.err)
8361 8361
    ac_status=$?
8362 8362
    cat out/conftest.err >&5
8363
-   echo "$as_me:8363: \$? = $ac_status" >&5
8363
+   echo "$as_me:8473: \$? = $ac_status" >&5
8364 8364
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
8365 8365
    then
8366 8366
      # The compiler can only warn and ignore the option if not recognized
... ...
@@ -8382,8 +8492,8 @@ else
8382 8382
    $RM conftest*
8383 8383
 
8384 8384
 fi
8385
-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5
8386
-echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6; }
8385
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5
8386
+$as_echo "$lt_cv_prog_compiler_c_o" >&6; }
8387 8387
 
8388 8388
 
8389 8389
 
... ...
@@ -8391,19 +8501,19 @@ echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6; }
8391 8391
 hard_links="nottested"
8392 8392
 if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then
8393 8393
   # do not overwrite the value of need_locks provided by the user
8394
-  { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5
8395
-echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; }
8394
+  { $as_echo "$as_me:$LINENO: checking if we can lock with hard links" >&5
8395
+$as_echo_n "checking if we can lock with hard links... " >&6; }
8396 8396
   hard_links=yes
8397 8397
   $RM conftest*
8398 8398
   ln conftest.a conftest.b 2>/dev/null && hard_links=no
8399 8399
   touch conftest.a
8400 8400
   ln conftest.a conftest.b 2>&5 || hard_links=no
8401 8401
   ln conftest.a conftest.b 2>/dev/null && hard_links=no
8402
-  { echo "$as_me:$LINENO: result: $hard_links" >&5
8403
-echo "${ECHO_T}$hard_links" >&6; }
8402
+  { $as_echo "$as_me:$LINENO: result: $hard_links" >&5
8403
+$as_echo "$hard_links" >&6; }
8404 8404
   if test "$hard_links" = no; then
8405
-    { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
8406
-echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
8405
+    { $as_echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
8406
+$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
8407 8407
     need_locks=warn
8408 8408
   fi
8409 8409
 else
... ...
@@ -8415,8 +8525,8 @@ fi
8415 8415
 
8416 8416
 
8417 8417
 
8418
-  { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
8419
-echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; }
8418
+  { $as_echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
8419
+$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; }
8420 8420
 
8421 8421
   runpath_var=
8422 8422
   allow_undefined_flag=
... ...
@@ -8878,18 +8988,21 @@ case "(($ac_try" in
8878 8878
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8879 8879
   *) ac_try_echo=$ac_try;;
8880 8880
 esac
8881
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8881
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
8882
+$as_echo "$ac_try_echo") >&5
8882 8883
   (eval "$ac_link") 2>conftest.er1
8883 8884
   ac_status=$?
8884 8885
   grep -v '^ *+' conftest.er1 >conftest.err
8885 8886
   rm -f conftest.er1
8886 8887
   cat conftest.err >&5
8887
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
8888
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
8888 8889
   (exit $ac_status); } && {
8889 8890
 	 test -z "$ac_c_werror_flag" ||
8890 8891
 	 test ! -s conftest.err
8891
-       } && test -s conftest$ac_exeext &&
8892
-       $as_test_x conftest$ac_exeext; then
8892
+       } && test -s conftest$ac_exeext && {
8893
+	 test "$cross_compiling" = yes ||
8894
+	 $as_test_x conftest$ac_exeext
8895
+       }; then
8893 8896
 
8894 8897
 lt_aix_libpath_sed='
8895 8898
     /Import File Strings/,/^$/ {
... ...
@@ -8904,12 +9017,13 @@ if test -z "$aix_libpath"; then
8904 8904
   aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
8905 8905
 fi
8906 8906
 else
8907
-  echo "$as_me: failed program was:" >&5
8907
+  $as_echo "$as_me: failed program was:" >&5
8908 8908
 sed 's/^/| /' conftest.$ac_ext >&5
8909 8909
 
8910 8910
 
8911 8911
 fi
8912 8912
 
8913
+rm -rf conftest.dSYM
8913 8914
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
8914 8915
       conftest$ac_exeext conftest.$ac_ext
8915 8916
 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
... ...
@@ -8945,18 +9059,21 @@ case "(($ac_try" in
8945 8945
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8946 8946
   *) ac_try_echo=$ac_try;;
8947 8947
 esac
8948
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8948
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
8949
+$as_echo "$ac_try_echo") >&5
8949 8950
   (eval "$ac_link") 2>conftest.er1
8950 8951
   ac_status=$?
8951 8952
   grep -v '^ *+' conftest.er1 >conftest.err
8952 8953
   rm -f conftest.er1
8953 8954
   cat conftest.err >&5
8954
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
8955
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
8955 8956
   (exit $ac_status); } && {
8956 8957
 	 test -z "$ac_c_werror_flag" ||
8957 8958
 	 test ! -s conftest.err
8958
-       } && test -s conftest$ac_exeext &&
8959
-       $as_test_x conftest$ac_exeext; then
8959
+       } && test -s conftest$ac_exeext && {
8960
+	 test "$cross_compiling" = yes ||
8961
+	 $as_test_x conftest$ac_exeext
8962
+       }; then
8960 8963
 
8961 8964
 lt_aix_libpath_sed='
8962 8965
     /Import File Strings/,/^$/ {
... ...
@@ -8971,12 +9088,13 @@ if test -z "$aix_libpath"; then
8971 8971
   aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
8972 8972
 fi
8973 8973
 else
8974
-  echo "$as_me: failed program was:" >&5
8974
+  $as_echo "$as_me: failed program was:" >&5
8975 8975
 sed 's/^/| /' conftest.$ac_ext >&5
8976 8976
 
8977 8977
 
8978 8978
 fi
8979 8979
 
8980
+rm -rf conftest.dSYM
8980 8981
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
8981 8982
       conftest$ac_exeext conftest.$ac_ext
8982 8983
 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
... ...
@@ -9199,27 +9317,31 @@ case "(($ac_try" in
9199 9199
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
9200 9200
   *) ac_try_echo=$ac_try;;
9201 9201
 esac
9202
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
9202
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
9203
+$as_echo "$ac_try_echo") >&5
9203 9204
   (eval "$ac_link") 2>conftest.er1
9204 9205
   ac_status=$?
9205 9206
   grep -v '^ *+' conftest.er1 >conftest.err
9206 9207
   rm -f conftest.er1
9207 9208
   cat conftest.err >&5
9208
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
9209
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
9209 9210
   (exit $ac_status); } && {
9210 9211
 	 test -z "$ac_c_werror_flag" ||
9211 9212
 	 test ! -s conftest.err
9212
-       } && test -s conftest$ac_exeext &&
9213
-       $as_test_x conftest$ac_exeext; then
9213
+       } && test -s conftest$ac_exeext && {
9214
+	 test "$cross_compiling" = yes ||
9215
+	 $as_test_x conftest$ac_exeext
9216
+       }; then
9214 9217
   archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib'
9215 9218
 
9216 9219
 else
9217
-  echo "$as_me: failed program was:" >&5
9220
+  $as_echo "$as_me: failed program was:" >&5
9218 9221
 sed 's/^/| /' conftest.$ac_ext >&5
9219 9222
 
9220 9223
 
9221 9224
 fi
9222 9225
 
9226
+rm -rf conftest.dSYM
9223 9227
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
9224 9228
       conftest$ac_exeext conftest.$ac_ext
9225 9229
         LDFLAGS="$save_LDFLAGS"
... ...
@@ -9477,8 +9599,8 @@ rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
9477 9477
     fi
9478 9478
   fi
9479 9479
 
9480
-{ echo "$as_me:$LINENO: result: $ld_shlibs" >&5
9481
-echo "${ECHO_T}$ld_shlibs" >&6; }
9480
+{ $as_echo "$as_me:$LINENO: result: $ld_shlibs" >&5
9481
+$as_echo "$ld_shlibs" >&6; }
9482 9482
 test "$ld_shlibs" = no && can_build_shared=no
9483 9483
 
9484 9484
 with_gnu_ld=$with_gnu_ld
... ...
@@ -9514,15 +9636,15 @@ x|xyes)
9514 9514
       # Test whether the compiler implicitly links with -lc since on some
9515 9515
       # systems, -lgcc has to come before -lc. If gcc already passes -lc
9516 9516
       # to ld, don't add -lc before -lgcc.
9517
-      { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5
9518
-echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; }
9517
+      { $as_echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5
9518
+$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
9519 9519
       $RM conftest*
9520 9520
       echo "$lt_simple_compile_test_code" > conftest.$ac_ext
9521 9521
 
9522 9522
       if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
9523 9523
   (eval $ac_compile) 2>&5
9524 9524
   ac_status=$?
9525
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
9525
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
9526 9526
   (exit $ac_status); } 2>conftest.err; then
9527 9527
         soname=conftest
9528 9528
         lib=conftest
... ...
@@ -9540,7 +9662,7 @@ echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&
9540 9540
         if { (eval echo "$as_me:$LINENO: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\"") >&5
9541 9541
   (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5
9542 9542
   ac_status=$?
9543
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
9543
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
9544 9544
   (exit $ac_status); }
9545 9545
         then
9546 9546
 	  archive_cmds_need_lc=no
... ...
@@ -9552,8 +9674,8 @@ echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&
9552 9552
         cat conftest.err 1>&5
9553 9553
       fi
9554 9554
       $RM conftest*
9555
-      { echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5
9556
-echo "${ECHO_T}$archive_cmds_need_lc" >&6; }
9555
+      { $as_echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5
9556
+$as_echo "$archive_cmds_need_lc" >&6; }
9557 9557
       ;;
9558 9558
     esac
9559 9559
   fi
... ...
@@ -9716,8 +9838,8 @@ esac
9716 9716
 
9717 9717
 
9718 9718
 
9719
-  { echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5
9720
-echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; }
9719
+  { $as_echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5
9720
+$as_echo_n "checking dynamic linker characteristics... " >&6; }
9721 9721
 
9722 9722
 if test "$GCC" = yes; then
9723 9723
   case $host_os in
... ...
@@ -10159,29 +10281,33 @@ case "(($ac_try" in
10159 10159
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10160 10160
   *) ac_try_echo=$ac_try;;
10161 10161
 esac
10162
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10162
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
10163
+$as_echo "$ac_try_echo") >&5
10163 10164
   (eval "$ac_link") 2>conftest.er1
10164 10165
   ac_status=$?
10165 10166
   grep -v '^ *+' conftest.er1 >conftest.err
10166 10167
   rm -f conftest.er1
10167 10168
   cat conftest.err >&5
10168
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
10169
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
10169 10170
   (exit $ac_status); } && {
10170 10171
 	 test -z "$ac_c_werror_flag" ||
10171 10172
 	 test ! -s conftest.err
10172
-       } && test -s conftest$ac_exeext &&
10173
-       $as_test_x conftest$ac_exeext; then
10173
+       } && test -s conftest$ac_exeext && {
10174
+	 test "$cross_compiling" = yes ||
10175
+	 $as_test_x conftest$ac_exeext
10176
+       }; then
10174 10177
   if  ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then
10175 10178
   shlibpath_overrides_runpath=yes
10176 10179
 fi
10177 10180
 
10178 10181
 else
10179
-  echo "$as_me: failed program was:" >&5
10182
+  $as_echo "$as_me: failed program was:" >&5
10180 10183
 sed 's/^/| /' conftest.$ac_ext >&5
10181 10184
 
10182 10185
 
10183 10186
 fi
10184 10187
 
10188
+rm -rf conftest.dSYM
10185 10189
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10186 10190
       conftest$ac_exeext conftest.$ac_ext
10187 10191
   LDFLAGS=$save_LDFLAGS
... ...
@@ -10395,8 +10521,8 @@ uts4*)
10395 10395
   dynamic_linker=no
10396 10396
   ;;
10397 10397
 esac
10398
-{ echo "$as_me:$LINENO: result: $dynamic_linker" >&5
10399
-echo "${ECHO_T}$dynamic_linker" >&6; }
10398
+{ $as_echo "$as_me:$LINENO: result: $dynamic_linker" >&5
10399
+$as_echo "$dynamic_linker" >&6; }
10400 10400
 test "$dynamic_linker" = no && can_build_shared=no
10401 10401
 
10402 10402
 variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
... ...
@@ -10497,8 +10623,8 @@ fi
10497 10497
 
10498 10498
 
10499 10499
 
10500
-  { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5
10501
-echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; }
10500
+  { $as_echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5
10501
+$as_echo_n "checking how to hardcode library paths into programs... " >&6; }
10502 10502
 hardcode_action=
10503 10503
 if test -n "$hardcode_libdir_flag_spec" ||
10504 10504
    test -n "$runpath_var" ||
... ...
@@ -10522,8 +10648,8 @@ else
10522 10522
   # directories.
10523 10523
   hardcode_action=unsupported
10524 10524
 fi
10525
-{ echo "$as_me:$LINENO: result: $hardcode_action" >&5
10526
-echo "${ECHO_T}$hardcode_action" >&6; }
10525
+{ $as_echo "$as_me:$LINENO: result: $hardcode_action" >&5
10526
+$as_echo "$hardcode_action" >&6; }
10527 10527
 
10528 10528
 if test "$hardcode_action" = relink ||
10529 10529
    test "$inherit_rpath" = yes; then
... ...
@@ -10567,10 +10693,10 @@ else
10567 10567
 
10568 10568
   darwin*)
10569 10569
   # if libdl is installed we need to link against it
10570
-    { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
10571
-echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; }
10570
+    { $as_echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
10571
+$as_echo_n "checking for dlopen in -ldl... " >&6; }
10572 10572
 if test "${ac_cv_lib_dl_dlopen+set}" = set; then
10573
-  echo $ECHO_N "(cached) $ECHO_C" >&6
10573
+  $as_echo_n "(cached) " >&6
10574 10574
 else
10575 10575
   ac_check_lib_save_LIBS=$LIBS
10576 10576
 LIBS="-ldl  $LIBS"
... ...
@@ -10602,33 +10728,37 @@ case "(($ac_try" in
10602 10602
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10603 10603
   *) ac_try_echo=$ac_try;;
10604 10604
 esac
10605
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10605
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
10606
+$as_echo "$ac_try_echo") >&5
10606 10607
   (eval "$ac_link") 2>conftest.er1
10607 10608
   ac_status=$?
10608 10609
   grep -v '^ *+' conftest.er1 >conftest.err
10609 10610
   rm -f conftest.er1
10610 10611
   cat conftest.err >&5
10611
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
10612
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
10612 10613
   (exit $ac_status); } && {
10613 10614
 	 test -z "$ac_c_werror_flag" ||
10614 10615
 	 test ! -s conftest.err
10615
-       } && test -s conftest$ac_exeext &&
10616
-       $as_test_x conftest$ac_exeext; then
10616
+       } && test -s conftest$ac_exeext && {
10617
+	 test "$cross_compiling" = yes ||
10618
+	 $as_test_x conftest$ac_exeext
10619
+       }; then
10617 10620
   ac_cv_lib_dl_dlopen=yes
10618 10621
 else
10619
-  echo "$as_me: failed program was:" >&5
10622
+  $as_echo "$as_me: failed program was:" >&5
10620 10623
 sed 's/^/| /' conftest.$ac_ext >&5
10621 10624
 
10622 10625
 	ac_cv_lib_dl_dlopen=no
10623 10626
 fi
10624 10627
 
10628
+rm -rf conftest.dSYM
10625 10629
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10626 10630
       conftest$ac_exeext conftest.$ac_ext
10627 10631
 LIBS=$ac_check_lib_save_LIBS
10628 10632
 fi
10629
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
10630
-echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; }
10631
-if test $ac_cv_lib_dl_dlopen = yes; then
10633
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
10634
+$as_echo "$ac_cv_lib_dl_dlopen" >&6; }
10635
+if test "x$ac_cv_lib_dl_dlopen" = x""yes; then
10632 10636
   lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
10633 10637
 else
10634 10638
 
... ...
@@ -10641,10 +10771,10 @@ fi
10641 10641
     ;;
10642 10642
 
10643 10643
   *)
10644
-    { echo "$as_me:$LINENO: checking for shl_load" >&5
10645
-echo $ECHO_N "checking for shl_load... $ECHO_C" >&6; }
10644
+    { $as_echo "$as_me:$LINENO: checking for shl_load" >&5
10645
+$as_echo_n "checking for shl_load... " >&6; }
10646 10646
 if test "${ac_cv_func_shl_load+set}" = set; then
10647
-  echo $ECHO_N "(cached) $ECHO_C" >&6
10647
+  $as_echo_n "(cached) " >&6
10648 10648
 else
10649 10649
   cat >conftest.$ac_ext <<_ACEOF
10650 10650
 /* confdefs.h.  */
... ...
@@ -10697,38 +10827,42 @@ case "(($ac_try" in
10697 10697
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10698 10698
   *) ac_try_echo=$ac_try;;
10699 10699
 esac
10700
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10700
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
10701
+$as_echo "$ac_try_echo") >&5
10701 10702
   (eval "$ac_link") 2>conftest.er1
10702 10703
   ac_status=$?
10703 10704
   grep -v '^ *+' conftest.er1 >conftest.err
10704 10705
   rm -f conftest.er1
10705 10706
   cat conftest.err >&5
10706
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
10707
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
10707 10708
   (exit $ac_status); } && {
10708 10709
 	 test -z "$ac_c_werror_flag" ||
10709 10710
 	 test ! -s conftest.err
10710
-       } && test -s conftest$ac_exeext &&
10711
-       $as_test_x conftest$ac_exeext; then
10711
+       } && test -s conftest$ac_exeext && {
10712
+	 test "$cross_compiling" = yes ||
10713
+	 $as_test_x conftest$ac_exeext
10714
+       }; then
10712 10715
   ac_cv_func_shl_load=yes
10713 10716
 else
10714
-  echo "$as_me: failed program was:" >&5
10717
+  $as_echo "$as_me: failed program was:" >&5
10715 10718
 sed 's/^/| /' conftest.$ac_ext >&5
10716 10719
 
10717 10720
 	ac_cv_func_shl_load=no
10718 10721
 fi
10719 10722
 
10723
+rm -rf conftest.dSYM
10720 10724
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10721 10725
       conftest$ac_exeext conftest.$ac_ext
10722 10726
 fi
10723
-{ echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
10724
-echo "${ECHO_T}$ac_cv_func_shl_load" >&6; }
10725
-if test $ac_cv_func_shl_load = yes; then
10727
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
10728
+$as_echo "$ac_cv_func_shl_load" >&6; }
10729
+if test "x$ac_cv_func_shl_load" = x""yes; then
10726 10730
   lt_cv_dlopen="shl_load"
10727 10731
 else
10728
-  { echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5
10729
-echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6; }
10732
+  { $as_echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5
10733
+$as_echo_n "checking for shl_load in -ldld... " >&6; }
10730 10734
 if test "${ac_cv_lib_dld_shl_load+set}" = set; then
10731
-  echo $ECHO_N "(cached) $ECHO_C" >&6
10735
+  $as_echo_n "(cached) " >&6
10732 10736
 else
10733 10737
   ac_check_lib_save_LIBS=$LIBS
10734 10738
 LIBS="-ldld  $LIBS"
... ...
@@ -10760,39 +10894,43 @@ case "(($ac_try" in
10760 10760
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10761 10761
   *) ac_try_echo=$ac_try;;
10762 10762
 esac
10763
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10763
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
10764
+$as_echo "$ac_try_echo") >&5
10764 10765
   (eval "$ac_link") 2>conftest.er1
10765 10766
   ac_status=$?
10766 10767
   grep -v '^ *+' conftest.er1 >conftest.err
10767 10768
   rm -f conftest.er1
10768 10769
   cat conftest.err >&5
10769
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
10770
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
10770 10771
   (exit $ac_status); } && {
10771 10772
 	 test -z "$ac_c_werror_flag" ||
10772 10773
 	 test ! -s conftest.err
10773
-       } && test -s conftest$ac_exeext &&
10774
-       $as_test_x conftest$ac_exeext; then
10774
+       } && test -s conftest$ac_exeext && {
10775
+	 test "$cross_compiling" = yes ||
10776
+	 $as_test_x conftest$ac_exeext
10777
+       }; then
10775 10778
   ac_cv_lib_dld_shl_load=yes
10776 10779
 else
10777
-  echo "$as_me: failed program was:" >&5
10780
+  $as_echo "$as_me: failed program was:" >&5
10778 10781
 sed 's/^/| /' conftest.$ac_ext >&5
10779 10782
 
10780 10783
 	ac_cv_lib_dld_shl_load=no
10781 10784
 fi
10782 10785
 
10786
+rm -rf conftest.dSYM
10783 10787
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10784 10788
       conftest$ac_exeext conftest.$ac_ext
10785 10789
 LIBS=$ac_check_lib_save_LIBS
10786 10790
 fi
10787
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5
10788
-echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6; }
10789
-if test $ac_cv_lib_dld_shl_load = yes; then
10791
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5
10792
+$as_echo "$ac_cv_lib_dld_shl_load" >&6; }
10793
+if test "x$ac_cv_lib_dld_shl_load" = x""yes; then
10790 10794
   lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"
10791 10795
 else
10792
-  { echo "$as_me:$LINENO: checking for dlopen" >&5
10793
-echo $ECHO_N "checking for dlopen... $ECHO_C" >&6; }
10796
+  { $as_echo "$as_me:$LINENO: checking for dlopen" >&5
10797
+$as_echo_n "checking for dlopen... " >&6; }
10794 10798
 if test "${ac_cv_func_dlopen+set}" = set; then
10795
-  echo $ECHO_N "(cached) $ECHO_C" >&6
10799
+  $as_echo_n "(cached) " >&6
10796 10800
 else
10797 10801
   cat >conftest.$ac_ext <<_ACEOF
10798 10802
 /* confdefs.h.  */
... ...
@@ -10845,38 +10983,42 @@ case "(($ac_try" in
10845 10845
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10846 10846
   *) ac_try_echo=$ac_try;;
10847 10847
 esac
10848
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10848
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
10849
+$as_echo "$ac_try_echo") >&5
10849 10850
   (eval "$ac_link") 2>conftest.er1
10850 10851
   ac_status=$?
10851 10852
   grep -v '^ *+' conftest.er1 >conftest.err
10852 10853
   rm -f conftest.er1
10853 10854
   cat conftest.err >&5
10854
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
10855
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
10855 10856
   (exit $ac_status); } && {
10856 10857
 	 test -z "$ac_c_werror_flag" ||
10857 10858
 	 test ! -s conftest.err
10858
-       } && test -s conftest$ac_exeext &&
10859
-       $as_test_x conftest$ac_exeext; then
10859
+       } && test -s conftest$ac_exeext && {
10860
+	 test "$cross_compiling" = yes ||
10861
+	 $as_test_x conftest$ac_exeext
10862
+       }; then
10860 10863
   ac_cv_func_dlopen=yes
10861 10864
 else
10862
-  echo "$as_me: failed program was:" >&5
10865
+  $as_echo "$as_me: failed program was:" >&5
10863 10866
 sed 's/^/| /' conftest.$ac_ext >&5
10864 10867
 
10865 10868
 	ac_cv_func_dlopen=no
10866 10869
 fi
10867 10870
 
10871
+rm -rf conftest.dSYM
10868 10872
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10869 10873
       conftest$ac_exeext conftest.$ac_ext
10870 10874
 fi
10871
-{ echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5
10872
-echo "${ECHO_T}$ac_cv_func_dlopen" >&6; }
10873
-if test $ac_cv_func_dlopen = yes; then
10875
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5
10876
+$as_echo "$ac_cv_func_dlopen" >&6; }
10877
+if test "x$ac_cv_func_dlopen" = x""yes; then
10874 10878
   lt_cv_dlopen="dlopen"
10875 10879
 else
10876
-  { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
10877
-echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; }
10880
+  { $as_echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
10881
+$as_echo_n "checking for dlopen in -ldl... " >&6; }
10878 10882
 if test "${ac_cv_lib_dl_dlopen+set}" = set; then
10879
-  echo $ECHO_N "(cached) $ECHO_C" >&6
10883
+  $as_echo_n "(cached) " >&6
10880 10884
 else
10881 10885
   ac_check_lib_save_LIBS=$LIBS
10882 10886
 LIBS="-ldl  $LIBS"
... ...
@@ -10908,39 +11050,43 @@ case "(($ac_try" in
10908 10908
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10909 10909
   *) ac_try_echo=$ac_try;;
10910 10910
 esac
10911
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10911
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
10912
+$as_echo "$ac_try_echo") >&5
10912 10913
   (eval "$ac_link") 2>conftest.er1
10913 10914
   ac_status=$?
10914 10915
   grep -v '^ *+' conftest.er1 >conftest.err
10915 10916
   rm -f conftest.er1
10916 10917
   cat conftest.err >&5
10917
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
10918
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
10918 10919
   (exit $ac_status); } && {
10919 10920
 	 test -z "$ac_c_werror_flag" ||
10920 10921
 	 test ! -s conftest.err
10921
-       } && test -s conftest$ac_exeext &&
10922
-       $as_test_x conftest$ac_exeext; then
10922
+       } && test -s conftest$ac_exeext && {
10923
+	 test "$cross_compiling" = yes ||
10924
+	 $as_test_x conftest$ac_exeext
10925
+       }; then
10923 10926
   ac_cv_lib_dl_dlopen=yes
10924 10927
 else
10925
-  echo "$as_me: failed program was:" >&5
10928
+  $as_echo "$as_me: failed program was:" >&5
10926 10929
 sed 's/^/| /' conftest.$ac_ext >&5
10927 10930
 
10928 10931
 	ac_cv_lib_dl_dlopen=no
10929 10932
 fi
10930 10933
 
10934
+rm -rf conftest.dSYM
10931 10935
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10932 10936
       conftest$ac_exeext conftest.$ac_ext
10933 10937
 LIBS=$ac_check_lib_save_LIBS
10934 10938
 fi
10935
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
10936
-echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; }
10937
-if test $ac_cv_lib_dl_dlopen = yes; then
10939
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
10940
+$as_echo "$ac_cv_lib_dl_dlopen" >&6; }
10941
+if test "x$ac_cv_lib_dl_dlopen" = x""yes; then
10938 10942
   lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
10939 10943
 else
10940
-  { echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5
10941
-echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6; }
10944
+  { $as_echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5
10945
+$as_echo_n "checking for dlopen in -lsvld... " >&6; }
10942 10946
 if test "${ac_cv_lib_svld_dlopen+set}" = set; then
10943
-  echo $ECHO_N "(cached) $ECHO_C" >&6
10947
+  $as_echo_n "(cached) " >&6
10944 10948
 else
10945 10949
   ac_check_lib_save_LIBS=$LIBS
10946 10950
 LIBS="-lsvld  $LIBS"
... ...
@@ -10972,39 +11118,43 @@ case "(($ac_try" in
10972 10972
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10973 10973
   *) ac_try_echo=$ac_try;;
10974 10974
 esac
10975
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10975
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
10976
+$as_echo "$ac_try_echo") >&5
10976 10977
   (eval "$ac_link") 2>conftest.er1
10977 10978
   ac_status=$?
10978 10979
   grep -v '^ *+' conftest.er1 >conftest.err
10979 10980
   rm -f conftest.er1
10980 10981
   cat conftest.err >&5
10981
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
10982
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
10982 10983
   (exit $ac_status); } && {
10983 10984
 	 test -z "$ac_c_werror_flag" ||
10984 10985
 	 test ! -s conftest.err
10985
-       } && test -s conftest$ac_exeext &&
10986
-       $as_test_x conftest$ac_exeext; then
10986
+       } && test -s conftest$ac_exeext && {
10987
+	 test "$cross_compiling" = yes ||
10988
+	 $as_test_x conftest$ac_exeext
10989
+       }; then
10987 10990
   ac_cv_lib_svld_dlopen=yes
10988 10991
 else
10989
-  echo "$as_me: failed program was:" >&5
10992
+  $as_echo "$as_me: failed program was:" >&5
10990 10993
 sed 's/^/| /' conftest.$ac_ext >&5
10991 10994
 
10992 10995
 	ac_cv_lib_svld_dlopen=no
10993 10996
 fi
10994 10997
 
10998
+rm -rf conftest.dSYM
10995 10999
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10996 11000
       conftest$ac_exeext conftest.$ac_ext
10997 11001
 LIBS=$ac_check_lib_save_LIBS
10998 11002
 fi
10999
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5
11000
-echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6; }
11001
-if test $ac_cv_lib_svld_dlopen = yes; then
11003
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5
11004
+$as_echo "$ac_cv_lib_svld_dlopen" >&6; }
11005
+if test "x$ac_cv_lib_svld_dlopen" = x""yes; then
11002 11006
   lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"
11003 11007
 else
11004
-  { echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5
11005
-echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6; }
11008
+  { $as_echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5
11009
+$as_echo_n "checking for dld_link in -ldld... " >&6; }
11006 11010
 if test "${ac_cv_lib_dld_dld_link+set}" = set; then
11007
-  echo $ECHO_N "(cached) $ECHO_C" >&6
11011
+  $as_echo_n "(cached) " >&6
11008 11012
 else
11009 11013
   ac_check_lib_save_LIBS=$LIBS
11010 11014
 LIBS="-ldld  $LIBS"
... ...
@@ -11036,33 +11186,37 @@ case "(($ac_try" in
11036 11036
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
11037 11037
   *) ac_try_echo=$ac_try;;
11038 11038
 esac
11039
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
11039
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
11040
+$as_echo "$ac_try_echo") >&5
11040 11041
   (eval "$ac_link") 2>conftest.er1
11041 11042
   ac_status=$?
11042 11043
   grep -v '^ *+' conftest.er1 >conftest.err
11043 11044
   rm -f conftest.er1
11044 11045
   cat conftest.err >&5
11045
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
11046
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
11046 11047
   (exit $ac_status); } && {
11047 11048
 	 test -z "$ac_c_werror_flag" ||
11048 11049
 	 test ! -s conftest.err
11049
-       } && test -s conftest$ac_exeext &&
11050
-       $as_test_x conftest$ac_exeext; then
11050
+       } && test -s conftest$ac_exeext && {
11051
+	 test "$cross_compiling" = yes ||
11052
+	 $as_test_x conftest$ac_exeext
11053
+       }; then
11051 11054
   ac_cv_lib_dld_dld_link=yes
11052 11055
 else
11053
-  echo "$as_me: failed program was:" >&5
11056
+  $as_echo "$as_me: failed program was:" >&5
11054 11057
 sed 's/^/| /' conftest.$ac_ext >&5
11055 11058
 
11056 11059
 	ac_cv_lib_dld_dld_link=no
11057 11060
 fi
11058 11061
 
11062
+rm -rf conftest.dSYM
11059 11063
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
11060 11064
       conftest$ac_exeext conftest.$ac_ext
11061 11065
 LIBS=$ac_check_lib_save_LIBS
11062 11066
 fi
11063
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5
11064
-echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6; }
11065
-if test $ac_cv_lib_dld_dld_link = yes; then
11067
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5
11068
+$as_echo "$ac_cv_lib_dld_dld_link" >&6; }
11069
+if test "x$ac_cv_lib_dld_dld_link" = x""yes; then
11066 11070
   lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"
11067 11071
 fi
11068 11072
 
... ...
@@ -11101,10 +11255,10 @@ fi
11101 11101
     save_LIBS="$LIBS"
11102 11102
     LIBS="$lt_cv_dlopen_libs $LIBS"
11103 11103
 
11104
-    { echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5
11105
-echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6; }
11104
+    { $as_echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5
11105
+$as_echo_n "checking whether a program can dlopen itself... " >&6; }
11106 11106
 if test "${lt_cv_dlopen_self+set}" = set; then
11107
-  echo $ECHO_N "(cached) $ECHO_C" >&6
11107
+  $as_echo_n "(cached) " >&6
11108 11108
 else
11109 11109
   	  if test "$cross_compiling" = yes; then :
11110 11110
   lt_cv_dlopen_self=cross
... ...
@@ -11112,7 +11266,7 @@ else
11112 11112
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
11113 11113
   lt_status=$lt_dlunknown
11114 11114
   cat > conftest.$ac_ext <<_LT_EOF
11115
-#line 11115 "configure"
11115
+#line 11269 "configure"
11116 11116
 #include "confdefs.h"
11117 11117
 
11118 11118
 #if HAVE_DLFCN_H
... ...
@@ -11174,7 +11328,7 @@ _LT_EOF
11174 11174
   if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
11175 11175
   (eval $ac_link) 2>&5
11176 11176
   ac_status=$?
11177
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
11177
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
11178 11178
   (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
11179 11179
     (./conftest; exit; ) >&5 2>/dev/null
11180 11180
     lt_status=$?
... ...
@@ -11192,15 +11346,15 @@ rm -fr conftest*
11192 11192
 
11193 11193
 
11194 11194
 fi
11195
-{ echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5
11196
-echo "${ECHO_T}$lt_cv_dlopen_self" >&6; }
11195
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5
11196
+$as_echo "$lt_cv_dlopen_self" >&6; }
11197 11197
 
11198 11198
     if test "x$lt_cv_dlopen_self" = xyes; then
11199 11199
       wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
11200
-      { echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5
11201
-echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6; }
11200
+      { $as_echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5
11201
+$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; }
11202 11202
 if test "${lt_cv_dlopen_self_static+set}" = set; then
11203
-  echo $ECHO_N "(cached) $ECHO_C" >&6
11203
+  $as_echo_n "(cached) " >&6
11204 11204
 else
11205 11205
   	  if test "$cross_compiling" = yes; then :
11206 11206
   lt_cv_dlopen_self_static=cross
... ...
@@ -11208,7 +11362,7 @@ else
11208 11208
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
11209 11209
   lt_status=$lt_dlunknown
11210 11210
   cat > conftest.$ac_ext <<_LT_EOF
11211
-#line 11211 "configure"
11211
+#line 11365 "configure"
11212 11212
 #include "confdefs.h"
11213 11213
 
11214 11214
 #if HAVE_DLFCN_H
... ...
@@ -11270,7 +11424,7 @@ _LT_EOF
11270 11270
   if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
11271 11271
   (eval $ac_link) 2>&5
11272 11272
   ac_status=$?
11273
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
11273
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
11274 11274
   (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
11275 11275
     (./conftest; exit; ) >&5 2>/dev/null
11276 11276
     lt_status=$?
... ...
@@ -11288,8 +11442,8 @@ rm -fr conftest*
11288 11288
 
11289 11289
 
11290 11290
 fi
11291
-{ echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5
11292
-echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6; }
11291
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5
11292
+$as_echo "$lt_cv_dlopen_self_static" >&6; }
11293 11293
     fi
11294 11294
 
11295 11295
     CPPFLAGS="$save_CPPFLAGS"
... ...
@@ -11327,13 +11481,13 @@ fi
11327 11327
 
11328 11328
 striplib=
11329 11329
 old_striplib=
11330
-{ echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5
11331
-echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6; }
11330
+{ $as_echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5
11331
+$as_echo_n "checking whether stripping libraries is possible... " >&6; }
11332 11332
 if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
11333 11333
   test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
11334 11334
   test -z "$striplib" && striplib="$STRIP --strip-unneeded"
11335
-  { echo "$as_me:$LINENO: result: yes" >&5
11336
-echo "${ECHO_T}yes" >&6; }
11335
+  { $as_echo "$as_me:$LINENO: result: yes" >&5
11336
+$as_echo "yes" >&6; }
11337 11337
 else
11338 11338
 # FIXME - insert some real tests, host_os isn't really good enough
11339 11339
   case $host_os in
... ...
@@ -11341,16 +11495,16 @@ else
11341 11341
     if test -n "$STRIP" ; then
11342 11342
       striplib="$STRIP -x"
11343 11343
       old_striplib="$STRIP -S"
11344
-      { echo "$as_me:$LINENO: result: yes" >&5
11345
-echo "${ECHO_T}yes" >&6; }
11344
+      { $as_echo "$as_me:$LINENO: result: yes" >&5
11345
+$as_echo "yes" >&6; }
11346 11346
     else
11347
-      { echo "$as_me:$LINENO: result: no" >&5
11348
-echo "${ECHO_T}no" >&6; }
11347
+      { $as_echo "$as_me:$LINENO: result: no" >&5
11348
+$as_echo "no" >&6; }
11349 11349
     fi
11350 11350
     ;;
11351 11351
   *)
11352
-    { echo "$as_me:$LINENO: result: no" >&5
11353
-echo "${ECHO_T}no" >&6; }
11352
+    { $as_echo "$as_me:$LINENO: result: no" >&5
11353
+$as_echo "no" >&6; }
11354 11354
     ;;
11355 11355
   esac
11356 11356
 fi
... ...
@@ -11367,13 +11521,13 @@ fi
11367 11367
 
11368 11368
 
11369 11369
   # Report which library types will actually be built
11370
-  { echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5
11371
-echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6; }
11372
-  { echo "$as_me:$LINENO: result: $can_build_shared" >&5
11373
-echo "${ECHO_T}$can_build_shared" >&6; }
11370
+  { $as_echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5
11371
+$as_echo_n "checking if libtool supports shared libraries... " >&6; }
11372
+  { $as_echo "$as_me:$LINENO: result: $can_build_shared" >&5
11373
+$as_echo "$can_build_shared" >&6; }
11374 11374
 
11375
-  { echo "$as_me:$LINENO: checking whether to build shared libraries" >&5
11376
-echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6; }
11375
+  { $as_echo "$as_me:$LINENO: checking whether to build shared libraries" >&5
11376
+$as_echo_n "checking whether to build shared libraries... " >&6; }
11377 11377
   test "$can_build_shared" = "no" && enable_shared=no
11378 11378
 
11379 11379
   # On AIX, shared libraries and static libraries use the same namespace, and
... ...
@@ -11393,15 +11547,15 @@ echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6; }
11393 11393
     fi
11394 11394
     ;;
11395 11395
   esac
11396
-  { echo "$as_me:$LINENO: result: $enable_shared" >&5
11397
-echo "${ECHO_T}$enable_shared" >&6; }
11396
+  { $as_echo "$as_me:$LINENO: result: $enable_shared" >&5
11397
+$as_echo "$enable_shared" >&6; }
11398 11398
 
11399
-  { echo "$as_me:$LINENO: checking whether to build static libraries" >&5
11400
-echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6; }
11399
+  { $as_echo "$as_me:$LINENO: checking whether to build static libraries" >&5
11400
+$as_echo_n "checking whether to build static libraries... " >&6; }
11401 11401
   # Make sure either enable_shared or enable_static is yes.
11402 11402
   test "$enable_shared" = yes || enable_static=yes
11403
-  { echo "$as_me:$LINENO: result: $enable_static" >&5
11404
-echo "${ECHO_T}$enable_static" >&6; }
11403
+  { $as_echo "$as_me:$LINENO: result: $enable_static" >&5
11404
+$as_echo "$enable_static" >&6; }
11405 11405
 
11406 11406
 
11407 11407
 
... ...
@@ -11435,18 +11589,18 @@ CC="$lt_save_CC"
11435 11435
 # Only expand once:
11436 11436
 
11437 11437
 
11438
-{ echo "$as_me:$LINENO: checking which extension is used for runtime loadable modules" >&5
11439
-echo $ECHO_N "checking which extension is used for runtime loadable modules... $ECHO_C" >&6; }
11438
+{ $as_echo "$as_me:$LINENO: checking which extension is used for runtime loadable modules" >&5
11439
+$as_echo_n "checking which extension is used for runtime loadable modules... " >&6; }
11440 11440
 if test "${libltdl_cv_shlibext+set}" = set; then
11441
-  echo $ECHO_N "(cached) $ECHO_C" >&6
11441
+  $as_echo_n "(cached) " >&6
11442 11442
 else
11443 11443
 
11444 11444
 module=yes
11445 11445
 eval libltdl_cv_shlibext=$shrext_cmds
11446 11446
 
11447 11447
 fi
11448
-{ echo "$as_me:$LINENO: result: $libltdl_cv_shlibext" >&5
11449
-echo "${ECHO_T}$libltdl_cv_shlibext" >&6; }
11448
+{ $as_echo "$as_me:$LINENO: result: $libltdl_cv_shlibext" >&5
11449
+$as_echo "$libltdl_cv_shlibext" >&6; }
11450 11450
 if test -n "$libltdl_cv_shlibext"; then
11451 11451
 
11452 11452
 cat >>confdefs.h <<_ACEOF
... ...
@@ -11455,15 +11609,15 @@ _ACEOF
11455 11455
 
11456 11456
 fi
11457 11457
 
11458
-{ echo "$as_me:$LINENO: checking which variable specifies run-time module search path" >&5
11459
-echo $ECHO_N "checking which variable specifies run-time module search path... $ECHO_C" >&6; }
11458
+{ $as_echo "$as_me:$LINENO: checking which variable specifies run-time module search path" >&5
11459
+$as_echo_n "checking which variable specifies run-time module search path... " >&6; }
11460 11460
 if test "${lt_cv_module_path_var+set}" = set; then
11461
-  echo $ECHO_N "(cached) $ECHO_C" >&6
11461
+  $as_echo_n "(cached) " >&6
11462 11462
 else
11463 11463
   lt_cv_module_path_var="$shlibpath_var"
11464 11464
 fi
11465
-{ echo "$as_me:$LINENO: result: $lt_cv_module_path_var" >&5
11466
-echo "${ECHO_T}$lt_cv_module_path_var" >&6; }
11465
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_module_path_var" >&5
11466
+$as_echo "$lt_cv_module_path_var" >&6; }
11467 11467
 if test -n "$lt_cv_module_path_var"; then
11468 11468
 
11469 11469
 cat >>confdefs.h <<_ACEOF
... ...
@@ -11472,15 +11626,15 @@ _ACEOF
11472 11472
 
11473 11473
 fi
11474 11474
 
11475
-{ echo "$as_me:$LINENO: checking for the default library search path" >&5
11476
-echo $ECHO_N "checking for the default library search path... $ECHO_C" >&6; }
11475
+{ $as_echo "$as_me:$LINENO: checking for the default library search path" >&5
11476
+$as_echo_n "checking for the default library search path... " >&6; }
11477 11477
 if test "${lt_cv_sys_dlsearch_path+set}" = set; then
11478
-  echo $ECHO_N "(cached) $ECHO_C" >&6
11478
+  $as_echo_n "(cached) " >&6
11479 11479
 else
11480 11480
   lt_cv_sys_dlsearch_path="$sys_lib_dlsearch_path_spec"
11481 11481
 fi
11482
-{ echo "$as_me:$LINENO: result: $lt_cv_sys_dlsearch_path" >&5
11483
-echo "${ECHO_T}$lt_cv_sys_dlsearch_path" >&6; }
11482
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_sys_dlsearch_path" >&5
11483
+$as_echo "$lt_cv_sys_dlsearch_path" >&6; }
11484 11484
 if test -n "$lt_cv_sys_dlsearch_path"; then
11485 11485
   sys_dlsearch_path=
11486 11486
   for dir in $lt_cv_sys_dlsearch_path; do
... ...
@@ -11509,10 +11663,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
11509 11509
 
11510 11510
 
11511 11511
 LIBADD_DLOPEN=
11512
-{ echo "$as_me:$LINENO: checking for library containing dlopen" >&5
11513
-echo $ECHO_N "checking for library containing dlopen... $ECHO_C" >&6; }
11512
+{ $as_echo "$as_me:$LINENO: checking for library containing dlopen" >&5
11513
+$as_echo_n "checking for library containing dlopen... " >&6; }
11514 11514
 if test "${ac_cv_search_dlopen+set}" = set; then
11515
-  echo $ECHO_N "(cached) $ECHO_C" >&6
11515
+  $as_echo_n "(cached) " >&6
11516 11516
 else
11517 11517
   ac_func_search_save_LIBS=$LIBS
11518 11518
 cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -11550,26 +11704,30 @@ case "(($ac_try" in
11550 11550
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
11551 11551
   *) ac_try_echo=$ac_try;;
11552 11552
 esac
11553
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
11553
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
11554
+$as_echo "$ac_try_echo") >&5
11554 11555
   (eval "$ac_link") 2>conftest.er1
11555 11556
   ac_status=$?
11556 11557
   grep -v '^ *+' conftest.er1 >conftest.err
11557 11558
   rm -f conftest.er1
11558 11559
   cat conftest.err >&5
11559
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
11560
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
11560 11561
   (exit $ac_status); } && {
11561 11562
 	 test -z "$ac_c_werror_flag" ||
11562 11563
 	 test ! -s conftest.err
11563
-       } && test -s conftest$ac_exeext &&
11564
-       $as_test_x conftest$ac_exeext; then
11564
+       } && test -s conftest$ac_exeext && {
11565
+	 test "$cross_compiling" = yes ||
11566
+	 $as_test_x conftest$ac_exeext
11567
+       }; then
11565 11568
   ac_cv_search_dlopen=$ac_res
11566 11569
 else
11567
-  echo "$as_me: failed program was:" >&5
11570
+  $as_echo "$as_me: failed program was:" >&5
11568 11571
 sed 's/^/| /' conftest.$ac_ext >&5
11569 11572
 
11570 11573
 
11571 11574
 fi
11572 11575
 
11576
+rm -rf conftest.dSYM
11573 11577
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
11574 11578
       conftest$ac_exeext
11575 11579
   if test "${ac_cv_search_dlopen+set}" = set; then
... ...
@@ -11584,8 +11742,8 @@ fi
11584 11584
 rm conftest.$ac_ext
11585 11585
 LIBS=$ac_func_search_save_LIBS
11586 11586
 fi
11587
-{ echo "$as_me:$LINENO: result: $ac_cv_search_dlopen" >&5
11588
-echo "${ECHO_T}$ac_cv_search_dlopen" >&6; }
11587
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_dlopen" >&5
11588
+$as_echo "$ac_cv_search_dlopen" >&6; }
11589 11589
 ac_res=$ac_cv_search_dlopen
11590 11590
 if test "$ac_res" != no; then
11591 11591
   test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
... ...
@@ -11624,18 +11782,21 @@ case "(($ac_try" in
11624 11624
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
11625 11625
   *) ac_try_echo=$ac_try;;
11626 11626
 esac
11627
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
11627
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
11628
+$as_echo "$ac_try_echo") >&5
11628 11629
   (eval "$ac_link") 2>conftest.er1
11629 11630
   ac_status=$?
11630 11631
   grep -v '^ *+' conftest.er1 >conftest.err
11631 11632
   rm -f conftest.er1
11632 11633
   cat conftest.err >&5
11633
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
11634
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
11634 11635
   (exit $ac_status); } && {
11635 11636
 	 test -z "$ac_c_werror_flag" ||
11636 11637
 	 test ! -s conftest.err
11637
-       } && test -s conftest$ac_exeext &&
11638
-       $as_test_x conftest$ac_exeext; then
11638
+       } && test -s conftest$ac_exeext && {
11639
+	 test "$cross_compiling" = yes ||
11640
+	 $as_test_x conftest$ac_exeext
11641
+       }; then
11639 11642
 
11640 11643
 cat >>confdefs.h <<\_ACEOF
11641 11644
 #define HAVE_LIBDL 1
... ...
@@ -11644,13 +11805,13 @@ _ACEOF
11644 11644
 	    libltdl_cv_func_dlopen="yes"
11645 11645
 	    LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"
11646 11646
 else
11647
-  echo "$as_me: failed program was:" >&5
11647
+  $as_echo "$as_me: failed program was:" >&5
11648 11648
 sed 's/^/| /' conftest.$ac_ext >&5
11649 11649
 
11650
-	{ echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5
11651
-echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6; }
11650
+	{ $as_echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5
11651
+$as_echo_n "checking for dlopen in -lsvld... " >&6; }
11652 11652
 if test "${ac_cv_lib_svld_dlopen+set}" = set; then
11653
-  echo $ECHO_N "(cached) $ECHO_C" >&6
11653
+  $as_echo_n "(cached) " >&6
11654 11654
 else
11655 11655
   ac_check_lib_save_LIBS=$LIBS
11656 11656
 LIBS="-lsvld  $LIBS"
... ...
@@ -11682,33 +11843,37 @@ case "(($ac_try" in
11682 11682
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
11683 11683
   *) ac_try_echo=$ac_try;;
11684 11684
 esac
11685
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
11685
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
11686
+$as_echo "$ac_try_echo") >&5
11686 11687
   (eval "$ac_link") 2>conftest.er1
11687 11688
   ac_status=$?
11688 11689
   grep -v '^ *+' conftest.er1 >conftest.err
11689 11690
   rm -f conftest.er1
11690 11691
   cat conftest.err >&5
11691
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
11692
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
11692 11693
   (exit $ac_status); } && {
11693 11694
 	 test -z "$ac_c_werror_flag" ||
11694 11695
 	 test ! -s conftest.err
11695
-       } && test -s conftest$ac_exeext &&
11696
-       $as_test_x conftest$ac_exeext; then
11696
+       } && test -s conftest$ac_exeext && {
11697
+	 test "$cross_compiling" = yes ||
11698
+	 $as_test_x conftest$ac_exeext
11699
+       }; then
11697 11700
   ac_cv_lib_svld_dlopen=yes
11698 11701
 else
11699
-  echo "$as_me: failed program was:" >&5
11702
+  $as_echo "$as_me: failed program was:" >&5
11700 11703
 sed 's/^/| /' conftest.$ac_ext >&5
11701 11704
 
11702 11705
 	ac_cv_lib_svld_dlopen=no
11703 11706
 fi
11704 11707
 
11708
+rm -rf conftest.dSYM
11705 11709
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
11706 11710
       conftest$ac_exeext conftest.$ac_ext
11707 11711
 LIBS=$ac_check_lib_save_LIBS
11708 11712
 fi
11709
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5
11710
-echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6; }
11711
-if test $ac_cv_lib_svld_dlopen = yes; then
11713
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5
11714
+$as_echo "$ac_cv_lib_svld_dlopen" >&6; }
11715
+if test "x$ac_cv_lib_svld_dlopen" = x""yes; then
11712 11716
 
11713 11717
 cat >>confdefs.h <<\_ACEOF
11714 11718
 #define HAVE_LIBDL 1
... ...
@@ -11720,6 +11885,7 @@ fi
11720 11720
 
11721 11721
 fi
11722 11722
 
11723
+rm -rf conftest.dSYM
11723 11724
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
11724 11725
       conftest$ac_exeext conftest.$ac_ext
11725 11726
 fi
... ...
@@ -11731,11 +11897,11 @@ then
11731 11731
 
11732 11732
 for ac_func in dlerror
11733 11733
 do
11734
-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
11735
-{ echo "$as_me:$LINENO: checking for $ac_func" >&5
11736
-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
11734
+as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
11735
+{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5
11736
+$as_echo_n "checking for $ac_func... " >&6; }
11737 11737
 if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
11738
-  echo $ECHO_N "(cached) $ECHO_C" >&6
11738
+  $as_echo_n "(cached) " >&6
11739 11739
 else
11740 11740
   cat >conftest.$ac_ext <<_ACEOF
11741 11741
 /* confdefs.h.  */
... ...
@@ -11788,35 +11954,42 @@ case "(($ac_try" in
11788 11788
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
11789 11789
   *) ac_try_echo=$ac_try;;
11790 11790
 esac
11791
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
11791
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
11792
+$as_echo "$ac_try_echo") >&5
11792 11793
   (eval "$ac_link") 2>conftest.er1
11793 11794
   ac_status=$?
11794 11795
   grep -v '^ *+' conftest.er1 >conftest.err
11795 11796
   rm -f conftest.er1
11796 11797
   cat conftest.err >&5
11797
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
11798
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
11798 11799
   (exit $ac_status); } && {
11799 11800
 	 test -z "$ac_c_werror_flag" ||
11800 11801
 	 test ! -s conftest.err
11801
-       } && test -s conftest$ac_exeext &&
11802
-       $as_test_x conftest$ac_exeext; then
11802
+       } && test -s conftest$ac_exeext && {
11803
+	 test "$cross_compiling" = yes ||
11804
+	 $as_test_x conftest$ac_exeext
11805
+       }; then
11803 11806
   eval "$as_ac_var=yes"
11804 11807
 else
11805
-  echo "$as_me: failed program was:" >&5
11808
+  $as_echo "$as_me: failed program was:" >&5
11806 11809
 sed 's/^/| /' conftest.$ac_ext >&5
11807 11810
 
11808 11811
 	eval "$as_ac_var=no"
11809 11812
 fi
11810 11813
 
11814
+rm -rf conftest.dSYM
11811 11815
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
11812 11816
       conftest$ac_exeext conftest.$ac_ext
11813 11817
 fi
11814
-ac_res=`eval echo '${'$as_ac_var'}'`
11815
-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
11816
-echo "${ECHO_T}$ac_res" >&6; }
11817
-if test `eval echo '${'$as_ac_var'}'` = yes; then
11818
+ac_res=`eval 'as_val=${'$as_ac_var'}
11819
+		 $as_echo "$as_val"'`
11820
+	       { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
11821
+$as_echo "$ac_res" >&6; }
11822
+as_val=`eval 'as_val=${'$as_ac_var'}
11823
+		 $as_echo "$as_val"'`
11824
+   if test "x$as_val" = x""yes; then
11818 11825
   cat >>confdefs.h <<_ACEOF
11819
-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
11826
+#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
11820 11827
 _ACEOF
11821 11828
 
11822 11829
 fi
... ...
@@ -11827,10 +12000,10 @@ fi
11827 11827
 
11828 11828
 
11829 11829
 LIBADD_SHL_LOAD=
11830
-{ echo "$as_me:$LINENO: checking for shl_load" >&5
11831
-echo $ECHO_N "checking for shl_load... $ECHO_C" >&6; }
11830
+{ $as_echo "$as_me:$LINENO: checking for shl_load" >&5
11831
+$as_echo_n "checking for shl_load... " >&6; }
11832 11832
 if test "${ac_cv_func_shl_load+set}" = set; then
11833
-  echo $ECHO_N "(cached) $ECHO_C" >&6
11833
+  $as_echo_n "(cached) " >&6
11834 11834
 else
11835 11835
   cat >conftest.$ac_ext <<_ACEOF
11836 11836
 /* confdefs.h.  */
... ...
@@ -11883,32 +12056,36 @@ case "(($ac_try" in
11883 11883
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
11884 11884
   *) ac_try_echo=$ac_try;;
11885 11885
 esac
11886
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
11886
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
11887
+$as_echo "$ac_try_echo") >&5
11887 11888
   (eval "$ac_link") 2>conftest.er1
11888 11889
   ac_status=$?
11889 11890
   grep -v '^ *+' conftest.er1 >conftest.err
11890 11891
   rm -f conftest.er1
11891 11892
   cat conftest.err >&5
11892
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
11893
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
11893 11894
   (exit $ac_status); } && {
11894 11895
 	 test -z "$ac_c_werror_flag" ||
11895 11896
 	 test ! -s conftest.err
11896
-       } && test -s conftest$ac_exeext &&
11897
-       $as_test_x conftest$ac_exeext; then
11897
+       } && test -s conftest$ac_exeext && {
11898
+	 test "$cross_compiling" = yes ||
11899
+	 $as_test_x conftest$ac_exeext
11900
+       }; then
11898 11901
   ac_cv_func_shl_load=yes
11899 11902
 else
11900
-  echo "$as_me: failed program was:" >&5
11903
+  $as_echo "$as_me: failed program was:" >&5
11901 11904
 sed 's/^/| /' conftest.$ac_ext >&5
11902 11905
 
11903 11906
 	ac_cv_func_shl_load=no
11904 11907
 fi
11905 11908
 
11909
+rm -rf conftest.dSYM
11906 11910
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
11907 11911
       conftest$ac_exeext conftest.$ac_ext
11908 11912
 fi
11909
-{ echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
11910
-echo "${ECHO_T}$ac_cv_func_shl_load" >&6; }
11911
-if test $ac_cv_func_shl_load = yes; then
11913
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
11914
+$as_echo "$ac_cv_func_shl_load" >&6; }
11915
+if test "x$ac_cv_func_shl_load" = x""yes; then
11912 11916
 
11913 11917
 cat >>confdefs.h <<\_ACEOF
11914 11918
 #define HAVE_SHL_LOAD 1
... ...
@@ -11916,10 +12093,10 @@ _ACEOF
11916 11916
 
11917 11917
 	LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"
11918 11918
 else
11919
-  { echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5
11920
-echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6; }
11919
+  { $as_echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5
11920
+$as_echo_n "checking for shl_load in -ldld... " >&6; }
11921 11921
 if test "${ac_cv_lib_dld_shl_load+set}" = set; then
11922
-  echo $ECHO_N "(cached) $ECHO_C" >&6
11922
+  $as_echo_n "(cached) " >&6
11923 11923
 else
11924 11924
   ac_check_lib_save_LIBS=$LIBS
11925 11925
 LIBS="-ldld  $LIBS"
... ...
@@ -11951,33 +12128,37 @@ case "(($ac_try" in
11951 11951
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
11952 11952
   *) ac_try_echo=$ac_try;;
11953 11953
 esac
11954
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
11954
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
11955
+$as_echo "$ac_try_echo") >&5
11955 11956
   (eval "$ac_link") 2>conftest.er1
11956 11957
   ac_status=$?
11957 11958
   grep -v '^ *+' conftest.er1 >conftest.err
11958 11959
   rm -f conftest.er1
11959 11960
   cat conftest.err >&5
11960
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
11961
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
11961 11962
   (exit $ac_status); } && {
11962 11963
 	 test -z "$ac_c_werror_flag" ||
11963 11964
 	 test ! -s conftest.err
11964
-       } && test -s conftest$ac_exeext &&
11965
-       $as_test_x conftest$ac_exeext; then
11965
+       } && test -s conftest$ac_exeext && {
11966
+	 test "$cross_compiling" = yes ||
11967
+	 $as_test_x conftest$ac_exeext
11968
+       }; then
11966 11969
   ac_cv_lib_dld_shl_load=yes
11967 11970
 else
11968
-  echo "$as_me: failed program was:" >&5
11971
+  $as_echo "$as_me: failed program was:" >&5
11969 11972
 sed 's/^/| /' conftest.$ac_ext >&5
11970 11973
 
11971 11974
 	ac_cv_lib_dld_shl_load=no
11972 11975
 fi
11973 11976
 
11977
+rm -rf conftest.dSYM
11974 11978
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
11975 11979
       conftest$ac_exeext conftest.$ac_ext
11976 11980
 LIBS=$ac_check_lib_save_LIBS
11977 11981
 fi
11978
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5
11979
-echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6; }
11980
-if test $ac_cv_lib_dld_shl_load = yes; then
11982
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5
11983
+$as_echo "$ac_cv_lib_dld_shl_load" >&6; }
11984
+if test "x$ac_cv_lib_dld_shl_load" = x""yes; then
11981 11985
 
11982 11986
 cat >>confdefs.h <<\_ACEOF
11983 11987
 #define HAVE_SHL_LOAD 1
... ...
@@ -11994,10 +12175,10 @@ fi
11994 11994
 case $host_os in
11995 11995
 darwin[1567].*)
11996 11996
 # We only want this for pre-Mac OS X 10.4.
11997
-  { echo "$as_me:$LINENO: checking for _dyld_func_lookup" >&5
11998
-echo $ECHO_N "checking for _dyld_func_lookup... $ECHO_C" >&6; }
11997
+  { $as_echo "$as_me:$LINENO: checking for _dyld_func_lookup" >&5
11998
+$as_echo_n "checking for _dyld_func_lookup... " >&6; }
11999 11999
 if test "${ac_cv_func__dyld_func_lookup+set}" = set; then
12000
-  echo $ECHO_N "(cached) $ECHO_C" >&6
12000
+  $as_echo_n "(cached) " >&6
12001 12001
 else
12002 12002
   cat >conftest.$ac_ext <<_ACEOF
12003 12003
 /* confdefs.h.  */
... ...
@@ -12050,32 +12231,36 @@ case "(($ac_try" in
12050 12050
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
12051 12051
   *) ac_try_echo=$ac_try;;
12052 12052
 esac
12053
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
12053
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
12054
+$as_echo "$ac_try_echo") >&5
12054 12055
   (eval "$ac_link") 2>conftest.er1
12055 12056
   ac_status=$?
12056 12057
   grep -v '^ *+' conftest.er1 >conftest.err
12057 12058
   rm -f conftest.er1
12058 12059
   cat conftest.err >&5
12059
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
12060
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
12060 12061
   (exit $ac_status); } && {
12061 12062
 	 test -z "$ac_c_werror_flag" ||
12062 12063
 	 test ! -s conftest.err
12063
-       } && test -s conftest$ac_exeext &&
12064
-       $as_test_x conftest$ac_exeext; then
12064
+       } && test -s conftest$ac_exeext && {
12065
+	 test "$cross_compiling" = yes ||
12066
+	 $as_test_x conftest$ac_exeext
12067
+       }; then
12065 12068
   ac_cv_func__dyld_func_lookup=yes
12066 12069
 else
12067
-  echo "$as_me: failed program was:" >&5
12070
+  $as_echo "$as_me: failed program was:" >&5
12068 12071
 sed 's/^/| /' conftest.$ac_ext >&5
12069 12072
 
12070 12073
 	ac_cv_func__dyld_func_lookup=no
12071 12074
 fi
12072 12075
 
12076
+rm -rf conftest.dSYM
12073 12077
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
12074 12078
       conftest$ac_exeext conftest.$ac_ext
12075 12079
 fi
12076
-{ echo "$as_me:$LINENO: result: $ac_cv_func__dyld_func_lookup" >&5
12077
-echo "${ECHO_T}$ac_cv_func__dyld_func_lookup" >&6; }
12078
-if test $ac_cv_func__dyld_func_lookup = yes; then
12080
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_func__dyld_func_lookup" >&5
12081
+$as_echo "$ac_cv_func__dyld_func_lookup" >&6; }
12082
+if test "x$ac_cv_func__dyld_func_lookup" = x""yes; then
12079 12083
 
12080 12084
 cat >>confdefs.h <<\_ACEOF
12081 12085
 #define HAVE_DYLD 1
... ...
@@ -12089,10 +12274,10 @@ beos*)
12089 12089
   LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la"
12090 12090
   ;;
12091 12091
 cygwin* | mingw* | os2* | pw32*)
12092
-  { echo "$as_me:$LINENO: checking whether cygwin_conv_path is declared" >&5
12093
-echo $ECHO_N "checking whether cygwin_conv_path is declared... $ECHO_C" >&6; }
12092
+  { $as_echo "$as_me:$LINENO: checking whether cygwin_conv_path is declared" >&5
12093
+$as_echo_n "checking whether cygwin_conv_path is declared... " >&6; }
12094 12094
 if test "${ac_cv_have_decl_cygwin_conv_path+set}" = set; then
12095
-  echo $ECHO_N "(cached) $ECHO_C" >&6
12095
+  $as_echo_n "(cached) " >&6
12096 12096
 else
12097 12097
   cat >conftest.$ac_ext <<_ACEOF
12098 12098
 /* confdefs.h.  */
... ...
@@ -12119,20 +12304,21 @@ case "(($ac_try" in
12119 12119
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
12120 12120
   *) ac_try_echo=$ac_try;;
12121 12121
 esac
12122
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
12122
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
12123
+$as_echo "$ac_try_echo") >&5
12123 12124
   (eval "$ac_compile") 2>conftest.er1
12124 12125
   ac_status=$?
12125 12126
   grep -v '^ *+' conftest.er1 >conftest.err
12126 12127
   rm -f conftest.er1
12127 12128
   cat conftest.err >&5
12128
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
12129
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
12129 12130
   (exit $ac_status); } && {
12130 12131
 	 test -z "$ac_c_werror_flag" ||
12131 12132
 	 test ! -s conftest.err
12132 12133
        } && test -s conftest.$ac_objext; then
12133 12134
   ac_cv_have_decl_cygwin_conv_path=yes
12134 12135
 else
12135
-  echo "$as_me: failed program was:" >&5
12136
+  $as_echo "$as_me: failed program was:" >&5
12136 12137
 sed 's/^/| /' conftest.$ac_ext >&5
12137 12138
 
12138 12139
 	ac_cv_have_decl_cygwin_conv_path=no
... ...
@@ -12140,9 +12326,9 @@ fi
12140 12140
 
12141 12141
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
12142 12142
 fi
12143
-{ echo "$as_me:$LINENO: result: $ac_cv_have_decl_cygwin_conv_path" >&5
12144
-echo "${ECHO_T}$ac_cv_have_decl_cygwin_conv_path" >&6; }
12145
-if test $ac_cv_have_decl_cygwin_conv_path = yes; then
12143
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_cygwin_conv_path" >&5
12144
+$as_echo "$ac_cv_have_decl_cygwin_conv_path" >&6; }
12145
+if test "x$ac_cv_have_decl_cygwin_conv_path" = x""yes; then
12146 12146
 
12147 12147
 cat >>confdefs.h <<_ACEOF
12148 12148
 #define HAVE_DECL_CYGWIN_CONV_PATH 1
... ...
@@ -12162,10 +12348,10 @@ fi
12162 12162
   ;;
12163 12163
 esac
12164 12164
 
12165
-{ echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5
12166
-echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6; }
12165
+{ $as_echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5
12166
+$as_echo_n "checking for dld_link in -ldld... " >&6; }
12167 12167
 if test "${ac_cv_lib_dld_dld_link+set}" = set; then
12168
-  echo $ECHO_N "(cached) $ECHO_C" >&6
12168
+  $as_echo_n "(cached) " >&6
12169 12169
 else
12170 12170
   ac_check_lib_save_LIBS=$LIBS
12171 12171
 LIBS="-ldld  $LIBS"
... ...
@@ -12197,33 +12383,37 @@ case "(($ac_try" in
12197 12197
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
12198 12198
   *) ac_try_echo=$ac_try;;
12199 12199
 esac
12200
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
12200
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
12201
+$as_echo "$ac_try_echo") >&5
12201 12202
   (eval "$ac_link") 2>conftest.er1
12202 12203
   ac_status=$?
12203 12204
   grep -v '^ *+' conftest.er1 >conftest.err
12204 12205
   rm -f conftest.er1
12205 12206
   cat conftest.err >&5
12206
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
12207
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
12207 12208
   (exit $ac_status); } && {
12208 12209
 	 test -z "$ac_c_werror_flag" ||
12209 12210
 	 test ! -s conftest.err
12210
-       } && test -s conftest$ac_exeext &&
12211
-       $as_test_x conftest$ac_exeext; then
12211
+       } && test -s conftest$ac_exeext && {
12212
+	 test "$cross_compiling" = yes ||
12213
+	 $as_test_x conftest$ac_exeext
12214
+       }; then
12212 12215
   ac_cv_lib_dld_dld_link=yes
12213 12216
 else
12214
-  echo "$as_me: failed program was:" >&5
12217
+  $as_echo "$as_me: failed program was:" >&5
12215 12218
 sed 's/^/| /' conftest.$ac_ext >&5
12216 12219
 
12217 12220
 	ac_cv_lib_dld_dld_link=no
12218 12221
 fi
12219 12222
 
12223
+rm -rf conftest.dSYM
12220 12224
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
12221 12225
       conftest$ac_exeext conftest.$ac_ext
12222 12226
 LIBS=$ac_check_lib_save_LIBS
12223 12227
 fi
12224
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5
12225
-echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6; }
12226
-if test $ac_cv_lib_dld_dld_link = yes; then
12228
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5
12229
+$as_echo "$ac_cv_lib_dld_dld_link" >&6; }
12230
+if test "x$ac_cv_lib_dld_dld_link" = x""yes; then
12227 12231
 
12228 12232
 cat >>confdefs.h <<\_ACEOF
12229 12233
 #define HAVE_DLD 1
... ...
@@ -12259,10 +12449,10 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
12259 12259
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
12260 12260
 
12261 12261
 
12262
-{ echo "$as_me:$LINENO: checking for _ prefix in compiled symbols" >&5
12263
-echo $ECHO_N "checking for _ prefix in compiled symbols... $ECHO_C" >&6; }
12262
+{ $as_echo "$as_me:$LINENO: checking for _ prefix in compiled symbols" >&5
12263
+$as_echo_n "checking for _ prefix in compiled symbols... " >&6; }
12264 12264
 if test "${lt_cv_sys_symbol_underscore+set}" = set; then
12265
-  echo $ECHO_N "(cached) $ECHO_C" >&6
12265
+  $as_echo_n "(cached) " >&6
12266 12266
 else
12267 12267
   lt_cv_sys_symbol_underscore=no
12268 12268
   cat > conftest.$ac_ext <<_LT_EOF
... ...
@@ -12272,14 +12462,14 @@ _LT_EOF
12272 12272
   if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
12273 12273
   (eval $ac_compile) 2>&5
12274 12274
   ac_status=$?
12275
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
12275
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
12276 12276
   (exit $ac_status); }; then
12277 12277
     # Now try to grab the symbols.
12278 12278
     ac_nlist=conftest.nm
12279 12279
     if { (eval echo "$as_me:$LINENO: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist\"") >&5
12280 12280
   (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) 2>&5
12281 12281
   ac_status=$?
12282
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
12282
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
12283 12283
   (exit $ac_status); } && test -s "$ac_nlist"; then
12284 12284
       # See whether the symbols have a leading underscore.
12285 12285
       if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then
... ...
@@ -12301,18 +12491,18 @@ _LT_EOF
12301 12301
   rm -rf conftest*
12302 12302
 
12303 12303
 fi
12304
-{ echo "$as_me:$LINENO: result: $lt_cv_sys_symbol_underscore" >&5
12305
-echo "${ECHO_T}$lt_cv_sys_symbol_underscore" >&6; }
12304
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_sys_symbol_underscore" >&5
12305
+$as_echo "$lt_cv_sys_symbol_underscore" >&6; }
12306 12306
   sys_symbol_underscore=$lt_cv_sys_symbol_underscore
12307 12307
 
12308 12308
 
12309 12309
 if test x"$lt_cv_sys_symbol_underscore" = xyes; then
12310 12310
   if test x"$libltdl_cv_func_dlopen" = xyes ||
12311 12311
      test x"$libltdl_cv_lib_dl_dlopen" = xyes ; then
12312
-	{ echo "$as_me:$LINENO: checking whether we have to add an underscore for dlsym" >&5
12313
-echo $ECHO_N "checking whether we have to add an underscore for dlsym... $ECHO_C" >&6; }
12312
+	{ $as_echo "$as_me:$LINENO: checking whether we have to add an underscore for dlsym" >&5
12313
+$as_echo_n "checking whether we have to add an underscore for dlsym... " >&6; }
12314 12314
 if test "${libltdl_cv_need_uscore+set}" = set; then
12315
-  echo $ECHO_N "(cached) $ECHO_C" >&6
12315
+  $as_echo_n "(cached) " >&6
12316 12316
 else
12317 12317
   libltdl_cv_need_uscore=unknown
12318 12318
           save_LIBS="$LIBS"
... ...
@@ -12323,7 +12513,7 @@ else
12323 12323
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
12324 12324
   lt_status=$lt_dlunknown
12325 12325
   cat > conftest.$ac_ext <<_LT_EOF
12326
-#line 12326 "configure"
12326
+#line 12516 "configure"
12327 12327
 #include "confdefs.h"
12328 12328
 
12329 12329
 #if HAVE_DLFCN_H
... ...
@@ -12385,7 +12575,7 @@ _LT_EOF
12385 12385
   if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
12386 12386
   (eval $ac_link) 2>&5
12387 12387
   ac_status=$?
12388
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
12388
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
12389 12389
   (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
12390 12390
     (./conftest; exit; ) >&5 2>/dev/null
12391 12391
     lt_status=$?
... ...
@@ -12404,8 +12594,8 @@ rm -fr conftest*
12404 12404
 	  LIBS="$save_LIBS"
12405 12405
 
12406 12406
 fi
12407
-{ echo "$as_me:$LINENO: result: $libltdl_cv_need_uscore" >&5
12408
-echo "${ECHO_T}$libltdl_cv_need_uscore" >&6; }
12407
+{ $as_echo "$as_me:$LINENO: result: $libltdl_cv_need_uscore" >&5
12408
+$as_echo "$libltdl_cv_need_uscore" >&6; }
12409 12409
   fi
12410 12410
 fi
12411 12411
 
... ...
@@ -12417,10 +12607,10 @@ _ACEOF
12417 12417
 
12418 12418
 fi
12419 12419
 
12420
-{ echo "$as_me:$LINENO: checking whether deplibs are loaded by dlopen" >&5
12421
-echo $ECHO_N "checking whether deplibs are loaded by dlopen... $ECHO_C" >&6; }
12420
+{ $as_echo "$as_me:$LINENO: checking whether deplibs are loaded by dlopen" >&5
12421
+$as_echo_n "checking whether deplibs are loaded by dlopen... " >&6; }
12422 12422
 if test "${lt_cv_sys_dlopen_deplibs+set}" = set; then
12423
-  echo $ECHO_N "(cached) $ECHO_C" >&6
12423
+  $as_echo_n "(cached) " >&6
12424 12424
 else
12425 12425
   # PORTME does your system automatically load deplibs for dlopen?
12426 12426
   # or its logical equivalent (e.g. shl_load for HP-UX < 11)
... ...
@@ -12511,8 +12701,8 @@ else
12511 12511
   esac
12512 12512
 
12513 12513
 fi
12514
-{ echo "$as_me:$LINENO: result: $lt_cv_sys_dlopen_deplibs" >&5
12515
-echo "${ECHO_T}$lt_cv_sys_dlopen_deplibs" >&6; }
12514
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_sys_dlopen_deplibs" >&5
12515
+$as_echo "$lt_cv_sys_dlopen_deplibs" >&6; }
12516 12516
 if test "$lt_cv_sys_dlopen_deplibs" != yes; then
12517 12517
 
12518 12518
 cat >>confdefs.h <<\_ACEOF
... ...
@@ -12526,11 +12716,11 @@ fi
12526 12526
 
12527 12527
 for ac_header in argz.h
12528 12528
 do
12529
-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
12530
-{ echo "$as_me:$LINENO: checking for $ac_header" >&5
12531
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
12529
+as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
12530
+{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
12531
+$as_echo_n "checking for $ac_header... " >&6; }
12532 12532
 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
12533
-  echo $ECHO_N "(cached) $ECHO_C" >&6
12533
+  $as_echo_n "(cached) " >&6
12534 12534
 else
12535 12535
   cat >conftest.$ac_ext <<_ACEOF
12536 12536
 /* confdefs.h.  */
... ...
@@ -12548,20 +12738,21 @@ case "(($ac_try" in
12548 12548
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
12549 12549
   *) ac_try_echo=$ac_try;;
12550 12550
 esac
12551
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
12551
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
12552
+$as_echo "$ac_try_echo") >&5
12552 12553
   (eval "$ac_compile") 2>conftest.er1
12553 12554
   ac_status=$?
12554 12555
   grep -v '^ *+' conftest.er1 >conftest.err
12555 12556
   rm -f conftest.er1
12556 12557
   cat conftest.err >&5
12557
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
12558
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
12558 12559
   (exit $ac_status); } && {
12559 12560
 	 test -z "$ac_c_werror_flag" ||
12560 12561
 	 test ! -s conftest.err
12561 12562
        } && test -s conftest.$ac_objext; then
12562 12563
   eval "$as_ac_Header=yes"
12563 12564
 else
12564
-  echo "$as_me: failed program was:" >&5
12565
+  $as_echo "$as_me: failed program was:" >&5
12565 12566
 sed 's/^/| /' conftest.$ac_ext >&5
12566 12567
 
12567 12568
 	eval "$as_ac_Header=no"
... ...
@@ -12569,12 +12760,15 @@ fi
12569 12569
 
12570 12570
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
12571 12571
 fi
12572
-ac_res=`eval echo '${'$as_ac_Header'}'`
12573
-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
12574
-echo "${ECHO_T}$ac_res" >&6; }
12575
-if test `eval echo '${'$as_ac_Header'}'` = yes; then
12572
+ac_res=`eval 'as_val=${'$as_ac_Header'}
12573
+		 $as_echo "$as_val"'`
12574
+	       { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
12575
+$as_echo "$ac_res" >&6; }
12576
+as_val=`eval 'as_val=${'$as_ac_Header'}
12577
+		 $as_echo "$as_val"'`
12578
+   if test "x$as_val" = x""yes; then
12576 12579
   cat >>confdefs.h <<_ACEOF
12577
-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
12580
+#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
12578 12581
 _ACEOF
12579 12582
 
12580 12583
 fi
... ...
@@ -12582,12 +12776,13 @@ fi
12582 12582
 done
12583 12583
 
12584 12584
 
12585
-{ echo "$as_me:$LINENO: checking for error_t" >&5
12586
-echo $ECHO_N "checking for error_t... $ECHO_C" >&6; }
12585
+{ $as_echo "$as_me:$LINENO: checking for error_t" >&5
12586
+$as_echo_n "checking for error_t... " >&6; }
12587 12587
 if test "${ac_cv_type_error_t+set}" = set; then
12588
-  echo $ECHO_N "(cached) $ECHO_C" >&6
12588
+  $as_echo_n "(cached) " >&6
12589 12589
 else
12590
-  cat >conftest.$ac_ext <<_ACEOF
12590
+  ac_cv_type_error_t=no
12591
+cat >conftest.$ac_ext <<_ACEOF
12591 12592
 /* confdefs.h.  */
12592 12593
 _ACEOF
12593 12594
 cat confdefs.h >>conftest.$ac_ext
... ...
@@ -12597,14 +12792,48 @@ cat >>conftest.$ac_ext <<_ACEOF
12597 12597
 #  include <argz.h>
12598 12598
 #endif
12599 12599
 
12600
-typedef error_t ac__type_new_;
12601 12600
 int
12602 12601
 main ()
12603 12602
 {
12604
-if ((ac__type_new_ *) 0)
12605
-  return 0;
12606
-if (sizeof (ac__type_new_))
12603
+if (sizeof (error_t))
12604
+       return 0;
12605
+  ;
12607 12606
   return 0;
12607
+}
12608
+_ACEOF
12609
+rm -f conftest.$ac_objext
12610
+if { (ac_try="$ac_compile"
12611
+case "(($ac_try" in
12612
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
12613
+  *) ac_try_echo=$ac_try;;
12614
+esac
12615
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
12616
+$as_echo "$ac_try_echo") >&5
12617
+  (eval "$ac_compile") 2>conftest.er1
12618
+  ac_status=$?
12619
+  grep -v '^ *+' conftest.er1 >conftest.err
12620
+  rm -f conftest.er1
12621
+  cat conftest.err >&5
12622
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
12623
+  (exit $ac_status); } && {
12624
+	 test -z "$ac_c_werror_flag" ||
12625
+	 test ! -s conftest.err
12626
+       } && test -s conftest.$ac_objext; then
12627
+  cat >conftest.$ac_ext <<_ACEOF
12628
+/* confdefs.h.  */
12629
+_ACEOF
12630
+cat confdefs.h >>conftest.$ac_ext
12631
+cat >>conftest.$ac_ext <<_ACEOF
12632
+/* end confdefs.h.  */
12633
+#if defined(HAVE_ARGZ_H)
12634
+#  include <argz.h>
12635
+#endif
12636
+
12637
+int
12638
+main ()
12639
+{
12640
+if (sizeof ((error_t)))
12641
+	  return 0;
12608 12642
   ;
12609 12643
   return 0;
12610 12644
 }
... ...
@@ -12615,30 +12844,39 @@ case "(($ac_try" in
12615 12615
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
12616 12616
   *) ac_try_echo=$ac_try;;
12617 12617
 esac
12618
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
12618
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
12619
+$as_echo "$ac_try_echo") >&5
12619 12620
   (eval "$ac_compile") 2>conftest.er1
12620 12621
   ac_status=$?
12621 12622
   grep -v '^ *+' conftest.er1 >conftest.err
12622 12623
   rm -f conftest.er1
12623 12624
   cat conftest.err >&5
12624
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
12625
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
12625 12626
   (exit $ac_status); } && {
12626 12627
 	 test -z "$ac_c_werror_flag" ||
12627 12628
 	 test ! -s conftest.err
12628 12629
        } && test -s conftest.$ac_objext; then
12629
-  ac_cv_type_error_t=yes
12630
+  :
12630 12631
 else
12631
-  echo "$as_me: failed program was:" >&5
12632
+  $as_echo "$as_me: failed program was:" >&5
12632 12633
 sed 's/^/| /' conftest.$ac_ext >&5
12633 12634
 
12634
-	ac_cv_type_error_t=no
12635
+	ac_cv_type_error_t=yes
12635 12636
 fi
12636 12637
 
12637 12638
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
12639
+else
12640
+  $as_echo "$as_me: failed program was:" >&5
12641
+sed 's/^/| /' conftest.$ac_ext >&5
12642
+
12643
+
12638 12644
 fi
12639
-{ echo "$as_me:$LINENO: result: $ac_cv_type_error_t" >&5
12640
-echo "${ECHO_T}$ac_cv_type_error_t" >&6; }
12641
-if test $ac_cv_type_error_t = yes; then
12645
+
12646
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
12647
+fi
12648
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_error_t" >&5
12649
+$as_echo "$ac_cv_type_error_t" >&6; }
12650
+if test "x$ac_cv_type_error_t" = x""yes; then
12642 12651
 
12643 12652
 cat >>confdefs.h <<_ACEOF
12644 12653
 #define HAVE_ERROR_T 1
... ...
@@ -12670,11 +12908,11 @@ ARGZ_H=
12670 12670
 for ac_func in argz_add argz_append argz_count argz_create_sep argz_insert \
12671 12671
 	argz_next argz_stringify
12672 12672
 do
12673
-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
12674
-{ echo "$as_me:$LINENO: checking for $ac_func" >&5
12675
-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
12673
+as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
12674
+{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5
12675
+$as_echo_n "checking for $ac_func... " >&6; }
12676 12676
 if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
12677
-  echo $ECHO_N "(cached) $ECHO_C" >&6
12677
+  $as_echo_n "(cached) " >&6
12678 12678
 else
12679 12679
   cat >conftest.$ac_ext <<_ACEOF
12680 12680
 /* confdefs.h.  */
... ...
@@ -12727,35 +12965,42 @@ case "(($ac_try" in
12727 12727
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
12728 12728
   *) ac_try_echo=$ac_try;;
12729 12729
 esac
12730
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
12730
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
12731
+$as_echo "$ac_try_echo") >&5
12731 12732
   (eval "$ac_link") 2>conftest.er1
12732 12733
   ac_status=$?
12733 12734
   grep -v '^ *+' conftest.er1 >conftest.err
12734 12735
   rm -f conftest.er1
12735 12736
   cat conftest.err >&5
12736
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
12737
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
12737 12738
   (exit $ac_status); } && {
12738 12739
 	 test -z "$ac_c_werror_flag" ||
12739 12740
 	 test ! -s conftest.err
12740
-       } && test -s conftest$ac_exeext &&
12741
-       $as_test_x conftest$ac_exeext; then
12741
+       } && test -s conftest$ac_exeext && {
12742
+	 test "$cross_compiling" = yes ||
12743
+	 $as_test_x conftest$ac_exeext
12744
+       }; then
12742 12745
   eval "$as_ac_var=yes"
12743 12746
 else
12744
-  echo "$as_me: failed program was:" >&5
12747
+  $as_echo "$as_me: failed program was:" >&5
12745 12748
 sed 's/^/| /' conftest.$ac_ext >&5
12746 12749
 
12747 12750
 	eval "$as_ac_var=no"
12748 12751
 fi
12749 12752
 
12753
+rm -rf conftest.dSYM
12750 12754
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
12751 12755
       conftest$ac_exeext conftest.$ac_ext
12752 12756
 fi
12753
-ac_res=`eval echo '${'$as_ac_var'}'`
12754
-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
12755
-echo "${ECHO_T}$ac_res" >&6; }
12756
-if test `eval echo '${'$as_ac_var'}'` = yes; then
12757
+ac_res=`eval 'as_val=${'$as_ac_var'}
12758
+		 $as_echo "$as_val"'`
12759
+	       { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
12760
+$as_echo "$ac_res" >&6; }
12761
+as_val=`eval 'as_val=${'$as_ac_var'}
12762
+		 $as_echo "$as_val"'`
12763
+   if test "x$as_val" = x""yes; then
12757 12764
   cat >>confdefs.h <<_ACEOF
12758
-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
12765
+#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
12759 12766
 _ACEOF
12760 12767
 
12761 12768
 else
... ...
@@ -12768,10 +13013,10 @@ done
12768 12768
 
12769 12769
 
12770 12770
 if test -z "$ARGZ_H"; then
12771
-  { echo "$as_me:$LINENO: checking if argz actually works" >&5
12772
-echo $ECHO_N "checking if argz actually works... $ECHO_C" >&6; }
12771
+  { $as_echo "$as_me:$LINENO: checking if argz actually works" >&5
12772
+$as_echo_n "checking if argz actually works... " >&6; }
12773 12773
 if test "${lt_cv_sys_argz_works+set}" = set; then
12774
-  echo $ECHO_N "(cached) $ECHO_C" >&6
12774
+  $as_echo_n "(cached) " >&6
12775 12775
 else
12776 12776
   case $host_os in #(
12777 12777
 	 *cygwin*)
... ...
@@ -12799,8 +13044,8 @@ else
12799 12799
 	 *) lt_cv_sys_argz_works=yes ;;
12800 12800
 	 esac
12801 12801
 fi
12802
-{ echo "$as_me:$LINENO: result: $lt_cv_sys_argz_works" >&5
12803
-echo "${ECHO_T}$lt_cv_sys_argz_works" >&6; }
12802
+{ $as_echo "$as_me:$LINENO: result: $lt_cv_sys_argz_works" >&5
12803
+$as_echo "$lt_cv_sys_argz_works" >&6; }
12804 12804
      if test $lt_cv_sys_argz_works = yes; then
12805 12805
 
12806 12806
 cat >>confdefs.h <<\_ACEOF
... ...
@@ -12820,10 +13065,10 @@ fi
12820 12820
 
12821 12821
 
12822 12822
 
12823
-{ echo "$as_me:$LINENO: checking whether libtool supports -dlopen/-dlpreopen" >&5
12824
-echo $ECHO_N "checking whether libtool supports -dlopen/-dlpreopen... $ECHO_C" >&6; }
12823
+{ $as_echo "$as_me:$LINENO: checking whether libtool supports -dlopen/-dlpreopen" >&5
12824
+$as_echo_n "checking whether libtool supports -dlopen/-dlpreopen... " >&6; }
12825 12825
 if test "${libltdl_cv_preloaded_symbols+set}" = set; then
12826
-  echo $ECHO_N "(cached) $ECHO_C" >&6
12826
+  $as_echo_n "(cached) " >&6
12827 12827
 else
12828 12828
   if test -n "$lt_cv_sys_global_symbol_pipe"; then
12829 12829
     libltdl_cv_preloaded_symbols=yes
... ...
@@ -12832,8 +13077,8 @@ else
12832 12832
   fi
12833 12833
 
12834 12834
 fi
12835
-{ echo "$as_me:$LINENO: result: $libltdl_cv_preloaded_symbols" >&5
12836
-echo "${ECHO_T}$libltdl_cv_preloaded_symbols" >&6; }
12835
+{ $as_echo "$as_me:$LINENO: result: $libltdl_cv_preloaded_symbols" >&5
12836
+$as_echo "$libltdl_cv_preloaded_symbols" >&6; }
12837 12837
 if test x"$libltdl_cv_preloaded_symbols" = xyes; then
12838 12838
 
12839 12839
 cat >>confdefs.h <<\_ACEOF
... ...
@@ -12863,10 +13108,10 @@ fi
12863 12863
 if test "x$with_included_ltdl" != xyes; then
12864 12864
   # We are not being forced to use the included libltdl sources, so
12865 12865
   # decide whether there is a useful installed version we can use.
12866
-  { echo "$as_me:$LINENO: checking for ltdl.h" >&5
12867
-echo $ECHO_N "checking for ltdl.h... $ECHO_C" >&6; }
12866
+  { $as_echo "$as_me:$LINENO: checking for ltdl.h" >&5
12867
+$as_echo_n "checking for ltdl.h... " >&6; }
12868 12868
 if test "${ac_cv_header_ltdl_h+set}" = set; then
12869
-  echo $ECHO_N "(cached) $ECHO_C" >&6
12869
+  $as_echo_n "(cached) " >&6
12870 12870
 else
12871 12871
   cat >conftest.$ac_ext <<_ACEOF
12872 12872
 /* confdefs.h.  */
... ...
@@ -12885,20 +13130,21 @@ case "(($ac_try" in
12885 12885
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
12886 12886
   *) ac_try_echo=$ac_try;;
12887 12887
 esac
12888
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
12888
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
12889
+$as_echo "$ac_try_echo") >&5
12889 12890
   (eval "$ac_compile") 2>conftest.er1
12890 12891
   ac_status=$?
12891 12892
   grep -v '^ *+' conftest.er1 >conftest.err
12892 12893
   rm -f conftest.er1
12893 12894
   cat conftest.err >&5
12894
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
12895
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
12895 12896
   (exit $ac_status); } && {
12896 12897
 	 test -z "$ac_c_werror_flag" ||
12897 12898
 	 test ! -s conftest.err
12898 12899
        } && test -s conftest.$ac_objext; then
12899 12900
   ac_cv_header_ltdl_h=yes
12900 12901
 else
12901
-  echo "$as_me: failed program was:" >&5
12902
+  $as_echo "$as_me: failed program was:" >&5
12902 12903
 sed 's/^/| /' conftest.$ac_ext >&5
12903 12904
 
12904 12905
 	ac_cv_header_ltdl_h=no
... ...
@@ -12906,13 +13152,13 @@ fi
12906 12906
 
12907 12907
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
12908 12908
 fi
12909
-{ echo "$as_me:$LINENO: result: $ac_cv_header_ltdl_h" >&5
12910
-echo "${ECHO_T}$ac_cv_header_ltdl_h" >&6; }
12911
-if test $ac_cv_header_ltdl_h = yes; then
12912
-  { echo "$as_me:$LINENO: checking whether lt_dlinterface_register is declared" >&5
12913
-echo $ECHO_N "checking whether lt_dlinterface_register is declared... $ECHO_C" >&6; }
12909
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_ltdl_h" >&5
12910
+$as_echo "$ac_cv_header_ltdl_h" >&6; }
12911
+if test "x$ac_cv_header_ltdl_h" = x""yes; then
12912
+  { $as_echo "$as_me:$LINENO: checking whether lt_dlinterface_register is declared" >&5
12913
+$as_echo_n "checking whether lt_dlinterface_register is declared... " >&6; }
12914 12914
 if test "${ac_cv_have_decl_lt_dlinterface_register+set}" = set; then
12915
-  echo $ECHO_N "(cached) $ECHO_C" >&6
12915
+  $as_echo_n "(cached) " >&6
12916 12916
 else
12917 12917
   cat >conftest.$ac_ext <<_ACEOF
12918 12918
 /* confdefs.h.  */
... ...
@@ -12940,20 +13186,21 @@ case "(($ac_try" in
12940 12940
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
12941 12941
   *) ac_try_echo=$ac_try;;
12942 12942
 esac
12943
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
12943
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
12944
+$as_echo "$ac_try_echo") >&5
12944 12945
   (eval "$ac_compile") 2>conftest.er1
12945 12946
   ac_status=$?
12946 12947
   grep -v '^ *+' conftest.er1 >conftest.err
12947 12948
   rm -f conftest.er1
12948 12949
   cat conftest.err >&5
12949
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
12950
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
12950 12951
   (exit $ac_status); } && {
12951 12952
 	 test -z "$ac_c_werror_flag" ||
12952 12953
 	 test ! -s conftest.err
12953 12954
        } && test -s conftest.$ac_objext; then
12954 12955
   ac_cv_have_decl_lt_dlinterface_register=yes
12955 12956
 else
12956
-  echo "$as_me: failed program was:" >&5
12957
+  $as_echo "$as_me: failed program was:" >&5
12957 12958
 sed 's/^/| /' conftest.$ac_ext >&5
12958 12959
 
12959 12960
 	ac_cv_have_decl_lt_dlinterface_register=no
... ...
@@ -12961,13 +13208,13 @@ fi
12961 12961
 
12962 12962
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
12963 12963
 fi
12964
-{ echo "$as_me:$LINENO: result: $ac_cv_have_decl_lt_dlinterface_register" >&5
12965
-echo "${ECHO_T}$ac_cv_have_decl_lt_dlinterface_register" >&6; }
12966
-if test $ac_cv_have_decl_lt_dlinterface_register = yes; then
12967
-  { echo "$as_me:$LINENO: checking for lt_dladvise_preload in -lltdl" >&5
12968
-echo $ECHO_N "checking for lt_dladvise_preload in -lltdl... $ECHO_C" >&6; }
12964
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_lt_dlinterface_register" >&5
12965
+$as_echo "$ac_cv_have_decl_lt_dlinterface_register" >&6; }
12966
+if test "x$ac_cv_have_decl_lt_dlinterface_register" = x""yes; then
12967
+  { $as_echo "$as_me:$LINENO: checking for lt_dladvise_preload in -lltdl" >&5
12968
+$as_echo_n "checking for lt_dladvise_preload in -lltdl... " >&6; }
12969 12969
 if test "${ac_cv_lib_ltdl_lt_dladvise_preload+set}" = set; then
12970
-  echo $ECHO_N "(cached) $ECHO_C" >&6
12970
+  $as_echo_n "(cached) " >&6
12971 12971
 else
12972 12972
   ac_check_lib_save_LIBS=$LIBS
12973 12973
 LIBS="-lltdl  $LIBS"
... ...
@@ -12999,33 +13246,37 @@ case "(($ac_try" in
12999 12999
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
13000 13000
   *) ac_try_echo=$ac_try;;
13001 13001
 esac
13002
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
13002
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
13003
+$as_echo "$ac_try_echo") >&5
13003 13004
   (eval "$ac_link") 2>conftest.er1
13004 13005
   ac_status=$?
13005 13006
   grep -v '^ *+' conftest.er1 >conftest.err
13006 13007
   rm -f conftest.er1
13007 13008
   cat conftest.err >&5
13008
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
13009
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
13009 13010
   (exit $ac_status); } && {
13010 13011
 	 test -z "$ac_c_werror_flag" ||
13011 13012
 	 test ! -s conftest.err
13012
-       } && test -s conftest$ac_exeext &&
13013
-       $as_test_x conftest$ac_exeext; then
13013
+       } && test -s conftest$ac_exeext && {
13014
+	 test "$cross_compiling" = yes ||
13015
+	 $as_test_x conftest$ac_exeext
13016
+       }; then
13014 13017
   ac_cv_lib_ltdl_lt_dladvise_preload=yes
13015 13018
 else
13016
-  echo "$as_me: failed program was:" >&5
13019
+  $as_echo "$as_me: failed program was:" >&5
13017 13020
 sed 's/^/| /' conftest.$ac_ext >&5
13018 13021
 
13019 13022
 	ac_cv_lib_ltdl_lt_dladvise_preload=no
13020 13023
 fi
13021 13024
 
13025
+rm -rf conftest.dSYM
13022 13026
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
13023 13027
       conftest$ac_exeext conftest.$ac_ext
13024 13028
 LIBS=$ac_check_lib_save_LIBS
13025 13029
 fi
13026
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_ltdl_lt_dladvise_preload" >&5
13027
-echo "${ECHO_T}$ac_cv_lib_ltdl_lt_dladvise_preload" >&6; }
13028
-if test $ac_cv_lib_ltdl_lt_dladvise_preload = yes; then
13030
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ltdl_lt_dladvise_preload" >&5
13031
+$as_echo "$ac_cv_lib_ltdl_lt_dladvise_preload" >&6; }
13032
+if test "x$ac_cv_lib_ltdl_lt_dladvise_preload" = x""yes; then
13029 13033
   with_included_ltdl=no
13030 13034
 else
13031 13035
   with_included_ltdl=yes
... ...
@@ -13054,8 +13305,8 @@ fi
13054 13054
 if test -n "$with_ltdl_include"; then
13055 13055
   if test -f "$with_ltdl_include/ltdl.h"; then :
13056 13056
   else
13057
-    { { echo "$as_me:$LINENO: error: invalid ltdl include directory: \`$with_ltdl_include'" >&5
13058
-echo "$as_me: error: invalid ltdl include directory: \`$with_ltdl_include'" >&2;}
13057
+    { { $as_echo "$as_me:$LINENO: error: invalid ltdl include directory: \`$with_ltdl_include'" >&5
13058
+$as_echo "$as_me: error: invalid ltdl include directory: \`$with_ltdl_include'" >&2;}
13059 13059
    { (exit 1); exit 1; }; }
13060 13060
   fi
13061 13061
 else
... ...
@@ -13072,8 +13323,8 @@ fi
13072 13072
 if test -n "$with_ltdl_lib"; then
13073 13073
   if test -f "$with_ltdl_lib/libltdl.la"; then :
13074 13074
   else
13075
-    { { echo "$as_me:$LINENO: error: invalid ltdl library directory: \`$with_ltdl_lib'" >&5
13076
-echo "$as_me: error: invalid ltdl library directory: \`$with_ltdl_lib'" >&2;}
13075
+    { { $as_echo "$as_me:$LINENO: error: invalid ltdl library directory: \`$with_ltdl_lib'" >&5
13076
+$as_echo "$as_me: error: invalid ltdl library directory: \`$with_ltdl_lib'" >&2;}
13077 13077
    { (exit 1); exit 1; }; }
13078 13078
   fi
13079 13079
 else
... ...
@@ -13083,13 +13334,13 @@ fi
13083 13083
 case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in
13084 13084
   ,yes,no,no,)
13085 13085
 	case $enable_ltdl_convenience in
13086
-  no) { { echo "$as_me:$LINENO: error: this package needs a convenience libltdl" >&5
13087
-echo "$as_me: error: this package needs a convenience libltdl" >&2;}
13086
+  no) { { $as_echo "$as_me:$LINENO: error: this package needs a convenience libltdl" >&5
13087
+$as_echo "$as_me: error: this package needs a convenience libltdl" >&2;}
13088 13088
    { (exit 1); exit 1; }; } ;;
13089 13089
   "") enable_ltdl_convenience=yes
13090 13090
       ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;;
13091 13091
 esac
13092
-LIBLTDL='${top_builddir}/'"${lt_ltdl_dir+$lt_ltdl_dir/}libltdlc.la"
13092
+LIBLTDL='${top_build_prefix}'"${lt_ltdl_dir+$lt_ltdl_dir/}libltdlc.la"
13093 13093
 LTDLDEPS=$LIBLTDL
13094 13094
 LTDLINCL='-I${top_srcdir}'"${lt_ltdl_dir+/$lt_ltdl_dir}"
13095 13095
 
... ...
@@ -13115,8 +13366,8 @@ _ACEOF
13115 13115
 	LTDLINCL=
13116 13116
 	;;
13117 13117
   ,no*,no,*)
13118
-	{ { echo "$as_me:$LINENO: error: \`--with-ltdl-include' and \`--with-ltdl-lib' options must be used together" >&5
13119
-echo "$as_me: error: \`--with-ltdl-include' and \`--with-ltdl-lib' options must be used together" >&2;}
13118
+	{ { $as_echo "$as_me:$LINENO: error: \`--with-ltdl-include' and \`--with-ltdl-lib' options must be used together" >&5
13119
+$as_echo "$as_me: error: \`--with-ltdl-include' and \`--with-ltdl-lib' options must be used together" >&2;}
13120 13120
    { (exit 1); exit 1; }; }
13121 13121
 	;;
13122 13122
   *)	with_included_ltdl=no
... ...
@@ -13128,14 +13379,14 @@ esac
13128 13128
 INCLTDL="$LTDLINCL"
13129 13129
 
13130 13130
 # Report our decision...
13131
-{ echo "$as_me:$LINENO: checking where to find libltdl headers" >&5
13132
-echo $ECHO_N "checking where to find libltdl headers... $ECHO_C" >&6; }
13133
-{ echo "$as_me:$LINENO: result: $LTDLINCL" >&5
13134
-echo "${ECHO_T}$LTDLINCL" >&6; }
13135
-{ echo "$as_me:$LINENO: checking where to find libltdl library" >&5
13136
-echo $ECHO_N "checking where to find libltdl library... $ECHO_C" >&6; }
13137
-{ echo "$as_me:$LINENO: result: $LIBLTDL" >&5
13138
-echo "${ECHO_T}$LIBLTDL" >&6; }
13131
+{ $as_echo "$as_me:$LINENO: checking where to find libltdl headers" >&5
13132
+$as_echo_n "checking where to find libltdl headers... " >&6; }
13133
+{ $as_echo "$as_me:$LINENO: result: $LTDLINCL" >&5
13134
+$as_echo "$LTDLINCL" >&6; }
13135
+{ $as_echo "$as_me:$LINENO: checking where to find libltdl library" >&5
13136
+$as_echo_n "checking where to find libltdl library... " >&6; }
13137
+{ $as_echo "$as_me:$LINENO: result: $LIBLTDL" >&5
13138
+$as_echo "$LIBLTDL" >&6; }
13139 13139
 
13140 13140
 
13141 13141
 
... ...
@@ -13187,11 +13438,11 @@ fi
13187 13187
 
13188 13188
 for ac_header in unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h
13189 13189
 do
13190
-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
13191
-{ echo "$as_me:$LINENO: checking for $ac_header" >&5
13192
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
13190
+as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
13191
+{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
13192
+$as_echo_n "checking for $ac_header... " >&6; }
13193 13193
 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
13194
-  echo $ECHO_N "(cached) $ECHO_C" >&6
13194
+  $as_echo_n "(cached) " >&6
13195 13195
 else
13196 13196
   cat >conftest.$ac_ext <<_ACEOF
13197 13197
 /* confdefs.h.  */
... ...
@@ -13209,20 +13460,21 @@ case "(($ac_try" in
13209 13209
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
13210 13210
   *) ac_try_echo=$ac_try;;
13211 13211
 esac
13212
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
13212
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
13213
+$as_echo "$ac_try_echo") >&5
13213 13214
   (eval "$ac_compile") 2>conftest.er1
13214 13215
   ac_status=$?
13215 13216
   grep -v '^ *+' conftest.er1 >conftest.err
13216 13217
   rm -f conftest.er1
13217 13218
   cat conftest.err >&5
13218
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
13219
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
13219 13220
   (exit $ac_status); } && {
13220 13221
 	 test -z "$ac_c_werror_flag" ||
13221 13222
 	 test ! -s conftest.err
13222 13223
        } && test -s conftest.$ac_objext; then
13223 13224
   eval "$as_ac_Header=yes"
13224 13225
 else
13225
-  echo "$as_me: failed program was:" >&5
13226
+  $as_echo "$as_me: failed program was:" >&5
13226 13227
 sed 's/^/| /' conftest.$ac_ext >&5
13227 13228
 
13228 13229
 	eval "$as_ac_Header=no"
... ...
@@ -13230,12 +13482,15 @@ fi
13230 13230
 
13231 13231
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
13232 13232
 fi
13233
-ac_res=`eval echo '${'$as_ac_Header'}'`
13234
-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
13235
-echo "${ECHO_T}$ac_res" >&6; }
13236
-if test `eval echo '${'$as_ac_Header'}'` = yes; then
13233
+ac_res=`eval 'as_val=${'$as_ac_Header'}
13234
+		 $as_echo "$as_val"'`
13235
+	       { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
13236
+$as_echo "$ac_res" >&6; }
13237
+as_val=`eval 'as_val=${'$as_ac_Header'}
13238
+		 $as_echo "$as_val"'`
13239
+   if test "x$as_val" = x""yes; then
13237 13240
   cat >>confdefs.h <<_ACEOF
13238
-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
13241
+#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
13239 13242
 _ACEOF
13240 13243
 
13241 13244
 fi
... ...
@@ -13248,11 +13503,11 @@ done
13248 13248
 
13249 13249
 for ac_func in closedir opendir readdir
13250 13250
 do
13251
-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
13252
-{ echo "$as_me:$LINENO: checking for $ac_func" >&5
13253
-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
13251
+as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
13252
+{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5
13253
+$as_echo_n "checking for $ac_func... " >&6; }
13254 13254
 if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
13255
-  echo $ECHO_N "(cached) $ECHO_C" >&6
13255
+  $as_echo_n "(cached) " >&6
13256 13256
 else
13257 13257
   cat >conftest.$ac_ext <<_ACEOF
13258 13258
 /* confdefs.h.  */
... ...
@@ -13305,35 +13560,42 @@ case "(($ac_try" in
13305 13305
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
13306 13306
   *) ac_try_echo=$ac_try;;
13307 13307
 esac
13308
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
13308
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
13309
+$as_echo "$ac_try_echo") >&5
13309 13310
   (eval "$ac_link") 2>conftest.er1
13310 13311
   ac_status=$?
13311 13312
   grep -v '^ *+' conftest.er1 >conftest.err
13312 13313
   rm -f conftest.er1
13313 13314
   cat conftest.err >&5
13314
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
13315
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
13315 13316
   (exit $ac_status); } && {
13316 13317
 	 test -z "$ac_c_werror_flag" ||
13317 13318
 	 test ! -s conftest.err
13318
-       } && test -s conftest$ac_exeext &&
13319
-       $as_test_x conftest$ac_exeext; then
13319
+       } && test -s conftest$ac_exeext && {
13320
+	 test "$cross_compiling" = yes ||
13321
+	 $as_test_x conftest$ac_exeext
13322
+       }; then
13320 13323
   eval "$as_ac_var=yes"
13321 13324
 else
13322
-  echo "$as_me: failed program was:" >&5
13325
+  $as_echo "$as_me: failed program was:" >&5
13323 13326
 sed 's/^/| /' conftest.$ac_ext >&5
13324 13327
 
13325 13328
 	eval "$as_ac_var=no"
13326 13329
 fi
13327 13330
 
13331
+rm -rf conftest.dSYM
13328 13332
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
13329 13333
       conftest$ac_exeext conftest.$ac_ext
13330 13334
 fi
13331
-ac_res=`eval echo '${'$as_ac_var'}'`
13332
-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
13333
-echo "${ECHO_T}$ac_res" >&6; }
13334
-if test `eval echo '${'$as_ac_var'}'` = yes; then
13335
+ac_res=`eval 'as_val=${'$as_ac_var'}
13336
+		 $as_echo "$as_val"'`
13337
+	       { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
13338
+$as_echo "$ac_res" >&6; }
13339
+as_val=`eval 'as_val=${'$as_ac_var'}
13340
+		 $as_echo "$as_val"'`
13341
+   if test "x$as_val" = x""yes; then
13335 13342
   cat >>confdefs.h <<_ACEOF
13336
-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
13343
+#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
13337 13344
 _ACEOF
13338 13345
 
13339 13346
 else
... ...
@@ -13348,11 +13610,11 @@ done
13348 13348
 
13349 13349
 for ac_func in strlcat strlcpy
13350 13350
 do
13351
-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
13352
-{ echo "$as_me:$LINENO: checking for $ac_func" >&5
13353
-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
13351
+as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
13352
+{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5
13353
+$as_echo_n "checking for $ac_func... " >&6; }
13354 13354
 if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
13355
-  echo $ECHO_N "(cached) $ECHO_C" >&6
13355
+  $as_echo_n "(cached) " >&6
13356 13356
 else
13357 13357
   cat >conftest.$ac_ext <<_ACEOF
13358 13358
 /* confdefs.h.  */
... ...
@@ -13405,35 +13667,42 @@ case "(($ac_try" in
13405 13405
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
13406 13406
   *) ac_try_echo=$ac_try;;
13407 13407
 esac
13408
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
13408
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
13409
+$as_echo "$ac_try_echo") >&5
13409 13410
   (eval "$ac_link") 2>conftest.er1
13410 13411
   ac_status=$?
13411 13412
   grep -v '^ *+' conftest.er1 >conftest.err
13412 13413
   rm -f conftest.er1
13413 13414
   cat conftest.err >&5
13414
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
13415
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
13415 13416
   (exit $ac_status); } && {
13416 13417
 	 test -z "$ac_c_werror_flag" ||
13417 13418
 	 test ! -s conftest.err
13418
-       } && test -s conftest$ac_exeext &&
13419
-       $as_test_x conftest$ac_exeext; then
13419
+       } && test -s conftest$ac_exeext && {
13420
+	 test "$cross_compiling" = yes ||
13421
+	 $as_test_x conftest$ac_exeext
13422
+       }; then
13420 13423
   eval "$as_ac_var=yes"
13421 13424
 else
13422
-  echo "$as_me: failed program was:" >&5
13425
+  $as_echo "$as_me: failed program was:" >&5
13423 13426
 sed 's/^/| /' conftest.$ac_ext >&5
13424 13427
 
13425 13428
 	eval "$as_ac_var=no"
13426 13429
 fi
13427 13430
 
13431
+rm -rf conftest.dSYM
13428 13432
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
13429 13433
       conftest$ac_exeext conftest.$ac_ext
13430 13434
 fi
13431
-ac_res=`eval echo '${'$as_ac_var'}'`
13432
-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
13433
-echo "${ECHO_T}$ac_res" >&6; }
13434
-if test `eval echo '${'$as_ac_var'}'` = yes; then
13435
+ac_res=`eval 'as_val=${'$as_ac_var'}
13436
+		 $as_echo "$as_val"'`
13437
+	       { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
13438
+$as_echo "$ac_res" >&6; }
13439
+as_val=`eval 'as_val=${'$as_ac_var'}
13440
+		 $as_echo "$as_val"'`
13441
+   if test "x$as_val" = x""yes; then
13435 13442
   cat >>confdefs.h <<_ACEOF
13436
-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
13443
+#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
13437 13444
 _ACEOF
13438 13445
 
13439 13446
 else
... ...
@@ -13482,8 +13751,8 @@ _ACEOF
13482 13482
 	# Only modify libdir if user has not overriden it
13483 13483
 	default_libdir='${exec_prefix}/lib'
13484 13484
 	if test "$libdir" = "$default_libdir"; then
13485
-		{ echo "$as_me:$LINENO: checking for multiarch libdir" >&5
13486
-echo $ECHO_N "checking for multiarch libdir... $ECHO_C" >&6; }
13485
+		{ $as_echo "$as_me:$LINENO: checking for multiarch libdir" >&5
13486
+$as_echo_n "checking for multiarch libdir... " >&6; }
13487 13487
 		# Based on http://lists.gnu.org/archive/html/autoconf/2008-09/msg00072.html
13488 13488
 		if test "$GCC" = yes; then
13489 13489
 			ac_multilibdir=`$CC -print-multi-os-directory $CFLAGS $CPPFLAGS $LDFLAGS`
... ...
@@ -13498,8 +13767,8 @@ echo $ECHO_N "checking for multiarch libdir... $ECHO_C" >&6; }
13498 13498
 			*)                 acl_libdirstem=lib/$ac_multilibdir ;;
13499 13499
 		esac
13500 13500
 		libdir='${exec_prefix}/'$acl_libdirstem
13501
-		{ echo "$as_me:$LINENO: result: $libdir" >&5
13502
-echo "${ECHO_T}$libdir" >&6; }
13501
+		{ $as_echo "$as_me:$LINENO: result: $libdir" >&5
13502
+$as_echo "$libdir" >&6; }
13503 13503
 	else
13504 13504
 		acl_libdirstem=lib
13505 13505
 		if test -d "$libdir"; then
... ...
@@ -13514,10 +13783,10 @@ echo "${ECHO_T}$libdir" >&6; }
13514 13514
 	fi
13515 13515
 
13516 13516
 
13517
-{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5
13518
-echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }
13517
+{ $as_echo "$as_me:$LINENO: checking for ANSI C header files" >&5
13518
+$as_echo_n "checking for ANSI C header files... " >&6; }
13519 13519
 if test "${ac_cv_header_stdc+set}" = set; then
13520
-  echo $ECHO_N "(cached) $ECHO_C" >&6
13520
+  $as_echo_n "(cached) " >&6
13521 13521
 else
13522 13522
   cat >conftest.$ac_ext <<_ACEOF
13523 13523
 /* confdefs.h.  */
... ...
@@ -13544,20 +13813,21 @@ case "(($ac_try" in
13544 13544
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
13545 13545
   *) ac_try_echo=$ac_try;;
13546 13546
 esac
13547
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
13547
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
13548
+$as_echo "$ac_try_echo") >&5
13548 13549
   (eval "$ac_compile") 2>conftest.er1
13549 13550
   ac_status=$?
13550 13551
   grep -v '^ *+' conftest.er1 >conftest.err
13551 13552
   rm -f conftest.er1
13552 13553
   cat conftest.err >&5
13553
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
13554
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
13554 13555
   (exit $ac_status); } && {
13555 13556
 	 test -z "$ac_c_werror_flag" ||
13556 13557
 	 test ! -s conftest.err
13557 13558
        } && test -s conftest.$ac_objext; then
13558 13559
   ac_cv_header_stdc=yes
13559 13560
 else
13560
-  echo "$as_me: failed program was:" >&5
13561
+  $as_echo "$as_me: failed program was:" >&5
13561 13562
 sed 's/^/| /' conftest.$ac_ext >&5
13562 13563
 
13563 13564
 	ac_cv_header_stdc=no
... ...
@@ -13649,37 +13919,40 @@ case "(($ac_try" in
13649 13649
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
13650 13650
   *) ac_try_echo=$ac_try;;
13651 13651
 esac
13652
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
13652
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
13653
+$as_echo "$ac_try_echo") >&5
13653 13654
   (eval "$ac_link") 2>&5
13654 13655
   ac_status=$?
13655
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
13656
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
13656 13657
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
13657 13658
   { (case "(($ac_try" in
13658 13659
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
13659 13660
   *) ac_try_echo=$ac_try;;
13660 13661
 esac
13661
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
13662
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
13663
+$as_echo "$ac_try_echo") >&5
13662 13664
   (eval "$ac_try") 2>&5
13663 13665
   ac_status=$?
13664
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
13666
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
13665 13667
   (exit $ac_status); }; }; then
13666 13668
   :
13667 13669
 else
13668
-  echo "$as_me: program exited with status $ac_status" >&5
13669
-echo "$as_me: failed program was:" >&5
13670
+  $as_echo "$as_me: program exited with status $ac_status" >&5
13671
+$as_echo "$as_me: failed program was:" >&5
13670 13672
 sed 's/^/| /' conftest.$ac_ext >&5
13671 13673
 
13672 13674
 ( exit $ac_status )
13673 13675
 ac_cv_header_stdc=no
13674 13676
 fi
13677
+rm -rf conftest.dSYM
13675 13678
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
13676 13679
 fi
13677 13680
 
13678 13681
 
13679 13682
 fi
13680 13683
 fi
13681
-{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
13682
-echo "${ECHO_T}$ac_cv_header_stdc" >&6; }
13684
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
13685
+$as_echo "$ac_cv_header_stdc" >&6; }
13683 13686
 if test $ac_cv_header_stdc = yes; then
13684 13687
 
13685 13688
 cat >>confdefs.h <<\_ACEOF
... ...
@@ -13688,15 +13961,14 @@ _ACEOF
13688 13688
 
13689 13689
 fi
13690 13690
 
13691
-{ echo "$as_me:$LINENO: checking for C/C++ restrict keyword" >&5
13692
-echo $ECHO_N "checking for C/C++ restrict keyword... $ECHO_C" >&6; }
13691
+{ $as_echo "$as_me:$LINENO: checking for C/C++ restrict keyword" >&5
13692
+$as_echo_n "checking for C/C++ restrict keyword... " >&6; }
13693 13693
 if test "${ac_cv_c_restrict+set}" = set; then
13694
-  echo $ECHO_N "(cached) $ECHO_C" >&6
13694
+  $as_echo_n "(cached) " >&6
13695 13695
 else
13696 13696
   ac_cv_c_restrict=no
13697
-   # Try the official restrict keyword, then gcc's __restrict, and
13698
-   # the less common variants.
13699
-   for ac_kw in restrict __restrict __restrict__ _Restrict; do
13697
+   # The order here caters to the fact that C++ does not require restrict.
13698
+   for ac_kw in __restrict __restrict__ _Restrict restrict; do
13700 13699
      cat >conftest.$ac_ext <<_ACEOF
13701 13700
 /* confdefs.h.  */
13702 13701
 _ACEOF
... ...
@@ -13704,16 +13976,16 @@ cat confdefs.h >>conftest.$ac_ext
13704 13704
 cat >>conftest.$ac_ext <<_ACEOF
13705 13705
 /* end confdefs.h.  */
13706 13706
 typedef int * int_ptr;
13707
-        int foo (int_ptr $ac_kw ip) {
13708
-        return ip[0];
13707
+	int foo (int_ptr $ac_kw ip) {
13708
+	return ip[0];
13709 13709
        }
13710 13710
 int
13711 13711
 main ()
13712 13712
 {
13713 13713
 int s[1];
13714
-        int * $ac_kw t = s;
13715
-        t[0] = 0;
13716
-        return foo(t)
13714
+	int * $ac_kw t = s;
13715
+	t[0] = 0;
13716
+	return foo(t)
13717 13717
   ;
13718 13718
   return 0;
13719 13719
 }
... ...
@@ -13724,20 +13996,21 @@ case "(($ac_try" in
13724 13724
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
13725 13725
   *) ac_try_echo=$ac_try;;
13726 13726
 esac
13727
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
13727
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
13728
+$as_echo "$ac_try_echo") >&5
13728 13729
   (eval "$ac_compile") 2>conftest.er1
13729 13730
   ac_status=$?
13730 13731
   grep -v '^ *+' conftest.er1 >conftest.err
13731 13732
   rm -f conftest.er1
13732 13733
   cat conftest.err >&5
13733
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
13734
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
13734 13735
   (exit $ac_status); } && {
13735 13736
 	 test -z "$ac_c_werror_flag" ||
13736 13737
 	 test ! -s conftest.err
13737 13738
        } && test -s conftest.$ac_objext; then
13738 13739
   ac_cv_c_restrict=$ac_kw
13739 13740
 else
13740
-  echo "$as_me: failed program was:" >&5
13741
+  $as_echo "$as_me: failed program was:" >&5
13741 13742
 sed 's/^/| /' conftest.$ac_ext >&5
13742 13743
 
13743 13744
 
... ...
@@ -13748,13 +14021,14 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
13748 13748
    done
13749 13749
 
13750 13750
 fi
13751
-{ echo "$as_me:$LINENO: result: $ac_cv_c_restrict" >&5
13752
-echo "${ECHO_T}$ac_cv_c_restrict" >&6; }
13751
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_restrict" >&5
13752
+$as_echo "$ac_cv_c_restrict" >&6; }
13753
+
13754
+
13753 13755
  case $ac_cv_c_restrict in
13754 13756
    restrict) ;;
13755
-   no)
13756
-cat >>confdefs.h <<\_ACEOF
13757
-#define restrict
13757
+   no) cat >>confdefs.h <<\_ACEOF
13758
+#define restrict /**/
13758 13759
 _ACEOF
13759 13760
  ;;
13760 13761
    *)  cat >>confdefs.h <<_ACEOF
... ...
@@ -13763,10 +14037,10 @@ _ACEOF
13763 13763
  ;;
13764 13764
  esac
13765 13765
 
13766
-{ echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5
13767
-echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6; }
13766
+{ $as_echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5
13767
+$as_echo_n "checking for an ANSI C-conforming const... " >&6; }
13768 13768
 if test "${ac_cv_c_const+set}" = set; then
13769
-  echo $ECHO_N "(cached) $ECHO_C" >&6
13769
+  $as_echo_n "(cached) " >&6
13770 13770
 else
13771 13771
   cat >conftest.$ac_ext <<_ACEOF
13772 13772
 /* confdefs.h.  */
... ...
@@ -13838,20 +14112,21 @@ case "(($ac_try" in
13838 13838
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
13839 13839
   *) ac_try_echo=$ac_try;;
13840 13840
 esac
13841
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
13841
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
13842
+$as_echo "$ac_try_echo") >&5
13842 13843
   (eval "$ac_compile") 2>conftest.er1
13843 13844
   ac_status=$?
13844 13845
   grep -v '^ *+' conftest.er1 >conftest.err
13845 13846
   rm -f conftest.er1
13846 13847
   cat conftest.err >&5
13847
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
13848
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
13848 13849
   (exit $ac_status); } && {
13849 13850
 	 test -z "$ac_c_werror_flag" ||
13850 13851
 	 test ! -s conftest.err
13851 13852
        } && test -s conftest.$ac_objext; then
13852 13853
   ac_cv_c_const=yes
13853 13854
 else
13854
-  echo "$as_me: failed program was:" >&5
13855
+  $as_echo "$as_me: failed program was:" >&5
13855 13856
 sed 's/^/| /' conftest.$ac_ext >&5
13856 13857
 
13857 13858
 	ac_cv_c_const=no
... ...
@@ -13859,20 +14134,20 @@ fi
13859 13859
 
13860 13860
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
13861 13861
 fi
13862
-{ echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5
13863
-echo "${ECHO_T}$ac_cv_c_const" >&6; }
13862
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5
13863
+$as_echo "$ac_cv_c_const" >&6; }
13864 13864
 if test $ac_cv_c_const = no; then
13865 13865
 
13866 13866
 cat >>confdefs.h <<\_ACEOF
13867
-#define const
13867
+#define const /**/
13868 13868
 _ACEOF
13869 13869
 
13870 13870
 fi
13871 13871
 
13872
-{ echo "$as_me:$LINENO: checking for inline" >&5
13873
-echo $ECHO_N "checking for inline... $ECHO_C" >&6; }
13872
+{ $as_echo "$as_me:$LINENO: checking for inline" >&5
13873
+$as_echo_n "checking for inline... " >&6; }
13874 13874
 if test "${ac_cv_c_inline+set}" = set; then
13875
-  echo $ECHO_N "(cached) $ECHO_C" >&6
13875
+  $as_echo_n "(cached) " >&6
13876 13876
 else
13877 13877
   ac_cv_c_inline=no
13878 13878
 for ac_kw in inline __inline__ __inline; do
... ...
@@ -13895,20 +14170,21 @@ case "(($ac_try" in
13895 13895
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
13896 13896
   *) ac_try_echo=$ac_try;;
13897 13897
 esac
13898
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
13898
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
13899
+$as_echo "$ac_try_echo") >&5
13899 13900
   (eval "$ac_compile") 2>conftest.er1
13900 13901
   ac_status=$?
13901 13902
   grep -v '^ *+' conftest.er1 >conftest.err
13902 13903
   rm -f conftest.er1
13903 13904
   cat conftest.err >&5
13904
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
13905
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
13905 13906
   (exit $ac_status); } && {
13906 13907
 	 test -z "$ac_c_werror_flag" ||
13907 13908
 	 test ! -s conftest.err
13908 13909
        } && test -s conftest.$ac_objext; then
13909 13910
   ac_cv_c_inline=$ac_kw
13910 13911
 else
13911
-  echo "$as_me: failed program was:" >&5
13912
+  $as_echo "$as_me: failed program was:" >&5
13912 13913
 sed 's/^/| /' conftest.$ac_ext >&5
13913 13914
 
13914 13915
 
... ...
@@ -13919,8 +14195,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
13919 13919
 done
13920 13920
 
13921 13921
 fi
13922
-{ echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5
13923
-echo "${ECHO_T}$ac_cv_c_inline" >&6; }
13922
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5
13923
+$as_echo "$ac_cv_c_inline" >&6; }
13924 13924
 
13925 13925
 
13926 13926
 case $ac_cv_c_inline in
... ...
@@ -13938,10 +14214,10 @@ _ACEOF
13938 13938
     ;;
13939 13939
 esac
13940 13940
 
13941
-{ echo "$as_me:$LINENO: checking whether FPU byte ordering is bigendian" >&5
13942
-echo $ECHO_N "checking whether FPU byte ordering is bigendian... $ECHO_C" >&6; }
13941
+{ $as_echo "$as_me:$LINENO: checking whether FPU byte ordering is bigendian" >&5
13942
+$as_echo_n "checking whether FPU byte ordering is bigendian... " >&6; }
13943 13943
 if test "${ac_cv_c_fpu_bigendian+set}" = set; then
13944
-  echo $ECHO_N "(cached) $ECHO_C" >&6
13944
+  $as_echo_n "(cached) " >&6
13945 13945
 else
13946 13946
   ac_cv_c_fpu_bigendian=auto
13947 13947
 
... ...
@@ -13968,13 +14244,14 @@ case "(($ac_try" in
13968 13968
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
13969 13969
   *) ac_try_echo=$ac_try;;
13970 13970
 esac
13971
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
13971
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
13972
+$as_echo "$ac_try_echo") >&5
13972 13973
   (eval "$ac_compile") 2>conftest.er1
13973 13974
   ac_status=$?
13974 13975
   grep -v '^ *+' conftest.er1 >conftest.err
13975 13976
   rm -f conftest.er1
13976 13977
   cat conftest.err >&5
13977
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
13978
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
13978 13979
   (exit $ac_status); } && {
13979 13980
 	 test -z "$ac_c_werror_flag" ||
13980 13981
 	 test ! -s conftest.err
... ...
@@ -13988,7 +14265,7 @@ if ${GREP-grep} elleemme conftest.$ac_objext >/dev/null 2>&1 ; then
13988 13988
 fi
13989 13989
 
13990 13990
 else
13991
-  echo "$as_me: failed program was:" >&5
13991
+  $as_echo "$as_me: failed program was:" >&5
13992 13992
 sed 's/^/| /' conftest.$ac_ext >&5
13993 13993
 
13994 13994
 
... ...
@@ -13999,8 +14276,8 @@ fi
13999 13999
 
14000 14000
 
14001 14001
 fi
14002
-{ echo "$as_me:$LINENO: result: $ac_cv_c_fpu_bigendian" >&5
14003
-echo "${ECHO_T}$ac_cv_c_fpu_bigendian" >&6; }
14002
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_fpu_bigendian" >&5
14003
+$as_echo "$ac_cv_c_fpu_bigendian" >&6; }
14004 14004
 case $ac_cv_c_fpu_bigendian in
14005 14005
 	yes)
14006 14006
 
... ...
@@ -14017,32 +14294,82 @@ _ACEOF
14017 14017
 
14018 14018
 		;;
14019 14019
 	*)
14020
-		{ echo "$as_me:$LINENO: WARNING: Unable to determine FPU endianess, some features may not be available in this build" >&5
14021
-echo "$as_me: WARNING: Unable to determine FPU endianess, some features may not be available in this build" >&2;}
14020
+		{ $as_echo "$as_me:$LINENO: WARNING: Unable to determine FPU endianess, some features may not be available in this build" >&5
14021
+$as_echo "$as_me: WARNING: Unable to determine FPU endianess, some features may not be available in this build" >&2;}
14022 14022
 esac
14023 14023
 
14024
-{ echo "$as_me:$LINENO: checking whether byte ordering is bigendian" >&5
14025
-echo $ECHO_N "checking whether byte ordering is bigendian... $ECHO_C" >&6; }
14024
+
14025
+ { $as_echo "$as_me:$LINENO: checking whether byte ordering is bigendian" >&5
14026
+$as_echo_n "checking whether byte ordering is bigendian... " >&6; }
14026 14027
 if test "${ac_cv_c_bigendian+set}" = set; then
14027
-  echo $ECHO_N "(cached) $ECHO_C" >&6
14028
+  $as_echo_n "(cached) " >&6
14028 14029
 else
14029
-  # See if sys/param.h defines the BYTE_ORDER macro.
14030
-cat >conftest.$ac_ext <<_ACEOF
14030
+  ac_cv_c_bigendian=unknown
14031
+    # See if we're dealing with a universal compiler.
14032
+    cat >conftest.$ac_ext <<_ACEOF
14033
+/* confdefs.h.  */
14034
+_ACEOF
14035
+cat confdefs.h >>conftest.$ac_ext
14036
+cat >>conftest.$ac_ext <<_ACEOF
14037
+/* end confdefs.h.  */
14038
+#ifndef __APPLE_CC__
14039
+	       not a universal capable compiler
14040
+	     #endif
14041
+	     typedef int dummy;
14042
+
14043
+_ACEOF
14044
+rm -f conftest.$ac_objext
14045
+if { (ac_try="$ac_compile"
14046
+case "(($ac_try" in
14047
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14048
+  *) ac_try_echo=$ac_try;;
14049
+esac
14050
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14051
+$as_echo "$ac_try_echo") >&5
14052
+  (eval "$ac_compile") 2>conftest.er1
14053
+  ac_status=$?
14054
+  grep -v '^ *+' conftest.er1 >conftest.err
14055
+  rm -f conftest.er1
14056
+  cat conftest.err >&5
14057
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14058
+  (exit $ac_status); } && {
14059
+	 test -z "$ac_c_werror_flag" ||
14060
+	 test ! -s conftest.err
14061
+       } && test -s conftest.$ac_objext; then
14062
+
14063
+	# Check for potential -arch flags.  It is not universal unless
14064
+	# there are some -arch flags.  Note that *ppc* also matches
14065
+	# ppc64.  This check is also rather less than ideal.
14066
+	case "${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}" in  #(
14067
+	  *-arch*ppc*|*-arch*i386*|*-arch*x86_64*) ac_cv_c_bigendian=universal;;
14068
+	esac
14069
+else
14070
+  $as_echo "$as_me: failed program was:" >&5
14071
+sed 's/^/| /' conftest.$ac_ext >&5
14072
+
14073
+
14074
+fi
14075
+
14076
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14077
+    if test $ac_cv_c_bigendian = unknown; then
14078
+      # See if sys/param.h defines the BYTE_ORDER macro.
14079
+      cat >conftest.$ac_ext <<_ACEOF
14031 14080
 /* confdefs.h.  */
14032 14081
 _ACEOF
14033 14082
 cat confdefs.h >>conftest.$ac_ext
14034 14083
 cat >>conftest.$ac_ext <<_ACEOF
14035 14084
 /* end confdefs.h.  */
14036 14085
 #include <sys/types.h>
14037
-#include <sys/param.h>
14086
+	     #include <sys/param.h>
14038 14087
 
14039 14088
 int
14040 14089
 main ()
14041 14090
 {
14042
-#if  ! (defined BYTE_ORDER && defined BIG_ENDIAN && defined LITTLE_ENDIAN \
14043
-	&& BYTE_ORDER && BIG_ENDIAN && LITTLE_ENDIAN)
14044
- bogus endian macros
14045
-#endif
14091
+#if ! (defined BYTE_ORDER && defined BIG_ENDIAN \
14092
+		     && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \
14093
+		     && LITTLE_ENDIAN)
14094
+	      bogus endian macros
14095
+	     #endif
14046 14096
 
14047 14097
   ;
14048 14098
   return 0;
... ...
@@ -14054,33 +14381,34 @@ case "(($ac_try" in
14054 14054
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14055 14055
   *) ac_try_echo=$ac_try;;
14056 14056
 esac
14057
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14057
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14058
+$as_echo "$ac_try_echo") >&5
14058 14059
   (eval "$ac_compile") 2>conftest.er1
14059 14060
   ac_status=$?
14060 14061
   grep -v '^ *+' conftest.er1 >conftest.err
14061 14062
   rm -f conftest.er1
14062 14063
   cat conftest.err >&5
14063
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14064
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14064 14065
   (exit $ac_status); } && {
14065 14066
 	 test -z "$ac_c_werror_flag" ||
14066 14067
 	 test ! -s conftest.err
14067 14068
        } && test -s conftest.$ac_objext; then
14068 14069
   # It does; now see whether it defined to BIG_ENDIAN or not.
14069
-cat >conftest.$ac_ext <<_ACEOF
14070
+	 cat >conftest.$ac_ext <<_ACEOF
14070 14071
 /* confdefs.h.  */
14071 14072
 _ACEOF
14072 14073
 cat confdefs.h >>conftest.$ac_ext
14073 14074
 cat >>conftest.$ac_ext <<_ACEOF
14074 14075
 /* end confdefs.h.  */
14075 14076
 #include <sys/types.h>
14076
-#include <sys/param.h>
14077
+		#include <sys/param.h>
14077 14078
 
14078 14079
 int
14079 14080
 main ()
14080 14081
 {
14081 14082
 #if BYTE_ORDER != BIG_ENDIAN
14082
- not big endian
14083
-#endif
14083
+		 not big endian
14084
+		#endif
14084 14085
 
14085 14086
   ;
14086 14087
   return 0;
... ...
@@ -14092,20 +14420,21 @@ case "(($ac_try" in
14092 14092
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14093 14093
   *) ac_try_echo=$ac_try;;
14094 14094
 esac
14095
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14095
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14096
+$as_echo "$ac_try_echo") >&5
14096 14097
   (eval "$ac_compile") 2>conftest.er1
14097 14098
   ac_status=$?
14098 14099
   grep -v '^ *+' conftest.er1 >conftest.err
14099 14100
   rm -f conftest.er1
14100 14101
   cat conftest.err >&5
14101
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14102
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14102 14103
   (exit $ac_status); } && {
14103 14104
 	 test -z "$ac_c_werror_flag" ||
14104 14105
 	 test ! -s conftest.err
14105 14106
        } && test -s conftest.$ac_objext; then
14106 14107
   ac_cv_c_bigendian=yes
14107 14108
 else
14108
-  echo "$as_me: failed program was:" >&5
14109
+  $as_echo "$as_me: failed program was:" >&5
14109 14110
 sed 's/^/| /' conftest.$ac_ext >&5
14110 14111
 
14111 14112
 	ac_cv_c_bigendian=no
... ...
@@ -14113,29 +14442,69 @@ fi
14113 14113
 
14114 14114
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14115 14115
 else
14116
-  echo "$as_me: failed program was:" >&5
14116
+  $as_echo "$as_me: failed program was:" >&5
14117 14117
 sed 's/^/| /' conftest.$ac_ext >&5
14118 14118
 
14119
-	# It does not; compile a test program.
14120
-if test "$cross_compiling" = yes; then
14121
-  # try to guess the endianness by grepping values into an object file
14122
-  ac_cv_c_bigendian=unknown
14123
-  cat >conftest.$ac_ext <<_ACEOF
14119
+
14120
+fi
14121
+
14122
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14123
+    fi
14124
+    if test $ac_cv_c_bigendian = unknown; then
14125
+      # See if <limits.h> defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris).
14126
+      cat >conftest.$ac_ext <<_ACEOF
14127
+/* confdefs.h.  */
14128
+_ACEOF
14129
+cat confdefs.h >>conftest.$ac_ext
14130
+cat >>conftest.$ac_ext <<_ACEOF
14131
+/* end confdefs.h.  */
14132
+#include <limits.h>
14133
+
14134
+int
14135
+main ()
14136
+{
14137
+#if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN)
14138
+	      bogus endian macros
14139
+	     #endif
14140
+
14141
+  ;
14142
+  return 0;
14143
+}
14144
+_ACEOF
14145
+rm -f conftest.$ac_objext
14146
+if { (ac_try="$ac_compile"
14147
+case "(($ac_try" in
14148
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14149
+  *) ac_try_echo=$ac_try;;
14150
+esac
14151
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14152
+$as_echo "$ac_try_echo") >&5
14153
+  (eval "$ac_compile") 2>conftest.er1
14154
+  ac_status=$?
14155
+  grep -v '^ *+' conftest.er1 >conftest.err
14156
+  rm -f conftest.er1
14157
+  cat conftest.err >&5
14158
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14159
+  (exit $ac_status); } && {
14160
+	 test -z "$ac_c_werror_flag" ||
14161
+	 test ! -s conftest.err
14162
+       } && test -s conftest.$ac_objext; then
14163
+  # It does; now see whether it defined to _BIG_ENDIAN or not.
14164
+	 cat >conftest.$ac_ext <<_ACEOF
14124 14165
 /* confdefs.h.  */
14125 14166
 _ACEOF
14126 14167
 cat confdefs.h >>conftest.$ac_ext
14127 14168
 cat >>conftest.$ac_ext <<_ACEOF
14128 14169
 /* end confdefs.h.  */
14129
-short int ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 };
14130
-short int ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 };
14131
-void _ascii () { char *s = (char *) ascii_mm; s = (char *) ascii_ii; }
14132
-short int ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 };
14133
-short int ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 };
14134
-void _ebcdic () { char *s = (char *) ebcdic_mm; s = (char *) ebcdic_ii; }
14170
+#include <limits.h>
14171
+
14135 14172
 int
14136 14173
 main ()
14137 14174
 {
14138
- _ascii (); _ebcdic ();
14175
+#ifndef _BIG_ENDIAN
14176
+		 not big endian
14177
+		#endif
14178
+
14139 14179
   ;
14140 14180
   return 0;
14141 14181
 }
... ...
@@ -14146,30 +14515,101 @@ case "(($ac_try" in
14146 14146
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14147 14147
   *) ac_try_echo=$ac_try;;
14148 14148
 esac
14149
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14149
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14150
+$as_echo "$ac_try_echo") >&5
14150 14151
   (eval "$ac_compile") 2>conftest.er1
14151 14152
   ac_status=$?
14152 14153
   grep -v '^ *+' conftest.er1 >conftest.err
14153 14154
   rm -f conftest.er1
14154 14155
   cat conftest.err >&5
14155
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14156
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14156 14157
   (exit $ac_status); } && {
14157 14158
 	 test -z "$ac_c_werror_flag" ||
14158 14159
 	 test ! -s conftest.err
14159 14160
        } && test -s conftest.$ac_objext; then
14160
-  if grep BIGenDianSyS conftest.$ac_objext >/dev/null ; then
14161 14161
   ac_cv_c_bigendian=yes
14162
+else
14163
+  $as_echo "$as_me: failed program was:" >&5
14164
+sed 's/^/| /' conftest.$ac_ext >&5
14165
+
14166
+	ac_cv_c_bigendian=no
14162 14167
 fi
14163
-if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then
14164
-  if test "$ac_cv_c_bigendian" = unknown; then
14165
-    ac_cv_c_bigendian=no
14166
-  else
14167
-    # finding both strings is unlikely to happen, but who knows?
14168
-    ac_cv_c_bigendian=unknown
14169
-  fi
14168
+
14169
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14170
+else
14171
+  $as_echo "$as_me: failed program was:" >&5
14172
+sed 's/^/| /' conftest.$ac_ext >&5
14173
+
14174
+
14170 14175
 fi
14176
+
14177
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14178
+    fi
14179
+    if test $ac_cv_c_bigendian = unknown; then
14180
+      # Compile a test program.
14181
+      if test "$cross_compiling" = yes; then
14182
+  # Try to guess by grepping values from an object file.
14183
+	 cat >conftest.$ac_ext <<_ACEOF
14184
+/* confdefs.h.  */
14185
+_ACEOF
14186
+cat confdefs.h >>conftest.$ac_ext
14187
+cat >>conftest.$ac_ext <<_ACEOF
14188
+/* end confdefs.h.  */
14189
+short int ascii_mm[] =
14190
+		  { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 };
14191
+		short int ascii_ii[] =
14192
+		  { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 };
14193
+		int use_ascii (int i) {
14194
+		  return ascii_mm[i] + ascii_ii[i];
14195
+		}
14196
+		short int ebcdic_ii[] =
14197
+		  { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 };
14198
+		short int ebcdic_mm[] =
14199
+		  { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 };
14200
+		int use_ebcdic (int i) {
14201
+		  return ebcdic_mm[i] + ebcdic_ii[i];
14202
+		}
14203
+		extern int foo;
14204
+
14205
+int
14206
+main ()
14207
+{
14208
+return use_ascii (foo) == use_ebcdic (foo);
14209
+  ;
14210
+  return 0;
14211
+}
14212
+_ACEOF
14213
+rm -f conftest.$ac_objext
14214
+if { (ac_try="$ac_compile"
14215
+case "(($ac_try" in
14216
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14217
+  *) ac_try_echo=$ac_try;;
14218
+esac
14219
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14220
+$as_echo "$ac_try_echo") >&5
14221
+  (eval "$ac_compile") 2>conftest.er1
14222
+  ac_status=$?
14223
+  grep -v '^ *+' conftest.er1 >conftest.err
14224
+  rm -f conftest.er1
14225
+  cat conftest.err >&5
14226
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14227
+  (exit $ac_status); } && {
14228
+	 test -z "$ac_c_werror_flag" ||
14229
+	 test ! -s conftest.err
14230
+       } && test -s conftest.$ac_objext; then
14231
+  if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then
14232
+	      ac_cv_c_bigendian=yes
14233
+	    fi
14234
+	    if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then
14235
+	      if test "$ac_cv_c_bigendian" = unknown; then
14236
+		ac_cv_c_bigendian=no
14237
+	      else
14238
+		# finding both strings is unlikely to happen, but who knows?
14239
+		ac_cv_c_bigendian=unknown
14240
+	      fi
14241
+	    fi
14171 14242
 else
14172
-  echo "$as_me: failed program was:" >&5
14243
+  $as_echo "$as_me: failed program was:" >&5
14173 14244
 sed 's/^/| /' conftest.$ac_ext >&5
14174 14245
 
14175 14246
 
... ...
@@ -14188,14 +14628,14 @@ int
14188 14188
 main ()
14189 14189
 {
14190 14190
 
14191
-  /* Are we little or big endian?  From Harbison&Steele.  */
14192
-  union
14193
-  {
14194
-    long int l;
14195
-    char c[sizeof (long int)];
14196
-  } u;
14197
-  u.l = 1;
14198
-  return u.c[sizeof (long int) - 1] == 1;
14191
+	     /* Are we little or big endian?  From Harbison&Steele.  */
14192
+	     union
14193
+	     {
14194
+	       long int l;
14195
+	       char c[sizeof (long int)];
14196
+	     } u;
14197
+	     u.l = 1;
14198
+	     return u.c[sizeof (long int) - 1] == 1;
14199 14199
 
14200 14200
   ;
14201 14201
   return 0;
... ...
@@ -14207,55 +14647,62 @@ case "(($ac_try" in
14207 14207
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14208 14208
   *) ac_try_echo=$ac_try;;
14209 14209
 esac
14210
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14210
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14211
+$as_echo "$ac_try_echo") >&5
14211 14212
   (eval "$ac_link") 2>&5
14212 14213
   ac_status=$?
14213
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14214
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14214 14215
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
14215 14216
   { (case "(($ac_try" in
14216 14217
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14217 14218
   *) ac_try_echo=$ac_try;;
14218 14219
 esac
14219
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14220
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14221
+$as_echo "$ac_try_echo") >&5
14220 14222
   (eval "$ac_try") 2>&5
14221 14223
   ac_status=$?
14222
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14224
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14223 14225
   (exit $ac_status); }; }; then
14224 14226
   ac_cv_c_bigendian=no
14225 14227
 else
14226
-  echo "$as_me: program exited with status $ac_status" >&5
14227
-echo "$as_me: failed program was:" >&5
14228
+  $as_echo "$as_me: program exited with status $ac_status" >&5
14229
+$as_echo "$as_me: failed program was:" >&5
14228 14230
 sed 's/^/| /' conftest.$ac_ext >&5
14229 14231
 
14230 14232
 ( exit $ac_status )
14231 14233
 ac_cv_c_bigendian=yes
14232 14234
 fi
14235
+rm -rf conftest.dSYM
14233 14236
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
14234 14237
 fi
14235 14238
 
14236 14239
 
14240
+    fi
14237 14241
 fi
14238
-
14239
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14240
-fi
14241
-{ echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&5
14242
-echo "${ECHO_T}$ac_cv_c_bigendian" >&6; }
14243
-case $ac_cv_c_bigendian in
14244
-  yes)
14242
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&5
14243
+$as_echo "$ac_cv_c_bigendian" >&6; }
14244
+ case $ac_cv_c_bigendian in #(
14245
+   yes)
14246
+     cat >>confdefs.h <<\_ACEOF
14247
+#define WORDS_BIGENDIAN 1
14248
+_ACEOF
14249
+;; #(
14250
+   no)
14251
+      ;; #(
14252
+   universal)
14245 14253
 
14246 14254
 cat >>confdefs.h <<\_ACEOF
14247
-#define WORDS_BIGENDIAN 1
14255
+#define AC_APPLE_UNIVERSAL_BUILD 1
14248 14256
 _ACEOF
14249
- ;;
14250
-  no)
14251
-     ;;
14252
-  *)
14253
-    { { echo "$as_me:$LINENO: error: unknown endianness
14254
-presetting ac_cv_c_bigendian=no (or yes) will help" >&5
14255
-echo "$as_me: error: unknown endianness
14256
-presetting ac_cv_c_bigendian=no (or yes) will help" >&2;}
14257
+
14258
+     ;; #(
14259
+   *)
14260
+     { { $as_echo "$as_me:$LINENO: error: unknown endianness
14261
+ presetting ac_cv_c_bigendian=no (or yes) will help" >&5
14262
+$as_echo "$as_me: error: unknown endianness
14263
+ presetting ac_cv_c_bigendian=no (or yes) will help" >&2;}
14257 14264
    { (exit 1); exit 1; }; } ;;
14258
-esac
14265
+ esac
14259 14266
 
14260 14267
 if test $ac_cv_c_bigendian = yes; then
14261 14268
 
... ...
@@ -14283,20 +14730,20 @@ msg_gcc_check="use --disable-gcc-vcheck to disable this check. Before reporting
14283 14283
 VERSION_SUFFIX=
14284 14284
 if test "$gcc_check" = "yes"; then
14285 14285
 	if test "x$ac_compiler_gnu" = "xyes"; then
14286
-		{ echo "$as_me:$LINENO: checking for a supported version of gcc" >&5
14287
-echo $ECHO_N "checking for a supported version of gcc... $ECHO_C" >&6; }
14286
+		{ $as_echo "$as_me:$LINENO: checking for a supported version of gcc" >&5
14287
+$as_echo_n "checking for a supported version of gcc... " >&6; }
14288 14288
 		gcc_version=`${CC} -dumpversion`
14289 14289
 		case "${gcc_version}" in
14290 14290
 			4.1.0*)
14291
-				{ echo "$as_me:$LINENO: result: no (${gcc_version})" >&5
14292
-echo "${ECHO_T}no (${gcc_version})" >&6; }
14293
-				{ { echo "$as_me:$LINENO: error: gcc 4.1.0 is known to incorrectly compile upx.c. Upgrade your compiler to at least 4.1.1/4.1.2)" >&5
14294
-echo "$as_me: error: gcc 4.1.0 is known to incorrectly compile upx.c. Upgrade your compiler to at least 4.1.1/4.1.2)" >&2;}
14291
+				{ $as_echo "$as_me:$LINENO: result: no (${gcc_version})" >&5
14292
+$as_echo "no (${gcc_version})" >&6; }
14293
+				{ { $as_echo "$as_me:$LINENO: error: gcc 4.1.0 is known to incorrectly compile upx.c. Upgrade your compiler to at least 4.1.1/4.1.2)" >&5
14294
+$as_echo "$as_me: error: gcc 4.1.0 is known to incorrectly compile upx.c. Upgrade your compiler to at least 4.1.1/4.1.2)" >&2;}
14295 14295
    { (exit 1); exit 1; }; }
14296 14296
 				;;
14297 14297
 			*)
14298
-				{ echo "$as_me:$LINENO: result: ok (${gcc_version})" >&5
14299
-echo "${ECHO_T}ok (${gcc_version})" >&6; }
14298
+				{ $as_echo "$as_me:$LINENO: result: ok (${gcc_version})" >&5
14299
+$as_echo "ok (${gcc_version})" >&6; }
14300 14300
 				;;
14301 14301
 	esac
14302 14302
 	fi
... ...
@@ -14328,11 +14775,11 @@ fi
14328 14328
 
14329 14329
 
14330 14330
 
14331
-{ echo "$as_me:$LINENO: checking for gcc bug PR27603" >&5
14332
-echo $ECHO_N "checking for gcc bug PR27603... $ECHO_C" >&6; }
14331
+{ $as_echo "$as_me:$LINENO: checking for gcc bug PR27603" >&5
14332
+$as_echo_n "checking for gcc bug PR27603... " >&6; }
14333 14333
 if test "$cross_compiling" = yes; then
14334
-  { echo "$as_me:$LINENO: result: cross-compiling, assumed ok" >&5
14335
-echo "${ECHO_T}cross-compiling, assumed ok" >&6; }
14334
+  { $as_echo "$as_me:$LINENO: result: cross-compiling, assumed ok" >&5
14335
+$as_echo "cross-compiling, assumed ok" >&6; }
14336 14336
 else
14337 14337
   cat >conftest.$ac_ext <<_ACEOF
14338 14338
 /* confdefs.h.  */
... ...
@@ -14364,42 +14811,45 @@ case "(($ac_try" in
14364 14364
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14365 14365
   *) ac_try_echo=$ac_try;;
14366 14366
 esac
14367
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14367
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14368
+$as_echo "$ac_try_echo") >&5
14368 14369
   (eval "$ac_link") 2>&5
14369 14370
   ac_status=$?
14370
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14371
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14371 14372
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
14372 14373
   { (case "(($ac_try" in
14373 14374
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14374 14375
   *) ac_try_echo=$ac_try;;
14375 14376
 esac
14376
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14377
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14378
+$as_echo "$ac_try_echo") >&5
14377 14379
   (eval "$ac_try") 2>&5
14378 14380
   ac_status=$?
14379
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14381
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14380 14382
   (exit $ac_status); }; }; then
14381
-  { echo "$as_me:$LINENO: result: ok, bug not present" >&5
14382
-echo "${ECHO_T}ok, bug not present" >&6; }
14383
+  { $as_echo "$as_me:$LINENO: result: ok, bug not present" >&5
14384
+$as_echo "ok, bug not present" >&6; }
14383 14385
 else
14384
-  echo "$as_me: program exited with status $ac_status" >&5
14385
-echo "$as_me: failed program was:" >&5
14386
+  $as_echo "$as_me: program exited with status $ac_status" >&5
14387
+$as_echo "$as_me: failed program was:" >&5
14386 14388
 sed 's/^/| /' conftest.$ac_ext >&5
14387 14389
 
14388 14390
 ( exit $ac_status )
14389
-{ { echo "$as_me:$LINENO: error: your compiler has gcc PR27603 bug, use a different compiler, see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27603" >&5
14390
-echo "$as_me: error: your compiler has gcc PR27603 bug, use a different compiler, see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27603" >&2;}
14391
+{ { $as_echo "$as_me:$LINENO: error: your compiler has gcc PR27603 bug, use a different compiler, see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27603" >&5
14392
+$as_echo "$as_me: error: your compiler has gcc PR27603 bug, use a different compiler, see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27603" >&2;}
14391 14393
    { (exit 1); exit 1; }; }
14392 14394
 fi
14395
+rm -rf conftest.dSYM
14393 14396
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
14394 14397
 fi
14395 14398
 
14396 14399
 
14397 14400
 
14398
-{ echo "$as_me:$LINENO: checking for gcc bug PR26763-2" >&5
14399
-echo $ECHO_N "checking for gcc bug PR26763-2... $ECHO_C" >&6; }
14401
+{ $as_echo "$as_me:$LINENO: checking for gcc bug PR26763-2" >&5
14402
+$as_echo_n "checking for gcc bug PR26763-2... " >&6; }
14400 14403
 if test "$cross_compiling" = yes; then
14401
-  { echo "$as_me:$LINENO: result: cross-compiling, assumed ok" >&5
14402
-echo "${ECHO_T}cross-compiling, assumed ok" >&6; }
14404
+  { $as_echo "$as_me:$LINENO: result: cross-compiling, assumed ok" >&5
14405
+$as_echo "cross-compiling, assumed ok" >&6; }
14403 14406
 else
14404 14407
   cat >conftest.$ac_ext <<_ACEOF
14405 14408
 /* confdefs.h.  */
... ...
@@ -14433,42 +14883,45 @@ case "(($ac_try" in
14433 14433
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14434 14434
   *) ac_try_echo=$ac_try;;
14435 14435
 esac
14436
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14436
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14437
+$as_echo "$ac_try_echo") >&5
14437 14438
   (eval "$ac_link") 2>&5
14438 14439
   ac_status=$?
14439
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14440
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14440 14441
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
14441 14442
   { (case "(($ac_try" in
14442 14443
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14443 14444
   *) ac_try_echo=$ac_try;;
14444 14445
 esac
14445
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14446
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14447
+$as_echo "$ac_try_echo") >&5
14446 14448
   (eval "$ac_try") 2>&5
14447 14449
   ac_status=$?
14448
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14450
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14449 14451
   (exit $ac_status); }; }; then
14450
-  { echo "$as_me:$LINENO: result: ok, bug not present" >&5
14451
-echo "${ECHO_T}ok, bug not present" >&6; }
14452
+  { $as_echo "$as_me:$LINENO: result: ok, bug not present" >&5
14453
+$as_echo "ok, bug not present" >&6; }
14452 14454
 else
14453
-  echo "$as_me: program exited with status $ac_status" >&5
14454
-echo "$as_me: failed program was:" >&5
14455
+  $as_echo "$as_me: program exited with status $ac_status" >&5
14456
+$as_echo "$as_me: failed program was:" >&5
14455 14457
 sed 's/^/| /' conftest.$ac_ext >&5
14456 14458
 
14457 14459
 ( exit $ac_status )
14458
-{ { echo "$as_me:$LINENO: error: your compiler has gcc PR26763-2 bug, use a different compiler, see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26763" >&5
14459
-echo "$as_me: error: your compiler has gcc PR26763-2 bug, use a different compiler, see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26763" >&2;}
14460
+{ { $as_echo "$as_me:$LINENO: error: your compiler has gcc PR26763-2 bug, use a different compiler, see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26763" >&5
14461
+$as_echo "$as_me: error: your compiler has gcc PR26763-2 bug, use a different compiler, see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26763" >&2;}
14460 14462
    { (exit 1); exit 1; }; }
14461 14463
 fi
14464
+rm -rf conftest.dSYM
14462 14465
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
14463 14466
 fi
14464 14467
 
14465 14468
 
14466 14469
 
14467
-{ echo "$as_me:$LINENO: checking for valid code generation of CLI_ISCONTAINED" >&5
14468
-echo $ECHO_N "checking for valid code generation of CLI_ISCONTAINED... $ECHO_C" >&6; }
14470
+{ $as_echo "$as_me:$LINENO: checking for valid code generation of CLI_ISCONTAINED" >&5
14471
+$as_echo_n "checking for valid code generation of CLI_ISCONTAINED... " >&6; }
14469 14472
 if test "$cross_compiling" = yes; then
14470
-  { echo "$as_me:$LINENO: result: cross-compiling, assumed ok" >&5
14471
-echo "${ECHO_T}cross-compiling, assumed ok" >&6; }
14473
+  { $as_echo "$as_me:$LINENO: result: cross-compiling, assumed ok" >&5
14474
+$as_echo "cross-compiling, assumed ok" >&6; }
14472 14475
 else
14473 14476
   cat >conftest.$ac_ext <<_ACEOF
14474 14477
 /* confdefs.h.  */
... ...
@@ -14541,42 +14994,45 @@ case "(($ac_try" in
14541 14541
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14542 14542
   *) ac_try_echo=$ac_try;;
14543 14543
 esac
14544
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14544
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14545
+$as_echo "$ac_try_echo") >&5
14545 14546
   (eval "$ac_link") 2>&5
14546 14547
   ac_status=$?
14547
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14548
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14548 14549
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
14549 14550
   { (case "(($ac_try" in
14550 14551
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14551 14552
   *) ac_try_echo=$ac_try;;
14552 14553
 esac
14553
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14554
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14555
+$as_echo "$ac_try_echo") >&5
14554 14556
   (eval "$ac_try") 2>&5
14555 14557
   ac_status=$?
14556
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14558
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14557 14559
   (exit $ac_status); }; }; then
14558
-  { echo "$as_me:$LINENO: result: ok, bug not present" >&5
14559
-echo "${ECHO_T}ok, bug not present" >&6; }
14560
+  { $as_echo "$as_me:$LINENO: result: ok, bug not present" >&5
14561
+$as_echo "ok, bug not present" >&6; }
14560 14562
 else
14561
-  echo "$as_me: program exited with status $ac_status" >&5
14562
-echo "$as_me: failed program was:" >&5
14563
+  $as_echo "$as_me: program exited with status $ac_status" >&5
14564
+$as_echo "$as_me: failed program was:" >&5
14563 14565
 sed 's/^/| /' conftest.$ac_ext >&5
14564 14566
 
14565 14567
 ( exit $ac_status )
14566
-{ { echo "$as_me:$LINENO: error: your compiler has a bug that causes clamav bug no. 670, use a different compiler, see http://bugs.clamav.net/bugzilla/show_bug.cgi?id=670" >&5
14567
-echo "$as_me: error: your compiler has a bug that causes clamav bug no. 670, use a different compiler, see http://bugs.clamav.net/bugzilla/show_bug.cgi?id=670" >&2;}
14568
+{ { $as_echo "$as_me:$LINENO: error: your compiler has a bug that causes clamav bug no. 670, use a different compiler, see http://bugs.clamav.net/bugzilla/show_bug.cgi?id=670" >&5
14569
+$as_echo "$as_me: error: your compiler has a bug that causes clamav bug no. 670, use a different compiler, see http://bugs.clamav.net/bugzilla/show_bug.cgi?id=670" >&2;}
14568 14570
    { (exit 1); exit 1; }; }
14569 14571
 fi
14572
+rm -rf conftest.dSYM
14570 14573
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
14571 14574
 fi
14572 14575
 
14573 14576
 
14574 14577
 
14575
-{ echo "$as_me:$LINENO: checking for gcc bug PR28045" >&5
14576
-echo $ECHO_N "checking for gcc bug PR28045... $ECHO_C" >&6; }
14578
+{ $as_echo "$as_me:$LINENO: checking for gcc bug PR28045" >&5
14579
+$as_echo_n "checking for gcc bug PR28045... " >&6; }
14577 14580
 if test "$cross_compiling" = yes; then
14578
-  { echo "$as_me:$LINENO: result: cross-compiling, assumed ok" >&5
14579
-echo "${ECHO_T}cross-compiling, assumed ok" >&6; }
14581
+  { $as_echo "$as_me:$LINENO: result: cross-compiling, assumed ok" >&5
14582
+$as_echo "cross-compiling, assumed ok" >&6; }
14580 14583
 else
14581 14584
   cat >conftest.$ac_ext <<_ACEOF
14582 14585
 /* confdefs.h.  */
... ...
@@ -14613,42 +15069,45 @@ case "(($ac_try" in
14613 14613
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14614 14614
   *) ac_try_echo=$ac_try;;
14615 14615
 esac
14616
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14616
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14617
+$as_echo "$ac_try_echo") >&5
14617 14618
   (eval "$ac_link") 2>&5
14618 14619
   ac_status=$?
14619
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14620
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14620 14621
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
14621 14622
   { (case "(($ac_try" in
14622 14623
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14623 14624
   *) ac_try_echo=$ac_try;;
14624 14625
 esac
14625
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14626
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14627
+$as_echo "$ac_try_echo") >&5
14626 14628
   (eval "$ac_try") 2>&5
14627 14629
   ac_status=$?
14628
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14630
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14629 14631
   (exit $ac_status); }; }; then
14630
-  { echo "$as_me:$LINENO: result: ok, bug not present" >&5
14631
-echo "${ECHO_T}ok, bug not present" >&6; }
14632
+  { $as_echo "$as_me:$LINENO: result: ok, bug not present" >&5
14633
+$as_echo "ok, bug not present" >&6; }
14632 14634
 else
14633
-  echo "$as_me: program exited with status $ac_status" >&5
14634
-echo "$as_me: failed program was:" >&5
14635
+  $as_echo "$as_me: program exited with status $ac_status" >&5
14636
+$as_echo "$as_me: failed program was:" >&5
14635 14637
 sed 's/^/| /' conftest.$ac_ext >&5
14636 14638
 
14637 14639
 ( exit $ac_status )
14638
-{ { echo "$as_me:$LINENO: error: your compiler has gcc PR28045 bug, use a different compiler, see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28045" >&5
14639
-echo "$as_me: error: your compiler has gcc PR28045 bug, use a different compiler, see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28045" >&2;}
14640
+{ { $as_echo "$as_me:$LINENO: error: your compiler has gcc PR28045 bug, use a different compiler, see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28045" >&5
14641
+$as_echo "$as_me: error: your compiler has gcc PR28045 bug, use a different compiler, see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28045" >&2;}
14640 14642
    { (exit 1); exit 1; }; }
14641 14643
 fi
14644
+rm -rf conftest.dSYM
14642 14645
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
14643 14646
 fi
14644 14647
 
14645 14648
 
14646 14649
 
14647
-{ echo "$as_me:$LINENO: checking for gcc bug PR37573" >&5
14648
-echo $ECHO_N "checking for gcc bug PR37573... $ECHO_C" >&6; }
14650
+{ $as_echo "$as_me:$LINENO: checking for gcc bug PR37573" >&5
14651
+$as_echo_n "checking for gcc bug PR37573... " >&6; }
14649 14652
 if test "$cross_compiling" = yes; then
14650
-  { echo "$as_me:$LINENO: result: cross-compiling, assumed ok" >&5
14651
-echo "${ECHO_T}cross-compiling, assumed ok" >&6; }
14653
+  { $as_echo "$as_me:$LINENO: result: cross-compiling, assumed ok" >&5
14654
+$as_echo "cross-compiling, assumed ok" >&6; }
14652 14655
 else
14653 14656
   cat >conftest.$ac_ext <<_ACEOF
14654 14657
 /* confdefs.h.  */
... ...
@@ -14739,41 +15198,44 @@ case "(($ac_try" in
14739 14739
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14740 14740
   *) ac_try_echo=$ac_try;;
14741 14741
 esac
14742
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14742
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14743
+$as_echo "$ac_try_echo") >&5
14743 14744
   (eval "$ac_link") 2>&5
14744 14745
   ac_status=$?
14745
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14746
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14746 14747
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
14747 14748
   { (case "(($ac_try" in
14748 14749
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14749 14750
   *) ac_try_echo=$ac_try;;
14750 14751
 esac
14751
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14752
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14753
+$as_echo "$ac_try_echo") >&5
14752 14754
   (eval "$ac_try") 2>&5
14753 14755
   ac_status=$?
14754
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14756
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14755 14757
   (exit $ac_status); }; }; then
14756
-  { echo "$as_me:$LINENO: result: ok, bug not present" >&5
14757
-echo "${ECHO_T}ok, bug not present" >&6; }
14758
+  { $as_echo "$as_me:$LINENO: result: ok, bug not present" >&5
14759
+$as_echo "ok, bug not present" >&6; }
14758 14760
 else
14759
-  echo "$as_me: program exited with status $ac_status" >&5
14760
-echo "$as_me: failed program was:" >&5
14761
+  $as_echo "$as_me: program exited with status $ac_status" >&5
14762
+$as_echo "$as_me: failed program was:" >&5
14761 14763
 sed 's/^/| /' conftest.$ac_ext >&5
14762 14764
 
14763 14765
 ( exit $ac_status )
14764
-{ { echo "$as_me:$LINENO: error: your compiler has gcc PR37573 bug, use a lower optimization level (-O1 or -O2), see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37573" >&5
14765
-echo "$as_me: error: your compiler has gcc PR37573 bug, use a lower optimization level (-O1 or -O2), see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37573" >&2;}
14766
+{ { $as_echo "$as_me:$LINENO: error: your compiler has gcc PR37573 bug, use a lower optimization level (-O1 or -O2), see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37573" >&5
14767
+$as_echo "$as_me: error: your compiler has gcc PR37573 bug, use a lower optimization level (-O1 or -O2), see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37573" >&2;}
14766 14768
    { (exit 1); exit 1; }; }
14767 14769
 fi
14770
+rm -rf conftest.dSYM
14768 14771
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
14769 14772
 fi
14770 14773
 
14771 14774
 
14772 14775
 
14773
-{ echo "$as_me:$LINENO: checking for ld --version-script" >&5
14774
-echo $ECHO_N "checking for ld --version-script... $ECHO_C" >&6; }
14776
+{ $as_echo "$as_me:$LINENO: checking for ld --version-script" >&5
14777
+$as_echo_n "checking for ld --version-script... " >&6; }
14775 14778
 if test "${ac_cv_ld_version_script+set}" = set; then
14776
-  echo $ECHO_N "(cached) $ECHO_C" >&6
14779
+  $as_echo_n "(cached) " >&6
14777 14780
 else
14778 14781
     cat > conftest.c <<EOF
14779 14782
 void cl_symbol1(void) {}
... ...
@@ -14802,7 +15264,7 @@ EOF
14802 14802
   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
14803 14803
   (eval $ac_try) 2>&5
14804 14804
   ac_status=$?
14805
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14805
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14806 14806
   (exit $ac_status); }; };
14807 14807
   then
14808 14808
       VERSIONSCRIPTFLAG=--version-script
... ...
@@ -14815,7 +15277,7 @@ EOF
14815 14815
   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
14816 14816
   (eval $ac_try) 2>&5
14817 14817
   ac_status=$?
14818
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14818
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14819 14819
   (exit $ac_status); }; };
14820 14820
 	then
14821 14821
 		VERSIONSCRIPTFLAG=-M
... ...
@@ -14826,8 +15288,8 @@ EOF
14826 14826
   fi
14827 14827
  rm -f conftest*
14828 14828
 fi
14829
-{ echo "$as_me:$LINENO: result: $ac_cv_ld_version_script" >&5
14830
-echo "${ECHO_T}$ac_cv_ld_version_script" >&6; }
14829
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_ld_version_script" >&5
14830
+$as_echo "$ac_cv_ld_version_script" >&6; }
14831 14831
 
14832 14832
  if test "x$ac_cv_ld_version_script" = "xyes"; then
14833 14833
   VERSIONSCRIPT_TRUE=
... ...
@@ -14870,20 +15332,21 @@ GPERF=${GPERF-"${am_missing_run}gperf"}
14870 14870
 
14871 14871
 for ac_header in stdint.h unistd.h sys/int_types.h dlfcn.h inttypes.h sys/inttypes.h memory.h ndir.h stdlib.h strings.h string.h sys/mman.h sys/param.h sys/stat.h sys/types.h malloc.h poll.h limits.h sys/filio.h sys/uio.h termios.h stdbool.h pwd.h grp.h
14872 14872
 do
14873
-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
14873
+as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
14874 14874
 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
14875
-  { echo "$as_me:$LINENO: checking for $ac_header" >&5
14876
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
14875
+  { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
14876
+$as_echo_n "checking for $ac_header... " >&6; }
14877 14877
 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
14878
-  echo $ECHO_N "(cached) $ECHO_C" >&6
14878
+  $as_echo_n "(cached) " >&6
14879 14879
 fi
14880
-ac_res=`eval echo '${'$as_ac_Header'}'`
14881
-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
14882
-echo "${ECHO_T}$ac_res" >&6; }
14880
+ac_res=`eval 'as_val=${'$as_ac_Header'}
14881
+		 $as_echo "$as_val"'`
14882
+	       { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
14883
+$as_echo "$ac_res" >&6; }
14883 14884
 else
14884 14885
   # Is the header compilable?
14885
-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
14886
-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
14886
+{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5
14887
+$as_echo_n "checking $ac_header usability... " >&6; }
14887 14888
 cat >conftest.$ac_ext <<_ACEOF
14888 14889
 /* confdefs.h.  */
14889 14890
 _ACEOF
... ...
@@ -14899,32 +15362,33 @@ case "(($ac_try" in
14899 14899
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14900 14900
   *) ac_try_echo=$ac_try;;
14901 14901
 esac
14902
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14902
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14903
+$as_echo "$ac_try_echo") >&5
14903 14904
   (eval "$ac_compile") 2>conftest.er1
14904 14905
   ac_status=$?
14905 14906
   grep -v '^ *+' conftest.er1 >conftest.err
14906 14907
   rm -f conftest.er1
14907 14908
   cat conftest.err >&5
14908
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14909
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14909 14910
   (exit $ac_status); } && {
14910 14911
 	 test -z "$ac_c_werror_flag" ||
14911 14912
 	 test ! -s conftest.err
14912 14913
        } && test -s conftest.$ac_objext; then
14913 14914
   ac_header_compiler=yes
14914 14915
 else
14915
-  echo "$as_me: failed program was:" >&5
14916
+  $as_echo "$as_me: failed program was:" >&5
14916 14917
 sed 's/^/| /' conftest.$ac_ext >&5
14917 14918
 
14918 14919
 	ac_header_compiler=no
14919 14920
 fi
14920 14921
 
14921 14922
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14922
-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
14923
-echo "${ECHO_T}$ac_header_compiler" >&6; }
14923
+{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
14924
+$as_echo "$ac_header_compiler" >&6; }
14924 14925
 
14925 14926
 # Is the header present?
14926
-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
14927
-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
14927
+{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5
14928
+$as_echo_n "checking $ac_header presence... " >&6; }
14928 14929
 cat >conftest.$ac_ext <<_ACEOF
14929 14930
 /* confdefs.h.  */
14930 14931
 _ACEOF
... ...
@@ -14938,51 +15402,52 @@ case "(($ac_try" in
14938 14938
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14939 14939
   *) ac_try_echo=$ac_try;;
14940 14940
 esac
14941
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14941
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
14942
+$as_echo "$ac_try_echo") >&5
14942 14943
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
14943 14944
   ac_status=$?
14944 14945
   grep -v '^ *+' conftest.er1 >conftest.err
14945 14946
   rm -f conftest.er1
14946 14947
   cat conftest.err >&5
14947
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14948
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14948 14949
   (exit $ac_status); } >/dev/null && {
14949 14950
 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
14950 14951
 	 test ! -s conftest.err
14951 14952
        }; then
14952 14953
   ac_header_preproc=yes
14953 14954
 else
14954
-  echo "$as_me: failed program was:" >&5
14955
+  $as_echo "$as_me: failed program was:" >&5
14955 14956
 sed 's/^/| /' conftest.$ac_ext >&5
14956 14957
 
14957 14958
   ac_header_preproc=no
14958 14959
 fi
14959 14960
 
14960 14961
 rm -f conftest.err conftest.$ac_ext
14961
-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
14962
-echo "${ECHO_T}$ac_header_preproc" >&6; }
14962
+{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
14963
+$as_echo "$ac_header_preproc" >&6; }
14963 14964
 
14964 14965
 # So?  What about this header?
14965 14966
 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
14966 14967
   yes:no: )
14967
-    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
14968
-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
14969
-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
14970
-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
14968
+    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
14969
+$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
14970
+    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
14971
+$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
14971 14972
     ac_header_preproc=yes
14972 14973
     ;;
14973 14974
   no:yes:* )
14974
-    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
14975
-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
14976
-    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
14977
-echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
14978
-    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
14979
-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
14980
-    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
14981
-echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
14982
-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
14983
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
14984
-    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
14985
-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
14975
+    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
14976
+$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
14977
+    { $as_echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
14978
+$as_echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
14979
+    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
14980
+$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
14981
+    { $as_echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
14982
+$as_echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
14983
+    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
14984
+$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
14985
+    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
14986
+$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
14986 14987
     ( cat <<\_ASBOX
14987 14988
 ## -------------------------------------- ##
14988 14989
 ## Report this to http://bugs.clamav.net/ ##
... ...
@@ -14991,21 +15456,24 @@ _ASBOX
14991 14991
      ) | sed "s/^/$as_me: WARNING:     /" >&2
14992 14992
     ;;
14993 14993
 esac
14994
-{ echo "$as_me:$LINENO: checking for $ac_header" >&5
14995
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
14994
+{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
14995
+$as_echo_n "checking for $ac_header... " >&6; }
14996 14996
 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
14997
-  echo $ECHO_N "(cached) $ECHO_C" >&6
14997
+  $as_echo_n "(cached) " >&6
14998 14998
 else
14999 14999
   eval "$as_ac_Header=\$ac_header_preproc"
15000 15000
 fi
15001
-ac_res=`eval echo '${'$as_ac_Header'}'`
15002
-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
15003
-echo "${ECHO_T}$ac_res" >&6; }
15001
+ac_res=`eval 'as_val=${'$as_ac_Header'}
15002
+		 $as_echo "$as_val"'`
15003
+	       { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
15004
+$as_echo "$ac_res" >&6; }
15004 15005
 
15005 15006
 fi
15006
-if test `eval echo '${'$as_ac_Header'}'` = yes; then
15007
+as_val=`eval 'as_val=${'$as_ac_Header'}
15008
+		 $as_echo "$as_val"'`
15009
+   if test "x$as_val" = x""yes; then
15007 15010
   cat >>confdefs.h <<_ACEOF
15008
-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
15011
+#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
15009 15012
 _ACEOF
15010 15013
 
15011 15014
 fi
... ...
@@ -15013,17 +15481,17 @@ fi
15013 15013
 done
15014 15014
 
15015 15015
 if test "${ac_cv_header_syslog_h+set}" = set; then
15016
-  { echo "$as_me:$LINENO: checking for syslog.h" >&5
15017
-echo $ECHO_N "checking for syslog.h... $ECHO_C" >&6; }
15016
+  { $as_echo "$as_me:$LINENO: checking for syslog.h" >&5
15017
+$as_echo_n "checking for syslog.h... " >&6; }
15018 15018
 if test "${ac_cv_header_syslog_h+set}" = set; then
15019
-  echo $ECHO_N "(cached) $ECHO_C" >&6
15019
+  $as_echo_n "(cached) " >&6
15020 15020
 fi
15021
-{ echo "$as_me:$LINENO: result: $ac_cv_header_syslog_h" >&5
15022
-echo "${ECHO_T}$ac_cv_header_syslog_h" >&6; }
15021
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_syslog_h" >&5
15022
+$as_echo "$ac_cv_header_syslog_h" >&6; }
15023 15023
 else
15024 15024
   # Is the header compilable?
15025
-{ echo "$as_me:$LINENO: checking syslog.h usability" >&5
15026
-echo $ECHO_N "checking syslog.h usability... $ECHO_C" >&6; }
15025
+{ $as_echo "$as_me:$LINENO: checking syslog.h usability" >&5
15026
+$as_echo_n "checking syslog.h usability... " >&6; }
15027 15027
 cat >conftest.$ac_ext <<_ACEOF
15028 15028
 /* confdefs.h.  */
15029 15029
 _ACEOF
... ...
@@ -15039,32 +15507,33 @@ case "(($ac_try" in
15039 15039
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
15040 15040
   *) ac_try_echo=$ac_try;;
15041 15041
 esac
15042
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
15042
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
15043
+$as_echo "$ac_try_echo") >&5
15043 15044
   (eval "$ac_compile") 2>conftest.er1
15044 15045
   ac_status=$?
15045 15046
   grep -v '^ *+' conftest.er1 >conftest.err
15046 15047
   rm -f conftest.er1
15047 15048
   cat conftest.err >&5
15048
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
15049
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
15049 15050
   (exit $ac_status); } && {
15050 15051
 	 test -z "$ac_c_werror_flag" ||
15051 15052
 	 test ! -s conftest.err
15052 15053
        } && test -s conftest.$ac_objext; then
15053 15054
   ac_header_compiler=yes
15054 15055
 else
15055
-  echo "$as_me: failed program was:" >&5
15056
+  $as_echo "$as_me: failed program was:" >&5
15056 15057
 sed 's/^/| /' conftest.$ac_ext >&5
15057 15058
 
15058 15059
 	ac_header_compiler=no
15059 15060
 fi
15060 15061
 
15061 15062
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
15062
-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
15063
-echo "${ECHO_T}$ac_header_compiler" >&6; }
15063
+{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
15064
+$as_echo "$ac_header_compiler" >&6; }
15064 15065
 
15065 15066
 # Is the header present?
15066
-{ echo "$as_me:$LINENO: checking syslog.h presence" >&5
15067
-echo $ECHO_N "checking syslog.h presence... $ECHO_C" >&6; }
15067
+{ $as_echo "$as_me:$LINENO: checking syslog.h presence" >&5
15068
+$as_echo_n "checking syslog.h presence... " >&6; }
15068 15069
 cat >conftest.$ac_ext <<_ACEOF
15069 15070
 /* confdefs.h.  */
15070 15071
 _ACEOF
... ...
@@ -15078,51 +15547,52 @@ case "(($ac_try" in
15078 15078
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
15079 15079
   *) ac_try_echo=$ac_try;;
15080 15080
 esac
15081
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
15081
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
15082
+$as_echo "$ac_try_echo") >&5
15082 15083
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
15083 15084
   ac_status=$?
15084 15085
   grep -v '^ *+' conftest.er1 >conftest.err
15085 15086
   rm -f conftest.er1
15086 15087
   cat conftest.err >&5
15087
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
15088
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
15088 15089
   (exit $ac_status); } >/dev/null && {
15089 15090
 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
15090 15091
 	 test ! -s conftest.err
15091 15092
        }; then
15092 15093
   ac_header_preproc=yes
15093 15094
 else
15094
-  echo "$as_me: failed program was:" >&5
15095
+  $as_echo "$as_me: failed program was:" >&5
15095 15096
 sed 's/^/| /' conftest.$ac_ext >&5
15096 15097
 
15097 15098
   ac_header_preproc=no
15098 15099
 fi
15099 15100
 
15100 15101
 rm -f conftest.err conftest.$ac_ext
15101
-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
15102
-echo "${ECHO_T}$ac_header_preproc" >&6; }
15102
+{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
15103
+$as_echo "$ac_header_preproc" >&6; }
15103 15104
 
15104 15105
 # So?  What about this header?
15105 15106
 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
15106 15107
   yes:no: )
15107
-    { echo "$as_me:$LINENO: WARNING: syslog.h: accepted by the compiler, rejected by the preprocessor!" >&5
15108
-echo "$as_me: WARNING: syslog.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
15109
-    { echo "$as_me:$LINENO: WARNING: syslog.h: proceeding with the compiler's result" >&5
15110
-echo "$as_me: WARNING: syslog.h: proceeding with the compiler's result" >&2;}
15108
+    { $as_echo "$as_me:$LINENO: WARNING: syslog.h: accepted by the compiler, rejected by the preprocessor!" >&5
15109
+$as_echo "$as_me: WARNING: syslog.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
15110
+    { $as_echo "$as_me:$LINENO: WARNING: syslog.h: proceeding with the compiler's result" >&5
15111
+$as_echo "$as_me: WARNING: syslog.h: proceeding with the compiler's result" >&2;}
15111 15112
     ac_header_preproc=yes
15112 15113
     ;;
15113 15114
   no:yes:* )
15114
-    { echo "$as_me:$LINENO: WARNING: syslog.h: present but cannot be compiled" >&5
15115
-echo "$as_me: WARNING: syslog.h: present but cannot be compiled" >&2;}
15116
-    { echo "$as_me:$LINENO: WARNING: syslog.h:     check for missing prerequisite headers?" >&5
15117
-echo "$as_me: WARNING: syslog.h:     check for missing prerequisite headers?" >&2;}
15118
-    { echo "$as_me:$LINENO: WARNING: syslog.h: see the Autoconf documentation" >&5
15119
-echo "$as_me: WARNING: syslog.h: see the Autoconf documentation" >&2;}
15120
-    { echo "$as_me:$LINENO: WARNING: syslog.h:     section \"Present But Cannot Be Compiled\"" >&5
15121
-echo "$as_me: WARNING: syslog.h:     section \"Present But Cannot Be Compiled\"" >&2;}
15122
-    { echo "$as_me:$LINENO: WARNING: syslog.h: proceeding with the preprocessor's result" >&5
15123
-echo "$as_me: WARNING: syslog.h: proceeding with the preprocessor's result" >&2;}
15124
-    { echo "$as_me:$LINENO: WARNING: syslog.h: in the future, the compiler will take precedence" >&5
15125
-echo "$as_me: WARNING: syslog.h: in the future, the compiler will take precedence" >&2;}
15115
+    { $as_echo "$as_me:$LINENO: WARNING: syslog.h: present but cannot be compiled" >&5
15116
+$as_echo "$as_me: WARNING: syslog.h: present but cannot be compiled" >&2;}
15117
+    { $as_echo "$as_me:$LINENO: WARNING: syslog.h:     check for missing prerequisite headers?" >&5
15118
+$as_echo "$as_me: WARNING: syslog.h:     check for missing prerequisite headers?" >&2;}
15119
+    { $as_echo "$as_me:$LINENO: WARNING: syslog.h: see the Autoconf documentation" >&5
15120
+$as_echo "$as_me: WARNING: syslog.h: see the Autoconf documentation" >&2;}
15121
+    { $as_echo "$as_me:$LINENO: WARNING: syslog.h:     section \"Present But Cannot Be Compiled\"" >&5
15122
+$as_echo "$as_me: WARNING: syslog.h:     section \"Present But Cannot Be Compiled\"" >&2;}
15123
+    { $as_echo "$as_me:$LINENO: WARNING: syslog.h: proceeding with the preprocessor's result" >&5
15124
+$as_echo "$as_me: WARNING: syslog.h: proceeding with the preprocessor's result" >&2;}
15125
+    { $as_echo "$as_me:$LINENO: WARNING: syslog.h: in the future, the compiler will take precedence" >&5
15126
+$as_echo "$as_me: WARNING: syslog.h: in the future, the compiler will take precedence" >&2;}
15126 15127
     ( cat <<\_ASBOX
15127 15128
 ## -------------------------------------- ##
15128 15129
 ## Report this to http://bugs.clamav.net/ ##
... ...
@@ -15131,18 +15601,18 @@ _ASBOX
15131 15131
      ) | sed "s/^/$as_me: WARNING:     /" >&2
15132 15132
     ;;
15133 15133
 esac
15134
-{ echo "$as_me:$LINENO: checking for syslog.h" >&5
15135
-echo $ECHO_N "checking for syslog.h... $ECHO_C" >&6; }
15134
+{ $as_echo "$as_me:$LINENO: checking for syslog.h" >&5
15135
+$as_echo_n "checking for syslog.h... " >&6; }
15136 15136
 if test "${ac_cv_header_syslog_h+set}" = set; then
15137
-  echo $ECHO_N "(cached) $ECHO_C" >&6
15137
+  $as_echo_n "(cached) " >&6
15138 15138
 else
15139 15139
   ac_cv_header_syslog_h=$ac_header_preproc
15140 15140
 fi
15141
-{ echo "$as_me:$LINENO: result: $ac_cv_header_syslog_h" >&5
15142
-echo "${ECHO_T}$ac_cv_header_syslog_h" >&6; }
15141
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_syslog_h" >&5
15142
+$as_echo "$ac_cv_header_syslog_h" >&6; }
15143 15143
 
15144 15144
 fi
15145
-if test $ac_cv_header_syslog_h = yes; then
15145
+if test "x$ac_cv_header_syslog_h" = x""yes; then
15146 15146
 
15147 15147
 cat >>confdefs.h <<\_ACEOF
15148 15148
 #define USE_SYSLOG 1
... ...
@@ -15152,26 +15622,58 @@ fi
15152 15152
 
15153 15153
 
15154 15154
 
15155
-{ echo "$as_me:$LINENO: checking for off_t" >&5
15156
-echo $ECHO_N "checking for off_t... $ECHO_C" >&6; }
15155
+{ $as_echo "$as_me:$LINENO: checking for off_t" >&5
15156
+$as_echo_n "checking for off_t... " >&6; }
15157 15157
 if test "${ac_cv_type_off_t+set}" = set; then
15158
-  echo $ECHO_N "(cached) $ECHO_C" >&6
15158
+  $as_echo_n "(cached) " >&6
15159 15159
 else
15160
-  cat >conftest.$ac_ext <<_ACEOF
15160
+  ac_cv_type_off_t=no
15161
+cat >conftest.$ac_ext <<_ACEOF
15161 15162
 /* confdefs.h.  */
15162 15163
 _ACEOF
15163 15164
 cat confdefs.h >>conftest.$ac_ext
15164 15165
 cat >>conftest.$ac_ext <<_ACEOF
15165 15166
 /* end confdefs.h.  */
15166 15167
 $ac_includes_default
15167
-typedef off_t ac__type_new_;
15168 15168
 int
15169 15169
 main ()
15170 15170
 {
15171
-if ((ac__type_new_ *) 0)
15172
-  return 0;
15173
-if (sizeof (ac__type_new_))
15171
+if (sizeof (off_t))
15172
+       return 0;
15173
+  ;
15174 15174
   return 0;
15175
+}
15176
+_ACEOF
15177
+rm -f conftest.$ac_objext
15178
+if { (ac_try="$ac_compile"
15179
+case "(($ac_try" in
15180
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
15181
+  *) ac_try_echo=$ac_try;;
15182
+esac
15183
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
15184
+$as_echo "$ac_try_echo") >&5
15185
+  (eval "$ac_compile") 2>conftest.er1
15186
+  ac_status=$?
15187
+  grep -v '^ *+' conftest.er1 >conftest.err
15188
+  rm -f conftest.er1
15189
+  cat conftest.err >&5
15190
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
15191
+  (exit $ac_status); } && {
15192
+	 test -z "$ac_c_werror_flag" ||
15193
+	 test ! -s conftest.err
15194
+       } && test -s conftest.$ac_objext; then
15195
+  cat >conftest.$ac_ext <<_ACEOF
15196
+/* confdefs.h.  */
15197
+_ACEOF
15198
+cat confdefs.h >>conftest.$ac_ext
15199
+cat >>conftest.$ac_ext <<_ACEOF
15200
+/* end confdefs.h.  */
15201
+$ac_includes_default
15202
+int
15203
+main ()
15204
+{
15205
+if (sizeof ((off_t)))
15206
+	  return 0;
15175 15207
   ;
15176 15208
   return 0;
15177 15209
 }
... ...
@@ -15182,30 +15684,39 @@ case "(($ac_try" in
15182 15182
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
15183 15183
   *) ac_try_echo=$ac_try;;
15184 15184
 esac
15185
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
15185
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
15186
+$as_echo "$ac_try_echo") >&5
15186 15187
   (eval "$ac_compile") 2>conftest.er1
15187 15188
   ac_status=$?
15188 15189
   grep -v '^ *+' conftest.er1 >conftest.err
15189 15190
   rm -f conftest.er1
15190 15191
   cat conftest.err >&5
15191
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
15192
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
15192 15193
   (exit $ac_status); } && {
15193 15194
 	 test -z "$ac_c_werror_flag" ||
15194 15195
 	 test ! -s conftest.err
15195 15196
        } && test -s conftest.$ac_objext; then
15196
-  ac_cv_type_off_t=yes
15197
+  :
15198
+else
15199
+  $as_echo "$as_me: failed program was:" >&5
15200
+sed 's/^/| /' conftest.$ac_ext >&5
15201
+
15202
+	ac_cv_type_off_t=yes
15203
+fi
15204
+
15205
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
15197 15206
 else
15198
-  echo "$as_me: failed program was:" >&5
15207
+  $as_echo "$as_me: failed program was:" >&5
15199 15208
 sed 's/^/| /' conftest.$ac_ext >&5
15200 15209
 
15201
-	ac_cv_type_off_t=no
15210
+
15202 15211
 fi
15203 15212
 
15204 15213
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
15205 15214
 fi
15206
-{ echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5
15207
-echo "${ECHO_T}$ac_cv_type_off_t" >&6; }
15208
-if test $ac_cv_type_off_t = yes; then
15215
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5
15216
+$as_echo "$ac_cv_type_off_t" >&6; }
15217
+if test "x$ac_cv_type_off_t" = x""yes; then
15209 15218
   :
15210 15219
 else
15211 15220
 
... ...
@@ -15215,10 +15726,10 @@ _ACEOF
15215 15215
 
15216 15216
 fi
15217 15217
 
15218
-{ echo "$as_me:$LINENO: checking size of short" >&5
15219
-echo $ECHO_N "checking size of short... $ECHO_C" >&6; }
15218
+{ $as_echo "$as_me:$LINENO: checking size of short" >&5
15219
+$as_echo_n "checking size of short... " >&6; }
15220 15220
 if test "${ac_cv_sizeof_short+set}" = set; then
15221
-  echo $ECHO_N "(cached) $ECHO_C" >&6
15221
+  $as_echo_n "(cached) " >&6
15222 15222
 else
15223 15223
   for ac_size in 4 8 1 2 16  ; do # List sizes in rough order of prevalence.
15224 15224
   cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -15245,20 +15756,21 @@ case "(($ac_try" in
15245 15245
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
15246 15246
   *) ac_try_echo=$ac_try;;
15247 15247
 esac
15248
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
15248
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
15249
+$as_echo "$ac_try_echo") >&5
15249 15250
   (eval "$ac_compile") 2>conftest.er1
15250 15251
   ac_status=$?
15251 15252
   grep -v '^ *+' conftest.er1 >conftest.err
15252 15253
   rm -f conftest.er1
15253 15254
   cat conftest.err >&5
15254
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
15255
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
15255 15256
   (exit $ac_status); } && {
15256 15257
 	 test -z "$ac_c_werror_flag" ||
15257 15258
 	 test ! -s conftest.err
15258 15259
        } && test -s conftest.$ac_objext; then
15259 15260
   ac_cv_sizeof_short=$ac_size
15260 15261
 else
15261
-  echo "$as_me: failed program was:" >&5
15262
+  $as_echo "$as_me: failed program was:" >&5
15262 15263
 sed 's/^/| /' conftest.$ac_ext >&5
15263 15264
 
15264 15265
 
... ...
@@ -15271,22 +15783,22 @@ done
15271 15271
 fi
15272 15272
 
15273 15273
 if test x$ac_cv_sizeof_short = x ; then
15274
-  { { echo "$as_me:$LINENO: error: cannot determine a size for short" >&5
15275
-echo "$as_me: error: cannot determine a size for short" >&2;}
15274
+  { { $as_echo "$as_me:$LINENO: error: cannot determine a size for short" >&5
15275
+$as_echo "$as_me: error: cannot determine a size for short" >&2;}
15276 15276
    { (exit 1); exit 1; }; }
15277 15277
 fi
15278
-{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_short" >&5
15279
-echo "${ECHO_T}$ac_cv_sizeof_short" >&6; }
15278
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_short" >&5
15279
+$as_echo "$ac_cv_sizeof_short" >&6; }
15280 15280
 
15281 15281
 cat >>confdefs.h <<_ACEOF
15282 15282
 #define SIZEOF_SHORT $ac_cv_sizeof_short
15283 15283
 _ACEOF
15284 15284
 
15285 15285
 
15286
-{ echo "$as_me:$LINENO: checking size of int" >&5
15287
-echo $ECHO_N "checking size of int... $ECHO_C" >&6; }
15286
+{ $as_echo "$as_me:$LINENO: checking size of int" >&5
15287
+$as_echo_n "checking size of int... " >&6; }
15288 15288
 if test "${ac_cv_sizeof_int+set}" = set; then
15289
-  echo $ECHO_N "(cached) $ECHO_C" >&6
15289
+  $as_echo_n "(cached) " >&6
15290 15290
 else
15291 15291
   for ac_size in 4 8 1 2 16  ; do # List sizes in rough order of prevalence.
15292 15292
   cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -15313,20 +15825,21 @@ case "(($ac_try" in
15313 15313
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
15314 15314
   *) ac_try_echo=$ac_try;;
15315 15315
 esac
15316
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
15316
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
15317
+$as_echo "$ac_try_echo") >&5
15317 15318
   (eval "$ac_compile") 2>conftest.er1
15318 15319
   ac_status=$?
15319 15320
   grep -v '^ *+' conftest.er1 >conftest.err
15320 15321
   rm -f conftest.er1
15321 15322
   cat conftest.err >&5
15322
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
15323
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
15323 15324
   (exit $ac_status); } && {
15324 15325
 	 test -z "$ac_c_werror_flag" ||
15325 15326
 	 test ! -s conftest.err
15326 15327
        } && test -s conftest.$ac_objext; then
15327 15328
   ac_cv_sizeof_int=$ac_size
15328 15329
 else
15329
-  echo "$as_me: failed program was:" >&5
15330
+  $as_echo "$as_me: failed program was:" >&5
15330 15331
 sed 's/^/| /' conftest.$ac_ext >&5
15331 15332
 
15332 15333
 
... ...
@@ -15339,22 +15852,22 @@ done
15339 15339
 fi
15340 15340
 
15341 15341
 if test x$ac_cv_sizeof_int = x ; then
15342
-  { { echo "$as_me:$LINENO: error: cannot determine a size for int" >&5
15343
-echo "$as_me: error: cannot determine a size for int" >&2;}
15342
+  { { $as_echo "$as_me:$LINENO: error: cannot determine a size for int" >&5
15343
+$as_echo "$as_me: error: cannot determine a size for int" >&2;}
15344 15344
    { (exit 1); exit 1; }; }
15345 15345
 fi
15346
-{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_int" >&5
15347
-echo "${ECHO_T}$ac_cv_sizeof_int" >&6; }
15346
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_int" >&5
15347
+$as_echo "$ac_cv_sizeof_int" >&6; }
15348 15348
 
15349 15349
 cat >>confdefs.h <<_ACEOF
15350 15350
 #define SIZEOF_INT $ac_cv_sizeof_int
15351 15351
 _ACEOF
15352 15352
 
15353 15353
 
15354
-{ echo "$as_me:$LINENO: checking size of long" >&5
15355
-echo $ECHO_N "checking size of long... $ECHO_C" >&6; }
15354
+{ $as_echo "$as_me:$LINENO: checking size of long" >&5
15355
+$as_echo_n "checking size of long... " >&6; }
15356 15356
 if test "${ac_cv_sizeof_long+set}" = set; then
15357
-  echo $ECHO_N "(cached) $ECHO_C" >&6
15357
+  $as_echo_n "(cached) " >&6
15358 15358
 else
15359 15359
   for ac_size in 4 8 1 2 16  ; do # List sizes in rough order of prevalence.
15360 15360
   cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -15381,20 +15894,21 @@ case "(($ac_try" in
15381 15381
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
15382 15382
   *) ac_try_echo=$ac_try;;
15383 15383
 esac
15384
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
15384
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
15385
+$as_echo "$ac_try_echo") >&5
15385 15386
   (eval "$ac_compile") 2>conftest.er1
15386 15387
   ac_status=$?
15387 15388
   grep -v '^ *+' conftest.er1 >conftest.err
15388 15389
   rm -f conftest.er1
15389 15390
   cat conftest.err >&5
15390
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
15391
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
15391 15392
   (exit $ac_status); } && {
15392 15393
 	 test -z "$ac_c_werror_flag" ||
15393 15394
 	 test ! -s conftest.err
15394 15395
        } && test -s conftest.$ac_objext; then
15395 15396
   ac_cv_sizeof_long=$ac_size
15396 15397
 else
15397
-  echo "$as_me: failed program was:" >&5
15398
+  $as_echo "$as_me: failed program was:" >&5
15398 15399
 sed 's/^/| /' conftest.$ac_ext >&5
15399 15400
 
15400 15401
 
... ...
@@ -15407,22 +15921,22 @@ done
15407 15407
 fi
15408 15408
 
15409 15409
 if test x$ac_cv_sizeof_long = x ; then
15410
-  { { echo "$as_me:$LINENO: error: cannot determine a size for long" >&5
15411
-echo "$as_me: error: cannot determine a size for long" >&2;}
15410
+  { { $as_echo "$as_me:$LINENO: error: cannot determine a size for long" >&5
15411
+$as_echo "$as_me: error: cannot determine a size for long" >&2;}
15412 15412
    { (exit 1); exit 1; }; }
15413 15413
 fi
15414
-{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_long" >&5
15415
-echo "${ECHO_T}$ac_cv_sizeof_long" >&6; }
15414
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_long" >&5
15415
+$as_echo "$ac_cv_sizeof_long" >&6; }
15416 15416
 
15417 15417
 cat >>confdefs.h <<_ACEOF
15418 15418
 #define SIZEOF_LONG $ac_cv_sizeof_long
15419 15419
 _ACEOF
15420 15420
 
15421 15421
 
15422
-{ echo "$as_me:$LINENO: checking size of long long" >&5
15423
-echo $ECHO_N "checking size of long long... $ECHO_C" >&6; }
15422
+{ $as_echo "$as_me:$LINENO: checking size of long long" >&5
15423
+$as_echo_n "checking size of long long... " >&6; }
15424 15424
 if test "${ac_cv_sizeof_long_long+set}" = set; then
15425
-  echo $ECHO_N "(cached) $ECHO_C" >&6
15425
+  $as_echo_n "(cached) " >&6
15426 15426
 else
15427 15427
   for ac_size in 4 8 1 2 16  ; do # List sizes in rough order of prevalence.
15428 15428
   cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -15449,20 +15963,21 @@ case "(($ac_try" in
15449 15449
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
15450 15450
   *) ac_try_echo=$ac_try;;
15451 15451
 esac
15452
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
15452
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
15453
+$as_echo "$ac_try_echo") >&5
15453 15454
   (eval "$ac_compile") 2>conftest.er1
15454 15455
   ac_status=$?
15455 15456
   grep -v '^ *+' conftest.er1 >conftest.err
15456 15457
   rm -f conftest.er1
15457 15458
   cat conftest.err >&5
15458
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
15459
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
15459 15460
   (exit $ac_status); } && {
15460 15461
 	 test -z "$ac_c_werror_flag" ||
15461 15462
 	 test ! -s conftest.err
15462 15463
        } && test -s conftest.$ac_objext; then
15463 15464
   ac_cv_sizeof_long_long=$ac_size
15464 15465
 else
15465
-  echo "$as_me: failed program was:" >&5
15466
+  $as_echo "$as_me: failed program was:" >&5
15466 15467
 sed 's/^/| /' conftest.$ac_ext >&5
15467 15468
 
15468 15469
 
... ...
@@ -15475,22 +15990,22 @@ done
15475 15475
 fi
15476 15476
 
15477 15477
 if test x$ac_cv_sizeof_long_long = x ; then
15478
-  { { echo "$as_me:$LINENO: error: cannot determine a size for long long" >&5
15479
-echo "$as_me: error: cannot determine a size for long long" >&2;}
15478
+  { { $as_echo "$as_me:$LINENO: error: cannot determine a size for long long" >&5
15479
+$as_echo "$as_me: error: cannot determine a size for long long" >&2;}
15480 15480
    { (exit 1); exit 1; }; }
15481 15481
 fi
15482
-{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_long_long" >&5
15483
-echo "${ECHO_T}$ac_cv_sizeof_long_long" >&6; }
15482
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_long_long" >&5
15483
+$as_echo "$ac_cv_sizeof_long_long" >&6; }
15484 15484
 
15485 15485
 cat >>confdefs.h <<_ACEOF
15486 15486
 #define SIZEOF_LONG_LONG $ac_cv_sizeof_long_long
15487 15487
 _ACEOF
15488 15488
 
15489 15489
 
15490
-{ echo "$as_me:$LINENO: checking size of void *" >&5
15491
-echo $ECHO_N "checking size of void *... $ECHO_C" >&6; }
15490
+{ $as_echo "$as_me:$LINENO: checking size of void *" >&5
15491
+$as_echo_n "checking size of void *... " >&6; }
15492 15492
 if test "${ac_cv_sizeof_void_p+set}" = set; then
15493
-  echo $ECHO_N "(cached) $ECHO_C" >&6
15493
+  $as_echo_n "(cached) " >&6
15494 15494
 else
15495 15495
   for ac_size in 4 8 1 2 16  ; do # List sizes in rough order of prevalence.
15496 15496
   cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -15517,20 +16032,21 @@ case "(($ac_try" in
15517 15517
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
15518 15518
   *) ac_try_echo=$ac_try;;
15519 15519
 esac
15520
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
15520
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
15521
+$as_echo "$ac_try_echo") >&5
15521 15522
   (eval "$ac_compile") 2>conftest.er1
15522 15523
   ac_status=$?
15523 15524
   grep -v '^ *+' conftest.er1 >conftest.err
15524 15525
   rm -f conftest.er1
15525 15526
   cat conftest.err >&5
15526
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
15527
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
15527 15528
   (exit $ac_status); } && {
15528 15529
 	 test -z "$ac_c_werror_flag" ||
15529 15530
 	 test ! -s conftest.err
15530 15531
        } && test -s conftest.$ac_objext; then
15531 15532
   ac_cv_sizeof_void_p=$ac_size
15532 15533
 else
15533
-  echo "$as_me: failed program was:" >&5
15534
+  $as_echo "$as_me: failed program was:" >&5
15534 15535
 sed 's/^/| /' conftest.$ac_ext >&5
15535 15536
 
15536 15537
 
... ...
@@ -15543,12 +16059,12 @@ done
15543 15543
 fi
15544 15544
 
15545 15545
 if test x$ac_cv_sizeof_void_p = x ; then
15546
-  { { echo "$as_me:$LINENO: error: cannot determine a size for void *" >&5
15547
-echo "$as_me: error: cannot determine a size for void *" >&2;}
15546
+  { { $as_echo "$as_me:$LINENO: error: cannot determine a size for void *" >&5
15547
+$as_echo "$as_me: error: cannot determine a size for void *" >&2;}
15548 15548
    { (exit 1); exit 1; }; }
15549 15549
 fi
15550
-{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_void_p" >&5
15551
-echo "${ECHO_T}$ac_cv_sizeof_void_p" >&6; }
15550
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_void_p" >&5
15551
+$as_echo "$ac_cv_sizeof_void_p" >&6; }
15552 15552
 
15553 15553
 cat >>confdefs.h <<_ACEOF
15554 15554
 #define SIZEOF_VOID_P $ac_cv_sizeof_void_p
... ...
@@ -15573,10 +16089,10 @@ _ACEOF
15573 15573
   VERSION_SUFFIX="$VERSION_SUFFIX-exp"
15574 15574
 fi
15575 15575
 
15576
-{ echo "$as_me:$LINENO: checking for bind in -lsocket" >&5
15577
-echo $ECHO_N "checking for bind in -lsocket... $ECHO_C" >&6; }
15576
+{ $as_echo "$as_me:$LINENO: checking for bind in -lsocket" >&5
15577
+$as_echo_n "checking for bind in -lsocket... " >&6; }
15578 15578
 if test "${ac_cv_lib_socket_bind+set}" = set; then
15579
-  echo $ECHO_N "(cached) $ECHO_C" >&6
15579
+  $as_echo_n "(cached) " >&6
15580 15580
 else
15581 15581
   ac_check_lib_save_LIBS=$LIBS
15582 15582
 LIBS="-lsocket  $LIBS"
... ...
@@ -15608,40 +16124,44 @@ case "(($ac_try" in
15608 15608
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
15609 15609
   *) ac_try_echo=$ac_try;;
15610 15610
 esac
15611
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
15611
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
15612
+$as_echo "$ac_try_echo") >&5
15612 15613
   (eval "$ac_link") 2>conftest.er1
15613 15614
   ac_status=$?
15614 15615
   grep -v '^ *+' conftest.er1 >conftest.err
15615 15616
   rm -f conftest.er1
15616 15617
   cat conftest.err >&5
15617
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
15618
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
15618 15619
   (exit $ac_status); } && {
15619 15620
 	 test -z "$ac_c_werror_flag" ||
15620 15621
 	 test ! -s conftest.err
15621
-       } && test -s conftest$ac_exeext &&
15622
-       $as_test_x conftest$ac_exeext; then
15622
+       } && test -s conftest$ac_exeext && {
15623
+	 test "$cross_compiling" = yes ||
15624
+	 $as_test_x conftest$ac_exeext
15625
+       }; then
15623 15626
   ac_cv_lib_socket_bind=yes
15624 15627
 else
15625
-  echo "$as_me: failed program was:" >&5
15628
+  $as_echo "$as_me: failed program was:" >&5
15626 15629
 sed 's/^/| /' conftest.$ac_ext >&5
15627 15630
 
15628 15631
 	ac_cv_lib_socket_bind=no
15629 15632
 fi
15630 15633
 
15634
+rm -rf conftest.dSYM
15631 15635
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
15632 15636
       conftest$ac_exeext conftest.$ac_ext
15633 15637
 LIBS=$ac_check_lib_save_LIBS
15634 15638
 fi
15635
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_socket_bind" >&5
15636
-echo "${ECHO_T}$ac_cv_lib_socket_bind" >&6; }
15637
-if test $ac_cv_lib_socket_bind = yes; then
15639
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_socket_bind" >&5
15640
+$as_echo "$ac_cv_lib_socket_bind" >&6; }
15641
+if test "x$ac_cv_lib_socket_bind" = x""yes; then
15638 15642
   LIBS="$LIBS -lsocket"; CLAMAV_MILTER_LIBS="$CLAMAV_MILTER_LIBS -lsocket"; FRESHCLAM_LIBS="$FRESHCLAM_LIBS -lsocket"; CLAMD_LIBS="$CLAMD_LIBS -lsocket"
15639 15643
 fi
15640 15644
 
15641
-{ echo "$as_me:$LINENO: checking for library containing gethostent" >&5
15642
-echo $ECHO_N "checking for library containing gethostent... $ECHO_C" >&6; }
15645
+{ $as_echo "$as_me:$LINENO: checking for library containing gethostent" >&5
15646
+$as_echo_n "checking for library containing gethostent... " >&6; }
15643 15647
 if test "${ac_cv_search_gethostent+set}" = set; then
15644
-  echo $ECHO_N "(cached) $ECHO_C" >&6
15648
+  $as_echo_n "(cached) " >&6
15645 15649
 else
15646 15650
   ac_func_search_save_LIBS=$LIBS
15647 15651
 cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -15679,26 +16199,30 @@ case "(($ac_try" in
15679 15679
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
15680 15680
   *) ac_try_echo=$ac_try;;
15681 15681
 esac
15682
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
15682
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
15683
+$as_echo "$ac_try_echo") >&5
15683 15684
   (eval "$ac_link") 2>conftest.er1
15684 15685
   ac_status=$?
15685 15686
   grep -v '^ *+' conftest.er1 >conftest.err
15686 15687
   rm -f conftest.er1
15687 15688
   cat conftest.err >&5
15688
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
15689
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
15689 15690
   (exit $ac_status); } && {
15690 15691
 	 test -z "$ac_c_werror_flag" ||
15691 15692
 	 test ! -s conftest.err
15692
-       } && test -s conftest$ac_exeext &&
15693
-       $as_test_x conftest$ac_exeext; then
15693
+       } && test -s conftest$ac_exeext && {
15694
+	 test "$cross_compiling" = yes ||
15695
+	 $as_test_x conftest$ac_exeext
15696
+       }; then
15694 15697
   ac_cv_search_gethostent=$ac_res
15695 15698
 else
15696
-  echo "$as_me: failed program was:" >&5
15699
+  $as_echo "$as_me: failed program was:" >&5
15697 15700
 sed 's/^/| /' conftest.$ac_ext >&5
15698 15701
 
15699 15702
 
15700 15703
 fi
15701 15704
 
15705
+rm -rf conftest.dSYM
15702 15706
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
15703 15707
       conftest$ac_exeext
15704 15708
   if test "${ac_cv_search_gethostent+set}" = set; then
... ...
@@ -15713,8 +16237,8 @@ fi
15713 15713
 rm conftest.$ac_ext
15714 15714
 LIBS=$ac_func_search_save_LIBS
15715 15715
 fi
15716
-{ echo "$as_me:$LINENO: result: $ac_cv_search_gethostent" >&5
15717
-echo "${ECHO_T}$ac_cv_search_gethostent" >&6; }
15716
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_gethostent" >&5
15717
+$as_echo "$ac_cv_search_gethostent" >&6; }
15718 15718
 ac_res=$ac_cv_search_gethostent
15719 15719
 if test "$ac_res" != no; then
15720 15720
   test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
... ...
@@ -15738,11 +16262,11 @@ fi
15738 15738
 
15739 15739
 for ac_func in poll setsid memcpy snprintf vsnprintf strerror_r strlcpy strlcat strcasestr inet_ntop setgroups initgroups ctime_r mkstemp
15740 15740
 do
15741
-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
15742
-{ echo "$as_me:$LINENO: checking for $ac_func" >&5
15743
-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
15741
+as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
15742
+{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5
15743
+$as_echo_n "checking for $ac_func... " >&6; }
15744 15744
 if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
15745
-  echo $ECHO_N "(cached) $ECHO_C" >&6
15745
+  $as_echo_n "(cached) " >&6
15746 15746
 else
15747 15747
   cat >conftest.$ac_ext <<_ACEOF
15748 15748
 /* confdefs.h.  */
... ...
@@ -15795,45 +16319,52 @@ case "(($ac_try" in
15795 15795
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
15796 15796
   *) ac_try_echo=$ac_try;;
15797 15797
 esac
15798
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
15798
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
15799
+$as_echo "$ac_try_echo") >&5
15799 15800
   (eval "$ac_link") 2>conftest.er1
15800 15801
   ac_status=$?
15801 15802
   grep -v '^ *+' conftest.er1 >conftest.err
15802 15803
   rm -f conftest.er1
15803 15804
   cat conftest.err >&5
15804
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
15805
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
15805 15806
   (exit $ac_status); } && {
15806 15807
 	 test -z "$ac_c_werror_flag" ||
15807 15808
 	 test ! -s conftest.err
15808
-       } && test -s conftest$ac_exeext &&
15809
-       $as_test_x conftest$ac_exeext; then
15809
+       } && test -s conftest$ac_exeext && {
15810
+	 test "$cross_compiling" = yes ||
15811
+	 $as_test_x conftest$ac_exeext
15812
+       }; then
15810 15813
   eval "$as_ac_var=yes"
15811 15814
 else
15812
-  echo "$as_me: failed program was:" >&5
15815
+  $as_echo "$as_me: failed program was:" >&5
15813 15816
 sed 's/^/| /' conftest.$ac_ext >&5
15814 15817
 
15815 15818
 	eval "$as_ac_var=no"
15816 15819
 fi
15817 15820
 
15821
+rm -rf conftest.dSYM
15818 15822
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
15819 15823
       conftest$ac_exeext conftest.$ac_ext
15820 15824
 fi
15821
-ac_res=`eval echo '${'$as_ac_var'}'`
15822
-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
15823
-echo "${ECHO_T}$ac_res" >&6; }
15824
-if test `eval echo '${'$as_ac_var'}'` = yes; then
15825
+ac_res=`eval 'as_val=${'$as_ac_var'}
15826
+		 $as_echo "$as_val"'`
15827
+	       { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
15828
+$as_echo "$ac_res" >&6; }
15829
+as_val=`eval 'as_val=${'$as_ac_var'}
15830
+		 $as_echo "$as_val"'`
15831
+   if test "x$as_val" = x""yes; then
15825 15832
   cat >>confdefs.h <<_ACEOF
15826
-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
15833
+#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
15827 15834
 _ACEOF
15828 15835
 
15829 15836
 fi
15830 15837
 done
15831 15838
 
15832 15839
 
15833
-	{ echo "$as_me:$LINENO: checking for working mmap" >&5
15834
-echo $ECHO_N "checking for working mmap... $ECHO_C" >&6; }
15840
+	{ $as_echo "$as_me:$LINENO: checking for working mmap" >&5
15841
+$as_echo_n "checking for working mmap... " >&6; }
15835 15842
 if test "${ac_cv_c_mmap_private+set}" = set; then
15836
-  echo $ECHO_N "(cached) $ECHO_C" >&6
15843
+  $as_echo_n "(cached) " >&6
15837 15844
 else
15838 15845
 
15839 15846
 		if test "$cross_compiling" = yes; then
... ...
@@ -15911,36 +16442,39 @@ case "(($ac_try" in
15911 15911
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
15912 15912
   *) ac_try_echo=$ac_try;;
15913 15913
 esac
15914
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
15914
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
15915
+$as_echo "$ac_try_echo") >&5
15915 15916
   (eval "$ac_link") 2>&5
15916 15917
   ac_status=$?
15917
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
15918
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
15918 15919
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
15919 15920
   { (case "(($ac_try" in
15920 15921
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
15921 15922
   *) ac_try_echo=$ac_try;;
15922 15923
 esac
15923
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
15924
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
15925
+$as_echo "$ac_try_echo") >&5
15924 15926
   (eval "$ac_try") 2>&5
15925 15927
   ac_status=$?
15926
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
15928
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
15927 15929
   (exit $ac_status); }; }; then
15928 15930
   ac_cv_c_mmap_private=yes
15929 15931
 else
15930
-  echo "$as_me: program exited with status $ac_status" >&5
15931
-echo "$as_me: failed program was:" >&5
15932
+  $as_echo "$as_me: program exited with status $ac_status" >&5
15933
+$as_echo "$as_me: failed program was:" >&5
15932 15934
 sed 's/^/| /' conftest.$ac_ext >&5
15933 15935
 
15934 15936
 ( exit $ac_status )
15935 15937
 ac_cv_c_mmap_private=no
15936 15938
 fi
15939
+rm -rf conftest.dSYM
15937 15940
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
15938 15941
 fi
15939 15942
 
15940 15943
 
15941 15944
 fi
15942
-{ echo "$as_me:$LINENO: result: $ac_cv_c_mmap_private" >&5
15943
-echo "${ECHO_T}$ac_cv_c_mmap_private" >&6; }
15945
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_mmap_private" >&5
15946
+$as_echo "$ac_cv_c_mmap_private" >&6; }
15944 15947
 if test $ac_cv_c_mmap_private = yes; then
15945 15948
 
15946 15949
 cat >>confdefs.h <<\_ACEOF
... ...
@@ -15950,10 +16484,10 @@ _ACEOF
15950 15950
 fi
15951 15951
 rm -f conftest.mmap
15952 15952
 
15953
-{ echo "$as_me:$LINENO: checking for _LARGEFILE_SOURCE value needed for large files" >&5
15954
-echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6; }
15953
+{ $as_echo "$as_me:$LINENO: checking for _LARGEFILE_SOURCE value needed for large files" >&5
15954
+$as_echo_n "checking for _LARGEFILE_SOURCE value needed for large files... " >&6; }
15955 15955
 if test "${ac_cv_sys_largefile_source+set}" = set; then
15956
-  echo $ECHO_N "(cached) $ECHO_C" >&6
15956
+  $as_echo_n "(cached) " >&6
15957 15957
 else
15958 15958
   while :; do
15959 15959
   cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -15979,26 +16513,30 @@ case "(($ac_try" in
15979 15979
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
15980 15980
   *) ac_try_echo=$ac_try;;
15981 15981
 esac
15982
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
15982
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
15983
+$as_echo "$ac_try_echo") >&5
15983 15984
   (eval "$ac_link") 2>conftest.er1
15984 15985
   ac_status=$?
15985 15986
   grep -v '^ *+' conftest.er1 >conftest.err
15986 15987
   rm -f conftest.er1
15987 15988
   cat conftest.err >&5
15988
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
15989
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
15989 15990
   (exit $ac_status); } && {
15990 15991
 	 test -z "$ac_c_werror_flag" ||
15991 15992
 	 test ! -s conftest.err
15992
-       } && test -s conftest$ac_exeext &&
15993
-       $as_test_x conftest$ac_exeext; then
15993
+       } && test -s conftest$ac_exeext && {
15994
+	 test "$cross_compiling" = yes ||
15995
+	 $as_test_x conftest$ac_exeext
15996
+       }; then
15994 15997
   ac_cv_sys_largefile_source=no; break
15995 15998
 else
15996
-  echo "$as_me: failed program was:" >&5
15999
+  $as_echo "$as_me: failed program was:" >&5
15997 16000
 sed 's/^/| /' conftest.$ac_ext >&5
15998 16001
 
15999 16002
 
16000 16003
 fi
16001 16004
 
16005
+rm -rf conftest.dSYM
16002 16006
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
16003 16007
       conftest$ac_exeext conftest.$ac_ext
16004 16008
   cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -16025,34 +16563,38 @@ case "(($ac_try" in
16025 16025
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
16026 16026
   *) ac_try_echo=$ac_try;;
16027 16027
 esac
16028
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
16028
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
16029
+$as_echo "$ac_try_echo") >&5
16029 16030
   (eval "$ac_link") 2>conftest.er1
16030 16031
   ac_status=$?
16031 16032
   grep -v '^ *+' conftest.er1 >conftest.err
16032 16033
   rm -f conftest.er1
16033 16034
   cat conftest.err >&5
16034
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
16035
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
16035 16036
   (exit $ac_status); } && {
16036 16037
 	 test -z "$ac_c_werror_flag" ||
16037 16038
 	 test ! -s conftest.err
16038
-       } && test -s conftest$ac_exeext &&
16039
-       $as_test_x conftest$ac_exeext; then
16039
+       } && test -s conftest$ac_exeext && {
16040
+	 test "$cross_compiling" = yes ||
16041
+	 $as_test_x conftest$ac_exeext
16042
+       }; then
16040 16043
   ac_cv_sys_largefile_source=1; break
16041 16044
 else
16042
-  echo "$as_me: failed program was:" >&5
16045
+  $as_echo "$as_me: failed program was:" >&5
16043 16046
 sed 's/^/| /' conftest.$ac_ext >&5
16044 16047
 
16045 16048
 
16046 16049
 fi
16047 16050
 
16051
+rm -rf conftest.dSYM
16048 16052
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
16049 16053
       conftest$ac_exeext conftest.$ac_ext
16050 16054
   ac_cv_sys_largefile_source=unknown
16051 16055
   break
16052 16056
 done
16053 16057
 fi
16054
-{ echo "$as_me:$LINENO: result: $ac_cv_sys_largefile_source" >&5
16055
-echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6; }
16058
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_sys_largefile_source" >&5
16059
+$as_echo "$ac_cv_sys_largefile_source" >&6; }
16056 16060
 case $ac_cv_sys_largefile_source in #(
16057 16061
   no | unknown) ;;
16058 16062
   *)
... ...
@@ -16061,7 +16603,7 @@ cat >>confdefs.h <<_ACEOF
16061 16061
 _ACEOF
16062 16062
 ;;
16063 16063
 esac
16064
-rm -f conftest*
16064
+rm -rf conftest*
16065 16065
 
16066 16066
 # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug
16067 16067
 # in glibc 2.1.3, but that breaks too many other things.
... ...
@@ -16084,13 +16626,13 @@ fi
16084 16084
 
16085 16085
 if test "$enable_mempool" = "yes"; then
16086 16086
 	if test "$ac_cv_c_mmap_private" != "yes"; then
16087
-		{ echo "$as_me:$LINENO: ****** mempool support disabled (mmap not available or not usable)" >&5
16088
-echo "$as_me: ****** mempool support disabled (mmap not available or not usable)" >&6;}
16087
+		{ $as_echo "$as_me:$LINENO: ****** mempool support disabled (mmap not available or not usable)" >&5
16088
+$as_echo "$as_me: ****** mempool support disabled (mmap not available or not usable)" >&6;}
16089 16089
 	else
16090
-		{ echo "$as_me:$LINENO: checking for getpagesize" >&5
16091
-echo $ECHO_N "checking for getpagesize... $ECHO_C" >&6; }
16090
+		{ $as_echo "$as_me:$LINENO: checking for getpagesize" >&5
16091
+$as_echo_n "checking for getpagesize... " >&6; }
16092 16092
 if test "${ac_cv_func_getpagesize+set}" = set; then
16093
-  echo $ECHO_N "(cached) $ECHO_C" >&6
16093
+  $as_echo_n "(cached) " >&6
16094 16094
 else
16095 16095
   cat >conftest.$ac_ext <<_ACEOF
16096 16096
 /* confdefs.h.  */
... ...
@@ -16143,38 +16685,42 @@ case "(($ac_try" in
16143 16143
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
16144 16144
   *) ac_try_echo=$ac_try;;
16145 16145
 esac
16146
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
16146
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
16147
+$as_echo "$ac_try_echo") >&5
16147 16148
   (eval "$ac_link") 2>conftest.er1
16148 16149
   ac_status=$?
16149 16150
   grep -v '^ *+' conftest.er1 >conftest.err
16150 16151
   rm -f conftest.er1
16151 16152
   cat conftest.err >&5
16152
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
16153
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
16153 16154
   (exit $ac_status); } && {
16154 16155
 	 test -z "$ac_c_werror_flag" ||
16155 16156
 	 test ! -s conftest.err
16156
-       } && test -s conftest$ac_exeext &&
16157
-       $as_test_x conftest$ac_exeext; then
16157
+       } && test -s conftest$ac_exeext && {
16158
+	 test "$cross_compiling" = yes ||
16159
+	 $as_test_x conftest$ac_exeext
16160
+       }; then
16158 16161
   ac_cv_func_getpagesize=yes
16159 16162
 else
16160
-  echo "$as_me: failed program was:" >&5
16163
+  $as_echo "$as_me: failed program was:" >&5
16161 16164
 sed 's/^/| /' conftest.$ac_ext >&5
16162 16165
 
16163 16166
 	ac_cv_func_getpagesize=no
16164 16167
 fi
16165 16168
 
16169
+rm -rf conftest.dSYM
16166 16170
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
16167 16171
       conftest$ac_exeext conftest.$ac_ext
16168 16172
 fi
16169
-{ echo "$as_me:$LINENO: result: $ac_cv_func_getpagesize" >&5
16170
-echo "${ECHO_T}$ac_cv_func_getpagesize" >&6; }
16171
-if test $ac_cv_func_getpagesize = yes; then
16173
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_getpagesize" >&5
16174
+$as_echo "$ac_cv_func_getpagesize" >&6; }
16175
+if test "x$ac_cv_func_getpagesize" = x""yes; then
16172 16176
 
16173 16177
 
16174
-	{ echo "$as_me:$LINENO: checking for MAP_ANON(YMOUS)" >&5
16175
-echo $ECHO_N "checking for MAP_ANON(YMOUS)... $ECHO_C" >&6; }
16178
+	{ $as_echo "$as_me:$LINENO: checking for MAP_ANON(YMOUS)" >&5
16179
+$as_echo_n "checking for MAP_ANON(YMOUS)... " >&6; }
16176 16180
 if test "${ac_cv_c_mmap_anonymous+set}" = set; then
16177
-  echo $ECHO_N "(cached) $ECHO_C" >&6
16181
+  $as_echo_n "(cached) " >&6
16178 16182
 else
16179 16183
 
16180 16184
 		ac_cv_c_mmap_anonymous='no'
... ...
@@ -16199,20 +16745,21 @@ case "(($ac_try" in
16199 16199
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
16200 16200
   *) ac_try_echo=$ac_try;;
16201 16201
 esac
16202
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
16202
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
16203
+$as_echo "$ac_try_echo") >&5
16203 16204
   (eval "$ac_compile") 2>conftest.er1
16204 16205
   ac_status=$?
16205 16206
   grep -v '^ *+' conftest.er1 >conftest.err
16206 16207
   rm -f conftest.er1
16207 16208
   cat conftest.err >&5
16208
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
16209
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
16209 16210
   (exit $ac_status); } && {
16210 16211
 	 test -z "$ac_c_werror_flag" ||
16211 16212
 	 test ! -s conftest.err
16212 16213
        } && test -s conftest.$ac_objext; then
16213 16214
   ac_cv_c_mmap_anonymous='MAP_ANONYMOUS'
16214 16215
 else
16215
-  echo "$as_me: failed program was:" >&5
16216
+  $as_echo "$as_me: failed program was:" >&5
16216 16217
 sed 's/^/| /' conftest.$ac_ext >&5
16217 16218
 
16218 16219
 
... ...
@@ -16242,27 +16789,31 @@ case "(($ac_try" in
16242 16242
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
16243 16243
   *) ac_try_echo=$ac_try;;
16244 16244
 esac
16245
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
16245
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
16246
+$as_echo "$ac_try_echo") >&5
16246 16247
   (eval "$ac_link") 2>conftest.er1
16247 16248
   ac_status=$?
16248 16249
   grep -v '^ *+' conftest.er1 >conftest.err
16249 16250
   rm -f conftest.er1
16250 16251
   cat conftest.err >&5
16251
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
16252
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
16252 16253
   (exit $ac_status); } && {
16253 16254
 	 test -z "$ac_c_werror_flag" ||
16254 16255
 	 test ! -s conftest.err
16255
-       } && test -s conftest$ac_exeext &&
16256
-       $as_test_x conftest$ac_exeext; then
16256
+       } && test -s conftest$ac_exeext && {
16257
+	 test "$cross_compiling" = yes ||
16258
+	 $as_test_x conftest$ac_exeext
16259
+       }; then
16257 16260
   ac_cv_c_mmap_anonymous='MAP_ANON'
16258 16261
 
16259 16262
 else
16260
-  echo "$as_me: failed program was:" >&5
16263
+  $as_echo "$as_me: failed program was:" >&5
16261 16264
 sed 's/^/| /' conftest.$ac_ext >&5
16262 16265
 
16263 16266
 
16264 16267
 fi
16265 16268
 
16269
+rm -rf conftest.dSYM
16266 16270
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
16267 16271
       conftest$ac_exeext conftest.$ac_ext
16268 16272
 
... ...
@@ -16272,8 +16823,8 @@ fi
16272 16272
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
16273 16273
 
16274 16274
 fi
16275
-{ echo "$as_me:$LINENO: result: $ac_cv_c_mmap_anonymous" >&5
16276
-echo "${ECHO_T}$ac_cv_c_mmap_anonymous" >&6; }
16275
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_mmap_anonymous" >&5
16276
+$as_echo "$ac_cv_c_mmap_anonymous" >&6; }
16277 16277
 	if test "$ac_cv_c_mmap_anonymous" != "no"; then
16278 16278
 
16279 16279
 cat >>confdefs.h <<_ACEOF
... ...
@@ -16283,8 +16834,8 @@ _ACEOF
16283 16283
 	fi
16284 16284
 
16285 16285
 			if test "$ac_cv_c_mmap_anonymous" = "no"; then
16286
-				{ echo "$as_me:$LINENO: ****** mempool support disabled (anonymous mmap not available)" >&5
16287
-echo "$as_me: ****** mempool support disabled (anonymous mmap not available)" >&6;}
16286
+				{ $as_echo "$as_me:$LINENO: ****** mempool support disabled (anonymous mmap not available)" >&5
16287
+$as_echo "$as_me: ****** mempool support disabled (anonymous mmap not available)" >&6;}
16288 16288
 			else
16289 16289
 
16290 16290
 cat >>confdefs.h <<\_ACEOF
... ...
@@ -16294,8 +16845,8 @@ _ACEOF
16294 16294
 			fi
16295 16295
 
16296 16296
 else
16297
-  { echo "$as_me:$LINENO: ****** mempool support disabled (getpagesize not available)" >&5
16298
-echo "$as_me: ****** mempool support disabled (getpagesize not available)" >&6;}
16297
+  { $as_echo "$as_me:$LINENO: ****** mempool support disabled (getpagesize not available)" >&5
16298
+$as_echo "$as_me: ****** mempool support disabled (getpagesize not available)" >&6;}
16299 16299
 fi
16300 16300
 
16301 16301
 	fi
... ...
@@ -16352,8 +16903,8 @@ fi
16352 16352
 ac_prog=ld
16353 16353
 if test "$GCC" = yes; then
16354 16354
   # Check if gcc -print-prog-name=ld gives a path.
16355
-  { echo "$as_me:$LINENO: checking for ld used by GCC" >&5
16356
-echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6; }
16355
+  { $as_echo "$as_me:$LINENO: checking for ld used by GCC" >&5
16356
+$as_echo_n "checking for ld used by GCC... " >&6; }
16357 16357
   case $host in
16358 16358
   *-*-mingw*)
16359 16359
     # gcc leaves a trailing carriage return which upsets mingw
... ...
@@ -16382,14 +16933,14 @@ echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6; }
16382 16382
     ;;
16383 16383
   esac
16384 16384
 elif test "$with_gnu_ld" = yes; then
16385
-  { echo "$as_me:$LINENO: checking for GNU ld" >&5
16386
-echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; }
16385
+  { $as_echo "$as_me:$LINENO: checking for GNU ld" >&5
16386
+$as_echo_n "checking for GNU ld... " >&6; }
16387 16387
 else
16388
-  { echo "$as_me:$LINENO: checking for non-GNU ld" >&5
16389
-echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; }
16388
+  { $as_echo "$as_me:$LINENO: checking for non-GNU ld" >&5
16389
+$as_echo_n "checking for non-GNU ld... " >&6; }
16390 16390
 fi
16391 16391
 if test "${acl_cv_path_LD+set}" = set; then
16392
-  echo $ECHO_N "(cached) $ECHO_C" >&6
16392
+  $as_echo_n "(cached) " >&6
16393 16393
 else
16394 16394
   if test -z "$LD"; then
16395 16395
   IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
... ...
@@ -16416,19 +16967,19 @@ fi
16416 16416
 
16417 16417
 LD="$acl_cv_path_LD"
16418 16418
 if test -n "$LD"; then
16419
-  { echo "$as_me:$LINENO: result: $LD" >&5
16420
-echo "${ECHO_T}$LD" >&6; }
16419
+  { $as_echo "$as_me:$LINENO: result: $LD" >&5
16420
+$as_echo "$LD" >&6; }
16421 16421
 else
16422
-  { echo "$as_me:$LINENO: result: no" >&5
16423
-echo "${ECHO_T}no" >&6; }
16422
+  { $as_echo "$as_me:$LINENO: result: no" >&5
16423
+$as_echo "no" >&6; }
16424 16424
 fi
16425
-test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
16426
-echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
16425
+test -z "$LD" && { { $as_echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
16426
+$as_echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
16427 16427
    { (exit 1); exit 1; }; }
16428
-{ echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
16429
-echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; }
16428
+{ $as_echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
16429
+$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
16430 16430
 if test "${acl_cv_prog_gnu_ld+set}" = set; then
16431
-  echo $ECHO_N "(cached) $ECHO_C" >&6
16431
+  $as_echo_n "(cached) " >&6
16432 16432
 else
16433 16433
   # I'd rather use --version here, but apparently some GNU ld's only accept -v.
16434 16434
 case `$LD -v 2>&1 </dev/null` in
... ...
@@ -16438,17 +16989,17 @@ case `$LD -v 2>&1 </dev/null` in
16438 16438
   acl_cv_prog_gnu_ld=no ;;
16439 16439
 esac
16440 16440
 fi
16441
-{ echo "$as_me:$LINENO: result: $acl_cv_prog_gnu_ld" >&5
16442
-echo "${ECHO_T}$acl_cv_prog_gnu_ld" >&6; }
16441
+{ $as_echo "$as_me:$LINENO: result: $acl_cv_prog_gnu_ld" >&5
16442
+$as_echo "$acl_cv_prog_gnu_ld" >&6; }
16443 16443
 with_gnu_ld=$acl_cv_prog_gnu_ld
16444 16444
 
16445 16445
 
16446 16446
 
16447 16447
 
16448
-                                                { echo "$as_me:$LINENO: checking for shared library run path origin" >&5
16449
-echo $ECHO_N "checking for shared library run path origin... $ECHO_C" >&6; }
16448
+                                                { $as_echo "$as_me:$LINENO: checking for shared library run path origin" >&5
16449
+$as_echo_n "checking for shared library run path origin... " >&6; }
16450 16450
 if test "${acl_cv_rpath+set}" = set; then
16451
-  echo $ECHO_N "(cached) $ECHO_C" >&6
16451
+  $as_echo_n "(cached) " >&6
16452 16452
 else
16453 16453
 
16454 16454
     CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \
... ...
@@ -16458,8 +17009,8 @@ else
16458 16458
     acl_cv_rpath=done
16459 16459
 
16460 16460
 fi
16461
-{ echo "$as_me:$LINENO: result: $acl_cv_rpath" >&5
16462
-echo "${ECHO_T}$acl_cv_rpath" >&6; }
16461
+{ $as_echo "$as_me:$LINENO: result: $acl_cv_rpath" >&5
16462
+$as_echo "$acl_cv_rpath" >&6; }
16463 16463
   wl="$acl_cv_wl"
16464 16464
   acl_libext="$acl_cv_libext"
16465 16465
   acl_shlibext="$acl_cv_shlibext"
... ...
@@ -16937,17 +17488,17 @@ fi
16937 16937
 
16938 16938
 		CPPFLAGS="$CPPFLAGS $INCCHECK"
16939 16939
 		if test "${ac_cv_header_check_h+set}" = set; then
16940
-  { echo "$as_me:$LINENO: checking for check.h" >&5
16941
-echo $ECHO_N "checking for check.h... $ECHO_C" >&6; }
16940
+  { $as_echo "$as_me:$LINENO: checking for check.h" >&5
16941
+$as_echo_n "checking for check.h... " >&6; }
16942 16942
 if test "${ac_cv_header_check_h+set}" = set; then
16943
-  echo $ECHO_N "(cached) $ECHO_C" >&6
16943
+  $as_echo_n "(cached) " >&6
16944 16944
 fi
16945
-{ echo "$as_me:$LINENO: result: $ac_cv_header_check_h" >&5
16946
-echo "${ECHO_T}$ac_cv_header_check_h" >&6; }
16945
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_check_h" >&5
16946
+$as_echo "$ac_cv_header_check_h" >&6; }
16947 16947
 else
16948 16948
   # Is the header compilable?
16949
-{ echo "$as_me:$LINENO: checking check.h usability" >&5
16950
-echo $ECHO_N "checking check.h usability... $ECHO_C" >&6; }
16949
+{ $as_echo "$as_me:$LINENO: checking check.h usability" >&5
16950
+$as_echo_n "checking check.h usability... " >&6; }
16951 16951
 cat >conftest.$ac_ext <<_ACEOF
16952 16952
 /* confdefs.h.  */
16953 16953
 _ACEOF
... ...
@@ -16963,32 +17514,33 @@ case "(($ac_try" in
16963 16963
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
16964 16964
   *) ac_try_echo=$ac_try;;
16965 16965
 esac
16966
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
16966
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
16967
+$as_echo "$ac_try_echo") >&5
16967 16968
   (eval "$ac_compile") 2>conftest.er1
16968 16969
   ac_status=$?
16969 16970
   grep -v '^ *+' conftest.er1 >conftest.err
16970 16971
   rm -f conftest.er1
16971 16972
   cat conftest.err >&5
16972
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
16973
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
16973 16974
   (exit $ac_status); } && {
16974 16975
 	 test -z "$ac_c_werror_flag" ||
16975 16976
 	 test ! -s conftest.err
16976 16977
        } && test -s conftest.$ac_objext; then
16977 16978
   ac_header_compiler=yes
16978 16979
 else
16979
-  echo "$as_me: failed program was:" >&5
16980
+  $as_echo "$as_me: failed program was:" >&5
16980 16981
 sed 's/^/| /' conftest.$ac_ext >&5
16981 16982
 
16982 16983
 	ac_header_compiler=no
16983 16984
 fi
16984 16985
 
16985 16986
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
16986
-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
16987
-echo "${ECHO_T}$ac_header_compiler" >&6; }
16987
+{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
16988
+$as_echo "$ac_header_compiler" >&6; }
16988 16989
 
16989 16990
 # Is the header present?
16990
-{ echo "$as_me:$LINENO: checking check.h presence" >&5
16991
-echo $ECHO_N "checking check.h presence... $ECHO_C" >&6; }
16991
+{ $as_echo "$as_me:$LINENO: checking check.h presence" >&5
16992
+$as_echo_n "checking check.h presence... " >&6; }
16992 16993
 cat >conftest.$ac_ext <<_ACEOF
16993 16994
 /* confdefs.h.  */
16994 16995
 _ACEOF
... ...
@@ -17002,51 +17554,52 @@ case "(($ac_try" in
17002 17002
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
17003 17003
   *) ac_try_echo=$ac_try;;
17004 17004
 esac
17005
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
17005
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
17006
+$as_echo "$ac_try_echo") >&5
17006 17007
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
17007 17008
   ac_status=$?
17008 17009
   grep -v '^ *+' conftest.er1 >conftest.err
17009 17010
   rm -f conftest.er1
17010 17011
   cat conftest.err >&5
17011
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
17012
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
17012 17013
   (exit $ac_status); } >/dev/null && {
17013 17014
 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
17014 17015
 	 test ! -s conftest.err
17015 17016
        }; then
17016 17017
   ac_header_preproc=yes
17017 17018
 else
17018
-  echo "$as_me: failed program was:" >&5
17019
+  $as_echo "$as_me: failed program was:" >&5
17019 17020
 sed 's/^/| /' conftest.$ac_ext >&5
17020 17021
 
17021 17022
   ac_header_preproc=no
17022 17023
 fi
17023 17024
 
17024 17025
 rm -f conftest.err conftest.$ac_ext
17025
-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
17026
-echo "${ECHO_T}$ac_header_preproc" >&6; }
17026
+{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
17027
+$as_echo "$ac_header_preproc" >&6; }
17027 17028
 
17028 17029
 # So?  What about this header?
17029 17030
 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
17030 17031
   yes:no: )
17031
-    { echo "$as_me:$LINENO: WARNING: check.h: accepted by the compiler, rejected by the preprocessor!" >&5
17032
-echo "$as_me: WARNING: check.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
17033
-    { echo "$as_me:$LINENO: WARNING: check.h: proceeding with the compiler's result" >&5
17034
-echo "$as_me: WARNING: check.h: proceeding with the compiler's result" >&2;}
17032
+    { $as_echo "$as_me:$LINENO: WARNING: check.h: accepted by the compiler, rejected by the preprocessor!" >&5
17033
+$as_echo "$as_me: WARNING: check.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
17034
+    { $as_echo "$as_me:$LINENO: WARNING: check.h: proceeding with the compiler's result" >&5
17035
+$as_echo "$as_me: WARNING: check.h: proceeding with the compiler's result" >&2;}
17035 17036
     ac_header_preproc=yes
17036 17037
     ;;
17037 17038
   no:yes:* )
17038
-    { echo "$as_me:$LINENO: WARNING: check.h: present but cannot be compiled" >&5
17039
-echo "$as_me: WARNING: check.h: present but cannot be compiled" >&2;}
17040
-    { echo "$as_me:$LINENO: WARNING: check.h:     check for missing prerequisite headers?" >&5
17041
-echo "$as_me: WARNING: check.h:     check for missing prerequisite headers?" >&2;}
17042
-    { echo "$as_me:$LINENO: WARNING: check.h: see the Autoconf documentation" >&5
17043
-echo "$as_me: WARNING: check.h: see the Autoconf documentation" >&2;}
17044
-    { echo "$as_me:$LINENO: WARNING: check.h:     section \"Present But Cannot Be Compiled\"" >&5
17045
-echo "$as_me: WARNING: check.h:     section \"Present But Cannot Be Compiled\"" >&2;}
17046
-    { echo "$as_me:$LINENO: WARNING: check.h: proceeding with the preprocessor's result" >&5
17047
-echo "$as_me: WARNING: check.h: proceeding with the preprocessor's result" >&2;}
17048
-    { echo "$as_me:$LINENO: WARNING: check.h: in the future, the compiler will take precedence" >&5
17049
-echo "$as_me: WARNING: check.h: in the future, the compiler will take precedence" >&2;}
17039
+    { $as_echo "$as_me:$LINENO: WARNING: check.h: present but cannot be compiled" >&5
17040
+$as_echo "$as_me: WARNING: check.h: present but cannot be compiled" >&2;}
17041
+    { $as_echo "$as_me:$LINENO: WARNING: check.h:     check for missing prerequisite headers?" >&5
17042
+$as_echo "$as_me: WARNING: check.h:     check for missing prerequisite headers?" >&2;}
17043
+    { $as_echo "$as_me:$LINENO: WARNING: check.h: see the Autoconf documentation" >&5
17044
+$as_echo "$as_me: WARNING: check.h: see the Autoconf documentation" >&2;}
17045
+    { $as_echo "$as_me:$LINENO: WARNING: check.h:     section \"Present But Cannot Be Compiled\"" >&5
17046
+$as_echo "$as_me: WARNING: check.h:     section \"Present But Cannot Be Compiled\"" >&2;}
17047
+    { $as_echo "$as_me:$LINENO: WARNING: check.h: proceeding with the preprocessor's result" >&5
17048
+$as_echo "$as_me: WARNING: check.h: proceeding with the preprocessor's result" >&2;}
17049
+    { $as_echo "$as_me:$LINENO: WARNING: check.h: in the future, the compiler will take precedence" >&5
17050
+$as_echo "$as_me: WARNING: check.h: in the future, the compiler will take precedence" >&2;}
17050 17051
     ( cat <<\_ASBOX
17051 17052
 ## -------------------------------------- ##
17052 17053
 ## Report this to http://bugs.clamav.net/ ##
... ...
@@ -17055,18 +17608,18 @@ _ASBOX
17055 17055
      ) | sed "s/^/$as_me: WARNING:     /" >&2
17056 17056
     ;;
17057 17057
 esac
17058
-{ echo "$as_me:$LINENO: checking for check.h" >&5
17059
-echo $ECHO_N "checking for check.h... $ECHO_C" >&6; }
17058
+{ $as_echo "$as_me:$LINENO: checking for check.h" >&5
17059
+$as_echo_n "checking for check.h... " >&6; }
17060 17060
 if test "${ac_cv_header_check_h+set}" = set; then
17061
-  echo $ECHO_N "(cached) $ECHO_C" >&6
17061
+  $as_echo_n "(cached) " >&6
17062 17062
 else
17063 17063
   ac_cv_header_check_h=$ac_header_preproc
17064 17064
 fi
17065
-{ echo "$as_me:$LINENO: result: $ac_cv_header_check_h" >&5
17066
-echo "${ECHO_T}$ac_cv_header_check_h" >&6; }
17065
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_check_h" >&5
17066
+$as_echo "$ac_cv_header_check_h" >&6; }
17067 17067
 
17068 17068
 fi
17069
-if test $ac_cv_header_check_h = yes; then
17069
+if test "x$ac_cv_header_check_h" = x""yes; then
17070 17070
   have_header=yes
17071 17071
 else
17072 17072
   have_header=no
... ...
@@ -17079,8 +17632,8 @@ fi
17079 17079
 		if test "$have_header" = "yes"; then
17080 17080
 
17081 17081
 				LIBS="$LIBS $LIBCHECK"
17082
-				{ echo "$as_me:$LINENO: checking linking with check" >&5
17083
-echo $ECHO_N "checking linking with check... $ECHO_C" >&6; }
17082
+				{ $as_echo "$as_me:$LINENO: checking linking with check" >&5
17083
+$as_echo_n "checking linking with check... " >&6; }
17084 17084
 				cat >conftest.$ac_ext <<_ACEOF
17085 17085
 /* confdefs.h.  */
17086 17086
 _ACEOF
... ...
@@ -17102,32 +17655,36 @@ case "(($ac_try" in
17102 17102
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
17103 17103
   *) ac_try_echo=$ac_try;;
17104 17104
 esac
17105
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
17105
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
17106
+$as_echo "$ac_try_echo") >&5
17106 17107
   (eval "$ac_link") 2>conftest.er1
17107 17108
   ac_status=$?
17108 17109
   grep -v '^ *+' conftest.er1 >conftest.err
17109 17110
   rm -f conftest.er1
17110 17111
   cat conftest.err >&5
17111
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
17112
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
17112 17113
   (exit $ac_status); } && {
17113 17114
 	 test -z "$ac_c_werror_flag" ||
17114 17115
 	 test ! -s conftest.err
17115
-       } && test -s conftest$ac_exeext &&
17116
-       $as_test_x conftest$ac_exeext; then
17116
+       } && test -s conftest$ac_exeext && {
17117
+	 test "$cross_compiling" = yes ||
17118
+	 $as_test_x conftest$ac_exeext
17119
+       }; then
17117 17120
 
17118 17121
 					ac_cv_findlib_CHECK_libs="$LIBCHECK"
17119 17122
 					ac_cv_findlib_CHECK_ltlibs="$LTLIBCHECK"
17120 17123
 					ac_cv_findlib_CHECK_inc="$INCCHECK"
17121
-					{ echo "$as_me:$LINENO: result: ok" >&5
17122
-echo "${ECHO_T}ok" >&6; }
17124
+					{ $as_echo "$as_me:$LINENO: result: ok" >&5
17125
+$as_echo "ok" >&6; }
17123 17126
 
17124 17127
 else
17125
-  echo "$as_me: failed program was:" >&5
17128
+  $as_echo "$as_me: failed program was:" >&5
17126 17129
 sed 's/^/| /' conftest.$ac_ext >&5
17127 17130
 
17128 17131
 
17129 17132
 fi
17130 17133
 
17134
+rm -rf conftest.dSYM
17131 17135
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
17132 17136
       conftest$ac_exeext conftest.$ac_ext
17133 17137
 
... ...
@@ -17137,15 +17694,15 @@ fi
17137 17137
 		LIBS="$save_LIBS"
17138 17138
 	if test "X$ac_cv_findlib_CHECK_libs" = "X"; then
17139 17139
 
17140
-			{ echo "$as_me:$LINENO: unable to compile/link with check" >&5
17141
-echo "$as_me: unable to compile/link with check" >&6;}
17140
+			{ $as_echo "$as_me:$LINENO: unable to compile/link with check" >&5
17141
+$as_echo "$as_me: unable to compile/link with check" >&6;}
17142 17142
 			HAVE_LIBCHECK=no
17143 17143
 
17144 17144
 
17145 17145
 else
17146 17146
 
17147
-			{ echo "$as_me:$LINENO: Compiling and linking with check by using $ac_cv_findlib_CHECK_inc $ac_cv_findlib_CHECK_libs" >&5
17148
-echo "$as_me: Compiling and linking with check by using $ac_cv_findlib_CHECK_inc $ac_cv_findlib_CHECK_libs" >&6;}
17147
+			{ $as_echo "$as_me:$LINENO: Compiling and linking with check by using $ac_cv_findlib_CHECK_inc $ac_cv_findlib_CHECK_libs" >&5
17148
+$as_echo "$as_me: Compiling and linking with check by using $ac_cv_findlib_CHECK_inc $ac_cv_findlib_CHECK_libs" >&6;}
17149 17149
 
17150 17150
 cat >>confdefs.h <<\_ACEOF
17151 17151
 #define HAVE_LIBCHECK 1
... ...
@@ -17174,11 +17731,11 @@ fi
17174 17174
 
17175 17175
 
17176 17176
 if test "x$CHECK_LIBS" = "x" -a "$enable_check_ut" = "yes"; then
17177
-    { { echo "$as_me:$LINENO: error:
17177
+    { { $as_echo "$as_me:$LINENO: error:
17178 17178
 
17179 17179
 ERROR!  Check was configured, but not found.  Get it from http://check.sf.net/
17180 17180
 " >&5
17181
-echo "$as_me: error:
17181
+$as_echo "$as_me: error:
17182 17182
 
17183 17183
 ERROR!  Check was configured, but not found.  Get it from http://check.sf.net/
17184 17184
 " >&2;}
... ...
@@ -17195,13 +17752,13 @@ fi
17195 17195
 
17196 17196
 if test "x$enable_coverage" = "xyes"; then
17197 17197
 	if test "x$CHECK_LIBS" = "x"; then
17198
-		{ { echo "$as_me:$LINENO: error: Coverage testing required, but unit tests not enabled!" >&5
17199
-echo "$as_me: error: Coverage testing required, but unit tests not enabled!" >&2;}
17198
+		{ { $as_echo "$as_me:$LINENO: error: Coverage testing required, but unit tests not enabled!" >&5
17199
+$as_echo "$as_me: error: Coverage testing required, but unit tests not enabled!" >&2;}
17200 17200
    { (exit 1); exit 1; }; }
17201 17201
 	fi
17202 17202
 	if test "x$ac_compiler_gnu" != "xyes"; then
17203
-		{ { echo "$as_me:$LINENO: error: coverage testing only works if gcc is used" >&5
17204
-echo "$as_me: error: coverage testing only works if gcc is used" >&2;}
17203
+		{ { $as_echo "$as_me:$LINENO: error: coverage testing only works if gcc is used" >&5
17204
+$as_echo "$as_me: error: coverage testing only works if gcc is used" >&2;}
17205 17205
    { (exit 1); exit 1; }; }
17206 17206
 	fi
17207 17207
 
... ...
@@ -17211,10 +17768,10 @@ echo "$as_me: error: coverage testing only works if gcc is used" >&2;}
17211 17211
 do
17212 17212
   # Extract the first word of "$ac_prog", so it can be a program name with args.
17213 17213
 set dummy $ac_prog; ac_word=$2
17214
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
17215
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
17214
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
17215
+$as_echo_n "checking for $ac_word... " >&6; }
17216 17216
 if test "${ac_cv_prog_GCOV+set}" = set; then
17217
-  echo $ECHO_N "(cached) $ECHO_C" >&6
17217
+  $as_echo_n "(cached) " >&6
17218 17218
 else
17219 17219
   if test -n "$GCOV"; then
17220 17220
   ac_cv_prog_GCOV="$GCOV" # Let the user override the test.
... ...
@@ -17227,7 +17784,7 @@ do
17227 17227
   for ac_exec_ext in '' $ac_executable_extensions; do
17228 17228
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
17229 17229
     ac_cv_prog_GCOV="$ac_prog"
17230
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
17230
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
17231 17231
     break 2
17232 17232
   fi
17233 17233
 done
... ...
@@ -17238,11 +17795,11 @@ fi
17238 17238
 fi
17239 17239
 GCOV=$ac_cv_prog_GCOV
17240 17240
 if test -n "$GCOV"; then
17241
-  { echo "$as_me:$LINENO: result: $GCOV" >&5
17242
-echo "${ECHO_T}$GCOV" >&6; }
17241
+  { $as_echo "$as_me:$LINENO: result: $GCOV" >&5
17242
+$as_echo "$GCOV" >&6; }
17243 17243
 else
17244
-  { echo "$as_me:$LINENO: result: no" >&5
17245
-echo "${ECHO_T}no" >&6; }
17244
+  { $as_echo "$as_me:$LINENO: result: no" >&5
17245
+$as_echo "no" >&6; }
17246 17246
 fi
17247 17247
 
17248 17248
 
... ...
@@ -17254,10 +17811,10 @@ test -n "$GCOV" || GCOV="false"
17254 17254
 do
17255 17255
   # Extract the first word of "$ac_prog", so it can be a program name with args.
17256 17256
 set dummy $ac_prog; ac_word=$2
17257
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
17258
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
17257
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
17258
+$as_echo_n "checking for $ac_word... " >&6; }
17259 17259
 if test "${ac_cv_prog_LCOV+set}" = set; then
17260
-  echo $ECHO_N "(cached) $ECHO_C" >&6
17260
+  $as_echo_n "(cached) " >&6
17261 17261
 else
17262 17262
   if test -n "$LCOV"; then
17263 17263
   ac_cv_prog_LCOV="$LCOV" # Let the user override the test.
... ...
@@ -17270,7 +17827,7 @@ do
17270 17270
   for ac_exec_ext in '' $ac_executable_extensions; do
17271 17271
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
17272 17272
     ac_cv_prog_LCOV="$ac_prog"
17273
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
17273
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
17274 17274
     break 2
17275 17275
   fi
17276 17276
 done
... ...
@@ -17281,11 +17838,11 @@ fi
17281 17281
 fi
17282 17282
 LCOV=$ac_cv_prog_LCOV
17283 17283
 if test -n "$LCOV"; then
17284
-  { echo "$as_me:$LINENO: result: $LCOV" >&5
17285
-echo "${ECHO_T}$LCOV" >&6; }
17284
+  { $as_echo "$as_me:$LINENO: result: $LCOV" >&5
17285
+$as_echo "$LCOV" >&6; }
17286 17286
 else
17287
-  { echo "$as_me:$LINENO: result: no" >&5
17288
-echo "${ECHO_T}no" >&6; }
17287
+  { $as_echo "$as_me:$LINENO: result: no" >&5
17288
+$as_echo "no" >&6; }
17289 17289
 fi
17290 17290
 
17291 17291
 
... ...
@@ -17297,10 +17854,10 @@ test -n "$LCOV" || LCOV="false"
17297 17297
 do
17298 17298
   # Extract the first word of "$ac_prog", so it can be a program name with args.
17299 17299
 set dummy $ac_prog; ac_word=$2
17300
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
17301
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
17300
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
17301
+$as_echo_n "checking for $ac_word... " >&6; }
17302 17302
 if test "${ac_cv_prog_GENHTML+set}" = set; then
17303
-  echo $ECHO_N "(cached) $ECHO_C" >&6
17303
+  $as_echo_n "(cached) " >&6
17304 17304
 else
17305 17305
   if test -n "$GENHTML"; then
17306 17306
   ac_cv_prog_GENHTML="$GENHTML" # Let the user override the test.
... ...
@@ -17313,7 +17870,7 @@ do
17313 17313
   for ac_exec_ext in '' $ac_executable_extensions; do
17314 17314
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
17315 17315
     ac_cv_prog_GENHTML="$ac_prog"
17316
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
17316
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
17317 17317
     break 2
17318 17318
   fi
17319 17319
 done
... ...
@@ -17324,11 +17881,11 @@ fi
17324 17324
 fi
17325 17325
 GENHTML=$ac_cv_prog_GENHTML
17326 17326
 if test -n "$GENHTML"; then
17327
-  { echo "$as_me:$LINENO: result: $GENHTML" >&5
17328
-echo "${ECHO_T}$GENHTML" >&6; }
17327
+  { $as_echo "$as_me:$LINENO: result: $GENHTML" >&5
17328
+$as_echo "$GENHTML" >&6; }
17329 17329
 else
17330
-  { echo "$as_me:$LINENO: result: no" >&5
17331
-echo "${ECHO_T}no" >&6; }
17330
+  { $as_echo "$as_me:$LINENO: result: no" >&5
17331
+$as_echo "no" >&6; }
17332 17332
 fi
17333 17333
 
17334 17334
 
... ...
@@ -17349,17 +17906,17 @@ fi
17349 17349
 
17350 17350
 have_pthreads=no
17351 17351
 if test "${ac_cv_header_pthread_h+set}" = set; then
17352
-  { echo "$as_me:$LINENO: checking for pthread.h" >&5
17353
-echo $ECHO_N "checking for pthread.h... $ECHO_C" >&6; }
17352
+  { $as_echo "$as_me:$LINENO: checking for pthread.h" >&5
17353
+$as_echo_n "checking for pthread.h... " >&6; }
17354 17354
 if test "${ac_cv_header_pthread_h+set}" = set; then
17355
-  echo $ECHO_N "(cached) $ECHO_C" >&6
17355
+  $as_echo_n "(cached) " >&6
17356 17356
 fi
17357
-{ echo "$as_me:$LINENO: result: $ac_cv_header_pthread_h" >&5
17358
-echo "${ECHO_T}$ac_cv_header_pthread_h" >&6; }
17357
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_pthread_h" >&5
17358
+$as_echo "$ac_cv_header_pthread_h" >&6; }
17359 17359
 else
17360 17360
   # Is the header compilable?
17361
-{ echo "$as_me:$LINENO: checking pthread.h usability" >&5
17362
-echo $ECHO_N "checking pthread.h usability... $ECHO_C" >&6; }
17361
+{ $as_echo "$as_me:$LINENO: checking pthread.h usability" >&5
17362
+$as_echo_n "checking pthread.h usability... " >&6; }
17363 17363
 cat >conftest.$ac_ext <<_ACEOF
17364 17364
 /* confdefs.h.  */
17365 17365
 _ACEOF
... ...
@@ -17375,32 +17932,33 @@ case "(($ac_try" in
17375 17375
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
17376 17376
   *) ac_try_echo=$ac_try;;
17377 17377
 esac
17378
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
17378
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
17379
+$as_echo "$ac_try_echo") >&5
17379 17380
   (eval "$ac_compile") 2>conftest.er1
17380 17381
   ac_status=$?
17381 17382
   grep -v '^ *+' conftest.er1 >conftest.err
17382 17383
   rm -f conftest.er1
17383 17384
   cat conftest.err >&5
17384
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
17385
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
17385 17386
   (exit $ac_status); } && {
17386 17387
 	 test -z "$ac_c_werror_flag" ||
17387 17388
 	 test ! -s conftest.err
17388 17389
        } && test -s conftest.$ac_objext; then
17389 17390
   ac_header_compiler=yes
17390 17391
 else
17391
-  echo "$as_me: failed program was:" >&5
17392
+  $as_echo "$as_me: failed program was:" >&5
17392 17393
 sed 's/^/| /' conftest.$ac_ext >&5
17393 17394
 
17394 17395
 	ac_header_compiler=no
17395 17396
 fi
17396 17397
 
17397 17398
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
17398
-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
17399
-echo "${ECHO_T}$ac_header_compiler" >&6; }
17399
+{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
17400
+$as_echo "$ac_header_compiler" >&6; }
17400 17401
 
17401 17402
 # Is the header present?
17402
-{ echo "$as_me:$LINENO: checking pthread.h presence" >&5
17403
-echo $ECHO_N "checking pthread.h presence... $ECHO_C" >&6; }
17403
+{ $as_echo "$as_me:$LINENO: checking pthread.h presence" >&5
17404
+$as_echo_n "checking pthread.h presence... " >&6; }
17404 17405
 cat >conftest.$ac_ext <<_ACEOF
17405 17406
 /* confdefs.h.  */
17406 17407
 _ACEOF
... ...
@@ -17414,51 +17972,52 @@ case "(($ac_try" in
17414 17414
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
17415 17415
   *) ac_try_echo=$ac_try;;
17416 17416
 esac
17417
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
17417
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
17418
+$as_echo "$ac_try_echo") >&5
17418 17419
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
17419 17420
   ac_status=$?
17420 17421
   grep -v '^ *+' conftest.er1 >conftest.err
17421 17422
   rm -f conftest.er1
17422 17423
   cat conftest.err >&5
17423
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
17424
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
17424 17425
   (exit $ac_status); } >/dev/null && {
17425 17426
 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
17426 17427
 	 test ! -s conftest.err
17427 17428
        }; then
17428 17429
   ac_header_preproc=yes
17429 17430
 else
17430
-  echo "$as_me: failed program was:" >&5
17431
+  $as_echo "$as_me: failed program was:" >&5
17431 17432
 sed 's/^/| /' conftest.$ac_ext >&5
17432 17433
 
17433 17434
   ac_header_preproc=no
17434 17435
 fi
17435 17436
 
17436 17437
 rm -f conftest.err conftest.$ac_ext
17437
-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
17438
-echo "${ECHO_T}$ac_header_preproc" >&6; }
17438
+{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
17439
+$as_echo "$ac_header_preproc" >&6; }
17439 17440
 
17440 17441
 # So?  What about this header?
17441 17442
 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
17442 17443
   yes:no: )
17443
-    { echo "$as_me:$LINENO: WARNING: pthread.h: accepted by the compiler, rejected by the preprocessor!" >&5
17444
-echo "$as_me: WARNING: pthread.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
17445
-    { echo "$as_me:$LINENO: WARNING: pthread.h: proceeding with the compiler's result" >&5
17446
-echo "$as_me: WARNING: pthread.h: proceeding with the compiler's result" >&2;}
17444
+    { $as_echo "$as_me:$LINENO: WARNING: pthread.h: accepted by the compiler, rejected by the preprocessor!" >&5
17445
+$as_echo "$as_me: WARNING: pthread.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
17446
+    { $as_echo "$as_me:$LINENO: WARNING: pthread.h: proceeding with the compiler's result" >&5
17447
+$as_echo "$as_me: WARNING: pthread.h: proceeding with the compiler's result" >&2;}
17447 17448
     ac_header_preproc=yes
17448 17449
     ;;
17449 17450
   no:yes:* )
17450
-    { echo "$as_me:$LINENO: WARNING: pthread.h: present but cannot be compiled" >&5
17451
-echo "$as_me: WARNING: pthread.h: present but cannot be compiled" >&2;}
17452
-    { echo "$as_me:$LINENO: WARNING: pthread.h:     check for missing prerequisite headers?" >&5
17453
-echo "$as_me: WARNING: pthread.h:     check for missing prerequisite headers?" >&2;}
17454
-    { echo "$as_me:$LINENO: WARNING: pthread.h: see the Autoconf documentation" >&5
17455
-echo "$as_me: WARNING: pthread.h: see the Autoconf documentation" >&2;}
17456
-    { echo "$as_me:$LINENO: WARNING: pthread.h:     section \"Present But Cannot Be Compiled\"" >&5
17457
-echo "$as_me: WARNING: pthread.h:     section \"Present But Cannot Be Compiled\"" >&2;}
17458
-    { echo "$as_me:$LINENO: WARNING: pthread.h: proceeding with the preprocessor's result" >&5
17459
-echo "$as_me: WARNING: pthread.h: proceeding with the preprocessor's result" >&2;}
17460
-    { echo "$as_me:$LINENO: WARNING: pthread.h: in the future, the compiler will take precedence" >&5
17461
-echo "$as_me: WARNING: pthread.h: in the future, the compiler will take precedence" >&2;}
17451
+    { $as_echo "$as_me:$LINENO: WARNING: pthread.h: present but cannot be compiled" >&5
17452
+$as_echo "$as_me: WARNING: pthread.h: present but cannot be compiled" >&2;}
17453
+    { $as_echo "$as_me:$LINENO: WARNING: pthread.h:     check for missing prerequisite headers?" >&5
17454
+$as_echo "$as_me: WARNING: pthread.h:     check for missing prerequisite headers?" >&2;}
17455
+    { $as_echo "$as_me:$LINENO: WARNING: pthread.h: see the Autoconf documentation" >&5
17456
+$as_echo "$as_me: WARNING: pthread.h: see the Autoconf documentation" >&2;}
17457
+    { $as_echo "$as_me:$LINENO: WARNING: pthread.h:     section \"Present But Cannot Be Compiled\"" >&5
17458
+$as_echo "$as_me: WARNING: pthread.h:     section \"Present But Cannot Be Compiled\"" >&2;}
17459
+    { $as_echo "$as_me:$LINENO: WARNING: pthread.h: proceeding with the preprocessor's result" >&5
17460
+$as_echo "$as_me: WARNING: pthread.h: proceeding with the preprocessor's result" >&2;}
17461
+    { $as_echo "$as_me:$LINENO: WARNING: pthread.h: in the future, the compiler will take precedence" >&5
17462
+$as_echo "$as_me: WARNING: pthread.h: in the future, the compiler will take precedence" >&2;}
17462 17463
     ( cat <<\_ASBOX
17463 17464
 ## -------------------------------------- ##
17464 17465
 ## Report this to http://bugs.clamav.net/ ##
... ...
@@ -17467,25 +18026,25 @@ _ASBOX
17467 17467
      ) | sed "s/^/$as_me: WARNING:     /" >&2
17468 17468
     ;;
17469 17469
 esac
17470
-{ echo "$as_me:$LINENO: checking for pthread.h" >&5
17471
-echo $ECHO_N "checking for pthread.h... $ECHO_C" >&6; }
17470
+{ $as_echo "$as_me:$LINENO: checking for pthread.h" >&5
17471
+$as_echo_n "checking for pthread.h... " >&6; }
17472 17472
 if test "${ac_cv_header_pthread_h+set}" = set; then
17473
-  echo $ECHO_N "(cached) $ECHO_C" >&6
17473
+  $as_echo_n "(cached) " >&6
17474 17474
 else
17475 17475
   ac_cv_header_pthread_h=$ac_header_preproc
17476 17476
 fi
17477
-{ echo "$as_me:$LINENO: result: $ac_cv_header_pthread_h" >&5
17478
-echo "${ECHO_T}$ac_cv_header_pthread_h" >&6; }
17477
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_pthread_h" >&5
17478
+$as_echo "$ac_cv_header_pthread_h" >&6; }
17479 17479
 
17480 17480
 fi
17481
-if test $ac_cv_header_pthread_h = yes; then
17481
+if test "x$ac_cv_header_pthread_h" = x""yes; then
17482 17482
   have_pthreads=yes
17483 17483
 fi
17484 17484
 
17485 17485
 
17486 17486
 
17487
-{ echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5
17488
-echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6; }
17487
+{ $as_echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5
17488
+$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
17489 17489
     # Check whether --enable-maintainer-mode was given.
17490 17490
 if test "${enable_maintainer_mode+set}" = set; then
17491 17491
   enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval
... ...
@@ -17493,8 +18052,8 @@ else
17493 17493
   USE_MAINTAINER_MODE=no
17494 17494
 fi
17495 17495
 
17496
-  { echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
17497
-echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6; }
17496
+  { $as_echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
17497
+$as_echo "$USE_MAINTAINER_MODE" >&6; }
17498 17498
    if test $USE_MAINTAINER_MODE = yes; then
17499 17499
   MAINTAINER_MODE_TRUE=
17500 17500
   MAINTAINER_MODE_FALSE='#'
... ...
@@ -17506,16 +18065,16 @@ fi
17506 17506
   MAINT=$MAINTAINER_MODE_TRUE
17507 17507
 
17508 17508
 
17509
-{ echo "$as_me:$LINENO: checking for zlib installation" >&5
17510
-echo $ECHO_N "checking for zlib installation... $ECHO_C" >&6; }
17509
+{ $as_echo "$as_me:$LINENO: checking for zlib installation" >&5
17510
+$as_echo_n "checking for zlib installation... " >&6; }
17511 17511
 
17512 17512
 # Check whether --with-zlib was given.
17513 17513
 if test "${with_zlib+set}" = set; then
17514 17514
   withval=$with_zlib;
17515 17515
 if test "$withval"; then
17516 17516
   ZLIB_HOME="$withval"
17517
-  { echo "$as_me:$LINENO: result: using $ZLIB_HOME" >&5
17518
-echo "${ECHO_T}using $ZLIB_HOME" >&6; }
17517
+  { $as_echo "$as_me:$LINENO: result: using $ZLIB_HOME" >&5
17518
+$as_echo "using $ZLIB_HOME" >&6; }
17519 17519
 fi
17520 17520
 
17521 17521
 else
... ...
@@ -17525,8 +18084,8 @@ if test ! -f "$ZLIB_HOME/include/zlib.h"
17525 17525
 then
17526 17526
   ZLIB_HOME=/usr
17527 17527
 fi
17528
-{ echo "$as_me:$LINENO: result: $ZLIB_HOME" >&5
17529
-echo "${ECHO_T}$ZLIB_HOME" >&6; }
17528
+{ $as_echo "$as_me:$LINENO: result: $ZLIB_HOME" >&5
17529
+$as_echo "$ZLIB_HOME" >&6; }
17530 17530
 
17531 17531
 fi
17532 17532
 
... ...
@@ -17541,8 +18100,8 @@ fi
17541 17541
 
17542 17542
 if test ! -f "$ZLIB_HOME/include/zlib.h"
17543 17543
 then
17544
-    { { echo "$as_me:$LINENO: error: Please install zlib and zlib-devel packages" >&5
17545
-echo "$as_me: error: Please install zlib and zlib-devel packages" >&2;}
17544
+    { { $as_echo "$as_me:$LINENO: error: Please install zlib and zlib-devel packages" >&5
17545
+$as_echo "$as_me: error: Please install zlib and zlib-devel packages" >&2;}
17546 17546
    { (exit 1); exit 1; }; }
17547 17547
 else
17548 17548
 
... ...
@@ -17553,16 +18112,16 @@ else
17553 17553
 
17554 17554
     if test -n "$vuln"; then
17555 17555
 	if test "$zlib_check" = "yes"; then
17556
-	    { { echo "$as_me:$LINENO: error: The installed zlib version may contain a security bug. Please upgrade to 1.2.2 or later: http://www.zlib.net. You can omit this check with --disable-zlib-vcheck but DO NOT REPORT any stability issues then!" >&5
17557
-echo "$as_me: error: The installed zlib version may contain a security bug. Please upgrade to 1.2.2 or later: http://www.zlib.net. You can omit this check with --disable-zlib-vcheck but DO NOT REPORT any stability issues then!" >&2;}
17556
+	    { { $as_echo "$as_me:$LINENO: error: The installed zlib version may contain a security bug. Please upgrade to 1.2.2 or later: http://www.zlib.net. You can omit this check with --disable-zlib-vcheck but DO NOT REPORT any stability issues then!" >&5
17557
+$as_echo "$as_me: error: The installed zlib version may contain a security bug. Please upgrade to 1.2.2 or later: http://www.zlib.net. You can omit this check with --disable-zlib-vcheck but DO NOT REPORT any stability issues then!" >&2;}
17558 17558
    { (exit 1); exit 1; }; }
17559 17559
 	else
17560
-	    { echo "$as_me:$LINENO: WARNING: ****** This ClamAV installation may be linked against" >&5
17561
-echo "$as_me: WARNING: ****** This ClamAV installation may be linked against" >&2;}
17562
-	    { echo "$as_me:$LINENO: WARNING: ****** a broken zlib version. Please DO NOT report any" >&5
17563
-echo "$as_me: WARNING: ****** a broken zlib version. Please DO NOT report any" >&2;}
17564
-	    { echo "$as_me:$LINENO: WARNING: ****** stability problems to the ClamAV developers!" >&5
17565
-echo "$as_me: WARNING: ****** stability problems to the ClamAV developers!" >&2;}
17560
+	    { $as_echo "$as_me:$LINENO: WARNING: ****** This ClamAV installation may be linked against" >&5
17561
+$as_echo "$as_me: WARNING: ****** This ClamAV installation may be linked against" >&2;}
17562
+	    { $as_echo "$as_me:$LINENO: WARNING: ****** a broken zlib version. Please DO NOT report any" >&5
17563
+$as_echo "$as_me: WARNING: ****** a broken zlib version. Please DO NOT report any" >&2;}
17564
+	    { $as_echo "$as_me:$LINENO: WARNING: ****** stability problems to the ClamAV developers!" >&5
17565
+$as_echo "$as_me: WARNING: ****** stability problems to the ClamAV developers!" >&2;}
17566 17566
 	fi
17567 17567
     fi
17568 17568
 
... ...
@@ -17571,10 +18130,10 @@ echo "$as_me: WARNING: ****** stability problems to the ClamAV developers!" >&2;
17571 17571
 	save_LDFLAGS="$LDFLAGS"
17572 17572
 	save_LIBS="$LIBS"
17573 17573
 	LDFLAGS="$LDFLAGS -L$ZLIB_HOME/lib"
17574
-	{ echo "$as_me:$LINENO: checking for inflateEnd in -lz" >&5
17575
-echo $ECHO_N "checking for inflateEnd in -lz... $ECHO_C" >&6; }
17574
+	{ $as_echo "$as_me:$LINENO: checking for inflateEnd in -lz" >&5
17575
+$as_echo_n "checking for inflateEnd in -lz... " >&6; }
17576 17576
 if test "${ac_cv_lib_z_inflateEnd+set}" = set; then
17577
-  echo $ECHO_N "(cached) $ECHO_C" >&6
17577
+  $as_echo_n "(cached) " >&6
17578 17578
 else
17579 17579
   ac_check_lib_save_LIBS=$LIBS
17580 17580
 LIBS="-lz  $LIBS"
... ...
@@ -17606,49 +18165,53 @@ case "(($ac_try" in
17606 17606
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
17607 17607
   *) ac_try_echo=$ac_try;;
17608 17608
 esac
17609
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
17609
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
17610
+$as_echo "$ac_try_echo") >&5
17610 17611
   (eval "$ac_link") 2>conftest.er1
17611 17612
   ac_status=$?
17612 17613
   grep -v '^ *+' conftest.er1 >conftest.err
17613 17614
   rm -f conftest.er1
17614 17615
   cat conftest.err >&5
17615
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
17616
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
17616 17617
   (exit $ac_status); } && {
17617 17618
 	 test -z "$ac_c_werror_flag" ||
17618 17619
 	 test ! -s conftest.err
17619
-       } && test -s conftest$ac_exeext &&
17620
-       $as_test_x conftest$ac_exeext; then
17620
+       } && test -s conftest$ac_exeext && {
17621
+	 test "$cross_compiling" = yes ||
17622
+	 $as_test_x conftest$ac_exeext
17623
+       }; then
17621 17624
   ac_cv_lib_z_inflateEnd=yes
17622 17625
 else
17623
-  echo "$as_me: failed program was:" >&5
17626
+  $as_echo "$as_me: failed program was:" >&5
17624 17627
 sed 's/^/| /' conftest.$ac_ext >&5
17625 17628
 
17626 17629
 	ac_cv_lib_z_inflateEnd=no
17627 17630
 fi
17628 17631
 
17632
+rm -rf conftest.dSYM
17629 17633
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
17630 17634
       conftest$ac_exeext conftest.$ac_ext
17631 17635
 LIBS=$ac_check_lib_save_LIBS
17632 17636
 fi
17633
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_z_inflateEnd" >&5
17634
-echo "${ECHO_T}$ac_cv_lib_z_inflateEnd" >&6; }
17635
-if test $ac_cv_lib_z_inflateEnd = yes; then
17637
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_z_inflateEnd" >&5
17638
+$as_echo "$ac_cv_lib_z_inflateEnd" >&6; }
17639
+if test "x$ac_cv_lib_z_inflateEnd" = x""yes; then
17636 17640
   LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -L$ZLIB_HOME/lib -lz";FRESHCLAM_LIBS="$FRESHCLAM_LIBS -L$ZLIB_HOME/lib -lz";
17637 17641
 cat >>confdefs.h <<\_ACEOF
17638 17642
 #define HAVE_ZLIB_H 1
17639 17643
 _ACEOF
17640 17644
 
17641 17645
 else
17642
-  { { echo "$as_me:$LINENO: error: Please install zlib and zlib-devel packages" >&5
17643
-echo "$as_me: error: Please install zlib and zlib-devel packages" >&2;}
17646
+  { { $as_echo "$as_me:$LINENO: error: Please install zlib and zlib-devel packages" >&5
17647
+$as_echo "$as_me: error: Please install zlib and zlib-devel packages" >&2;}
17644 17648
    { (exit 1); exit 1; }; }
17645 17649
 fi
17646 17650
 
17647 17651
 
17648
-{ echo "$as_me:$LINENO: checking for gzopen in -lz" >&5
17649
-echo $ECHO_N "checking for gzopen in -lz... $ECHO_C" >&6; }
17652
+{ $as_echo "$as_me:$LINENO: checking for gzopen in -lz" >&5
17653
+$as_echo_n "checking for gzopen in -lz... " >&6; }
17650 17654
 if test "${ac_cv_lib_z_gzopen+set}" = set; then
17651
-  echo $ECHO_N "(cached) $ECHO_C" >&6
17655
+  $as_echo_n "(cached) " >&6
17652 17656
 else
17653 17657
   ac_check_lib_save_LIBS=$LIBS
17654 17658
 LIBS="-lz  $LIBS"
... ...
@@ -17680,33 +18243,37 @@ case "(($ac_try" in
17680 17680
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
17681 17681
   *) ac_try_echo=$ac_try;;
17682 17682
 esac
17683
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
17683
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
17684
+$as_echo "$ac_try_echo") >&5
17684 17685
   (eval "$ac_link") 2>conftest.er1
17685 17686
   ac_status=$?
17686 17687
   grep -v '^ *+' conftest.er1 >conftest.err
17687 17688
   rm -f conftest.er1
17688 17689
   cat conftest.err >&5
17689
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
17690
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
17690 17691
   (exit $ac_status); } && {
17691 17692
 	 test -z "$ac_c_werror_flag" ||
17692 17693
 	 test ! -s conftest.err
17693
-       } && test -s conftest$ac_exeext &&
17694
-       $as_test_x conftest$ac_exeext; then
17694
+       } && test -s conftest$ac_exeext && {
17695
+	 test "$cross_compiling" = yes ||
17696
+	 $as_test_x conftest$ac_exeext
17697
+       }; then
17695 17698
   ac_cv_lib_z_gzopen=yes
17696 17699
 else
17697
-  echo "$as_me: failed program was:" >&5
17700
+  $as_echo "$as_me: failed program was:" >&5
17698 17701
 sed 's/^/| /' conftest.$ac_ext >&5
17699 17702
 
17700 17703
 	ac_cv_lib_z_gzopen=no
17701 17704
 fi
17702 17705
 
17706
+rm -rf conftest.dSYM
17703 17707
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
17704 17708
       conftest$ac_exeext conftest.$ac_ext
17705 17709
 LIBS=$ac_check_lib_save_LIBS
17706 17710
 fi
17707
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_z_gzopen" >&5
17708
-echo "${ECHO_T}$ac_cv_lib_z_gzopen" >&6; }
17709
-if test $ac_cv_lib_z_gzopen = yes; then
17711
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_z_gzopen" >&5
17712
+$as_echo "$ac_cv_lib_z_gzopen" >&6; }
17713
+if test "x$ac_cv_lib_z_gzopen" = x""yes; then
17710 17714
   cat >>confdefs.h <<_ACEOF
17711 17715
 #define HAVE_LIBZ 1
17712 17716
 _ACEOF
... ...
@@ -17714,18 +18281,18 @@ _ACEOF
17714 17714
   LIBS="-lz $LIBS"
17715 17715
 
17716 17716
 else
17717
-  { { echo "$as_me:$LINENO: error: Your zlib is missing gzopen()" >&5
17718
-echo "$as_me: error: Your zlib is missing gzopen()" >&2;}
17717
+  { { $as_echo "$as_me:$LINENO: error: Your zlib is missing gzopen()" >&5
17718
+$as_echo "$as_me: error: Your zlib is missing gzopen()" >&2;}
17719 17719
    { (exit 1); exit 1; }; }
17720 17720
 fi
17721 17721
 
17722 17722
 	LDFLAGS="$save_LDFLAGS"
17723 17723
 	LIBS="$save_LIBS"
17724 17724
     else
17725
-	{ echo "$as_me:$LINENO: checking for inflateEnd in -lz" >&5
17726
-echo $ECHO_N "checking for inflateEnd in -lz... $ECHO_C" >&6; }
17725
+	{ $as_echo "$as_me:$LINENO: checking for inflateEnd in -lz" >&5
17726
+$as_echo_n "checking for inflateEnd in -lz... " >&6; }
17727 17727
 if test "${ac_cv_lib_z_inflateEnd+set}" = set; then
17728
-  echo $ECHO_N "(cached) $ECHO_C" >&6
17728
+  $as_echo_n "(cached) " >&6
17729 17729
 else
17730 17730
   ac_check_lib_save_LIBS=$LIBS
17731 17731
 LIBS="-lz  $LIBS"
... ...
@@ -17757,49 +18324,53 @@ case "(($ac_try" in
17757 17757
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
17758 17758
   *) ac_try_echo=$ac_try;;
17759 17759
 esac
17760
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
17760
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
17761
+$as_echo "$ac_try_echo") >&5
17761 17762
   (eval "$ac_link") 2>conftest.er1
17762 17763
   ac_status=$?
17763 17764
   grep -v '^ *+' conftest.er1 >conftest.err
17764 17765
   rm -f conftest.er1
17765 17766
   cat conftest.err >&5
17766
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
17767
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
17767 17768
   (exit $ac_status); } && {
17768 17769
 	 test -z "$ac_c_werror_flag" ||
17769 17770
 	 test ! -s conftest.err
17770
-       } && test -s conftest$ac_exeext &&
17771
-       $as_test_x conftest$ac_exeext; then
17771
+       } && test -s conftest$ac_exeext && {
17772
+	 test "$cross_compiling" = yes ||
17773
+	 $as_test_x conftest$ac_exeext
17774
+       }; then
17772 17775
   ac_cv_lib_z_inflateEnd=yes
17773 17776
 else
17774
-  echo "$as_me: failed program was:" >&5
17777
+  $as_echo "$as_me: failed program was:" >&5
17775 17778
 sed 's/^/| /' conftest.$ac_ext >&5
17776 17779
 
17777 17780
 	ac_cv_lib_z_inflateEnd=no
17778 17781
 fi
17779 17782
 
17783
+rm -rf conftest.dSYM
17780 17784
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
17781 17785
       conftest$ac_exeext conftest.$ac_ext
17782 17786
 LIBS=$ac_check_lib_save_LIBS
17783 17787
 fi
17784
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_z_inflateEnd" >&5
17785
-echo "${ECHO_T}$ac_cv_lib_z_inflateEnd" >&6; }
17786
-if test $ac_cv_lib_z_inflateEnd = yes; then
17788
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_z_inflateEnd" >&5
17789
+$as_echo "$ac_cv_lib_z_inflateEnd" >&6; }
17790
+if test "x$ac_cv_lib_z_inflateEnd" = x""yes; then
17787 17791
   LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -lz";FRESHCLAM_LIBS="$FRESHCLAM_LIBS -lz";
17788 17792
 cat >>confdefs.h <<\_ACEOF
17789 17793
 #define HAVE_ZLIB_H 1
17790 17794
 _ACEOF
17791 17795
 
17792 17796
 else
17793
-  { { echo "$as_me:$LINENO: error: Please install zlib and zlib-devel packages" >&5
17794
-echo "$as_me: error: Please install zlib and zlib-devel packages" >&2;}
17797
+  { { $as_echo "$as_me:$LINENO: error: Please install zlib and zlib-devel packages" >&5
17798
+$as_echo "$as_me: error: Please install zlib and zlib-devel packages" >&2;}
17795 17799
    { (exit 1); exit 1; }; }
17796 17800
 fi
17797 17801
 
17798 17802
 
17799
-{ echo "$as_me:$LINENO: checking for gzopen in -lz" >&5
17800
-echo $ECHO_N "checking for gzopen in -lz... $ECHO_C" >&6; }
17803
+{ $as_echo "$as_me:$LINENO: checking for gzopen in -lz" >&5
17804
+$as_echo_n "checking for gzopen in -lz... " >&6; }
17801 17805
 if test "${ac_cv_lib_z_gzopen+set}" = set; then
17802
-  echo $ECHO_N "(cached) $ECHO_C" >&6
17806
+  $as_echo_n "(cached) " >&6
17803 17807
 else
17804 17808
   ac_check_lib_save_LIBS=$LIBS
17805 17809
 LIBS="-lz  $LIBS"
... ...
@@ -17831,33 +18402,37 @@ case "(($ac_try" in
17831 17831
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
17832 17832
   *) ac_try_echo=$ac_try;;
17833 17833
 esac
17834
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
17834
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
17835
+$as_echo "$ac_try_echo") >&5
17835 17836
   (eval "$ac_link") 2>conftest.er1
17836 17837
   ac_status=$?
17837 17838
   grep -v '^ *+' conftest.er1 >conftest.err
17838 17839
   rm -f conftest.er1
17839 17840
   cat conftest.err >&5
17840
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
17841
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
17841 17842
   (exit $ac_status); } && {
17842 17843
 	 test -z "$ac_c_werror_flag" ||
17843 17844
 	 test ! -s conftest.err
17844
-       } && test -s conftest$ac_exeext &&
17845
-       $as_test_x conftest$ac_exeext; then
17845
+       } && test -s conftest$ac_exeext && {
17846
+	 test "$cross_compiling" = yes ||
17847
+	 $as_test_x conftest$ac_exeext
17848
+       }; then
17846 17849
   ac_cv_lib_z_gzopen=yes
17847 17850
 else
17848
-  echo "$as_me: failed program was:" >&5
17851
+  $as_echo "$as_me: failed program was:" >&5
17849 17852
 sed 's/^/| /' conftest.$ac_ext >&5
17850 17853
 
17851 17854
 	ac_cv_lib_z_gzopen=no
17852 17855
 fi
17853 17856
 
17857
+rm -rf conftest.dSYM
17854 17858
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
17855 17859
       conftest$ac_exeext conftest.$ac_ext
17856 17860
 LIBS=$ac_check_lib_save_LIBS
17857 17861
 fi
17858
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_z_gzopen" >&5
17859
-echo "${ECHO_T}$ac_cv_lib_z_gzopen" >&6; }
17860
-if test $ac_cv_lib_z_gzopen = yes; then
17862
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_z_gzopen" >&5
17863
+$as_echo "$ac_cv_lib_z_gzopen" >&6; }
17864
+if test "x$ac_cv_lib_z_gzopen" = x""yes; then
17861 17865
   cat >>confdefs.h <<_ACEOF
17862 17866
 #define HAVE_LIBZ 1
17863 17867
 _ACEOF
... ...
@@ -17865,8 +18440,8 @@ _ACEOF
17865 17865
   LIBS="-lz $LIBS"
17866 17866
 
17867 17867
 else
17868
-  { { echo "$as_me:$LINENO: error: Your zlib is missing gzopen()" >&5
17869
-echo "$as_me: error: Your zlib is missing gzopen()" >&2;}
17868
+  { { $as_echo "$as_me:$LINENO: error: Your zlib is missing gzopen()" >&5
17869
+$as_echo "$as_me: error: Your zlib is missing gzopen()" >&2;}
17870 17870
    { (exit 1); exit 1; }; }
17871 17871
 fi
17872 17872
 
... ...
@@ -17888,10 +18463,10 @@ then
17888 17888
 
17889 17889
 
17890 17890
 
17891
-  { echo "$as_me:$LINENO: checking how to link with libbz2" >&5
17892
-echo $ECHO_N "checking how to link with libbz2... $ECHO_C" >&6; }
17891
+  { $as_echo "$as_me:$LINENO: checking how to link with libbz2" >&5
17892
+$as_echo_n "checking how to link with libbz2... " >&6; }
17893 17893
 if test "${ac_cv_libbz2_libs+set}" = set; then
17894
-  echo $ECHO_N "(cached) $ECHO_C" >&6
17894
+  $as_echo_n "(cached) " >&6
17895 17895
 else
17896 17896
 
17897 17897
 
... ...
@@ -18348,8 +18923,8 @@ fi
18348 18348
     ac_cv_libbz2_prefix="$LIBBZ2_PREFIX"
18349 18349
 
18350 18350
 fi
18351
-{ echo "$as_me:$LINENO: result: $ac_cv_libbz2_libs" >&5
18352
-echo "${ECHO_T}$ac_cv_libbz2_libs" >&6; }
18351
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_libbz2_libs" >&5
18352
+$as_echo "$ac_cv_libbz2_libs" >&6; }
18353 18353
   LIBBZ2="$ac_cv_libbz2_libs"
18354 18354
   LTLIBBZ2="$ac_cv_libbz2_ltlibs"
18355 18355
   INCBZ2="$ac_cv_libbz2_cppflags"
... ...
@@ -18388,10 +18963,10 @@ echo "${ECHO_T}$ac_cv_libbz2_libs" >&6; }
18388 18388
     LDFLAGS="$LIBS -L$LIBBZ2_PREFIX/$acl_libdirstem";
18389 18389
 
18390 18390
     have_bzprefix="no"
18391
-    { echo "$as_me:$LINENO: checking for BZ2_bzReadOpen in -lbz2" >&5
18392
-echo $ECHO_N "checking for BZ2_bzReadOpen in -lbz2... $ECHO_C" >&6; }
18391
+    { $as_echo "$as_me:$LINENO: checking for BZ2_bzReadOpen in -lbz2" >&5
18392
+$as_echo_n "checking for BZ2_bzReadOpen in -lbz2... " >&6; }
18393 18393
 if test "${ac_cv_lib_bz2_BZ2_bzReadOpen+set}" = set; then
18394
-  echo $ECHO_N "(cached) $ECHO_C" >&6
18394
+  $as_echo_n "(cached) " >&6
18395 18395
 else
18396 18396
   ac_check_lib_save_LIBS=$LIBS
18397 18397
 LIBS="-lbz2  $LIBS"
... ...
@@ -18423,33 +18998,37 @@ case "(($ac_try" in
18423 18423
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
18424 18424
   *) ac_try_echo=$ac_try;;
18425 18425
 esac
18426
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
18426
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
18427
+$as_echo "$ac_try_echo") >&5
18427 18428
   (eval "$ac_link") 2>conftest.er1
18428 18429
   ac_status=$?
18429 18430
   grep -v '^ *+' conftest.er1 >conftest.err
18430 18431
   rm -f conftest.er1
18431 18432
   cat conftest.err >&5
18432
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
18433
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
18433 18434
   (exit $ac_status); } && {
18434 18435
 	 test -z "$ac_c_werror_flag" ||
18435 18436
 	 test ! -s conftest.err
18436
-       } && test -s conftest$ac_exeext &&
18437
-       $as_test_x conftest$ac_exeext; then
18437
+       } && test -s conftest$ac_exeext && {
18438
+	 test "$cross_compiling" = yes ||
18439
+	 $as_test_x conftest$ac_exeext
18440
+       }; then
18438 18441
   ac_cv_lib_bz2_BZ2_bzReadOpen=yes
18439 18442
 else
18440
-  echo "$as_me: failed program was:" >&5
18443
+  $as_echo "$as_me: failed program was:" >&5
18441 18444
 sed 's/^/| /' conftest.$ac_ext >&5
18442 18445
 
18443 18446
 	ac_cv_lib_bz2_BZ2_bzReadOpen=no
18444 18447
 fi
18445 18448
 
18449
+rm -rf conftest.dSYM
18446 18450
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
18447 18451
       conftest$ac_exeext conftest.$ac_ext
18448 18452
 LIBS=$ac_check_lib_save_LIBS
18449 18453
 fi
18450
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_bz2_BZ2_bzReadOpen" >&5
18451
-echo "${ECHO_T}$ac_cv_lib_bz2_BZ2_bzReadOpen" >&6; }
18452
-if test $ac_cv_lib_bz2_BZ2_bzReadOpen = yes; then
18454
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_bz2_BZ2_bzReadOpen" >&5
18455
+$as_echo "$ac_cv_lib_bz2_BZ2_bzReadOpen" >&6; }
18456
+if test "x$ac_cv_lib_bz2_BZ2_bzReadOpen" = x""yes; then
18453 18457
   have_bzprefix="yes"
18454 18458
 fi
18455 18459
 
... ...
@@ -18463,17 +19042,17 @@ _ACEOF
18463 18463
     LDFLAGS="$save_LDFLAGS"
18464 18464
     if test "$HAVE_LIBBZ2" = "yes"; then
18465 18465
 	if test "${ac_cv_header_bzlib_h+set}" = set; then
18466
-  { echo "$as_me:$LINENO: checking for bzlib.h" >&5
18467
-echo $ECHO_N "checking for bzlib.h... $ECHO_C" >&6; }
18466
+  { $as_echo "$as_me:$LINENO: checking for bzlib.h" >&5
18467
+$as_echo_n "checking for bzlib.h... " >&6; }
18468 18468
 if test "${ac_cv_header_bzlib_h+set}" = set; then
18469
-  echo $ECHO_N "(cached) $ECHO_C" >&6
18469
+  $as_echo_n "(cached) " >&6
18470 18470
 fi
18471
-{ echo "$as_me:$LINENO: result: $ac_cv_header_bzlib_h" >&5
18472
-echo "${ECHO_T}$ac_cv_header_bzlib_h" >&6; }
18471
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_bzlib_h" >&5
18472
+$as_echo "$ac_cv_header_bzlib_h" >&6; }
18473 18473
 else
18474 18474
   # Is the header compilable?
18475
-{ echo "$as_me:$LINENO: checking bzlib.h usability" >&5
18476
-echo $ECHO_N "checking bzlib.h usability... $ECHO_C" >&6; }
18475
+{ $as_echo "$as_me:$LINENO: checking bzlib.h usability" >&5
18476
+$as_echo_n "checking bzlib.h usability... " >&6; }
18477 18477
 cat >conftest.$ac_ext <<_ACEOF
18478 18478
 /* confdefs.h.  */
18479 18479
 _ACEOF
... ...
@@ -18489,32 +19068,33 @@ case "(($ac_try" in
18489 18489
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
18490 18490
   *) ac_try_echo=$ac_try;;
18491 18491
 esac
18492
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
18492
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
18493
+$as_echo "$ac_try_echo") >&5
18493 18494
   (eval "$ac_compile") 2>conftest.er1
18494 18495
   ac_status=$?
18495 18496
   grep -v '^ *+' conftest.er1 >conftest.err
18496 18497
   rm -f conftest.er1
18497 18498
   cat conftest.err >&5
18498
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
18499
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
18499 18500
   (exit $ac_status); } && {
18500 18501
 	 test -z "$ac_c_werror_flag" ||
18501 18502
 	 test ! -s conftest.err
18502 18503
        } && test -s conftest.$ac_objext; then
18503 18504
   ac_header_compiler=yes
18504 18505
 else
18505
-  echo "$as_me: failed program was:" >&5
18506
+  $as_echo "$as_me: failed program was:" >&5
18506 18507
 sed 's/^/| /' conftest.$ac_ext >&5
18507 18508
 
18508 18509
 	ac_header_compiler=no
18509 18510
 fi
18510 18511
 
18511 18512
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
18512
-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
18513
-echo "${ECHO_T}$ac_header_compiler" >&6; }
18513
+{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
18514
+$as_echo "$ac_header_compiler" >&6; }
18514 18515
 
18515 18516
 # Is the header present?
18516
-{ echo "$as_me:$LINENO: checking bzlib.h presence" >&5
18517
-echo $ECHO_N "checking bzlib.h presence... $ECHO_C" >&6; }
18517
+{ $as_echo "$as_me:$LINENO: checking bzlib.h presence" >&5
18518
+$as_echo_n "checking bzlib.h presence... " >&6; }
18518 18519
 cat >conftest.$ac_ext <<_ACEOF
18519 18520
 /* confdefs.h.  */
18520 18521
 _ACEOF
... ...
@@ -18528,51 +19108,52 @@ case "(($ac_try" in
18528 18528
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
18529 18529
   *) ac_try_echo=$ac_try;;
18530 18530
 esac
18531
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
18531
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
18532
+$as_echo "$ac_try_echo") >&5
18532 18533
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
18533 18534
   ac_status=$?
18534 18535
   grep -v '^ *+' conftest.er1 >conftest.err
18535 18536
   rm -f conftest.er1
18536 18537
   cat conftest.err >&5
18537
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
18538
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
18538 18539
   (exit $ac_status); } >/dev/null && {
18539 18540
 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
18540 18541
 	 test ! -s conftest.err
18541 18542
        }; then
18542 18543
   ac_header_preproc=yes
18543 18544
 else
18544
-  echo "$as_me: failed program was:" >&5
18545
+  $as_echo "$as_me: failed program was:" >&5
18545 18546
 sed 's/^/| /' conftest.$ac_ext >&5
18546 18547
 
18547 18548
   ac_header_preproc=no
18548 18549
 fi
18549 18550
 
18550 18551
 rm -f conftest.err conftest.$ac_ext
18551
-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
18552
-echo "${ECHO_T}$ac_header_preproc" >&6; }
18552
+{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
18553
+$as_echo "$ac_header_preproc" >&6; }
18553 18554
 
18554 18555
 # So?  What about this header?
18555 18556
 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
18556 18557
   yes:no: )
18557
-    { echo "$as_me:$LINENO: WARNING: bzlib.h: accepted by the compiler, rejected by the preprocessor!" >&5
18558
-echo "$as_me: WARNING: bzlib.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
18559
-    { echo "$as_me:$LINENO: WARNING: bzlib.h: proceeding with the compiler's result" >&5
18560
-echo "$as_me: WARNING: bzlib.h: proceeding with the compiler's result" >&2;}
18558
+    { $as_echo "$as_me:$LINENO: WARNING: bzlib.h: accepted by the compiler, rejected by the preprocessor!" >&5
18559
+$as_echo "$as_me: WARNING: bzlib.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
18560
+    { $as_echo "$as_me:$LINENO: WARNING: bzlib.h: proceeding with the compiler's result" >&5
18561
+$as_echo "$as_me: WARNING: bzlib.h: proceeding with the compiler's result" >&2;}
18561 18562
     ac_header_preproc=yes
18562 18563
     ;;
18563 18564
   no:yes:* )
18564
-    { echo "$as_me:$LINENO: WARNING: bzlib.h: present but cannot be compiled" >&5
18565
-echo "$as_me: WARNING: bzlib.h: present but cannot be compiled" >&2;}
18566
-    { echo "$as_me:$LINENO: WARNING: bzlib.h:     check for missing prerequisite headers?" >&5
18567
-echo "$as_me: WARNING: bzlib.h:     check for missing prerequisite headers?" >&2;}
18568
-    { echo "$as_me:$LINENO: WARNING: bzlib.h: see the Autoconf documentation" >&5
18569
-echo "$as_me: WARNING: bzlib.h: see the Autoconf documentation" >&2;}
18570
-    { echo "$as_me:$LINENO: WARNING: bzlib.h:     section \"Present But Cannot Be Compiled\"" >&5
18571
-echo "$as_me: WARNING: bzlib.h:     section \"Present But Cannot Be Compiled\"" >&2;}
18572
-    { echo "$as_me:$LINENO: WARNING: bzlib.h: proceeding with the preprocessor's result" >&5
18573
-echo "$as_me: WARNING: bzlib.h: proceeding with the preprocessor's result" >&2;}
18574
-    { echo "$as_me:$LINENO: WARNING: bzlib.h: in the future, the compiler will take precedence" >&5
18575
-echo "$as_me: WARNING: bzlib.h: in the future, the compiler will take precedence" >&2;}
18565
+    { $as_echo "$as_me:$LINENO: WARNING: bzlib.h: present but cannot be compiled" >&5
18566
+$as_echo "$as_me: WARNING: bzlib.h: present but cannot be compiled" >&2;}
18567
+    { $as_echo "$as_me:$LINENO: WARNING: bzlib.h:     check for missing prerequisite headers?" >&5
18568
+$as_echo "$as_me: WARNING: bzlib.h:     check for missing prerequisite headers?" >&2;}
18569
+    { $as_echo "$as_me:$LINENO: WARNING: bzlib.h: see the Autoconf documentation" >&5
18570
+$as_echo "$as_me: WARNING: bzlib.h: see the Autoconf documentation" >&2;}
18571
+    { $as_echo "$as_me:$LINENO: WARNING: bzlib.h:     section \"Present But Cannot Be Compiled\"" >&5
18572
+$as_echo "$as_me: WARNING: bzlib.h:     section \"Present But Cannot Be Compiled\"" >&2;}
18573
+    { $as_echo "$as_me:$LINENO: WARNING: bzlib.h: proceeding with the preprocessor's result" >&5
18574
+$as_echo "$as_me: WARNING: bzlib.h: proceeding with the preprocessor's result" >&2;}
18575
+    { $as_echo "$as_me:$LINENO: WARNING: bzlib.h: in the future, the compiler will take precedence" >&5
18576
+$as_echo "$as_me: WARNING: bzlib.h: in the future, the compiler will take precedence" >&2;}
18576 18577
     ( cat <<\_ASBOX
18577 18578
 ## -------------------------------------- ##
18578 18579
 ## Report this to http://bugs.clamav.net/ ##
... ...
@@ -18581,22 +19162,22 @@ _ASBOX
18581 18581
      ) | sed "s/^/$as_me: WARNING:     /" >&2
18582 18582
     ;;
18583 18583
 esac
18584
-{ echo "$as_me:$LINENO: checking for bzlib.h" >&5
18585
-echo $ECHO_N "checking for bzlib.h... $ECHO_C" >&6; }
18584
+{ $as_echo "$as_me:$LINENO: checking for bzlib.h" >&5
18585
+$as_echo_n "checking for bzlib.h... " >&6; }
18586 18586
 if test "${ac_cv_header_bzlib_h+set}" = set; then
18587
-  echo $ECHO_N "(cached) $ECHO_C" >&6
18587
+  $as_echo_n "(cached) " >&6
18588 18588
 else
18589 18589
   ac_cv_header_bzlib_h=$ac_header_preproc
18590 18590
 fi
18591
-{ echo "$as_me:$LINENO: result: $ac_cv_header_bzlib_h" >&5
18592
-echo "${ECHO_T}$ac_cv_header_bzlib_h" >&6; }
18591
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_bzlib_h" >&5
18592
+$as_echo "$ac_cv_header_bzlib_h" >&6; }
18593 18593
 
18594 18594
 fi
18595
-if test $ac_cv_header_bzlib_h = yes; then
18596
-  { echo "$as_me:$LINENO: checking for CVE-2008-1372" >&5
18597
-echo $ECHO_N "checking for CVE-2008-1372... $ECHO_C" >&6; }
18595
+if test "x$ac_cv_header_bzlib_h" = x""yes; then
18596
+  { $as_echo "$as_me:$LINENO: checking for CVE-2008-1372" >&5
18597
+$as_echo_n "checking for CVE-2008-1372... " >&6; }
18598 18598
 if test "${ac_cv_c_cve_2008_1372+set}" = set; then
18599
-  echo $ECHO_N "(cached) $ECHO_C" >&6
18599
+  $as_echo_n "(cached) " >&6
18600 18600
 else
18601 18601
 
18602 18602
 save_LIBS="$LIBS"
... ...
@@ -18673,24 +19254,26 @@ case "(($ac_try" in
18673 18673
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
18674 18674
   *) ac_try_echo=$ac_try;;
18675 18675
 esac
18676
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
18676
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
18677
+$as_echo "$ac_try_echo") >&5
18677 18678
   (eval "$ac_link") 2>&5
18678 18679
   ac_status=$?
18679
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
18680
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
18680 18681
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
18681 18682
   { (case "(($ac_try" in
18682 18683
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
18683 18684
   *) ac_try_echo=$ac_try;;
18684 18685
 esac
18685
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
18686
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
18687
+$as_echo "$ac_try_echo") >&5
18686 18688
   (eval "$ac_try") 2>&5
18687 18689
   ac_status=$?
18688
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
18690
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
18689 18691
   (exit $ac_status); }; }; then
18690 18692
   ac_cv_c_cve_2008_1372=ok
18691 18693
 else
18692
-  echo "$as_me: program exited with status $ac_status" >&5
18693
-echo "$as_me: failed program was:" >&5
18694
+  $as_echo "$as_me: program exited with status $ac_status" >&5
18695
+$as_echo "$as_me: failed program was:" >&5
18694 18696
 sed 's/^/| /' conftest.$ac_ext >&5
18695 18697
 
18696 18698
 ( exit $ac_status )
... ...
@@ -18702,6 +19285,7 @@ else
18702 18702
 fi
18703 18703
 
18704 18704
 fi
18705
+rm -rf conftest.dSYM
18705 18706
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
18706 18707
 fi
18707 18708
 
... ...
@@ -18709,8 +19293,8 @@ fi
18709 18709
 LIBS="$save_LIBS"
18710 18710
 
18711 18711
 fi
18712
-{ echo "$as_me:$LINENO: result: $ac_cv_c_cve_2008_1372" >&5
18713
-echo "${ECHO_T}$ac_cv_c_cve_2008_1372" >&6; }
18712
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_cve_2008_1372" >&5
18713
+$as_echo "$ac_cv_c_cve_2008_1372" >&6; }
18714 18714
 
18715 18715
 else
18716 18716
   ac_cv_c_cve_2008_1372="no"
... ...
@@ -18718,22 +19302,22 @@ fi
18718 18718
 
18719 18719
 
18720 18720
 	if test "$ac_cv_c_cve_2008_1372" = "bugged"; then
18721
-		{ echo "$as_me:$LINENO: WARNING: ****** bzip2 libraries are affected by the CVE-2008-1372 bug" >&5
18722
-echo "$as_me: WARNING: ****** bzip2 libraries are affected by the CVE-2008-1372 bug" >&2;}
18723
-		{ echo "$as_me:$LINENO: WARNING: ****** We strongly suggest you to update to bzip2 1.0.5." >&5
18724
-echo "$as_me: WARNING: ****** We strongly suggest you to update to bzip2 1.0.5." >&2;}
18725
-		{ echo "$as_me:$LINENO: WARNING: ****** Please do not report stability problems to the ClamAV developers!" >&5
18726
-echo "$as_me: WARNING: ****** Please do not report stability problems to the ClamAV developers!" >&2;}
18721
+		{ $as_echo "$as_me:$LINENO: WARNING: ****** bzip2 libraries are affected by the CVE-2008-1372 bug" >&5
18722
+$as_echo "$as_me: WARNING: ****** bzip2 libraries are affected by the CVE-2008-1372 bug" >&2;}
18723
+		{ $as_echo "$as_me:$LINENO: WARNING: ****** We strongly suggest you to update to bzip2 1.0.5." >&5
18724
+$as_echo "$as_me: WARNING: ****** We strongly suggest you to update to bzip2 1.0.5." >&2;}
18725
+		{ $as_echo "$as_me:$LINENO: WARNING: ****** Please do not report stability problems to the ClamAV developers!" >&5
18726
+$as_echo "$as_me: WARNING: ****** Please do not report stability problems to the ClamAV developers!" >&2;}
18727 18727
 	fi
18728 18728
 	if test "$ac_cv_c_cve_2008_1372" = "linkfailed"; then
18729
-						{ echo "$as_me:$LINENO: WARNING: ****** Unable to link bzip2 testcase" >&5
18730
-echo "$as_me: WARNING: ****** Unable to link bzip2 testcase" >&2;}
18731
-		{ echo "$as_me:$LINENO: WARNING: ****** You may be affected by CVE-2008-1372 bug, but I need to be able to link a testcase to verify" >&5
18732
-echo "$as_me: WARNING: ****** You may be affected by CVE-2008-1372 bug, but I need to be able to link a testcase to verify" >&2;}
18733
-		{ echo "$as_me:$LINENO: WARNING: ****** It is recommended to fix your build environment so that we can run the testcase!" >&5
18734
-echo "$as_me: WARNING: ****** It is recommended to fix your build environment so that we can run the testcase!" >&2;}
18735
-		{ echo "$as_me:$LINENO: WARNING: ****** Please do not report stability problems to the ClamAV developers!" >&5
18736
-echo "$as_me: WARNING: ****** Please do not report stability problems to the ClamAV developers!" >&2;}
18729
+						{ $as_echo "$as_me:$LINENO: WARNING: ****** Unable to link bzip2 testcase" >&5
18730
+$as_echo "$as_me: WARNING: ****** Unable to link bzip2 testcase" >&2;}
18731
+		{ $as_echo "$as_me:$LINENO: WARNING: ****** You may be affected by CVE-2008-1372 bug, but I need to be able to link a testcase to verify" >&5
18732
+$as_echo "$as_me: WARNING: ****** You may be affected by CVE-2008-1372 bug, but I need to be able to link a testcase to verify" >&2;}
18733
+		{ $as_echo "$as_me:$LINENO: WARNING: ****** It is recommended to fix your build environment so that we can run the testcase!" >&5
18734
+$as_echo "$as_me: WARNING: ****** It is recommended to fix your build environment so that we can run the testcase!" >&2;}
18735
+		{ $as_echo "$as_me:$LINENO: WARNING: ****** Please do not report stability problems to the ClamAV developers!" >&5
18736
+$as_echo "$as_me: WARNING: ****** Please do not report stability problems to the ClamAV developers!" >&2;}
18737 18737
 	fi
18738 18738
 
18739 18739
 	case "$ac_cv_c_cve_2008_1372" in
... ...
@@ -18746,14 +19330,14 @@ _ACEOF
18746 18746
 
18747 18747
 		;;
18748 18748
 	*)
18749
-		{ echo "$as_me:$LINENO: WARNING: ****** bzip2 support disabled" >&5
18750
-echo "$as_me: WARNING: ****** bzip2 support disabled" >&2;}
18749
+		{ $as_echo "$as_me:$LINENO: WARNING: ****** bzip2 support disabled" >&5
18750
+$as_echo "$as_me: WARNING: ****** bzip2 support disabled" >&2;}
18751 18751
 		;;
18752 18752
 	esac
18753 18753
 
18754 18754
     else
18755
-	{ echo "$as_me:$LINENO: WARNING: ****** bzip2 support disabled" >&5
18756
-echo "$as_me: WARNING: ****** bzip2 support disabled" >&2;}
18755
+	{ $as_echo "$as_me:$LINENO: WARNING: ****** bzip2 support disabled" >&5
18756
+$as_echo "$as_me: WARNING: ****** bzip2 support disabled" >&2;}
18757 18757
     fi
18758 18758
 fi
18759 18759
 
... ...
@@ -18783,14 +19367,14 @@ fi
18783 18783
 
18784 18784
 if test "$want_getaddrinfo" = "yes"
18785 18785
 then
18786
-    { echo "$as_me:$LINENO: checking for getaddrinfo" >&5
18787
-echo $ECHO_N "checking for getaddrinfo... $ECHO_C" >&6; }
18788
-    if test "${have_gai+set}" = set; then
18789
-  echo $ECHO_N "(cached) $ECHO_C" >&6
18786
+    { $as_echo "$as_me:$LINENO: checking for getaddrinfo" >&5
18787
+$as_echo_n "checking for getaddrinfo... " >&6; }
18788
+    if test "${have_cv_gai+set}" = set; then
18789
+  $as_echo_n "(cached) " >&6
18790 18790
 else
18791 18791
 
18792 18792
 		if test "$cross_compiling" = yes; then
18793
-  have_gai=no
18793
+  have_cv_gai=no
18794 18794
 else
18795 18795
   cat >conftest.$ac_ext <<_ACEOF
18796 18796
 /* confdefs.h.  */
... ...
@@ -18822,29 +19406,32 @@ case "(($ac_try" in
18822 18822
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
18823 18823
   *) ac_try_echo=$ac_try;;
18824 18824
 esac
18825
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
18825
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
18826
+$as_echo "$ac_try_echo") >&5
18826 18827
   (eval "$ac_link") 2>&5
18827 18828
   ac_status=$?
18828
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
18829
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
18829 18830
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
18830 18831
   { (case "(($ac_try" in
18831 18832
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
18832 18833
   *) ac_try_echo=$ac_try;;
18833 18834
 esac
18834
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
18835
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
18836
+$as_echo "$ac_try_echo") >&5
18835 18837
   (eval "$ac_try") 2>&5
18836 18838
   ac_status=$?
18837
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
18839
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
18838 18840
   (exit $ac_status); }; }; then
18839
-  have_gai=yes
18841
+  have_cv_gai=yes
18840 18842
 else
18841
-  echo "$as_me: program exited with status $ac_status" >&5
18842
-echo "$as_me: failed program was:" >&5
18843
+  $as_echo "$as_me: program exited with status $ac_status" >&5
18844
+$as_echo "$as_me: failed program was:" >&5
18843 18845
 sed 's/^/| /' conftest.$ac_ext >&5
18844 18846
 
18845 18847
 ( exit $ac_status )
18846
-have_gai=no
18848
+have_cv_gai=no
18847 18849
 fi
18850
+rm -rf conftest.dSYM
18848 18851
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
18849 18852
 fi
18850 18853
 
... ...
@@ -18852,9 +19439,9 @@ fi
18852 18852
 
18853 18853
 fi
18854 18854
 
18855
-    { echo "$as_me:$LINENO: result: $have_gai" >&5
18856
-echo "${ECHO_T}$have_gai" >&6; }
18857
-    if test "$have_gai" = yes; then
18855
+    { $as_echo "$as_me:$LINENO: result: $have_cv_gai" >&5
18856
+$as_echo "$have_cv_gai" >&6; }
18857
+    if test "$have_cv_gai" = yes; then
18858 18858
 
18859 18859
 cat >>confdefs.h <<\_ACEOF
18860 18860
 #define HAVE_GETADDRINFO 1
... ...
@@ -18873,14 +19460,14 @@ fi
18873 18873
 
18874 18874
 if test "$want_ipv6" = "yes"
18875 18875
 then
18876
-    { echo "$as_me:$LINENO: checking for IPv6 support" >&5
18877
-echo $ECHO_N "checking for IPv6 support... $ECHO_C" >&6; }
18878
-    if test "${have_ipv6+set}" = set; then
18879
-  echo $ECHO_N "(cached) $ECHO_C" >&6
18876
+    { $as_echo "$as_me:$LINENO: checking for IPv6 support" >&5
18877
+$as_echo_n "checking for IPv6 support... " >&6; }
18878
+    if test "${have_cv_ipv6+set}" = set; then
18879
+  $as_echo_n "(cached) " >&6
18880 18880
 else
18881 18881
 
18882 18882
 		if test "$cross_compiling" = yes; then
18883
-  have_ipv6=no
18883
+  have_cv_ipv6=no
18884 18884
 else
18885 18885
   cat >conftest.$ac_ext <<_ACEOF
18886 18886
 /* confdefs.h.  */
... ...
@@ -18917,29 +19504,32 @@ case "(($ac_try" in
18917 18917
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
18918 18918
   *) ac_try_echo=$ac_try;;
18919 18919
 esac
18920
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
18920
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
18921
+$as_echo "$ac_try_echo") >&5
18921 18922
   (eval "$ac_link") 2>&5
18922 18923
   ac_status=$?
18923
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
18924
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
18924 18925
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
18925 18926
   { (case "(($ac_try" in
18926 18927
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
18927 18928
   *) ac_try_echo=$ac_try;;
18928 18929
 esac
18929
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
18930
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
18931
+$as_echo "$ac_try_echo") >&5
18930 18932
   (eval "$ac_try") 2>&5
18931 18933
   ac_status=$?
18932
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
18934
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
18933 18935
   (exit $ac_status); }; }; then
18934
-  have_ipv6=yes
18936
+  have_cv_ipv6=yes
18935 18937
 else
18936
-  echo "$as_me: program exited with status $ac_status" >&5
18937
-echo "$as_me: failed program was:" >&5
18938
+  $as_echo "$as_me: program exited with status $ac_status" >&5
18939
+$as_echo "$as_me: failed program was:" >&5
18938 18940
 sed 's/^/| /' conftest.$ac_ext >&5
18939 18941
 
18940 18942
 ( exit $ac_status )
18941
-have_ipv6=no
18943
+have_cv_ipv6=no
18942 18944
 fi
18945
+rm -rf conftest.dSYM
18943 18946
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
18944 18947
 fi
18945 18948
 
... ...
@@ -18947,9 +19537,9 @@ fi
18947 18947
 
18948 18948
 fi
18949 18949
 
18950
-    { echo "$as_me:$LINENO: result: $have_ipv6" >&5
18951
-echo "${ECHO_T}$have_ipv6" >&6; }
18952
-    if test "$have_ipv6" = yes; then
18950
+    { $as_echo "$as_me:$LINENO: result: $have_cv_ipv6" >&5
18951
+$as_echo "$have_cv_ipv6" >&6; }
18952
+    if test "$have_cv_ipv6" = yes; then
18953 18953
 
18954 18954
 cat >>confdefs.h <<\_ACEOF
18955 18955
 #define SUPPORT_IPv6 1
... ...
@@ -18970,10 +19560,10 @@ fi
18970 18970
 
18971 18971
 if test $want_dns = yes; then
18972 18972
     ac_cv_have_lresolv=no
18973
-    { echo "$as_me:$LINENO: checking for resolv.h" >&5
18974
-echo $ECHO_N "checking for resolv.h... $ECHO_C" >&6; }
18973
+    { $as_echo "$as_me:$LINENO: checking for resolv.h" >&5
18974
+$as_echo_n "checking for resolv.h... " >&6; }
18975 18975
 if test "${ac_cv_header_resolv_h+set}" = set; then
18976
-  echo $ECHO_N "(cached) $ECHO_C" >&6
18976
+  $as_echo_n "(cached) " >&6
18977 18977
 else
18978 18978
   cat >conftest.$ac_ext <<_ACEOF
18979 18979
 /* confdefs.h.  */
... ...
@@ -18995,20 +19585,21 @@ case "(($ac_try" in
18995 18995
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
18996 18996
   *) ac_try_echo=$ac_try;;
18997 18997
 esac
18998
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
18998
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
18999
+$as_echo "$ac_try_echo") >&5
18999 19000
   (eval "$ac_compile") 2>conftest.er1
19000 19001
   ac_status=$?
19001 19002
   grep -v '^ *+' conftest.er1 >conftest.err
19002 19003
   rm -f conftest.er1
19003 19004
   cat conftest.err >&5
19004
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
19005
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
19005 19006
   (exit $ac_status); } && {
19006 19007
 	 test -z "$ac_c_werror_flag" ||
19007 19008
 	 test ! -s conftest.err
19008 19009
        } && test -s conftest.$ac_objext; then
19009 19010
   ac_cv_header_resolv_h=yes
19010 19011
 else
19011
-  echo "$as_me: failed program was:" >&5
19012
+  $as_echo "$as_me: failed program was:" >&5
19012 19013
 sed 's/^/| /' conftest.$ac_ext >&5
19013 19014
 
19014 19015
 	ac_cv_header_resolv_h=no
... ...
@@ -19016,14 +19607,14 @@ fi
19016 19016
 
19017 19017
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
19018 19018
 fi
19019
-{ echo "$as_me:$LINENO: result: $ac_cv_header_resolv_h" >&5
19020
-echo "${ECHO_T}$ac_cv_header_resolv_h" >&6; }
19021
-if test $ac_cv_header_resolv_h = yes; then
19019
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_resolv_h" >&5
19020
+$as_echo "$ac_cv_header_resolv_h" >&6; }
19021
+if test "x$ac_cv_header_resolv_h" = x""yes; then
19022 19022
 
19023
-	    { echo "$as_me:$LINENO: checking for dn_expand in std libs" >&5
19024
-echo $ECHO_N "checking for dn_expand in std libs... $ECHO_C" >&6; }
19023
+	    { $as_echo "$as_me:$LINENO: checking for dn_expand in std libs" >&5
19024
+$as_echo_n "checking for dn_expand in std libs... " >&6; }
19025 19025
 if test "${ac_cv_have_lresolv_std+set}" = set; then
19026
-  echo $ECHO_N "(cached) $ECHO_C" >&6
19026
+  $as_echo_n "(cached) " >&6
19027 19027
 else
19028 19028
 
19029 19029
 	    	ac_cv_have_lresolv_std='no'
... ...
@@ -19042,42 +19633,46 @@ case "(($ac_try" in
19042 19042
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
19043 19043
   *) ac_try_echo=$ac_try;;
19044 19044
 esac
19045
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
19045
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
19046
+$as_echo "$ac_try_echo") >&5
19046 19047
   (eval "$ac_link") 2>conftest.er1
19047 19048
   ac_status=$?
19048 19049
   grep -v '^ *+' conftest.er1 >conftest.err
19049 19050
   rm -f conftest.er1
19050 19051
   cat conftest.err >&5
19051
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
19052
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
19052 19053
   (exit $ac_status); } && {
19053 19054
 	 test -z "$ac_c_werror_flag" ||
19054 19055
 	 test ! -s conftest.err
19055
-       } && test -s conftest$ac_exeext &&
19056
-       $as_test_x conftest$ac_exeext; then
19056
+       } && test -s conftest$ac_exeext && {
19057
+	 test "$cross_compiling" = yes ||
19058
+	 $as_test_x conftest$ac_exeext
19059
+       }; then
19057 19060
 
19058 19061
 		    ac_cv_have_lresolv_std='yes'
19059 19062
 		    ac_cv_have_lresolv=''
19060 19063
 
19061 19064
 else
19062
-  echo "$as_me: failed program was:" >&5
19065
+  $as_echo "$as_me: failed program was:" >&5
19063 19066
 sed 's/^/| /' conftest.$ac_ext >&5
19064 19067
 
19065 19068
 
19066 19069
 fi
19067 19070
 
19071
+rm -rf conftest.dSYM
19068 19072
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
19069 19073
       conftest$ac_exeext conftest.$ac_ext
19070 19074
 
19071 19075
 fi
19072
-{ echo "$as_me:$LINENO: result: $ac_cv_have_lresolv_std" >&5
19073
-echo "${ECHO_T}$ac_cv_have_lresolv_std" >&6; }
19076
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_lresolv_std" >&5
19077
+$as_echo "$ac_cv_have_lresolv_std" >&6; }
19074 19078
 	    if test "x$ac_cv_have_lresolv" = "xno"; then
19075 19079
 	    bklibs=$LIBS
19076 19080
 	    LIBS=-lresolv
19077
-	    { echo "$as_me:$LINENO: checking for dn_expand in -lresolv" >&5
19078
-echo $ECHO_N "checking for dn_expand in -lresolv... $ECHO_C" >&6; }
19081
+	    { $as_echo "$as_me:$LINENO: checking for dn_expand in -lresolv" >&5
19082
+$as_echo_n "checking for dn_expand in -lresolv... " >&6; }
19079 19083
 if test "${ac_cv_have_lresolv_lresolv+set}" = set; then
19080
-  echo $ECHO_N "(cached) $ECHO_C" >&6
19084
+  $as_echo_n "(cached) " >&6
19081 19085
 else
19082 19086
 
19083 19087
 		ac_cv_have_lresolv_lresolv='yes'
... ...
@@ -19096,35 +19691,39 @@ case "(($ac_try" in
19096 19096
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
19097 19097
   *) ac_try_echo=$ac_try;;
19098 19098
 esac
19099
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
19099
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
19100
+$as_echo "$ac_try_echo") >&5
19100 19101
   (eval "$ac_link") 2>conftest.er1
19101 19102
   ac_status=$?
19102 19103
   grep -v '^ *+' conftest.er1 >conftest.err
19103 19104
   rm -f conftest.er1
19104 19105
   cat conftest.err >&5
19105
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
19106
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
19106 19107
   (exit $ac_status); } && {
19107 19108
 	 test -z "$ac_c_werror_flag" ||
19108 19109
 	 test ! -s conftest.err
19109
-       } && test -s conftest$ac_exeext &&
19110
-       $as_test_x conftest$ac_exeext; then
19110
+       } && test -s conftest$ac_exeext && {
19111
+	 test "$cross_compiling" = yes ||
19112
+	 $as_test_x conftest$ac_exeext
19113
+       }; then
19111 19114
 
19112 19115
 		    ac_cv_have_lresolv_lresolv='yes'
19113 19116
 		    ac_cv_have_lresolv=' -lresolv'
19114 19117
 
19115 19118
 else
19116
-  echo "$as_me: failed program was:" >&5
19119
+  $as_echo "$as_me: failed program was:" >&5
19117 19120
 sed 's/^/| /' conftest.$ac_ext >&5
19118 19121
 
19119 19122
 
19120 19123
 fi
19121 19124
 
19125
+rm -rf conftest.dSYM
19122 19126
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
19123 19127
       conftest$ac_exeext conftest.$ac_ext
19124 19128
 
19125 19129
 fi
19126
-{ echo "$as_me:$LINENO: result: $ac_cv_have_lresolv_lresolv" >&5
19127
-echo "${ECHO_T}$ac_cv_have_lresolv_lresolv" >&6; }
19130
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_lresolv_lresolv" >&5
19131
+$as_echo "$ac_cv_have_lresolv_lresolv" >&6; }
19128 19132
 	    LIBS=$bklibs;
19129 19133
 	    fi
19130 19134
 
... ...
@@ -19141,8 +19740,8 @@ cat >>confdefs.h <<\_ACEOF
19141 19141
 _ACEOF
19142 19142
 
19143 19143
     else
19144
-	{ echo "$as_me:$LINENO: WARNING: ****** DNS support disabled" >&5
19145
-echo "$as_me: WARNING: ****** DNS support disabled" >&2;}
19144
+	{ $as_echo "$as_me:$LINENO: WARNING: ****** DNS support disabled" >&5
19145
+$as_echo "$as_me: WARNING: ****** DNS support disabled" >&2;}
19146 19146
     fi
19147 19147
 fi
19148 19148
 
... ...
@@ -19157,14 +19756,14 @@ fi
19157 19157
 
19158 19158
 
19159 19159
 if test "$cross_compiling" = no; then
19160
- { echo "$as_me:$LINENO: checking whether setpgrp takes no argument" >&5
19161
-echo $ECHO_N "checking whether setpgrp takes no argument... $ECHO_C" >&6; }
19160
+ { $as_echo "$as_me:$LINENO: checking whether setpgrp takes no argument" >&5
19161
+$as_echo_n "checking whether setpgrp takes no argument... " >&6; }
19162 19162
 if test "${ac_cv_func_setpgrp_void+set}" = set; then
19163
-  echo $ECHO_N "(cached) $ECHO_C" >&6
19163
+  $as_echo_n "(cached) " >&6
19164 19164
 else
19165 19165
   if test "$cross_compiling" = yes; then
19166
-  { { echo "$as_me:$LINENO: error: cannot check setpgrp when cross compiling" >&5
19167
-echo "$as_me: error: cannot check setpgrp when cross compiling" >&2;}
19166
+  { { $as_echo "$as_me:$LINENO: error: cannot check setpgrp when cross compiling" >&5
19167
+$as_echo "$as_me: error: cannot check setpgrp when cross compiling" >&2;}
19168 19168
    { (exit 1); exit 1; }; }
19169 19169
 else
19170 19170
   cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -19191,36 +19790,39 @@ case "(($ac_try" in
19191 19191
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
19192 19192
   *) ac_try_echo=$ac_try;;
19193 19193
 esac
19194
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
19194
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
19195
+$as_echo "$ac_try_echo") >&5
19195 19196
   (eval "$ac_link") 2>&5
19196 19197
   ac_status=$?
19197
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
19198
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
19198 19199
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
19199 19200
   { (case "(($ac_try" in
19200 19201
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
19201 19202
   *) ac_try_echo=$ac_try;;
19202 19203
 esac
19203
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
19204
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
19205
+$as_echo "$ac_try_echo") >&5
19204 19206
   (eval "$ac_try") 2>&5
19205 19207
   ac_status=$?
19206
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
19208
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
19207 19209
   (exit $ac_status); }; }; then
19208 19210
   ac_cv_func_setpgrp_void=no
19209 19211
 else
19210
-  echo "$as_me: program exited with status $ac_status" >&5
19211
-echo "$as_me: failed program was:" >&5
19212
+  $as_echo "$as_me: program exited with status $ac_status" >&5
19213
+$as_echo "$as_me: failed program was:" >&5
19212 19214
 sed 's/^/| /' conftest.$ac_ext >&5
19213 19215
 
19214 19216
 ( exit $ac_status )
19215 19217
 ac_cv_func_setpgrp_void=yes
19216 19218
 fi
19219
+rm -rf conftest.dSYM
19217 19220
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
19218 19221
 fi
19219 19222
 
19220 19223
 
19221 19224
 fi
19222
-{ echo "$as_me:$LINENO: result: $ac_cv_func_setpgrp_void" >&5
19223
-echo "${ECHO_T}$ac_cv_func_setpgrp_void" >&6; }
19225
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_setpgrp_void" >&5
19226
+$as_echo "$ac_cv_func_setpgrp_void" >&6; }
19224 19227
 if test $ac_cv_func_setpgrp_void = yes; then
19225 19228
 
19226 19229
 cat >>confdefs.h <<\_ACEOF
... ...
@@ -19230,10 +19832,10 @@ _ACEOF
19230 19230
 fi
19231 19231
 
19232 19232
 else
19233
- { echo "$as_me:$LINENO: checking whether setpgrp takes no argument" >&5
19234
-echo $ECHO_N "checking whether setpgrp takes no argument... $ECHO_C" >&6; }
19233
+ { $as_echo "$as_me:$LINENO: checking whether setpgrp takes no argument" >&5
19234
+$as_echo_n "checking whether setpgrp takes no argument... " >&6; }
19235 19235
 if test "${ac_cv_func_setpgrp_void+set}" = set; then
19236
-  echo $ECHO_N "(cached) $ECHO_C" >&6
19236
+  $as_echo_n "(cached) " >&6
19237 19237
 else
19238 19238
   cat >conftest.$ac_ext <<_ACEOF
19239 19239
 /* confdefs.h.  */
... ...
@@ -19263,20 +19865,21 @@ case "(($ac_try" in
19263 19263
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
19264 19264
   *) ac_try_echo=$ac_try;;
19265 19265
 esac
19266
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
19266
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
19267
+$as_echo "$ac_try_echo") >&5
19267 19268
   (eval "$ac_compile") 2>conftest.er1
19268 19269
   ac_status=$?
19269 19270
   grep -v '^ *+' conftest.er1 >conftest.err
19270 19271
   rm -f conftest.er1
19271 19272
   cat conftest.err >&5
19272
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
19273
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
19273 19274
   (exit $ac_status); } && {
19274 19275
 	 test -z "$ac_c_werror_flag" ||
19275 19276
 	 test ! -s conftest.err
19276 19277
        } && test -s conftest.$ac_objext; then
19277 19278
   ac_cv_func_setpgrp_void=no
19278 19279
 else
19279
-  echo "$as_me: failed program was:" >&5
19280
+  $as_echo "$as_me: failed program was:" >&5
19280 19281
 sed 's/^/| /' conftest.$ac_ext >&5
19281 19282
 
19282 19283
 	ac_cv_func_setpgrp_void=yes
... ...
@@ -19284,8 +19887,8 @@ fi
19284 19284
 
19285 19285
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
19286 19286
 fi
19287
-{ echo "$as_me:$LINENO: result: $ac_cv_func_setpgrp_void" >&5
19288
-echo "${ECHO_T}$ac_cv_func_setpgrp_void" >&6; }
19287
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_setpgrp_void" >&5
19288
+$as_echo "$ac_cv_func_setpgrp_void" >&6; }
19289 19289
 if test $ac_cv_func_setpgrp_void = yes; then
19290 19290
  cat >>confdefs.h <<\_ACEOF
19291 19291
 #define SETPGRP_VOID 1
... ...
@@ -19309,10 +19912,10 @@ if test "${with_system_tommath+set}" = set; then
19309 19309
   withval=$with_system_tommath;
19310 19310
 	case "$withval" in
19311 19311
 	yes)
19312
-		{ echo "$as_me:$LINENO: checking for mp_mul_2d in -ltommath" >&5
19313
-echo $ECHO_N "checking for mp_mul_2d in -ltommath... $ECHO_C" >&6; }
19312
+		{ $as_echo "$as_me:$LINENO: checking for mp_mul_2d in -ltommath" >&5
19313
+$as_echo_n "checking for mp_mul_2d in -ltommath... " >&6; }
19314 19314
 if test "${ac_cv_lib_tommath_mp_mul_2d+set}" = set; then
19315
-  echo $ECHO_N "(cached) $ECHO_C" >&6
19315
+  $as_echo_n "(cached) " >&6
19316 19316
 else
19317 19317
   ac_check_lib_save_LIBS=$LIBS
19318 19318
 LIBS="-ltommath  $LIBS"
... ...
@@ -19344,33 +19947,37 @@ case "(($ac_try" in
19344 19344
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
19345 19345
   *) ac_try_echo=$ac_try;;
19346 19346
 esac
19347
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
19347
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
19348
+$as_echo "$ac_try_echo") >&5
19348 19349
   (eval "$ac_link") 2>conftest.er1
19349 19350
   ac_status=$?
19350 19351
   grep -v '^ *+' conftest.er1 >conftest.err
19351 19352
   rm -f conftest.er1
19352 19353
   cat conftest.err >&5
19353
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
19354
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
19354 19355
   (exit $ac_status); } && {
19355 19356
 	 test -z "$ac_c_werror_flag" ||
19356 19357
 	 test ! -s conftest.err
19357
-       } && test -s conftest$ac_exeext &&
19358
-       $as_test_x conftest$ac_exeext; then
19358
+       } && test -s conftest$ac_exeext && {
19359
+	 test "$cross_compiling" = yes ||
19360
+	 $as_test_x conftest$ac_exeext
19361
+       }; then
19359 19362
   ac_cv_lib_tommath_mp_mul_2d=yes
19360 19363
 else
19361
-  echo "$as_me: failed program was:" >&5
19364
+  $as_echo "$as_me: failed program was:" >&5
19362 19365
 sed 's/^/| /' conftest.$ac_ext >&5
19363 19366
 
19364 19367
 	ac_cv_lib_tommath_mp_mul_2d=no
19365 19368
 fi
19366 19369
 
19370
+rm -rf conftest.dSYM
19367 19371
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
19368 19372
       conftest$ac_exeext conftest.$ac_ext
19369 19373
 LIBS=$ac_check_lib_save_LIBS
19370 19374
 fi
19371
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_tommath_mp_mul_2d" >&5
19372
-echo "${ECHO_T}$ac_cv_lib_tommath_mp_mul_2d" >&6; }
19373
-if test $ac_cv_lib_tommath_mp_mul_2d = yes; then
19375
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_tommath_mp_mul_2d" >&5
19376
+$as_echo "$ac_cv_lib_tommath_mp_mul_2d" >&6; }
19377
+if test "x$ac_cv_lib_tommath_mp_mul_2d" = x""yes; then
19374 19378
 
19375 19379
 
19376 19380
 cat >>confdefs.h <<\_ACEOF
... ...
@@ -19381,15 +19988,15 @@ _ACEOF
19381 19381
 				have_system_tommath=yes
19382 19382
 
19383 19383
 else
19384
-  { echo "$as_me:$LINENO: WARNING: ****** Option --with-system-tommath was given but libtommath does not seem to be available, using bundled files instead" >&5
19385
-echo "$as_me: WARNING: ****** Option --with-system-tommath was given but libtommath does not seem to be available, using bundled files instead" >&2;}
19384
+  { $as_echo "$as_me:$LINENO: WARNING: ****** Option --with-system-tommath was given but libtommath does not seem to be available, using bundled files instead" >&5
19385
+$as_echo "$as_me: WARNING: ****** Option --with-system-tommath was given but libtommath does not seem to be available, using bundled files instead" >&2;}
19386 19386
 
19387 19387
 fi
19388 19388
 
19389 19389
 	;;
19390 19390
 	no) ;;
19391
-	*) { { echo "$as_me:$LINENO: error: --with-system-tommath does not take an argument" >&5
19392
-echo "$as_me: error: --with-system-tommath does not take an argument" >&2;}
19391
+	*) { { $as_echo "$as_me:$LINENO: error: --with-system-tommath does not take an argument" >&5
19392
+$as_echo "$as_me: error: --with-system-tommath does not take an argument" >&2;}
19393 19393
    { (exit 1); exit 1; }; } ;;
19394 19394
 	esac
19395 19395
 
... ...
@@ -19411,8 +20018,8 @@ if test "${with_iconv+set}" = set; then
19411 19411
   withval=$with_iconv;
19412 19412
  case "$withval" in
19413 19413
 	 yes|no) wiconv="$withval";;
19414
-	 *) { { echo "$as_me:$LINENO: error: --with-iconv does not take an argument" >&5
19415
-echo "$as_me: error: --with-iconv does not take an argument" >&2;}
19414
+	 *) { { $as_echo "$as_me:$LINENO: error: --with-iconv does not take an argument" >&5
19415
+$as_echo "$as_me: error: --with-iconv does not take an argument" >&2;}
19416 19416
    { (exit 1); exit 1; }; };;
19417 19417
  esac
19418 19418
 else
... ...
@@ -19420,10 +20027,10 @@ else
19420 19420
 fi
19421 19421
 
19422 19422
 if test "X$wiconv" != "Xno"; then
19423
-	{ echo "$as_me:$LINENO: checking for libiconv_open in -liconv" >&5
19424
-echo $ECHO_N "checking for libiconv_open in -liconv... $ECHO_C" >&6; }
19423
+	{ $as_echo "$as_me:$LINENO: checking for libiconv_open in -liconv" >&5
19424
+$as_echo_n "checking for libiconv_open in -liconv... " >&6; }
19425 19425
 if test "${ac_cv_lib_iconv_libiconv_open+set}" = set; then
19426
-  echo $ECHO_N "(cached) $ECHO_C" >&6
19426
+  $as_echo_n "(cached) " >&6
19427 19427
 else
19428 19428
   ac_check_lib_save_LIBS=$LIBS
19429 19429
 LIBS="-liconv  $LIBS"
... ...
@@ -19455,38 +20062,42 @@ case "(($ac_try" in
19455 19455
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
19456 19456
   *) ac_try_echo=$ac_try;;
19457 19457
 esac
19458
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
19458
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
19459
+$as_echo "$ac_try_echo") >&5
19459 19460
   (eval "$ac_link") 2>conftest.er1
19460 19461
   ac_status=$?
19461 19462
   grep -v '^ *+' conftest.er1 >conftest.err
19462 19463
   rm -f conftest.er1
19463 19464
   cat conftest.err >&5
19464
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
19465
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
19465 19466
   (exit $ac_status); } && {
19466 19467
 	 test -z "$ac_c_werror_flag" ||
19467 19468
 	 test ! -s conftest.err
19468
-       } && test -s conftest$ac_exeext &&
19469
-       $as_test_x conftest$ac_exeext; then
19469
+       } && test -s conftest$ac_exeext && {
19470
+	 test "$cross_compiling" = yes ||
19471
+	 $as_test_x conftest$ac_exeext
19472
+       }; then
19470 19473
   ac_cv_lib_iconv_libiconv_open=yes
19471 19474
 else
19472
-  echo "$as_me: failed program was:" >&5
19475
+  $as_echo "$as_me: failed program was:" >&5
19473 19476
 sed 's/^/| /' conftest.$ac_ext >&5
19474 19477
 
19475 19478
 	ac_cv_lib_iconv_libiconv_open=no
19476 19479
 fi
19477 19480
 
19481
+rm -rf conftest.dSYM
19478 19482
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
19479 19483
       conftest$ac_exeext conftest.$ac_ext
19480 19484
 LIBS=$ac_check_lib_save_LIBS
19481 19485
 fi
19482
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_iconv_libiconv_open" >&5
19483
-echo "${ECHO_T}$ac_cv_lib_iconv_libiconv_open" >&6; }
19484
-if test $ac_cv_lib_iconv_libiconv_open = yes; then
19486
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_iconv_libiconv_open" >&5
19487
+$as_echo "$ac_cv_lib_iconv_libiconv_open" >&6; }
19488
+if test "x$ac_cv_lib_iconv_libiconv_open" = x""yes; then
19485 19489
   LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -liconv"
19486 19490
 fi
19487 19491
 
19488
-	{ echo "$as_me:$LINENO: checking for iconv" >&5
19489
-echo $ECHO_N "checking for iconv... $ECHO_C" >&6; }
19492
+	{ $as_echo "$as_me:$LINENO: checking for iconv" >&5
19493
+$as_echo_n "checking for iconv... " >&6; }
19490 19494
 	save_LIBS="$LIBS"
19491 19495
 	LIBS="$LIBCLAMAV_LIBS"
19492 19496
 	cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -19519,21 +20130,24 @@ case "(($ac_try" in
19519 19519
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
19520 19520
   *) ac_try_echo=$ac_try;;
19521 19521
 esac
19522
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
19522
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
19523
+$as_echo "$ac_try_echo") >&5
19523 19524
   (eval "$ac_link") 2>conftest.er1
19524 19525
   ac_status=$?
19525 19526
   grep -v '^ *+' conftest.er1 >conftest.err
19526 19527
   rm -f conftest.er1
19527 19528
   cat conftest.err >&5
19528
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
19529
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
19529 19530
   (exit $ac_status); } && {
19530 19531
 	 test -z "$ac_c_werror_flag" ||
19531 19532
 	 test ! -s conftest.err
19532
-       } && test -s conftest$ac_exeext &&
19533
-       $as_test_x conftest$ac_exeext; then
19533
+       } && test -s conftest$ac_exeext && {
19534
+	 test "$cross_compiling" = yes ||
19535
+	 $as_test_x conftest$ac_exeext
19536
+       }; then
19534 19537
 
19535
-   { echo "$as_me:$LINENO: result: yes" >&5
19536
-echo "${ECHO_T}yes" >&6; }
19538
+   { $as_echo "$as_me:$LINENO: result: yes" >&5
19539
+$as_echo "yes" >&6; }
19537 19540
 
19538 19541
 cat >>confdefs.h <<\_ACEOF
19539 19542
 #define HAVE_ICONV 1
... ...
@@ -19541,15 +20155,16 @@ _ACEOF
19541 19541
 
19542 19542
 
19543 19543
 else
19544
-  echo "$as_me: failed program was:" >&5
19544
+  $as_echo "$as_me: failed program was:" >&5
19545 19545
 sed 's/^/| /' conftest.$ac_ext >&5
19546 19546
 
19547 19547
 
19548
-	{ echo "$as_me:$LINENO: result: no" >&5
19549
-echo "${ECHO_T}no" >&6; }
19548
+	{ $as_echo "$as_me:$LINENO: result: no" >&5
19549
+$as_echo "no" >&6; }
19550 19550
 
19551 19551
 fi
19552 19552
 
19553
+rm -rf conftest.dSYM
19553 19554
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
19554 19555
       conftest$ac_exeext conftest.$ac_ext
19555 19556
 	LIBS="$save_LIBS"
... ...
@@ -19738,8 +20353,8 @@ cat >>confdefs.h <<_ACEOF
19738 19738
 _ACEOF
19739 19739
 
19740 19740
 
19741
-{ echo "$as_me:$LINENO: checking whether in_port_t is defined" >&5
19742
-echo $ECHO_N "checking whether in_port_t is defined... $ECHO_C" >&6; }
19741
+{ $as_echo "$as_me:$LINENO: checking whether in_port_t is defined" >&5
19742
+$as_echo_n "checking whether in_port_t is defined... " >&6; }
19743 19743
 cat >conftest.$ac_ext <<_ACEOF
19744 19744
 /* confdefs.h.  */
19745 19745
 _ACEOF
... ...
@@ -19764,20 +20379,21 @@ case "(($ac_try" in
19764 19764
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
19765 19765
   *) ac_try_echo=$ac_try;;
19766 19766
 esac
19767
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
19767
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
19768
+$as_echo "$ac_try_echo") >&5
19768 19769
   (eval "$ac_compile") 2>conftest.er1
19769 19770
   ac_status=$?
19770 19771
   grep -v '^ *+' conftest.er1 >conftest.err
19771 19772
   rm -f conftest.er1
19772 19773
   cat conftest.err >&5
19773
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
19774
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
19774 19775
   (exit $ac_status); } && {
19775 19776
 	 test -z "$ac_c_werror_flag" ||
19776 19777
 	 test ! -s conftest.err
19777 19778
        } && test -s conftest.$ac_objext; then
19778 19779
 
19779
-    { echo "$as_me:$LINENO: result: yes" >&5
19780
-echo "${ECHO_T}yes" >&6; }
19780
+    { $as_echo "$as_me:$LINENO: result: yes" >&5
19781
+$as_echo "yes" >&6; }
19781 19782
 
19782 19783
 cat >>confdefs.h <<\_ACEOF
19783 19784
 #define HAVE_IN_PORT_T 1
... ...
@@ -19785,17 +20401,17 @@ _ACEOF
19785 19785
 
19786 19786
 
19787 19787
 else
19788
-  echo "$as_me: failed program was:" >&5
19788
+  $as_echo "$as_me: failed program was:" >&5
19789 19789
 sed 's/^/| /' conftest.$ac_ext >&5
19790 19790
 
19791
-	{ echo "$as_me:$LINENO: result: no" >&5
19792
-echo "${ECHO_T}no" >&6; }
19791
+	{ $as_echo "$as_me:$LINENO: result: no" >&5
19792
+$as_echo "no" >&6; }
19793 19793
 fi
19794 19794
 
19795 19795
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
19796 19796
 
19797
-{ echo "$as_me:$LINENO: checking for in_addr_t definition" >&5
19798
-echo $ECHO_N "checking for in_addr_t definition... $ECHO_C" >&6; }
19797
+{ $as_echo "$as_me:$LINENO: checking for in_addr_t definition" >&5
19798
+$as_echo_n "checking for in_addr_t definition... " >&6; }
19799 19799
 cat >conftest.$ac_ext <<_ACEOF
19800 19800
 /* confdefs.h.  */
19801 19801
 _ACEOF
... ...
@@ -19820,20 +20436,21 @@ case "(($ac_try" in
19820 19820
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
19821 19821
   *) ac_try_echo=$ac_try;;
19822 19822
 esac
19823
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
19823
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
19824
+$as_echo "$ac_try_echo") >&5
19824 19825
   (eval "$ac_compile") 2>conftest.er1
19825 19826
   ac_status=$?
19826 19827
   grep -v '^ *+' conftest.er1 >conftest.err
19827 19828
   rm -f conftest.er1
19828 19829
   cat conftest.err >&5
19829
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
19830
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
19830 19831
   (exit $ac_status); } && {
19831 19832
 	 test -z "$ac_c_werror_flag" ||
19832 19833
 	 test ! -s conftest.err
19833 19834
        } && test -s conftest.$ac_objext; then
19834 19835
 
19835
-    { echo "$as_me:$LINENO: result: yes" >&5
19836
-echo "${ECHO_T}yes" >&6; }
19836
+    { $as_echo "$as_me:$LINENO: result: yes" >&5
19837
+$as_echo "yes" >&6; }
19837 19838
 
19838 19839
 cat >>confdefs.h <<\_ACEOF
19839 19840
 #define HAVE_IN_ADDR_T 1
... ...
@@ -19841,11 +20458,11 @@ _ACEOF
19841 19841
 
19842 19842
 
19843 19843
 else
19844
-  echo "$as_me: failed program was:" >&5
19844
+  $as_echo "$as_me: failed program was:" >&5
19845 19845
 sed 's/^/| /' conftest.$ac_ext >&5
19846 19846
 
19847
-	{ echo "$as_me:$LINENO: result: no" >&5
19848
-echo "${ECHO_T}no" >&6; }
19847
+	{ $as_echo "$as_me:$LINENO: result: no" >&5
19848
+$as_echo "no" >&6; }
19849 19849
 fi
19850 19850
 
19851 19851
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
... ...
@@ -20086,8 +20703,8 @@ _ACEOF
20086 20086
     use_gethostbyname_r="no"
20087 20087
     ;;
20088 20088
 bsd*)
20089
-    { echo "$as_me:$LINENO: result: Unknown BSD detected. Disabling thread support." >&5
20090
-echo "${ECHO_T}Unknown BSD detected. Disabling thread support." >&6; }
20089
+    { $as_echo "$as_me:$LINENO: result: Unknown BSD detected. Disabling thread support." >&5
20090
+$as_echo "Unknown BSD detected. Disabling thread support." >&6; }
20091 20091
     have_pthreads="no"
20092 20092
 
20093 20093
 cat >>confdefs.h <<\_ACEOF
... ...
@@ -20097,8 +20714,8 @@ _ACEOF
20097 20097
     use_gethostbyname_r="no"
20098 20098
     ;;
20099 20099
 beos*)
20100
-    { echo "$as_me:$LINENO: result: BeOS detected. Disabling thread support." >&5
20101
-echo "${ECHO_T}BeOS detected. Disabling thread support." >&6; }
20100
+    { $as_echo "$as_me:$LINENO: result: BeOS detected. Disabling thread support." >&5
20101
+$as_echo "BeOS detected. Disabling thread support." >&6; }
20102 20102
     have_pthreads="no"
20103 20103
 
20104 20104
 cat >>confdefs.h <<\_ACEOF
... ...
@@ -20327,10 +20944,10 @@ if test "$have_milter" = "yes"; then
20327 20327
 	CLAMAV_MILTER_LIBS="$CLAMAV_MILTER_LIBS -L/usr/lib/libmilter"
20328 20328
     fi
20329 20329
     LIBS="$LIBS -lmilter $CLAMAV_MILTER_LIBS"
20330
-    { echo "$as_me:$LINENO: checking for mi_stop in -lmilter" >&5
20331
-echo $ECHO_N "checking for mi_stop in -lmilter... $ECHO_C" >&6; }
20330
+    { $as_echo "$as_me:$LINENO: checking for mi_stop in -lmilter" >&5
20331
+$as_echo_n "checking for mi_stop in -lmilter... " >&6; }
20332 20332
 if test "${ac_cv_lib_milter_mi_stop+set}" = set; then
20333
-  echo $ECHO_N "(cached) $ECHO_C" >&6
20333
+  $as_echo_n "(cached) " >&6
20334 20334
 else
20335 20335
   ac_check_lib_save_LIBS=$LIBS
20336 20336
 LIBS="-lmilter  $LIBS"
... ...
@@ -20362,40 +20979,44 @@ case "(($ac_try" in
20362 20362
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
20363 20363
   *) ac_try_echo=$ac_try;;
20364 20364
 esac
20365
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
20365
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
20366
+$as_echo "$ac_try_echo") >&5
20366 20367
   (eval "$ac_link") 2>conftest.er1
20367 20368
   ac_status=$?
20368 20369
   grep -v '^ *+' conftest.er1 >conftest.err
20369 20370
   rm -f conftest.er1
20370 20371
   cat conftest.err >&5
20371
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
20372
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
20372 20373
   (exit $ac_status); } && {
20373 20374
 	 test -z "$ac_c_werror_flag" ||
20374 20375
 	 test ! -s conftest.err
20375
-       } && test -s conftest$ac_exeext &&
20376
-       $as_test_x conftest$ac_exeext; then
20376
+       } && test -s conftest$ac_exeext && {
20377
+	 test "$cross_compiling" = yes ||
20378
+	 $as_test_x conftest$ac_exeext
20379
+       }; then
20377 20380
   ac_cv_lib_milter_mi_stop=yes
20378 20381
 else
20379
-  echo "$as_me: failed program was:" >&5
20382
+  $as_echo "$as_me: failed program was:" >&5
20380 20383
 sed 's/^/| /' conftest.$ac_ext >&5
20381 20384
 
20382 20385
 	ac_cv_lib_milter_mi_stop=no
20383 20386
 fi
20384 20387
 
20388
+rm -rf conftest.dSYM
20385 20389
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
20386 20390
       conftest$ac_exeext conftest.$ac_ext
20387 20391
 LIBS=$ac_check_lib_save_LIBS
20388 20392
 fi
20389
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_milter_mi_stop" >&5
20390
-echo "${ECHO_T}$ac_cv_lib_milter_mi_stop" >&6; }
20391
-if test $ac_cv_lib_milter_mi_stop = yes; then
20393
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_milter_mi_stop" >&5
20394
+$as_echo "$ac_cv_lib_milter_mi_stop" >&6; }
20395
+if test "x$ac_cv_lib_milter_mi_stop" = x""yes; then
20392 20396
   CLAMAV_MILTER_LIBS="-lmilter $CLAMAV_MILTER_LIBS"
20393 20397
 else
20394 20398
 
20395
-		{ echo "$as_me:$LINENO: checking for library containing strlcpy" >&5
20396
-echo $ECHO_N "checking for library containing strlcpy... $ECHO_C" >&6; }
20399
+		{ $as_echo "$as_me:$LINENO: checking for library containing strlcpy" >&5
20400
+$as_echo_n "checking for library containing strlcpy... " >&6; }
20397 20401
 if test "${ac_cv_search_strlcpy+set}" = set; then
20398
-  echo $ECHO_N "(cached) $ECHO_C" >&6
20402
+  $as_echo_n "(cached) " >&6
20399 20403
 else
20400 20404
   ac_func_search_save_LIBS=$LIBS
20401 20405
 cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -20433,26 +21054,30 @@ case "(($ac_try" in
20433 20433
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
20434 20434
   *) ac_try_echo=$ac_try;;
20435 20435
 esac
20436
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
20436
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
20437
+$as_echo "$ac_try_echo") >&5
20437 20438
   (eval "$ac_link") 2>conftest.er1
20438 20439
   ac_status=$?
20439 20440
   grep -v '^ *+' conftest.er1 >conftest.err
20440 20441
   rm -f conftest.er1
20441 20442
   cat conftest.err >&5
20442
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
20443
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
20443 20444
   (exit $ac_status); } && {
20444 20445
 	 test -z "$ac_c_werror_flag" ||
20445 20446
 	 test ! -s conftest.err
20446
-       } && test -s conftest$ac_exeext &&
20447
-       $as_test_x conftest$ac_exeext; then
20447
+       } && test -s conftest$ac_exeext && {
20448
+	 test "$cross_compiling" = yes ||
20449
+	 $as_test_x conftest$ac_exeext
20450
+       }; then
20448 20451
   ac_cv_search_strlcpy=$ac_res
20449 20452
 else
20450
-  echo "$as_me: failed program was:" >&5
20453
+  $as_echo "$as_me: failed program was:" >&5
20451 20454
 sed 's/^/| /' conftest.$ac_ext >&5
20452 20455
 
20453 20456
 
20454 20457
 fi
20455 20458
 
20459
+rm -rf conftest.dSYM
20456 20460
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
20457 20461
       conftest$ac_exeext
20458 20462
   if test "${ac_cv_search_strlcpy+set}" = set; then
... ...
@@ -20467,8 +21092,8 @@ fi
20467 20467
 rm conftest.$ac_ext
20468 20468
 LIBS=$ac_func_search_save_LIBS
20469 20469
 fi
20470
-{ echo "$as_me:$LINENO: result: $ac_cv_search_strlcpy" >&5
20471
-echo "${ECHO_T}$ac_cv_search_strlcpy" >&6; }
20470
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_strlcpy" >&5
20471
+$as_echo "$ac_cv_search_strlcpy" >&6; }
20472 20472
 ac_res=$ac_cv_search_strlcpy
20473 20473
 if test "$ac_res" != no; then
20474 20474
   test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
... ...
@@ -20477,10 +21102,10 @@ fi
20477 20477
 
20478 20478
 	LIBS="$save_LIBS $CLAMAV_MILTER_LIBS $CLAMAV_MILTER_XLIB"
20479 20479
 	$as_unset ac_cv_lib_milter_mi_stop
20480
-	{ echo "$as_me:$LINENO: checking for mi_stop in -lmilter" >&5
20481
-echo $ECHO_N "checking for mi_stop in -lmilter... $ECHO_C" >&6; }
20480
+	{ $as_echo "$as_me:$LINENO: checking for mi_stop in -lmilter" >&5
20481
+$as_echo_n "checking for mi_stop in -lmilter... " >&6; }
20482 20482
 if test "${ac_cv_lib_milter_mi_stop+set}" = set; then
20483
-  echo $ECHO_N "(cached) $ECHO_C" >&6
20483
+  $as_echo_n "(cached) " >&6
20484 20484
 else
20485 20485
   ac_check_lib_save_LIBS=$LIBS
20486 20486
 LIBS="-lmilter  $LIBS"
... ...
@@ -20512,38 +21137,42 @@ case "(($ac_try" in
20512 20512
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
20513 20513
   *) ac_try_echo=$ac_try;;
20514 20514
 esac
20515
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
20515
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
20516
+$as_echo "$ac_try_echo") >&5
20516 20517
   (eval "$ac_link") 2>conftest.er1
20517 20518
   ac_status=$?
20518 20519
   grep -v '^ *+' conftest.er1 >conftest.err
20519 20520
   rm -f conftest.er1
20520 20521
   cat conftest.err >&5
20521
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
20522
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
20522 20523
   (exit $ac_status); } && {
20523 20524
 	 test -z "$ac_c_werror_flag" ||
20524 20525
 	 test ! -s conftest.err
20525
-       } && test -s conftest$ac_exeext &&
20526
-       $as_test_x conftest$ac_exeext; then
20526
+       } && test -s conftest$ac_exeext && {
20527
+	 test "$cross_compiling" = yes ||
20528
+	 $as_test_x conftest$ac_exeext
20529
+       }; then
20527 20530
   ac_cv_lib_milter_mi_stop=yes
20528 20531
 else
20529
-  echo "$as_me: failed program was:" >&5
20532
+  $as_echo "$as_me: failed program was:" >&5
20530 20533
 sed 's/^/| /' conftest.$ac_ext >&5
20531 20534
 
20532 20535
 	ac_cv_lib_milter_mi_stop=no
20533 20536
 fi
20534 20537
 
20538
+rm -rf conftest.dSYM
20535 20539
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
20536 20540
       conftest$ac_exeext conftest.$ac_ext
20537 20541
 LIBS=$ac_check_lib_save_LIBS
20538 20542
 fi
20539
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_milter_mi_stop" >&5
20540
-echo "${ECHO_T}$ac_cv_lib_milter_mi_stop" >&6; }
20541
-if test $ac_cv_lib_milter_mi_stop = yes; then
20543
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_milter_mi_stop" >&5
20544
+$as_echo "$ac_cv_lib_milter_mi_stop" >&6; }
20545
+if test "x$ac_cv_lib_milter_mi_stop" = x""yes; then
20542 20546
   CLAMAV_MILTER_LIBS="-lmilter $CLAMAV_MILTER_XLIB $CLAMAV_MILTER_LIBS"
20543 20547
 else
20544 20548
 
20545
-	    { { echo "$as_me:$LINENO: error: Cannot find libmilter" >&5
20546
-echo "$as_me: error: Cannot find libmilter" >&2;}
20549
+	    { { $as_echo "$as_me:$LINENO: error: Cannot find libmilter" >&5
20550
+$as_echo "$as_me: error: Cannot find libmilter" >&2;}
20547 20551
    { (exit 1); exit 1; }; }
20548 20552
 
20549 20553
 fi
... ...
@@ -20555,20 +21184,21 @@ fi
20555 20555
 
20556 20556
 for ac_header in libmilter/mfapi.h
20557 20557
 do
20558
-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
20558
+as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
20559 20559
 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
20560
-  { echo "$as_me:$LINENO: checking for $ac_header" >&5
20561
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
20560
+  { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
20561
+$as_echo_n "checking for $ac_header... " >&6; }
20562 20562
 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
20563
-  echo $ECHO_N "(cached) $ECHO_C" >&6
20563
+  $as_echo_n "(cached) " >&6
20564 20564
 fi
20565
-ac_res=`eval echo '${'$as_ac_Header'}'`
20566
-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
20567
-echo "${ECHO_T}$ac_res" >&6; }
20565
+ac_res=`eval 'as_val=${'$as_ac_Header'}
20566
+		 $as_echo "$as_val"'`
20567
+	       { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
20568
+$as_echo "$ac_res" >&6; }
20568 20569
 else
20569 20570
   # Is the header compilable?
20570
-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
20571
-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
20571
+{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5
20572
+$as_echo_n "checking $ac_header usability... " >&6; }
20572 20573
 cat >conftest.$ac_ext <<_ACEOF
20573 20574
 /* confdefs.h.  */
20574 20575
 _ACEOF
... ...
@@ -20584,32 +21214,33 @@ case "(($ac_try" in
20584 20584
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
20585 20585
   *) ac_try_echo=$ac_try;;
20586 20586
 esac
20587
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
20587
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
20588
+$as_echo "$ac_try_echo") >&5
20588 20589
   (eval "$ac_compile") 2>conftest.er1
20589 20590
   ac_status=$?
20590 20591
   grep -v '^ *+' conftest.er1 >conftest.err
20591 20592
   rm -f conftest.er1
20592 20593
   cat conftest.err >&5
20593
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
20594
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
20594 20595
   (exit $ac_status); } && {
20595 20596
 	 test -z "$ac_c_werror_flag" ||
20596 20597
 	 test ! -s conftest.err
20597 20598
        } && test -s conftest.$ac_objext; then
20598 20599
   ac_header_compiler=yes
20599 20600
 else
20600
-  echo "$as_me: failed program was:" >&5
20601
+  $as_echo "$as_me: failed program was:" >&5
20601 20602
 sed 's/^/| /' conftest.$ac_ext >&5
20602 20603
 
20603 20604
 	ac_header_compiler=no
20604 20605
 fi
20605 20606
 
20606 20607
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
20607
-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
20608
-echo "${ECHO_T}$ac_header_compiler" >&6; }
20608
+{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
20609
+$as_echo "$ac_header_compiler" >&6; }
20609 20610
 
20610 20611
 # Is the header present?
20611
-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
20612
-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
20612
+{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5
20613
+$as_echo_n "checking $ac_header presence... " >&6; }
20613 20614
 cat >conftest.$ac_ext <<_ACEOF
20614 20615
 /* confdefs.h.  */
20615 20616
 _ACEOF
... ...
@@ -20623,51 +21254,52 @@ case "(($ac_try" in
20623 20623
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
20624 20624
   *) ac_try_echo=$ac_try;;
20625 20625
 esac
20626
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
20626
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
20627
+$as_echo "$ac_try_echo") >&5
20627 20628
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
20628 20629
   ac_status=$?
20629 20630
   grep -v '^ *+' conftest.er1 >conftest.err
20630 20631
   rm -f conftest.er1
20631 20632
   cat conftest.err >&5
20632
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
20633
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
20633 20634
   (exit $ac_status); } >/dev/null && {
20634 20635
 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
20635 20636
 	 test ! -s conftest.err
20636 20637
        }; then
20637 20638
   ac_header_preproc=yes
20638 20639
 else
20639
-  echo "$as_me: failed program was:" >&5
20640
+  $as_echo "$as_me: failed program was:" >&5
20640 20641
 sed 's/^/| /' conftest.$ac_ext >&5
20641 20642
 
20642 20643
   ac_header_preproc=no
20643 20644
 fi
20644 20645
 
20645 20646
 rm -f conftest.err conftest.$ac_ext
20646
-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
20647
-echo "${ECHO_T}$ac_header_preproc" >&6; }
20647
+{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
20648
+$as_echo "$ac_header_preproc" >&6; }
20648 20649
 
20649 20650
 # So?  What about this header?
20650 20651
 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
20651 20652
   yes:no: )
20652
-    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
20653
-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
20654
-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
20655
-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
20653
+    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
20654
+$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
20655
+    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
20656
+$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
20656 20657
     ac_header_preproc=yes
20657 20658
     ;;
20658 20659
   no:yes:* )
20659
-    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
20660
-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
20661
-    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
20662
-echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
20663
-    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
20664
-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
20665
-    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
20666
-echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
20667
-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
20668
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
20669
-    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
20670
-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
20660
+    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
20661
+$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
20662
+    { $as_echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
20663
+$as_echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
20664
+    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
20665
+$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
20666
+    { $as_echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
20667
+$as_echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
20668
+    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
20669
+$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
20670
+    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
20671
+$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
20671 20672
     ( cat <<\_ASBOX
20672 20673
 ## -------------------------------------- ##
20673 20674
 ## Report this to http://bugs.clamav.net/ ##
... ...
@@ -20676,27 +21308,30 @@ _ASBOX
20676 20676
      ) | sed "s/^/$as_me: WARNING:     /" >&2
20677 20677
     ;;
20678 20678
 esac
20679
-{ echo "$as_me:$LINENO: checking for $ac_header" >&5
20680
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
20679
+{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
20680
+$as_echo_n "checking for $ac_header... " >&6; }
20681 20681
 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
20682
-  echo $ECHO_N "(cached) $ECHO_C" >&6
20682
+  $as_echo_n "(cached) " >&6
20683 20683
 else
20684 20684
   eval "$as_ac_Header=\$ac_header_preproc"
20685 20685
 fi
20686
-ac_res=`eval echo '${'$as_ac_Header'}'`
20687
-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
20688
-echo "${ECHO_T}$ac_res" >&6; }
20686
+ac_res=`eval 'as_val=${'$as_ac_Header'}
20687
+		 $as_echo "$as_val"'`
20688
+	       { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
20689
+$as_echo "$ac_res" >&6; }
20689 20690
 
20690 20691
 fi
20691
-if test `eval echo '${'$as_ac_Header'}'` = yes; then
20692
+as_val=`eval 'as_val=${'$as_ac_Header'}
20693
+		 $as_echo "$as_val"'`
20694
+   if test "x$as_val" = x""yes; then
20692 20695
   cat >>confdefs.h <<_ACEOF
20693
-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
20696
+#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
20694 20697
 _ACEOF
20695 20698
  have_milter="yes"
20696 20699
 else
20697 20700
 
20698
-	{ { echo "$as_me:$LINENO: error: Please install mfapi.h from the sendmail distribution" >&5
20699
-echo "$as_me: error: Please install mfapi.h from the sendmail distribution" >&2;}
20701
+	{ { $as_echo "$as_me:$LINENO: error: Please install mfapi.h from the sendmail distribution" >&5
20702
+$as_echo "$as_me: error: Please install mfapi.h from the sendmail distribution" >&2;}
20700 20703
    { (exit 1); exit 1; }; }
20701 20704
 
20702 20705
 fi
... ...
@@ -20730,11 +21365,11 @@ then
20730 20730
 
20731 20731
 for ac_func in sched_yield pthread_yield
20732 20732
 do
20733
-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
20734
-{ echo "$as_me:$LINENO: checking for $ac_func" >&5
20735
-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
20733
+as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
20734
+{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5
20735
+$as_echo_n "checking for $ac_func... " >&6; }
20736 20736
 if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
20737
-  echo $ECHO_N "(cached) $ECHO_C" >&6
20737
+  $as_echo_n "(cached) " >&6
20738 20738
 else
20739 20739
   cat >conftest.$ac_ext <<_ACEOF
20740 20740
 /* confdefs.h.  */
... ...
@@ -20787,35 +21422,42 @@ case "(($ac_try" in
20787 20787
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
20788 20788
   *) ac_try_echo=$ac_try;;
20789 20789
 esac
20790
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
20790
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
20791
+$as_echo "$ac_try_echo") >&5
20791 20792
   (eval "$ac_link") 2>conftest.er1
20792 20793
   ac_status=$?
20793 20794
   grep -v '^ *+' conftest.er1 >conftest.err
20794 20795
   rm -f conftest.er1
20795 20796
   cat conftest.err >&5
20796
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
20797
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
20797 20798
   (exit $ac_status); } && {
20798 20799
 	 test -z "$ac_c_werror_flag" ||
20799 20800
 	 test ! -s conftest.err
20800
-       } && test -s conftest$ac_exeext &&
20801
-       $as_test_x conftest$ac_exeext; then
20801
+       } && test -s conftest$ac_exeext && {
20802
+	 test "$cross_compiling" = yes ||
20803
+	 $as_test_x conftest$ac_exeext
20804
+       }; then
20802 20805
   eval "$as_ac_var=yes"
20803 20806
 else
20804
-  echo "$as_me: failed program was:" >&5
20807
+  $as_echo "$as_me: failed program was:" >&5
20805 20808
 sed 's/^/| /' conftest.$ac_ext >&5
20806 20809
 
20807 20810
 	eval "$as_ac_var=no"
20808 20811
 fi
20809 20812
 
20813
+rm -rf conftest.dSYM
20810 20814
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
20811 20815
       conftest$ac_exeext conftest.$ac_ext
20812 20816
 fi
20813
-ac_res=`eval echo '${'$as_ac_var'}'`
20814
-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
20815
-echo "${ECHO_T}$ac_res" >&6; }
20816
-if test `eval echo '${'$as_ac_var'}'` = yes; then
20817
+ac_res=`eval 'as_val=${'$as_ac_var'}
20818
+		 $as_echo "$as_val"'`
20819
+	       { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
20820
+$as_echo "$ac_res" >&6; }
20821
+as_val=`eval 'as_val=${'$as_ac_var'}
20822
+		 $as_echo "$as_val"'`
20823
+   if test "x$as_val" = x""yes; then
20817 20824
   cat >>confdefs.h <<_ACEOF
20818
-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
20825
+#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
20819 20826
 _ACEOF
20820 20827
 
20821 20828
 fi
... ...
@@ -20829,8 +21471,8 @@ _ACEOF
20829 20829
 
20830 20830
 fi
20831 20831
 
20832
-{ echo "$as_me:$LINENO: checking for gethostbyname_r" >&5
20833
-echo $ECHO_N "checking for gethostbyname_r... $ECHO_C" >&6; }
20832
+{ $as_echo "$as_me:$LINENO: checking for gethostbyname_r" >&5
20833
+$as_echo_n "checking for gethostbyname_r... " >&6; }
20834 20834
 if test -z "$ac_cv_gethostbyname_args"; then
20835 20835
 cat >conftest.$ac_ext <<_ACEOF
20836 20836
 /* confdefs.h.  */
... ...
@@ -20863,20 +21505,21 @@ case "(($ac_try" in
20863 20863
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
20864 20864
   *) ac_try_echo=$ac_try;;
20865 20865
 esac
20866
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
20866
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
20867
+$as_echo "$ac_try_echo") >&5
20867 20868
   (eval "$ac_compile") 2>conftest.er1
20868 20869
   ac_status=$?
20869 20870
   grep -v '^ *+' conftest.er1 >conftest.err
20870 20871
   rm -f conftest.er1
20871 20872
   cat conftest.err >&5
20872
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
20873
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
20873 20874
   (exit $ac_status); } && {
20874 20875
 	 test -z "$ac_c_werror_flag" ||
20875 20876
 	 test ! -s conftest.err
20876 20877
        } && test -s conftest.$ac_objext; then
20877 20878
   ac_cv_gethostbyname_args=5
20878 20879
 else
20879
-  echo "$as_me: failed program was:" >&5
20880
+  $as_echo "$as_me: failed program was:" >&5
20880 20881
 sed 's/^/| /' conftest.$ac_ext >&5
20881 20882
 
20882 20883
 
... ...
@@ -20915,20 +21558,21 @@ case "(($ac_try" in
20915 20915
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
20916 20916
   *) ac_try_echo=$ac_try;;
20917 20917
 esac
20918
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
20918
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
20919
+$as_echo "$ac_try_echo") >&5
20919 20920
   (eval "$ac_compile") 2>conftest.er1
20920 20921
   ac_status=$?
20921 20922
   grep -v '^ *+' conftest.er1 >conftest.err
20922 20923
   rm -f conftest.er1
20923 20924
   cat conftest.err >&5
20924
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
20925
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
20925 20926
   (exit $ac_status); } && {
20926 20927
 	 test -z "$ac_c_werror_flag" ||
20927 20928
 	 test ! -s conftest.err
20928 20929
        } && test -s conftest.$ac_objext; then
20929 20930
   ac_cv_gethostbyname_args=3
20930 20931
 else
20931
-  echo "$as_me: failed program was:" >&5
20932
+  $as_echo "$as_me: failed program was:" >&5
20932 20933
 sed 's/^/| /' conftest.$ac_ext >&5
20933 20934
 
20934 20935
 
... ...
@@ -20970,20 +21614,21 @@ case "(($ac_try" in
20970 20970
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
20971 20971
   *) ac_try_echo=$ac_try;;
20972 20972
 esac
20973
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
20973
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
20974
+$as_echo "$ac_try_echo") >&5
20974 20975
   (eval "$ac_compile") 2>conftest.er1
20975 20976
   ac_status=$?
20976 20977
   grep -v '^ *+' conftest.er1 >conftest.err
20977 20978
   rm -f conftest.er1
20978 20979
   cat conftest.err >&5
20979
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
20980
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
20980 20981
   (exit $ac_status); } && {
20981 20982
 	 test -z "$ac_c_werror_flag" ||
20982 20983
 	 test ! -s conftest.err
20983 20984
        } && test -s conftest.$ac_objext; then
20984 20985
   ac_cv_gethostbyname_args=6
20985 20986
 else
20986
-  echo "$as_me: failed program was:" >&5
20987
+  $as_echo "$as_me: failed program was:" >&5
20987 20988
 sed 's/^/| /' conftest.$ac_ext >&5
20988 20989
 
20989 20990
 
... ...
@@ -20999,11 +21644,11 @@ fi
20999 20999
 
21000 21000
 
21001 21001
 if test "$use_gethostbyname_r" = "no"; then
21002
-    { echo "$as_me:$LINENO: result: support disabled" >&5
21003
-echo "${ECHO_T}support disabled" >&6; }
21002
+    { $as_echo "$as_me:$LINENO: result: support disabled" >&5
21003
+$as_echo "support disabled" >&6; }
21004 21004
 elif test -z "$ac_cv_gethostbyname_args"; then
21005
-    { echo "$as_me:$LINENO: result: no" >&5
21006
-echo "${ECHO_T}no" >&6; }
21005
+    { $as_echo "$as_me:$LINENO: result: no" >&5
21006
+$as_echo "no" >&6; }
21007 21007
 else
21008 21008
     if test "$ac_cv_gethostbyname_args" = 3; then
21009 21009
 
... ...
@@ -21024,13 +21669,13 @@ cat >>confdefs.h <<\_ACEOF
21024 21024
 _ACEOF
21025 21025
 
21026 21026
     fi
21027
-    { echo "$as_me:$LINENO: result: yes, and it takes $ac_cv_gethostbyname_args arguments" >&5
21028
-echo "${ECHO_T}yes, and it takes $ac_cv_gethostbyname_args arguments" >&6; }
21027
+    { $as_echo "$as_me:$LINENO: result: yes, and it takes $ac_cv_gethostbyname_args arguments" >&5
21028
+$as_echo "yes, and it takes $ac_cv_gethostbyname_args arguments" >&6; }
21029 21029
 fi
21030 21030
 
21031 21031
 
21032
-{ echo "$as_me:$LINENO: checking for readdir_r" >&5
21033
-echo $ECHO_N "checking for readdir_r... $ECHO_C" >&6; }
21032
+{ $as_echo "$as_me:$LINENO: checking for readdir_r" >&5
21033
+$as_echo_n "checking for readdir_r... " >&6; }
21034 21034
 if test -z "$ac_cv_readdir_args"; then
21035 21035
     cat >conftest.$ac_ext <<_ACEOF
21036 21036
 /* confdefs.h.  */
... ...
@@ -21060,20 +21705,21 @@ case "(($ac_try" in
21060 21060
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
21061 21061
   *) ac_try_echo=$ac_try;;
21062 21062
 esac
21063
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21063
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
21064
+$as_echo "$ac_try_echo") >&5
21064 21065
   (eval "$ac_compile") 2>conftest.er1
21065 21066
   ac_status=$?
21066 21067
   grep -v '^ *+' conftest.er1 >conftest.err
21067 21068
   rm -f conftest.er1
21068 21069
   cat conftest.err >&5
21069
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
21070
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
21070 21071
   (exit $ac_status); } && {
21071 21072
 	 test -z "$ac_c_werror_flag" ||
21072 21073
 	 test ! -s conftest.err
21073 21074
        } && test -s conftest.$ac_objext; then
21074 21075
   ac_cv_readdir_args=2
21075 21076
 else
21076
-  echo "$as_me: failed program was:" >&5
21077
+  $as_echo "$as_me: failed program was:" >&5
21077 21078
 sed 's/^/| /' conftest.$ac_ext >&5
21078 21079
 
21079 21080
 
... ...
@@ -21111,20 +21757,21 @@ case "(($ac_try" in
21111 21111
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
21112 21112
   *) ac_try_echo=$ac_try;;
21113 21113
 esac
21114
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21114
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
21115
+$as_echo "$ac_try_echo") >&5
21115 21116
   (eval "$ac_compile") 2>conftest.er1
21116 21117
   ac_status=$?
21117 21118
   grep -v '^ *+' conftest.er1 >conftest.err
21118 21119
   rm -f conftest.er1
21119 21120
   cat conftest.err >&5
21120
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
21121
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
21121 21122
   (exit $ac_status); } && {
21122 21123
 	 test -z "$ac_c_werror_flag" ||
21123 21124
 	 test ! -s conftest.err
21124 21125
        } && test -s conftest.$ac_objext; then
21125 21126
   ac_cv_readdir_args=3
21126 21127
 else
21127
-  echo "$as_me: failed program was:" >&5
21128
+  $as_echo "$as_me: failed program was:" >&5
21128 21129
 sed 's/^/| /' conftest.$ac_ext >&5
21129 21130
 
21130 21131
 
... ...
@@ -21142,11 +21789,11 @@ fi
21142 21142
 
21143 21143
 
21144 21144
 if test "$enable_readdir_r" = "no"; then
21145
-    { echo "$as_me:$LINENO: result: support disabled" >&5
21146
-echo "${ECHO_T}support disabled" >&6; }
21145
+    { $as_echo "$as_me:$LINENO: result: support disabled" >&5
21146
+$as_echo "support disabled" >&6; }
21147 21147
 elif test -z "$ac_cv_readdir_args"; then
21148
-    { echo "$as_me:$LINENO: result: no" >&5
21149
-echo "${ECHO_T}no" >&6; }
21148
+    { $as_echo "$as_me:$LINENO: result: no" >&5
21149
+$as_echo "no" >&6; }
21150 21150
 else
21151 21151
     if test "$ac_cv_readdir_args" = 2; then
21152 21152
 
... ...
@@ -21161,12 +21808,12 @@ cat >>confdefs.h <<\_ACEOF
21161 21161
 _ACEOF
21162 21162
 
21163 21163
     fi
21164
-    { echo "$as_me:$LINENO: result: yes, and it takes $ac_cv_readdir_args arguments" >&5
21165
-echo "${ECHO_T}yes, and it takes $ac_cv_readdir_args arguments" >&6; }
21164
+    { $as_echo "$as_me:$LINENO: result: yes, and it takes $ac_cv_readdir_args arguments" >&5
21165
+$as_echo "yes, and it takes $ac_cv_readdir_args arguments" >&6; }
21166 21166
 fi
21167 21167
 
21168
-{ echo "$as_me:$LINENO: checking for ctime_r" >&5
21169
-echo $ECHO_N "checking for ctime_r... $ECHO_C" >&6; }
21168
+{ $as_echo "$as_me:$LINENO: checking for ctime_r" >&5
21169
+$as_echo_n "checking for ctime_r... " >&6; }
21170 21170
 if test "$ac_cv_func_ctime_r" = "yes"; then
21171 21171
     cat >conftest.$ac_ext <<_ACEOF
21172 21172
 /* confdefs.h.  */
... ...
@@ -21195,13 +21842,14 @@ case "(($ac_try" in
21195 21195
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
21196 21196
   *) ac_try_echo=$ac_try;;
21197 21197
 esac
21198
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21198
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
21199
+$as_echo "$ac_try_echo") >&5
21199 21200
   (eval "$ac_compile") 2>conftest.er1
21200 21201
   ac_status=$?
21201 21202
   grep -v '^ *+' conftest.er1 >conftest.err
21202 21203
   rm -f conftest.er1
21203 21204
   cat conftest.err >&5
21204
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
21205
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
21205 21206
   (exit $ac_status); } && {
21206 21207
 	 test -z "$ac_c_werror_flag" ||
21207 21208
 	 test ! -s conftest.err
... ...
@@ -21215,7 +21863,7 @@ _ACEOF
21215 21215
 
21216 21216
 
21217 21217
 else
21218
-  echo "$as_me: failed program was:" >&5
21218
+  $as_echo "$as_me: failed program was:" >&5
21219 21219
 sed 's/^/| /' conftest.$ac_ext >&5
21220 21220
 
21221 21221
 
... ...
@@ -21230,14 +21878,14 @@ fi
21230 21230
 
21231 21231
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
21232 21232
 
21233
-    { echo "$as_me:$LINENO: result: yes, and it takes $ac_cv_ctime_args arguments" >&5
21234
-echo "${ECHO_T}yes, and it takes $ac_cv_ctime_args arguments" >&6; }
21233
+    { $as_echo "$as_me:$LINENO: result: yes, and it takes $ac_cv_ctime_args arguments" >&5
21234
+$as_echo "yes, and it takes $ac_cv_ctime_args arguments" >&6; }
21235 21235
 fi
21236 21236
 
21237
-{ echo "$as_me:$LINENO: checking for socklen_t" >&5
21238
-echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6; }
21237
+{ $as_echo "$as_me:$LINENO: checking for socklen_t" >&5
21238
+$as_echo_n "checking for socklen_t... " >&6; }
21239 21239
 if test "${ac_cv_socklen_t+set}" = set; then
21240
-  echo $ECHO_N "(cached) $ECHO_C" >&6
21240
+  $as_echo_n "(cached) " >&6
21241 21241
 else
21242 21242
 
21243 21243
     ac_cv_socklen_t=no
... ...
@@ -21268,13 +21916,14 @@ case "(($ac_try" in
21268 21268
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
21269 21269
   *) ac_try_echo=$ac_try;;
21270 21270
 esac
21271
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21271
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
21272
+$as_echo "$ac_try_echo") >&5
21272 21273
   (eval "$ac_compile") 2>conftest.er1
21273 21274
   ac_status=$?
21274 21275
   grep -v '^ *+' conftest.er1 >conftest.err
21275 21276
   rm -f conftest.er1
21276 21277
   cat conftest.err >&5
21277
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
21278
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
21278 21279
   (exit $ac_status); } && {
21279 21280
 	 test -z "$ac_c_werror_flag" ||
21280 21281
 	 test ! -s conftest.err
... ...
@@ -21283,7 +21932,7 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21283 21283
 	ac_cv_socklen_t=yes
21284 21284
 
21285 21285
 else
21286
-  echo "$as_me: failed program was:" >&5
21286
+  $as_echo "$as_me: failed program was:" >&5
21287 21287
 sed 's/^/| /' conftest.$ac_ext >&5
21288 21288
 
21289 21289
 
... ...
@@ -21293,13 +21942,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
21293 21293
 
21294 21294
 fi
21295 21295
 
21296
-{ echo "$as_me:$LINENO: result: $ac_cv_socklen_t" >&5
21297
-echo "${ECHO_T}$ac_cv_socklen_t" >&6; }
21296
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_socklen_t" >&5
21297
+$as_echo "$ac_cv_socklen_t" >&6; }
21298 21298
     if test $ac_cv_socklen_t = no; then
21299
-    { echo "$as_me:$LINENO: checking for socklen_t equivalent" >&5
21300
-echo $ECHO_N "checking for socklen_t equivalent... $ECHO_C" >&6; }
21299
+    { $as_echo "$as_me:$LINENO: checking for socklen_t equivalent" >&5
21300
+$as_echo_n "checking for socklen_t equivalent... " >&6; }
21301 21301
     if test "${ac_cv_socklen_t_equiv+set}" = set; then
21302
-  echo $ECHO_N "(cached) $ECHO_C" >&6
21302
+  $as_echo_n "(cached) " >&6
21303 21303
 else
21304 21304
 
21305 21305
 	ac_cv_socklen_t_equiv=int
... ...
@@ -21331,13 +21980,14 @@ case "(($ac_try" in
21331 21331
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
21332 21332
   *) ac_try_echo=$ac_try;;
21333 21333
 esac
21334
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21334
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
21335
+$as_echo "$ac_try_echo") >&5
21335 21336
   (eval "$ac_compile") 2>conftest.er1
21336 21337
   ac_status=$?
21337 21338
   grep -v '^ *+' conftest.er1 >conftest.err
21338 21339
   rm -f conftest.er1
21339 21340
   cat conftest.err >&5
21340
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
21341
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
21341 21342
   (exit $ac_status); } && {
21342 21343
 	 test -z "$ac_c_werror_flag" ||
21343 21344
 	 test ! -s conftest.err
... ...
@@ -21347,7 +21997,7 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21347 21347
 		break
21348 21348
 
21349 21349
 else
21350
-  echo "$as_me: failed program was:" >&5
21350
+  $as_echo "$as_me: failed program was:" >&5
21351 21351
 sed 's/^/| /' conftest.$ac_ext >&5
21352 21352
 
21353 21353
 
... ...
@@ -21358,8 +22008,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
21358 21358
 
21359 21359
 fi
21360 21360
 
21361
-    { echo "$as_me:$LINENO: result: $ac_cv_socklen_t_equiv" >&5
21362
-echo "${ECHO_T}$ac_cv_socklen_t_equiv" >&6; }
21361
+    { $as_echo "$as_me:$LINENO: result: $ac_cv_socklen_t_equiv" >&5
21362
+$as_echo "$ac_cv_socklen_t_equiv" >&6; }
21363 21363
 
21364 21364
 cat >>confdefs.h <<_ACEOF
21365 21365
 #define socklen_t $ac_cv_socklen_t_equiv
... ...
@@ -21371,24 +22021,24 @@ if test "$test_clamav" = "yes"
21371 21371
 then
21372 21372
         if test "$use_id" = "no"
21373 21373
     then
21374
-	{ echo "$as_me:$LINENO: checking for $clamav_user in /etc/passwd" >&5
21375
-echo $ECHO_N "checking for $clamav_user in /etc/passwd... $ECHO_C" >&6; }
21374
+	{ $as_echo "$as_me:$LINENO: checking for $clamav_user in /etc/passwd" >&5
21375
+$as_echo_n "checking for $clamav_user in /etc/passwd... " >&6; }
21376 21376
 	if test -r /etc/passwd; then
21377 21377
 	    clamavuser=`cat /etc/passwd|grep "^$clamav_user:"`
21378 21378
 	    clamavgroup=`cat /etc/group|grep "^$clamav_group:"`
21379 21379
 	fi
21380 21380
     else
21381
-	{ echo "$as_me:$LINENO: checking for $clamav_user using id" >&5
21382
-echo $ECHO_N "checking for $clamav_user using id... $ECHO_C" >&6; }
21381
+	{ $as_echo "$as_me:$LINENO: checking for $clamav_user using id" >&5
21382
+$as_echo_n "checking for $clamav_user using id... " >&6; }
21383 21383
 	id $clamav_user > /dev/null 2>&1
21384 21384
 	if test "$?" = 0 ; then
21385 21385
 	    clamavuser=1
21386 21386
 	    # Extract the first word of "getent", so it can be a program name with args.
21387 21387
 set dummy getent; ac_word=$2
21388
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
21389
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
21388
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
21389
+$as_echo_n "checking for $ac_word... " >&6; }
21390 21390
 if test "${ac_cv_path_GETENT+set}" = set; then
21391
-  echo $ECHO_N "(cached) $ECHO_C" >&6
21391
+  $as_echo_n "(cached) " >&6
21392 21392
 else
21393 21393
   case $GETENT in
21394 21394
   [\\/]* | ?:[\\/]*)
... ...
@@ -21403,7 +22053,7 @@ do
21403 21403
   for ac_exec_ext in '' $ac_executable_extensions; do
21404 21404
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
21405 21405
     ac_cv_path_GETENT="$as_dir/$ac_word$ac_exec_ext"
21406
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
21406
+    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
21407 21407
     break 2
21408 21408
   fi
21409 21409
 done
... ...
@@ -21415,11 +22065,11 @@ esac
21415 21415
 fi
21416 21416
 GETENT=$ac_cv_path_GETENT
21417 21417
 if test -n "$GETENT"; then
21418
-  { echo "$as_me:$LINENO: result: $GETENT" >&5
21419
-echo "${ECHO_T}$GETENT" >&6; }
21418
+  { $as_echo "$as_me:$LINENO: result: $GETENT" >&5
21419
+$as_echo "$GETENT" >&6; }
21420 21420
 else
21421
-  { echo "$as_me:$LINENO: result: no" >&5
21422
-echo "${ECHO_T}no" >&6; }
21421
+  { $as_echo "$as_me:$LINENO: result: no" >&5
21422
+$as_echo "no" >&6; }
21423 21423
 fi
21424 21424
 
21425 21425
 
... ...
@@ -21434,13 +22084,13 @@ fi
21434 21434
     if test "$use_netinfo" = "yes"
21435 21435
     then
21436 21436
 	if test -x /usr/bin/dscl; then
21437
-	    { echo "$as_me:$LINENO: checking for $clamav_user using dscl" >&5
21438
-echo $ECHO_N "checking for $clamav_user using dscl... $ECHO_C" >&6; }
21437
+	    { $as_echo "$as_me:$LINENO: checking for $clamav_user using dscl" >&5
21438
+$as_echo_n "checking for $clamav_user using dscl... " >&6; }
21439 21439
 	    clamavuser=`/usr/bin/dscl . -list /Users |grep ${clamav_user}`
21440 21440
 	    clamavgroup=`/usr/bin/dscl . -list /Groups |grep ${clamav_group}`
21441 21441
 	else
21442
-	    { echo "$as_me:$LINENO: checking for $clamav_user using netinfo" >&5
21443
-echo $ECHO_N "checking for $clamav_user using netinfo... $ECHO_C" >&6; }
21442
+	    { $as_echo "$as_me:$LINENO: checking for $clamav_user using netinfo" >&5
21443
+$as_echo_n "checking for $clamav_user using netinfo... " >&6; }
21444 21444
 	    clamavuser=`/usr/bin/nidump passwd . |grep ${clamav_user}`
21445 21445
 	    clamavgroup=`/usr/bin/nidump group . |grep ${clamav_group}`
21446 21446
 	fi
... ...
@@ -21448,22 +22098,22 @@ echo $ECHO_N "checking for $clamav_user using netinfo... $ECHO_C" >&6; }
21448 21448
 
21449 21449
     if test "$use_yp" = "yes"
21450 21450
     then
21451
-	{ echo "$as_me:$LINENO: checking for $clamav_user using ypmatch" >&5
21452
-echo $ECHO_N "checking for $clamav_user using ypmatch... $ECHO_C" >&6; }
21451
+	{ $as_echo "$as_me:$LINENO: checking for $clamav_user using ypmatch" >&5
21452
+$as_echo_n "checking for $clamav_user using ypmatch... " >&6; }
21453 21453
         clamavuser=`ypmatch ${clamav_user} passwd`
21454 21454
         clamavgroup=`ypmatch ${clamav_group} group`
21455 21455
     fi
21456 21456
 
21457 21457
     if test -z "$clamavuser" || test -z "$clamavgroup"
21458 21458
     then
21459
-	{ echo "$as_me:$LINENO: result: no" >&5
21460
-echo "${ECHO_T}no" >&6; }
21461
-	{ { echo "$as_me:$LINENO: error: User $clamav_user (and/or group $clamav_group) doesn't exist. Please read the documentation !" >&5
21462
-echo "$as_me: error: User $clamav_user (and/or group $clamav_group) doesn't exist. Please read the documentation !" >&2;}
21459
+	{ $as_echo "$as_me:$LINENO: result: no" >&5
21460
+$as_echo "no" >&6; }
21461
+	{ { $as_echo "$as_me:$LINENO: error: User $clamav_user (and/or group $clamav_group) doesn't exist. Please read the documentation !" >&5
21462
+$as_echo "$as_me: error: User $clamav_user (and/or group $clamav_group) doesn't exist. Please read the documentation !" >&2;}
21463 21463
    { (exit 1); exit 1; }; }
21464 21464
     else
21465
-	{ echo "$as_me:$LINENO: result: yes, user $clamav_user and group $clamav_group" >&5
21466
-echo "${ECHO_T}yes, user $clamav_user and group $clamav_group" >&6; }
21465
+	{ $as_echo "$as_me:$LINENO: result: yes, user $clamav_user and group $clamav_group" >&5
21466
+$as_echo "yes, user $clamav_user and group $clamav_group" >&6; }
21467 21467
         CLAMAVUSER="$clamav_user"
21468 21468
         CLAMAVGROUP="$clamav_group"
21469 21469
 
... ...
@@ -21471,10 +22121,10 @@ echo "${ECHO_T}yes, user $clamav_user and group $clamav_group" >&6; }
21471 21471
     fi
21472 21472
 fi
21473 21473
 
21474
-{ echo "$as_me:$LINENO: checking for structure packing via __attribute__((packed))" >&5
21475
-echo $ECHO_N "checking for structure packing via __attribute__((packed))... $ECHO_C" >&6; }
21476
-if test "${have_attrib_packed+set}" = set; then
21477
-  echo $ECHO_N "(cached) $ECHO_C" >&6
21474
+{ $as_echo "$as_me:$LINENO: checking for structure packing via __attribute__((packed))" >&5
21475
+$as_echo_n "checking for structure packing via __attribute__((packed))... " >&6; }
21476
+if test "${have_cv_attrib_packed+set}" = set; then
21477
+  $as_echo_n "(cached) " >&6
21478 21478
 else
21479 21479
 
21480 21480
 	cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -21502,45 +22152,48 @@ case "(($ac_try" in
21502 21502
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
21503 21503
   *) ac_try_echo=$ac_try;;
21504 21504
 esac
21505
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21505
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
21506
+$as_echo "$ac_try_echo") >&5
21506 21507
   (eval "$ac_compile") 2>conftest.er1
21507 21508
   ac_status=$?
21508 21509
   grep -v '^ *+' conftest.er1 >conftest.err
21509 21510
   rm -f conftest.er1
21510 21511
   cat conftest.err >&5
21511
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
21512
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
21512 21513
   (exit $ac_status); } && {
21513 21514
 	 test -z "$ac_c_werror_flag" ||
21514 21515
 	 test ! -s conftest.err
21515 21516
        } && test -s conftest.$ac_objext; then
21516
-  have_attrib_packed=yes
21517
+  have_cv_attrib_packed=yes
21517 21518
 else
21518
-  echo "$as_me: failed program was:" >&5
21519
+  $as_echo "$as_me: failed program was:" >&5
21519 21520
 sed 's/^/| /' conftest.$ac_ext >&5
21520 21521
 
21521
-	have_attrib_packed=no
21522
+	have_cv_attrib_packed=no
21522 21523
 fi
21523 21524
 
21524 21525
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
21525 21526
 
21526 21527
 fi
21527 21528
 
21528
-{ echo "$as_me:$LINENO: result: $have_attrib_packed" >&5
21529
-echo "${ECHO_T}$have_attrib_packed" >&6; }
21529
+{ $as_echo "$as_me:$LINENO: result: $have_cv_attrib_packed" >&5
21530
+$as_echo "$have_cv_attrib_packed" >&6; }
21530 21531
 
21531
-if test "$have_attrib_packed" = no; then
21532
-	{ echo "$as_me:$LINENO: checking for structure packing via pragma" >&5
21533
-echo $ECHO_N "checking for structure packing via pragma... $ECHO_C" >&6; }
21534
-	if test "${have_pragma_pack+set}" = set; then
21535
-  echo $ECHO_N "(cached) $ECHO_C" >&6
21532
+if test "$have_cv_attrib_packed" = no; then
21533
+	{ $as_echo "$as_me:$LINENO: checking for structure packing via pragma" >&5
21534
+$as_echo_n "checking for structure packing via pragma... " >&6; }
21535
+	if test "${have_cv_pragma_pack+set}" = set; then
21536
+  $as_echo_n "(cached) " >&6
21536 21537
 else
21537 21538
 
21538 21539
 		if test "$cross_compiling" = yes; then
21539
-  { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
21540
+  { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
21541
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
21542
+{ { $as_echo "$as_me:$LINENO: error: cannot run test program while cross compiling
21540 21543
 See \`config.log' for more details." >&5
21541
-echo "$as_me: error: cannot run test program while cross compiling
21544
+$as_echo "$as_me: error: cannot run test program while cross compiling
21542 21545
 See \`config.log' for more details." >&2;}
21543
-   { (exit 1); exit 1; }; }
21546
+   { (exit 1); exit 1; }; }; }
21544 21547
 else
21545 21548
   cat >conftest.$ac_ext <<_ACEOF
21546 21549
 /* confdefs.h.  */
... ...
@@ -21560,29 +22213,32 @@ case "(($ac_try" in
21560 21560
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
21561 21561
   *) ac_try_echo=$ac_try;;
21562 21562
 esac
21563
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21563
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
21564
+$as_echo "$ac_try_echo") >&5
21564 21565
   (eval "$ac_link") 2>&5
21565 21566
   ac_status=$?
21566
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
21567
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
21567 21568
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
21568 21569
   { (case "(($ac_try" in
21569 21570
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
21570 21571
   *) ac_try_echo=$ac_try;;
21571 21572
 esac
21572
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21573
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
21574
+$as_echo "$ac_try_echo") >&5
21573 21575
   (eval "$ac_try") 2>&5
21574 21576
   ac_status=$?
21575
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
21577
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
21576 21578
   (exit $ac_status); }; }; then
21577
-  have_pragma_pack=yes
21579
+  have_cv_pragma_pack=yes
21578 21580
 else
21579
-  echo "$as_me: program exited with status $ac_status" >&5
21580
-echo "$as_me: failed program was:" >&5
21581
+  $as_echo "$as_me: program exited with status $ac_status" >&5
21582
+$as_echo "$as_me: failed program was:" >&5
21581 21583
 sed 's/^/| /' conftest.$ac_ext >&5
21582 21584
 
21583 21585
 ( exit $ac_status )
21584
-have_pragma_pack=no
21586
+have_cv_pragma_pack=no
21585 21587
 fi
21588
+rm -rf conftest.dSYM
21586 21589
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
21587 21590
 fi
21588 21591
 
... ...
@@ -21590,27 +22246,29 @@ fi
21590 21590
 
21591 21591
 fi
21592 21592
 
21593
-	{ echo "$as_me:$LINENO: result: $have_pragma_pack" >&5
21594
-echo "${ECHO_T}$have_pragma_pack" >&6; }
21595
-	if test "$have_pragma_pack" = yes; then
21593
+	{ $as_echo "$as_me:$LINENO: result: $have_cv_pragma_pack" >&5
21594
+$as_echo "$have_cv_pragma_pack" >&6; }
21595
+	if test "$have_cv_pragma_pack" = yes; then
21596 21596
 
21597 21597
 cat >>confdefs.h <<\_ACEOF
21598 21598
 #define HAVE_PRAGMA_PACK 1
21599 21599
 _ACEOF
21600 21600
 
21601 21601
 	else
21602
-		{ echo "$as_me:$LINENO: checking for structure packing via hppa/hp-ux pragma" >&5
21603
-echo $ECHO_N "checking for structure packing via hppa/hp-ux pragma... $ECHO_C" >&6; }
21604
-		if test "${have_pragma_pack_hpux+set}" = set; then
21605
-  echo $ECHO_N "(cached) $ECHO_C" >&6
21602
+		{ $as_echo "$as_me:$LINENO: checking for structure packing via hppa/hp-ux pragma" >&5
21603
+$as_echo_n "checking for structure packing via hppa/hp-ux pragma... " >&6; }
21604
+		if test "${have_cv_pragma_pack_hpux+set}" = set; then
21605
+  $as_echo_n "(cached) " >&6
21606 21606
 else
21607 21607
 
21608 21608
 			if test "$cross_compiling" = yes; then
21609
-  { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
21609
+  { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
21610
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
21611
+{ { $as_echo "$as_me:$LINENO: error: cannot run test program while cross compiling
21610 21612
 See \`config.log' for more details." >&5
21611
-echo "$as_me: error: cannot run test program while cross compiling
21613
+$as_echo "$as_me: error: cannot run test program while cross compiling
21612 21614
 See \`config.log' for more details." >&2;}
21613
-   { (exit 1); exit 1; }; }
21615
+   { (exit 1); exit 1; }; }; }
21614 21616
 else
21615 21617
   cat >conftest.$ac_ext <<_ACEOF
21616 21618
 /* confdefs.h.  */
... ...
@@ -21631,29 +22289,32 @@ case "(($ac_try" in
21631 21631
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
21632 21632
   *) ac_try_echo=$ac_try;;
21633 21633
 esac
21634
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21634
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
21635
+$as_echo "$ac_try_echo") >&5
21635 21636
   (eval "$ac_link") 2>&5
21636 21637
   ac_status=$?
21637
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
21638
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
21638 21639
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
21639 21640
   { (case "(($ac_try" in
21640 21641
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
21641 21642
   *) ac_try_echo=$ac_try;;
21642 21643
 esac
21643
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21644
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
21645
+$as_echo "$ac_try_echo") >&5
21644 21646
   (eval "$ac_try") 2>&5
21645 21647
   ac_status=$?
21646
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
21648
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
21647 21649
   (exit $ac_status); }; }; then
21648
-  have_pragma_pack_hpux=yes
21650
+  have_cv_pragma_pack_hpux=yes
21649 21651
 else
21650
-  echo "$as_me: program exited with status $ac_status" >&5
21651
-echo "$as_me: failed program was:" >&5
21652
+  $as_echo "$as_me: program exited with status $ac_status" >&5
21653
+$as_echo "$as_me: failed program was:" >&5
21652 21654
 sed 's/^/| /' conftest.$ac_ext >&5
21653 21655
 
21654 21656
 ( exit $ac_status )
21655
-have_pragma_pack_hpux=no
21657
+have_cv_pragma_pack_hpux=no
21656 21658
 fi
21659
+rm -rf conftest.dSYM
21657 21660
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
21658 21661
 fi
21659 21662
 
... ...
@@ -21661,8 +22322,8 @@ fi
21661 21661
 
21662 21662
 fi
21663 21663
 
21664
-		{ echo "$as_me:$LINENO: result: $have_pragma_pack_hpux" >&5
21665
-echo "${ECHO_T}$have_pragma_pack_hpux" >&6; }
21664
+		{ $as_echo "$as_me:$LINENO: result: $have_cv_pragma_pack_hpux" >&5
21665
+$as_echo "$have_cv_pragma_pack_hpux" >&6; }
21666 21666
 
21667 21667
 cat >>confdefs.h <<\_ACEOF
21668 21668
 #define HAVE_PRAGMA_PACK_HPPA 1
... ...
@@ -21671,10 +22332,10 @@ _ACEOF
21671 21671
 	fi
21672 21672
 fi
21673 21673
 
21674
-{ echo "$as_me:$LINENO: checking for type aligning via __attribute__((aligned))" >&5
21675
-echo $ECHO_N "checking for type aligning via __attribute__((aligned))... $ECHO_C" >&6; }
21676
-if test "${have_attrib_aligned+set}" = set; then
21677
-  echo $ECHO_N "(cached) $ECHO_C" >&6
21674
+{ $as_echo "$as_me:$LINENO: checking for type aligning via __attribute__((aligned))" >&5
21675
+$as_echo_n "checking for type aligning via __attribute__((aligned))... " >&6; }
21676
+if test "${have_cv_attrib_aligned+set}" = set; then
21677
+  $as_echo_n "(cached) " >&6
21678 21678
 else
21679 21679
 
21680 21680
 	cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -21698,39 +22359,40 @@ case "(($ac_try" in
21698 21698
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
21699 21699
   *) ac_try_echo=$ac_try;;
21700 21700
 esac
21701
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21701
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
21702
+$as_echo "$ac_try_echo") >&5
21702 21703
   (eval "$ac_compile") 2>conftest.er1
21703 21704
   ac_status=$?
21704 21705
   grep -v '^ *+' conftest.er1 >conftest.err
21705 21706
   rm -f conftest.er1
21706 21707
   cat conftest.err >&5
21707
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
21708
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
21708 21709
   (exit $ac_status); } && {
21709 21710
 	 test -z "$ac_c_werror_flag" ||
21710 21711
 	 test ! -s conftest.err
21711 21712
        } && test -s conftest.$ac_objext; then
21712
-  have_attrib_aligned=yes
21713
+  have_cv_attrib_aligned=yes
21713 21714
 else
21714
-  echo "$as_me: failed program was:" >&5
21715
+  $as_echo "$as_me: failed program was:" >&5
21715 21716
 sed 's/^/| /' conftest.$ac_ext >&5
21716 21717
 
21717
-	have_attrib_aligned=no
21718
+	have_cv_attrib_aligned=no
21718 21719
 fi
21719 21720
 
21720 21721
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
21721 21722
 
21722 21723
 fi
21723 21724
 
21724
-{ echo "$as_me:$LINENO: result: $have_attrib_aligned" >&5
21725
-echo "${ECHO_T}$have_attrib_aligned" >&6; }
21725
+{ $as_echo "$as_me:$LINENO: result: $have_cv_attrib_aligned" >&5
21726
+$as_echo "$have_cv_attrib_aligned" >&6; }
21726 21727
 
21727
-if test "$have_attrib_packed" = no -a "$have_pragma_pack" = no -a "$have_pragma_pack_hpux" = no; then
21728
-	{ { echo "$as_me:$LINENO: error: Need to know how to pack structures with this compiler" >&5
21729
-echo "$as_me: error: Need to know how to pack structures with this compiler" >&2;}
21728
+if test "$have_cv_attrib_packed" = no -a "$have_cv_pragma_pack" = no -a "$have_cv_pragma_pack_hpux" = no; then
21729
+	{ { $as_echo "$as_me:$LINENO: error: Need to know how to pack structures with this compiler" >&5
21730
+$as_echo "$as_me: error: Need to know how to pack structures with this compiler" >&2;}
21730 21731
    { (exit 1); exit 1; }; }
21731 21732
 fi
21732 21733
 
21733
-if test "$have_attrib_packed" = yes; then
21734
+if test "$have_cv_attrib_packed" = yes; then
21734 21735
 
21735 21736
 cat >>confdefs.h <<\_ACEOF
21736 21737
 #define HAVE_ATTRIB_PACKED 1
... ...
@@ -21738,7 +22400,7 @@ _ACEOF
21738 21738
 
21739 21739
 fi
21740 21740
 
21741
-if test "$have_attrib_aligned" = yes; then
21741
+if test "$have_cv_attrib_aligned" = yes; then
21742 21742
 
21743 21743
 cat >>confdefs.h <<\_ACEOF
21744 21744
 #define HAVE_ATTRIB_ALIGNED 1
... ...
@@ -21746,8 +22408,8 @@ _ACEOF
21746 21746
 
21747 21747
 fi
21748 21748
 
21749
-{ echo "$as_me:$LINENO: checking for fd_set" >&5
21750
-echo $ECHO_N "checking for fd_set... $ECHO_C" >&6; }
21749
+{ $as_echo "$as_me:$LINENO: checking for fd_set" >&5
21750
+$as_echo_n "checking for fd_set... " >&6; }
21751 21751
 cat >conftest.$ac_ext <<_ACEOF
21752 21752
 /* confdefs.h.  */
21753 21753
 _ACEOF
... ...
@@ -21769,8 +22431,8 @@ cat >>confdefs.h <<\_ACEOF
21769 21769
 #define HAVE_SYS_SELECT_H 1
21770 21770
 _ACEOF
21771 21771
 
21772
-	{ echo "$as_me:$LINENO: result: yes, found in sys/select.h" >&5
21773
-echo "${ECHO_T}yes, found in sys/select.h" >&6; }
21772
+	{ $as_echo "$as_me:$LINENO: result: yes, found in sys/select.h" >&5
21773
+$as_echo "yes, found in sys/select.h" >&6; }
21774 21774
 else
21775 21775
 	cat >conftest.$ac_ext <<_ACEOF
21776 21776
 /* confdefs.h.  */
... ...
@@ -21797,20 +22459,21 @@ case "(($ac_try" in
21797 21797
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
21798 21798
   *) ac_try_echo=$ac_try;;
21799 21799
 esac
21800
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21800
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
21801
+$as_echo "$ac_try_echo") >&5
21801 21802
   (eval "$ac_compile") 2>conftest.er1
21802 21803
   ac_status=$?
21803 21804
   grep -v '^ *+' conftest.er1 >conftest.err
21804 21805
   rm -f conftest.er1
21805 21806
   cat conftest.err >&5
21806
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
21807
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
21807 21808
   (exit $ac_status); } && {
21808 21809
 	 test -z "$ac_c_werror_flag" ||
21809 21810
 	 test ! -s conftest.err
21810 21811
        } && test -s conftest.$ac_objext; then
21811 21812
   have_fd_set=yes
21812 21813
 else
21813
-  echo "$as_me: failed program was:" >&5
21814
+  $as_echo "$as_me: failed program was:" >&5
21814 21815
 sed 's/^/| /' conftest.$ac_ext >&5
21815 21816
 
21816 21817
 	have_fd_set=no
... ...
@@ -21818,21 +22481,21 @@ fi
21818 21818
 
21819 21819
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
21820 21820
 	if test "$have_fd_set" = yes; then
21821
-		{ echo "$as_me:$LINENO: result: yes, found in sys/types.h" >&5
21822
-echo "${ECHO_T}yes, found in sys/types.h" >&6; }
21821
+		{ $as_echo "$as_me:$LINENO: result: yes, found in sys/types.h" >&5
21822
+$as_echo "yes, found in sys/types.h" >&6; }
21823 21823
 	else
21824 21824
 
21825 21825
 cat >>confdefs.h <<\_ACEOF
21826 21826
 #define NO_FD_SET 1
21827 21827
 _ACEOF
21828 21828
 
21829
-		{ echo "$as_me:$LINENO: result: no" >&5
21830
-echo "${ECHO_T}no" >&6; }
21829
+		{ $as_echo "$as_me:$LINENO: result: no" >&5
21830
+$as_echo "no" >&6; }
21831 21831
 	fi
21832 21832
 fi
21833 21833
 
21834
-{ echo "$as_me:$LINENO: checking default FD_SETSIZE value" >&5
21835
-echo $ECHO_N "checking default FD_SETSIZE value... $ECHO_C" >&6; }
21834
+{ $as_echo "$as_me:$LINENO: checking default FD_SETSIZE value" >&5
21835
+$as_echo_n "checking default FD_SETSIZE value... " >&6; }
21836 21836
 if test "$cross_compiling" = yes; then
21837 21837
   DEFAULT_FD_SETSIZE=256
21838 21838
 else
... ...
@@ -21874,43 +22537,46 @@ case "(($ac_try" in
21874 21874
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
21875 21875
   *) ac_try_echo=$ac_try;;
21876 21876
 esac
21877
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21877
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
21878
+$as_echo "$ac_try_echo") >&5
21878 21879
   (eval "$ac_link") 2>&5
21879 21880
   ac_status=$?
21880
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
21881
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
21881 21882
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
21882 21883
   { (case "(($ac_try" in
21883 21884
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
21884 21885
   *) ac_try_echo=$ac_try;;
21885 21886
 esac
21886
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21887
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
21888
+$as_echo "$ac_try_echo") >&5
21887 21889
   (eval "$ac_try") 2>&5
21888 21890
   ac_status=$?
21889
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
21891
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
21890 21892
   (exit $ac_status); }; }; then
21891 21893
   DEFAULT_FD_SETSIZE=`cat conftestval`
21892 21894
 else
21893
-  echo "$as_me: program exited with status $ac_status" >&5
21894
-echo "$as_me: failed program was:" >&5
21895
+  $as_echo "$as_me: program exited with status $ac_status" >&5
21896
+$as_echo "$as_me: failed program was:" >&5
21895 21897
 sed 's/^/| /' conftest.$ac_ext >&5
21896 21898
 
21897 21899
 ( exit $ac_status )
21898 21900
 DEFAULT_FD_SETSIZE=256
21899 21901
 fi
21902
+rm -rf conftest.dSYM
21900 21903
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
21901 21904
 fi
21902 21905
 
21903 21906
 
21904
-{ echo "$as_me:$LINENO: result: $DEFAULT_FD_SETSIZE" >&5
21905
-echo "${ECHO_T}$DEFAULT_FD_SETSIZE" >&6; }
21907
+{ $as_echo "$as_me:$LINENO: result: $DEFAULT_FD_SETSIZE" >&5
21908
+$as_echo "$DEFAULT_FD_SETSIZE" >&6; }
21906 21909
 
21907 21910
 cat >>confdefs.h <<_ACEOF
21908 21911
 #define DEFAULT_FD_SETSIZE $DEFAULT_FD_SETSIZE
21909 21912
 _ACEOF
21910 21913
 
21911 21914
 
21912
-{ echo "$as_me:$LINENO: checking whether signed right shift is sign extended" >&5
21913
-echo $ECHO_N "checking whether signed right shift is sign extended... $ECHO_C" >&6; }
21915
+{ $as_echo "$as_me:$LINENO: checking whether signed right shift is sign extended" >&5
21916
+$as_echo_n "checking whether signed right shift is sign extended... " >&6; }
21914 21917
 if test "$cross_compiling" = yes; then
21915 21918
   have_signed_rightshift_extended=no
21916 21919
 else
... ...
@@ -21928,29 +22594,32 @@ case "(($ac_try" in
21928 21928
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
21929 21929
   *) ac_try_echo=$ac_try;;
21930 21930
 esac
21931
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21931
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
21932
+$as_echo "$ac_try_echo") >&5
21932 21933
   (eval "$ac_link") 2>&5
21933 21934
   ac_status=$?
21934
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
21935
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
21935 21936
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
21936 21937
   { (case "(($ac_try" in
21937 21938
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
21938 21939
   *) ac_try_echo=$ac_try;;
21939 21940
 esac
21940
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
21941
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
21942
+$as_echo "$ac_try_echo") >&5
21941 21943
   (eval "$ac_try") 2>&5
21942 21944
   ac_status=$?
21943
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
21945
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
21944 21946
   (exit $ac_status); }; }; then
21945 21947
   have_signed_rightshift_extended=yes
21946 21948
 else
21947
-  echo "$as_me: program exited with status $ac_status" >&5
21948
-echo "$as_me: failed program was:" >&5
21949
+  $as_echo "$as_me: program exited with status $ac_status" >&5
21950
+$as_echo "$as_me: failed program was:" >&5
21949 21951
 sed 's/^/| /' conftest.$ac_ext >&5
21950 21952
 
21951 21953
 ( exit $ac_status )
21952 21954
 have_signed_rightshift_extended=no
21953 21955
 fi
21956
+rm -rf conftest.dSYM
21954 21957
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
21955 21958
 fi
21956 21959
 
... ...
@@ -21962,19 +22631,19 @@ cat >>confdefs.h <<\_ACEOF
21962 21962
 _ACEOF
21963 21963
 
21964 21964
 fi
21965
-{ echo "$as_me:$LINENO: result: $have_signed_rightshift_extended" >&5
21966
-echo "${ECHO_T}$have_signed_rightshift_extended" >&6; };
21965
+{ $as_echo "$as_me:$LINENO: result: $have_signed_rightshift_extended" >&5
21966
+$as_echo "$have_signed_rightshift_extended" >&6; };
21967 21967
 
21968 21968
 
21969 21969
 
21970 21970
 
21971 21971
 for ac_func in recvmsg sendmsg
21972 21972
 do
21973
-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
21974
-{ echo "$as_me:$LINENO: checking for $ac_func" >&5
21975
-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
21973
+as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
21974
+{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5
21975
+$as_echo_n "checking for $ac_func... " >&6; }
21976 21976
 if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
21977
-  echo $ECHO_N "(cached) $ECHO_C" >&6
21977
+  $as_echo_n "(cached) " >&6
21978 21978
 else
21979 21979
   cat >conftest.$ac_ext <<_ACEOF
21980 21980
 /* confdefs.h.  */
... ...
@@ -22027,44 +22696,51 @@ case "(($ac_try" in
22027 22027
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
22028 22028
   *) ac_try_echo=$ac_try;;
22029 22029
 esac
22030
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
22030
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
22031
+$as_echo "$ac_try_echo") >&5
22031 22032
   (eval "$ac_link") 2>conftest.er1
22032 22033
   ac_status=$?
22033 22034
   grep -v '^ *+' conftest.er1 >conftest.err
22034 22035
   rm -f conftest.er1
22035 22036
   cat conftest.err >&5
22036
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
22037
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
22037 22038
   (exit $ac_status); } && {
22038 22039
 	 test -z "$ac_c_werror_flag" ||
22039 22040
 	 test ! -s conftest.err
22040
-       } && test -s conftest$ac_exeext &&
22041
-       $as_test_x conftest$ac_exeext; then
22041
+       } && test -s conftest$ac_exeext && {
22042
+	 test "$cross_compiling" = yes ||
22043
+	 $as_test_x conftest$ac_exeext
22044
+       }; then
22042 22045
   eval "$as_ac_var=yes"
22043 22046
 else
22044
-  echo "$as_me: failed program was:" >&5
22047
+  $as_echo "$as_me: failed program was:" >&5
22045 22048
 sed 's/^/| /' conftest.$ac_ext >&5
22046 22049
 
22047 22050
 	eval "$as_ac_var=no"
22048 22051
 fi
22049 22052
 
22053
+rm -rf conftest.dSYM
22050 22054
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
22051 22055
       conftest$ac_exeext conftest.$ac_ext
22052 22056
 fi
22053
-ac_res=`eval echo '${'$as_ac_var'}'`
22054
-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
22055
-echo "${ECHO_T}$ac_res" >&6; }
22056
-if test `eval echo '${'$as_ac_var'}'` = yes; then
22057
+ac_res=`eval 'as_val=${'$as_ac_var'}
22058
+		 $as_echo "$as_val"'`
22059
+	       { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
22060
+$as_echo "$ac_res" >&6; }
22061
+as_val=`eval 'as_val=${'$as_ac_var'}
22062
+		 $as_echo "$as_val"'`
22063
+   if test "x$as_val" = x""yes; then
22057 22064
   cat >>confdefs.h <<_ACEOF
22058
-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
22065
+#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
22059 22066
 _ACEOF
22060 22067
 
22061 22068
 fi
22062 22069
 done
22063 22070
 
22064
-{ echo "$as_me:$LINENO: checking for msg_control field in struct msghdr" >&5
22065
-echo $ECHO_N "checking for msg_control field in struct msghdr... $ECHO_C" >&6; }
22071
+{ $as_echo "$as_me:$LINENO: checking for msg_control field in struct msghdr" >&5
22072
+$as_echo_n "checking for msg_control field in struct msghdr... " >&6; }
22066 22073
 if test "${ac_cv_have_control_in_msghdr+set}" = set; then
22067
-  echo $ECHO_N "(cached) $ECHO_C" >&6
22074
+  $as_echo_n "(cached) " >&6
22068 22075
 else
22069 22076
 
22070 22077
     cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -22104,20 +22780,21 @@ case "(($ac_try" in
22104 22104
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
22105 22105
   *) ac_try_echo=$ac_try;;
22106 22106
 esac
22107
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
22107
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
22108
+$as_echo "$ac_try_echo") >&5
22108 22109
   (eval "$ac_compile") 2>conftest.er1
22109 22110
   ac_status=$?
22110 22111
   grep -v '^ *+' conftest.er1 >conftest.err
22111 22112
   rm -f conftest.er1
22112 22113
   cat conftest.err >&5
22113
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
22114
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
22114 22115
   (exit $ac_status); } && {
22115 22116
 	 test -z "$ac_c_werror_flag" ||
22116 22117
 	 test ! -s conftest.err
22117 22118
        } && test -s conftest.$ac_objext; then
22118 22119
    ac_cv_have_control_in_msghdr="yes"
22119 22120
 else
22120
-  echo "$as_me: failed program was:" >&5
22121
+  $as_echo "$as_me: failed program was:" >&5
22121 22122
 sed 's/^/| /' conftest.$ac_ext >&5
22122 22123
 
22123 22124
 	 ac_cv_have_control_in_msghdr="no"
... ...
@@ -22126,8 +22803,8 @@ fi
22126 22126
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
22127 22127
 
22128 22128
 fi
22129
-{ echo "$as_me:$LINENO: result: $ac_cv_have_control_in_msghdr" >&5
22130
-echo "${ECHO_T}$ac_cv_have_control_in_msghdr" >&6; }
22129
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_control_in_msghdr" >&5
22130
+$as_echo "$ac_cv_have_control_in_msghdr" >&6; }
22131 22131
 if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
22132 22132
 
22133 22133
 cat >>confdefs.h <<\_ACEOF
... ...
@@ -22135,8 +22812,8 @@ cat >>confdefs.h <<\_ACEOF
22135 22135
 _ACEOF
22136 22136
 
22137 22137
 
22138
-        { echo "$as_me:$LINENO: checking BSD 4.4 / RFC2292 style fd passing" >&5
22139
-echo $ECHO_N "checking BSD 4.4 / RFC2292 style fd passing... $ECHO_C" >&6; }
22138
+        { $as_echo "$as_me:$LINENO: checking BSD 4.4 / RFC2292 style fd passing" >&5
22139
+$as_echo_n "checking BSD 4.4 / RFC2292 style fd passing... " >&6; }
22140 22140
     # Check whether --enable-fdpassing was given.
22141 22141
 if test "${enable_fdpassing+set}" = set; then
22142 22142
   enableval=$enable_fdpassing; want_fdpassing=$enableval
... ...
@@ -22301,29 +22978,32 @@ case "(($ac_try" in
22301 22301
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
22302 22302
   *) ac_try_echo=$ac_try;;
22303 22303
 esac
22304
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
22304
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
22305
+$as_echo "$ac_try_echo") >&5
22305 22306
   (eval "$ac_link") 2>&5
22306 22307
   ac_status=$?
22307
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
22308
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
22308 22309
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
22309 22310
   { (case "(($ac_try" in
22310 22311
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
22311 22312
   *) ac_try_echo=$ac_try;;
22312 22313
 esac
22313
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
22314
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
22315
+$as_echo "$ac_try_echo") >&5
22314 22316
   (eval "$ac_try") 2>&5
22315 22317
   ac_status=$?
22316
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
22318
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
22317 22319
   (exit $ac_status); }; }; then
22318 22320
   have_fdpass=1; fdpass_need_xopen=0
22319 22321
 else
22320
-  echo "$as_me: program exited with status $ac_status" >&5
22321
-echo "$as_me: failed program was:" >&5
22322
+  $as_echo "$as_me: program exited with status $ac_status" >&5
22323
+$as_echo "$as_me: failed program was:" >&5
22322 22324
 sed 's/^/| /' conftest.$ac_ext >&5
22323 22325
 
22324 22326
 ( exit $ac_status )
22325 22327
 have_fdpass=0
22326 22328
 fi
22329
+rm -rf conftest.dSYM
22327 22330
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
22328 22331
 fi
22329 22332
 
... ...
@@ -22485,29 +23165,32 @@ case "(($ac_try" in
22485 22485
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
22486 22486
   *) ac_try_echo=$ac_try;;
22487 22487
 esac
22488
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
22488
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
22489
+$as_echo "$ac_try_echo") >&5
22489 22490
   (eval "$ac_link") 2>&5
22490 22491
   ac_status=$?
22491
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
22492
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
22492 22493
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
22493 22494
   { (case "(($ac_try" in
22494 22495
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
22495 22496
   *) ac_try_echo=$ac_try;;
22496 22497
 esac
22497
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
22498
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
22499
+$as_echo "$ac_try_echo") >&5
22498 22500
   (eval "$ac_try") 2>&5
22499 22501
   ac_status=$?
22500
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
22502
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
22501 22503
   (exit $ac_status); }; }; then
22502 22504
   have_fdpass=1; fdpass_need_xopen=1
22503 22505
 else
22504
-  echo "$as_me: program exited with status $ac_status" >&5
22505
-echo "$as_me: failed program was:" >&5
22506
+  $as_echo "$as_me: program exited with status $ac_status" >&5
22507
+$as_echo "$as_me: failed program was:" >&5
22506 22508
 sed 's/^/| /' conftest.$ac_ext >&5
22507 22509
 
22508 22510
 ( exit $ac_status )
22509 22511
 have_fdpass=0
22510 22512
 fi
22513
+rm -rf conftest.dSYM
22511 22514
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
22512 22515
 fi
22513 22516
 
... ...
@@ -22526,20 +23209,20 @@ cat >>confdefs.h <<\_ACEOF
22526 22526
 #define FDPASS_NEED_XOPEN 1
22527 22527
 _ACEOF
22528 22528
 
22529
-                { echo "$as_me:$LINENO: result: yes, by defining _XOPEN_SOURCE" >&5
22530
-echo "${ECHO_T}yes, by defining _XOPEN_SOURCE" >&6; }
22529
+                { $as_echo "$as_me:$LINENO: result: yes, by defining _XOPEN_SOURCE" >&5
22530
+$as_echo "yes, by defining _XOPEN_SOURCE" >&6; }
22531 22531
             else
22532
-                { echo "$as_me:$LINENO: result: yes" >&5
22533
-echo "${ECHO_T}yes" >&6; }
22532
+                { $as_echo "$as_me:$LINENO: result: yes" >&5
22533
+$as_echo "yes" >&6; }
22534 22534
             fi
22535 22535
         else
22536
-            { echo "$as_me:$LINENO: result: no" >&5
22537
-echo "${ECHO_T}no" >&6; }
22536
+            { $as_echo "$as_me:$LINENO: result: no" >&5
22537
+$as_echo "no" >&6; }
22538 22538
         fi
22539 22539
 
22540 22540
     else
22541
-        { echo "$as_me:$LINENO: result: disabled" >&5
22542
-echo "${ECHO_T}disabled" >&6; }
22541
+        { $as_echo "$as_me:$LINENO: result: disabled" >&5
22542
+$as_echo "disabled" >&6; }
22543 22543
     fi
22544 22544
 fi
22545 22545
 
... ...
@@ -23017,17 +23700,17 @@ fi
23017 23017
 
23018 23018
 		CPPFLAGS="$CPPFLAGS $INCNCURSES"
23019 23019
 		if test "${ac_cv_header_ncurses_ncurses_h+set}" = set; then
23020
-  { echo "$as_me:$LINENO: checking for ncurses/ncurses.h" >&5
23021
-echo $ECHO_N "checking for ncurses/ncurses.h... $ECHO_C" >&6; }
23020
+  { $as_echo "$as_me:$LINENO: checking for ncurses/ncurses.h" >&5
23021
+$as_echo_n "checking for ncurses/ncurses.h... " >&6; }
23022 23022
 if test "${ac_cv_header_ncurses_ncurses_h+set}" = set; then
23023
-  echo $ECHO_N "(cached) $ECHO_C" >&6
23023
+  $as_echo_n "(cached) " >&6
23024 23024
 fi
23025
-{ echo "$as_me:$LINENO: result: $ac_cv_header_ncurses_ncurses_h" >&5
23026
-echo "${ECHO_T}$ac_cv_header_ncurses_ncurses_h" >&6; }
23025
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_ncurses_ncurses_h" >&5
23026
+$as_echo "$ac_cv_header_ncurses_ncurses_h" >&6; }
23027 23027
 else
23028 23028
   # Is the header compilable?
23029
-{ echo "$as_me:$LINENO: checking ncurses/ncurses.h usability" >&5
23030
-echo $ECHO_N "checking ncurses/ncurses.h usability... $ECHO_C" >&6; }
23029
+{ $as_echo "$as_me:$LINENO: checking ncurses/ncurses.h usability" >&5
23030
+$as_echo_n "checking ncurses/ncurses.h usability... " >&6; }
23031 23031
 cat >conftest.$ac_ext <<_ACEOF
23032 23032
 /* confdefs.h.  */
23033 23033
 _ACEOF
... ...
@@ -23043,32 +23726,33 @@ case "(($ac_try" in
23043 23043
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
23044 23044
   *) ac_try_echo=$ac_try;;
23045 23045
 esac
23046
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
23046
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
23047
+$as_echo "$ac_try_echo") >&5
23047 23048
   (eval "$ac_compile") 2>conftest.er1
23048 23049
   ac_status=$?
23049 23050
   grep -v '^ *+' conftest.er1 >conftest.err
23050 23051
   rm -f conftest.er1
23051 23052
   cat conftest.err >&5
23052
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
23053
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
23053 23054
   (exit $ac_status); } && {
23054 23055
 	 test -z "$ac_c_werror_flag" ||
23055 23056
 	 test ! -s conftest.err
23056 23057
        } && test -s conftest.$ac_objext; then
23057 23058
   ac_header_compiler=yes
23058 23059
 else
23059
-  echo "$as_me: failed program was:" >&5
23060
+  $as_echo "$as_me: failed program was:" >&5
23060 23061
 sed 's/^/| /' conftest.$ac_ext >&5
23061 23062
 
23062 23063
 	ac_header_compiler=no
23063 23064
 fi
23064 23065
 
23065 23066
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
23066
-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
23067
-echo "${ECHO_T}$ac_header_compiler" >&6; }
23067
+{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
23068
+$as_echo "$ac_header_compiler" >&6; }
23068 23069
 
23069 23070
 # Is the header present?
23070
-{ echo "$as_me:$LINENO: checking ncurses/ncurses.h presence" >&5
23071
-echo $ECHO_N "checking ncurses/ncurses.h presence... $ECHO_C" >&6; }
23071
+{ $as_echo "$as_me:$LINENO: checking ncurses/ncurses.h presence" >&5
23072
+$as_echo_n "checking ncurses/ncurses.h presence... " >&6; }
23072 23073
 cat >conftest.$ac_ext <<_ACEOF
23073 23074
 /* confdefs.h.  */
23074 23075
 _ACEOF
... ...
@@ -23082,51 +23766,52 @@ case "(($ac_try" in
23082 23082
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
23083 23083
   *) ac_try_echo=$ac_try;;
23084 23084
 esac
23085
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
23085
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
23086
+$as_echo "$ac_try_echo") >&5
23086 23087
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
23087 23088
   ac_status=$?
23088 23089
   grep -v '^ *+' conftest.er1 >conftest.err
23089 23090
   rm -f conftest.er1
23090 23091
   cat conftest.err >&5
23091
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
23092
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
23092 23093
   (exit $ac_status); } >/dev/null && {
23093 23094
 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
23094 23095
 	 test ! -s conftest.err
23095 23096
        }; then
23096 23097
   ac_header_preproc=yes
23097 23098
 else
23098
-  echo "$as_me: failed program was:" >&5
23099
+  $as_echo "$as_me: failed program was:" >&5
23099 23100
 sed 's/^/| /' conftest.$ac_ext >&5
23100 23101
 
23101 23102
   ac_header_preproc=no
23102 23103
 fi
23103 23104
 
23104 23105
 rm -f conftest.err conftest.$ac_ext
23105
-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
23106
-echo "${ECHO_T}$ac_header_preproc" >&6; }
23106
+{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
23107
+$as_echo "$ac_header_preproc" >&6; }
23107 23108
 
23108 23109
 # So?  What about this header?
23109 23110
 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
23110 23111
   yes:no: )
23111
-    { echo "$as_me:$LINENO: WARNING: ncurses/ncurses.h: accepted by the compiler, rejected by the preprocessor!" >&5
23112
-echo "$as_me: WARNING: ncurses/ncurses.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
23113
-    { echo "$as_me:$LINENO: WARNING: ncurses/ncurses.h: proceeding with the compiler's result" >&5
23114
-echo "$as_me: WARNING: ncurses/ncurses.h: proceeding with the compiler's result" >&2;}
23112
+    { $as_echo "$as_me:$LINENO: WARNING: ncurses/ncurses.h: accepted by the compiler, rejected by the preprocessor!" >&5
23113
+$as_echo "$as_me: WARNING: ncurses/ncurses.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
23114
+    { $as_echo "$as_me:$LINENO: WARNING: ncurses/ncurses.h: proceeding with the compiler's result" >&5
23115
+$as_echo "$as_me: WARNING: ncurses/ncurses.h: proceeding with the compiler's result" >&2;}
23115 23116
     ac_header_preproc=yes
23116 23117
     ;;
23117 23118
   no:yes:* )
23118
-    { echo "$as_me:$LINENO: WARNING: ncurses/ncurses.h: present but cannot be compiled" >&5
23119
-echo "$as_me: WARNING: ncurses/ncurses.h: present but cannot be compiled" >&2;}
23120
-    { echo "$as_me:$LINENO: WARNING: ncurses/ncurses.h:     check for missing prerequisite headers?" >&5
23121
-echo "$as_me: WARNING: ncurses/ncurses.h:     check for missing prerequisite headers?" >&2;}
23122
-    { echo "$as_me:$LINENO: WARNING: ncurses/ncurses.h: see the Autoconf documentation" >&5
23123
-echo "$as_me: WARNING: ncurses/ncurses.h: see the Autoconf documentation" >&2;}
23124
-    { echo "$as_me:$LINENO: WARNING: ncurses/ncurses.h:     section \"Present But Cannot Be Compiled\"" >&5
23125
-echo "$as_me: WARNING: ncurses/ncurses.h:     section \"Present But Cannot Be Compiled\"" >&2;}
23126
-    { echo "$as_me:$LINENO: WARNING: ncurses/ncurses.h: proceeding with the preprocessor's result" >&5
23127
-echo "$as_me: WARNING: ncurses/ncurses.h: proceeding with the preprocessor's result" >&2;}
23128
-    { echo "$as_me:$LINENO: WARNING: ncurses/ncurses.h: in the future, the compiler will take precedence" >&5
23129
-echo "$as_me: WARNING: ncurses/ncurses.h: in the future, the compiler will take precedence" >&2;}
23119
+    { $as_echo "$as_me:$LINENO: WARNING: ncurses/ncurses.h: present but cannot be compiled" >&5
23120
+$as_echo "$as_me: WARNING: ncurses/ncurses.h: present but cannot be compiled" >&2;}
23121
+    { $as_echo "$as_me:$LINENO: WARNING: ncurses/ncurses.h:     check for missing prerequisite headers?" >&5
23122
+$as_echo "$as_me: WARNING: ncurses/ncurses.h:     check for missing prerequisite headers?" >&2;}
23123
+    { $as_echo "$as_me:$LINENO: WARNING: ncurses/ncurses.h: see the Autoconf documentation" >&5
23124
+$as_echo "$as_me: WARNING: ncurses/ncurses.h: see the Autoconf documentation" >&2;}
23125
+    { $as_echo "$as_me:$LINENO: WARNING: ncurses/ncurses.h:     section \"Present But Cannot Be Compiled\"" >&5
23126
+$as_echo "$as_me: WARNING: ncurses/ncurses.h:     section \"Present But Cannot Be Compiled\"" >&2;}
23127
+    { $as_echo "$as_me:$LINENO: WARNING: ncurses/ncurses.h: proceeding with the preprocessor's result" >&5
23128
+$as_echo "$as_me: WARNING: ncurses/ncurses.h: proceeding with the preprocessor's result" >&2;}
23129
+    { $as_echo "$as_me:$LINENO: WARNING: ncurses/ncurses.h: in the future, the compiler will take precedence" >&5
23130
+$as_echo "$as_me: WARNING: ncurses/ncurses.h: in the future, the compiler will take precedence" >&2;}
23130 23131
     ( cat <<\_ASBOX
23131 23132
 ## -------------------------------------- ##
23132 23133
 ## Report this to http://bugs.clamav.net/ ##
... ...
@@ -23135,18 +23820,18 @@ _ASBOX
23135 23135
      ) | sed "s/^/$as_me: WARNING:     /" >&2
23136 23136
     ;;
23137 23137
 esac
23138
-{ echo "$as_me:$LINENO: checking for ncurses/ncurses.h" >&5
23139
-echo $ECHO_N "checking for ncurses/ncurses.h... $ECHO_C" >&6; }
23138
+{ $as_echo "$as_me:$LINENO: checking for ncurses/ncurses.h" >&5
23139
+$as_echo_n "checking for ncurses/ncurses.h... " >&6; }
23140 23140
 if test "${ac_cv_header_ncurses_ncurses_h+set}" = set; then
23141
-  echo $ECHO_N "(cached) $ECHO_C" >&6
23141
+  $as_echo_n "(cached) " >&6
23142 23142
 else
23143 23143
   ac_cv_header_ncurses_ncurses_h=$ac_header_preproc
23144 23144
 fi
23145
-{ echo "$as_me:$LINENO: result: $ac_cv_header_ncurses_ncurses_h" >&5
23146
-echo "${ECHO_T}$ac_cv_header_ncurses_ncurses_h" >&6; }
23145
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_ncurses_ncurses_h" >&5
23146
+$as_echo "$ac_cv_header_ncurses_ncurses_h" >&6; }
23147 23147
 
23148 23148
 fi
23149
-if test $ac_cv_header_ncurses_ncurses_h = yes; then
23149
+if test "x$ac_cv_header_ncurses_ncurses_h" = x""yes; then
23150 23150
   have_header=yes
23151 23151
 else
23152 23152
   have_header=no
... ...
@@ -23159,8 +23844,8 @@ fi
23159 23159
 		if test "$have_header" = "yes"; then
23160 23160
 
23161 23161
 				LIBS="$LIBS $LIBNCURSES"
23162
-				{ echo "$as_me:$LINENO: checking linking with ncurses" >&5
23163
-echo $ECHO_N "checking linking with ncurses... $ECHO_C" >&6; }
23162
+				{ $as_echo "$as_me:$LINENO: checking linking with ncurses" >&5
23163
+$as_echo_n "checking linking with ncurses... " >&6; }
23164 23164
 				cat >conftest.$ac_ext <<_ACEOF
23165 23165
 /* confdefs.h.  */
23166 23166
 _ACEOF
... ...
@@ -23182,32 +23867,36 @@ case "(($ac_try" in
23182 23182
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
23183 23183
   *) ac_try_echo=$ac_try;;
23184 23184
 esac
23185
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
23185
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
23186
+$as_echo "$ac_try_echo") >&5
23186 23187
   (eval "$ac_link") 2>conftest.er1
23187 23188
   ac_status=$?
23188 23189
   grep -v '^ *+' conftest.er1 >conftest.err
23189 23190
   rm -f conftest.er1
23190 23191
   cat conftest.err >&5
23191
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
23192
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
23192 23193
   (exit $ac_status); } && {
23193 23194
 	 test -z "$ac_c_werror_flag" ||
23194 23195
 	 test ! -s conftest.err
23195
-       } && test -s conftest$ac_exeext &&
23196
-       $as_test_x conftest$ac_exeext; then
23196
+       } && test -s conftest$ac_exeext && {
23197
+	 test "$cross_compiling" = yes ||
23198
+	 $as_test_x conftest$ac_exeext
23199
+       }; then
23197 23200
 
23198 23201
 					ac_cv_findlib_NCURSES_libs="$LIBNCURSES"
23199 23202
 					ac_cv_findlib_NCURSES_ltlibs="$LTLIBNCURSES"
23200 23203
 					ac_cv_findlib_NCURSES_inc="$INCNCURSES"
23201
-					{ echo "$as_me:$LINENO: result: ok" >&5
23202
-echo "${ECHO_T}ok" >&6; }
23204
+					{ $as_echo "$as_me:$LINENO: result: ok" >&5
23205
+$as_echo "ok" >&6; }
23203 23206
 
23204 23207
 else
23205
-  echo "$as_me: failed program was:" >&5
23208
+  $as_echo "$as_me: failed program was:" >&5
23206 23209
 sed 's/^/| /' conftest.$ac_ext >&5
23207 23210
 
23208 23211
 
23209 23212
 fi
23210 23213
 
23214
+rm -rf conftest.dSYM
23211 23215
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
23212 23216
       conftest$ac_exeext conftest.$ac_ext
23213 23217
 
... ...
@@ -23217,15 +23906,15 @@ fi
23217 23217
 		LIBS="$save_LIBS"
23218 23218
 	if test "X$ac_cv_findlib_NCURSES_libs" = "X"; then
23219 23219
 
23220
-			{ echo "$as_me:$LINENO: unable to compile/link with ncurses" >&5
23221
-echo "$as_me: unable to compile/link with ncurses" >&6;}
23220
+			{ $as_echo "$as_me:$LINENO: unable to compile/link with ncurses" >&5
23221
+$as_echo "$as_me: unable to compile/link with ncurses" >&6;}
23222 23222
 			HAVE_LIBNCURSES=no
23223 23223
 
23224 23224
 
23225 23225
 else
23226 23226
 
23227
-			{ echo "$as_me:$LINENO: Compiling and linking with ncurses by using $ac_cv_findlib_NCURSES_inc $ac_cv_findlib_NCURSES_libs" >&5
23228
-echo "$as_me: Compiling and linking with ncurses by using $ac_cv_findlib_NCURSES_inc $ac_cv_findlib_NCURSES_libs" >&6;}
23227
+			{ $as_echo "$as_me:$LINENO: Compiling and linking with ncurses by using $ac_cv_findlib_NCURSES_inc $ac_cv_findlib_NCURSES_libs" >&5
23228
+$as_echo "$as_me: Compiling and linking with ncurses by using $ac_cv_findlib_NCURSES_inc $ac_cv_findlib_NCURSES_libs" >&6;}
23229 23229
 
23230 23230
 cat >>confdefs.h <<\_ACEOF
23231 23231
 #define HAVE_LIBNCURSES 1
... ...
@@ -23702,17 +24391,17 @@ fi
23702 23702
 
23703 23703
 		CPPFLAGS="$CPPFLAGS $INCNCURSES"
23704 23704
 		if test "${ac_cv_header_ncurses_h+set}" = set; then
23705
-  { echo "$as_me:$LINENO: checking for ncurses.h" >&5
23706
-echo $ECHO_N "checking for ncurses.h... $ECHO_C" >&6; }
23705
+  { $as_echo "$as_me:$LINENO: checking for ncurses.h" >&5
23706
+$as_echo_n "checking for ncurses.h... " >&6; }
23707 23707
 if test "${ac_cv_header_ncurses_h+set}" = set; then
23708
-  echo $ECHO_N "(cached) $ECHO_C" >&6
23708
+  $as_echo_n "(cached) " >&6
23709 23709
 fi
23710
-{ echo "$as_me:$LINENO: result: $ac_cv_header_ncurses_h" >&5
23711
-echo "${ECHO_T}$ac_cv_header_ncurses_h" >&6; }
23710
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_ncurses_h" >&5
23711
+$as_echo "$ac_cv_header_ncurses_h" >&6; }
23712 23712
 else
23713 23713
   # Is the header compilable?
23714
-{ echo "$as_me:$LINENO: checking ncurses.h usability" >&5
23715
-echo $ECHO_N "checking ncurses.h usability... $ECHO_C" >&6; }
23714
+{ $as_echo "$as_me:$LINENO: checking ncurses.h usability" >&5
23715
+$as_echo_n "checking ncurses.h usability... " >&6; }
23716 23716
 cat >conftest.$ac_ext <<_ACEOF
23717 23717
 /* confdefs.h.  */
23718 23718
 _ACEOF
... ...
@@ -23728,32 +24417,33 @@ case "(($ac_try" in
23728 23728
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
23729 23729
   *) ac_try_echo=$ac_try;;
23730 23730
 esac
23731
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
23731
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
23732
+$as_echo "$ac_try_echo") >&5
23732 23733
   (eval "$ac_compile") 2>conftest.er1
23733 23734
   ac_status=$?
23734 23735
   grep -v '^ *+' conftest.er1 >conftest.err
23735 23736
   rm -f conftest.er1
23736 23737
   cat conftest.err >&5
23737
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
23738
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
23738 23739
   (exit $ac_status); } && {
23739 23740
 	 test -z "$ac_c_werror_flag" ||
23740 23741
 	 test ! -s conftest.err
23741 23742
        } && test -s conftest.$ac_objext; then
23742 23743
   ac_header_compiler=yes
23743 23744
 else
23744
-  echo "$as_me: failed program was:" >&5
23745
+  $as_echo "$as_me: failed program was:" >&5
23745 23746
 sed 's/^/| /' conftest.$ac_ext >&5
23746 23747
 
23747 23748
 	ac_header_compiler=no
23748 23749
 fi
23749 23750
 
23750 23751
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
23751
-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
23752
-echo "${ECHO_T}$ac_header_compiler" >&6; }
23752
+{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
23753
+$as_echo "$ac_header_compiler" >&6; }
23753 23754
 
23754 23755
 # Is the header present?
23755
-{ echo "$as_me:$LINENO: checking ncurses.h presence" >&5
23756
-echo $ECHO_N "checking ncurses.h presence... $ECHO_C" >&6; }
23756
+{ $as_echo "$as_me:$LINENO: checking ncurses.h presence" >&5
23757
+$as_echo_n "checking ncurses.h presence... " >&6; }
23757 23758
 cat >conftest.$ac_ext <<_ACEOF
23758 23759
 /* confdefs.h.  */
23759 23760
 _ACEOF
... ...
@@ -23767,51 +24457,52 @@ case "(($ac_try" in
23767 23767
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
23768 23768
   *) ac_try_echo=$ac_try;;
23769 23769
 esac
23770
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
23770
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
23771
+$as_echo "$ac_try_echo") >&5
23771 23772
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
23772 23773
   ac_status=$?
23773 23774
   grep -v '^ *+' conftest.er1 >conftest.err
23774 23775
   rm -f conftest.er1
23775 23776
   cat conftest.err >&5
23776
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
23777
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
23777 23778
   (exit $ac_status); } >/dev/null && {
23778 23779
 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
23779 23780
 	 test ! -s conftest.err
23780 23781
        }; then
23781 23782
   ac_header_preproc=yes
23782 23783
 else
23783
-  echo "$as_me: failed program was:" >&5
23784
+  $as_echo "$as_me: failed program was:" >&5
23784 23785
 sed 's/^/| /' conftest.$ac_ext >&5
23785 23786
 
23786 23787
   ac_header_preproc=no
23787 23788
 fi
23788 23789
 
23789 23790
 rm -f conftest.err conftest.$ac_ext
23790
-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
23791
-echo "${ECHO_T}$ac_header_preproc" >&6; }
23791
+{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
23792
+$as_echo "$ac_header_preproc" >&6; }
23792 23793
 
23793 23794
 # So?  What about this header?
23794 23795
 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
23795 23796
   yes:no: )
23796
-    { echo "$as_me:$LINENO: WARNING: ncurses.h: accepted by the compiler, rejected by the preprocessor!" >&5
23797
-echo "$as_me: WARNING: ncurses.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
23798
-    { echo "$as_me:$LINENO: WARNING: ncurses.h: proceeding with the compiler's result" >&5
23799
-echo "$as_me: WARNING: ncurses.h: proceeding with the compiler's result" >&2;}
23797
+    { $as_echo "$as_me:$LINENO: WARNING: ncurses.h: accepted by the compiler, rejected by the preprocessor!" >&5
23798
+$as_echo "$as_me: WARNING: ncurses.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
23799
+    { $as_echo "$as_me:$LINENO: WARNING: ncurses.h: proceeding with the compiler's result" >&5
23800
+$as_echo "$as_me: WARNING: ncurses.h: proceeding with the compiler's result" >&2;}
23800 23801
     ac_header_preproc=yes
23801 23802
     ;;
23802 23803
   no:yes:* )
23803
-    { echo "$as_me:$LINENO: WARNING: ncurses.h: present but cannot be compiled" >&5
23804
-echo "$as_me: WARNING: ncurses.h: present but cannot be compiled" >&2;}
23805
-    { echo "$as_me:$LINENO: WARNING: ncurses.h:     check for missing prerequisite headers?" >&5
23806
-echo "$as_me: WARNING: ncurses.h:     check for missing prerequisite headers?" >&2;}
23807
-    { echo "$as_me:$LINENO: WARNING: ncurses.h: see the Autoconf documentation" >&5
23808
-echo "$as_me: WARNING: ncurses.h: see the Autoconf documentation" >&2;}
23809
-    { echo "$as_me:$LINENO: WARNING: ncurses.h:     section \"Present But Cannot Be Compiled\"" >&5
23810
-echo "$as_me: WARNING: ncurses.h:     section \"Present But Cannot Be Compiled\"" >&2;}
23811
-    { echo "$as_me:$LINENO: WARNING: ncurses.h: proceeding with the preprocessor's result" >&5
23812
-echo "$as_me: WARNING: ncurses.h: proceeding with the preprocessor's result" >&2;}
23813
-    { echo "$as_me:$LINENO: WARNING: ncurses.h: in the future, the compiler will take precedence" >&5
23814
-echo "$as_me: WARNING: ncurses.h: in the future, the compiler will take precedence" >&2;}
23804
+    { $as_echo "$as_me:$LINENO: WARNING: ncurses.h: present but cannot be compiled" >&5
23805
+$as_echo "$as_me: WARNING: ncurses.h: present but cannot be compiled" >&2;}
23806
+    { $as_echo "$as_me:$LINENO: WARNING: ncurses.h:     check for missing prerequisite headers?" >&5
23807
+$as_echo "$as_me: WARNING: ncurses.h:     check for missing prerequisite headers?" >&2;}
23808
+    { $as_echo "$as_me:$LINENO: WARNING: ncurses.h: see the Autoconf documentation" >&5
23809
+$as_echo "$as_me: WARNING: ncurses.h: see the Autoconf documentation" >&2;}
23810
+    { $as_echo "$as_me:$LINENO: WARNING: ncurses.h:     section \"Present But Cannot Be Compiled\"" >&5
23811
+$as_echo "$as_me: WARNING: ncurses.h:     section \"Present But Cannot Be Compiled\"" >&2;}
23812
+    { $as_echo "$as_me:$LINENO: WARNING: ncurses.h: proceeding with the preprocessor's result" >&5
23813
+$as_echo "$as_me: WARNING: ncurses.h: proceeding with the preprocessor's result" >&2;}
23814
+    { $as_echo "$as_me:$LINENO: WARNING: ncurses.h: in the future, the compiler will take precedence" >&5
23815
+$as_echo "$as_me: WARNING: ncurses.h: in the future, the compiler will take precedence" >&2;}
23815 23816
     ( cat <<\_ASBOX
23816 23817
 ## -------------------------------------- ##
23817 23818
 ## Report this to http://bugs.clamav.net/ ##
... ...
@@ -23820,18 +24511,18 @@ _ASBOX
23820 23820
      ) | sed "s/^/$as_me: WARNING:     /" >&2
23821 23821
     ;;
23822 23822
 esac
23823
-{ echo "$as_me:$LINENO: checking for ncurses.h" >&5
23824
-echo $ECHO_N "checking for ncurses.h... $ECHO_C" >&6; }
23823
+{ $as_echo "$as_me:$LINENO: checking for ncurses.h" >&5
23824
+$as_echo_n "checking for ncurses.h... " >&6; }
23825 23825
 if test "${ac_cv_header_ncurses_h+set}" = set; then
23826
-  echo $ECHO_N "(cached) $ECHO_C" >&6
23826
+  $as_echo_n "(cached) " >&6
23827 23827
 else
23828 23828
   ac_cv_header_ncurses_h=$ac_header_preproc
23829 23829
 fi
23830
-{ echo "$as_me:$LINENO: result: $ac_cv_header_ncurses_h" >&5
23831
-echo "${ECHO_T}$ac_cv_header_ncurses_h" >&6; }
23830
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_ncurses_h" >&5
23831
+$as_echo "$ac_cv_header_ncurses_h" >&6; }
23832 23832
 
23833 23833
 fi
23834
-if test $ac_cv_header_ncurses_h = yes; then
23834
+if test "x$ac_cv_header_ncurses_h" = x""yes; then
23835 23835
   have_header=yes
23836 23836
 else
23837 23837
   have_header=no
... ...
@@ -23844,8 +24535,8 @@ fi
23844 23844
 		if test "$have_header" = "yes"; then
23845 23845
 
23846 23846
 				LIBS="$LIBS $LIBNCURSES"
23847
-				{ echo "$as_me:$LINENO: checking linking with ncurses" >&5
23848
-echo $ECHO_N "checking linking with ncurses... $ECHO_C" >&6; }
23847
+				{ $as_echo "$as_me:$LINENO: checking linking with ncurses" >&5
23848
+$as_echo_n "checking linking with ncurses... " >&6; }
23849 23849
 				cat >conftest.$ac_ext <<_ACEOF
23850 23850
 /* confdefs.h.  */
23851 23851
 _ACEOF
... ...
@@ -23867,32 +24558,36 @@ case "(($ac_try" in
23867 23867
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
23868 23868
   *) ac_try_echo=$ac_try;;
23869 23869
 esac
23870
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
23870
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
23871
+$as_echo "$ac_try_echo") >&5
23871 23872
   (eval "$ac_link") 2>conftest.er1
23872 23873
   ac_status=$?
23873 23874
   grep -v '^ *+' conftest.er1 >conftest.err
23874 23875
   rm -f conftest.er1
23875 23876
   cat conftest.err >&5
23876
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
23877
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
23877 23878
   (exit $ac_status); } && {
23878 23879
 	 test -z "$ac_c_werror_flag" ||
23879 23880
 	 test ! -s conftest.err
23880
-       } && test -s conftest$ac_exeext &&
23881
-       $as_test_x conftest$ac_exeext; then
23881
+       } && test -s conftest$ac_exeext && {
23882
+	 test "$cross_compiling" = yes ||
23883
+	 $as_test_x conftest$ac_exeext
23884
+       }; then
23882 23885
 
23883 23886
 					ac_cv_findlib_NCURSES_libs="$LIBNCURSES"
23884 23887
 					ac_cv_findlib_NCURSES_ltlibs="$LTLIBNCURSES"
23885 23888
 					ac_cv_findlib_NCURSES_inc="$INCNCURSES"
23886
-					{ echo "$as_me:$LINENO: result: ok" >&5
23887
-echo "${ECHO_T}ok" >&6; }
23889
+					{ $as_echo "$as_me:$LINENO: result: ok" >&5
23890
+$as_echo "ok" >&6; }
23888 23891
 
23889 23892
 else
23890
-  echo "$as_me: failed program was:" >&5
23893
+  $as_echo "$as_me: failed program was:" >&5
23891 23894
 sed 's/^/| /' conftest.$ac_ext >&5
23892 23895
 
23893 23896
 
23894 23897
 fi
23895 23898
 
23899
+rm -rf conftest.dSYM
23896 23900
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
23897 23901
       conftest$ac_exeext conftest.$ac_ext
23898 23902
 
... ...
@@ -23902,15 +24597,15 @@ fi
23902 23902
 		LIBS="$save_LIBS"
23903 23903
 	if test "X$ac_cv_findlib_NCURSES_libs" = "X"; then
23904 23904
 
23905
-			{ echo "$as_me:$LINENO: unable to compile/link with ncurses" >&5
23906
-echo "$as_me: unable to compile/link with ncurses" >&6;}
23905
+			{ $as_echo "$as_me:$LINENO: unable to compile/link with ncurses" >&5
23906
+$as_echo "$as_me: unable to compile/link with ncurses" >&6;}
23907 23907
 			HAVE_LIBNCURSES=no
23908 23908
 
23909 23909
 
23910 23910
 else
23911 23911
 
23912
-			{ echo "$as_me:$LINENO: Compiling and linking with ncurses by using $ac_cv_findlib_NCURSES_inc $ac_cv_findlib_NCURSES_libs" >&5
23913
-echo "$as_me: Compiling and linking with ncurses by using $ac_cv_findlib_NCURSES_inc $ac_cv_findlib_NCURSES_libs" >&6;}
23912
+			{ $as_echo "$as_me:$LINENO: Compiling and linking with ncurses by using $ac_cv_findlib_NCURSES_inc $ac_cv_findlib_NCURSES_libs" >&5
23913
+$as_echo "$as_me: Compiling and linking with ncurses by using $ac_cv_findlib_NCURSES_inc $ac_cv_findlib_NCURSES_libs" >&6;}
23914 23914
 
23915 23915
 cat >>confdefs.h <<\_ACEOF
23916 23916
 #define HAVE_LIBNCURSES 1
... ...
@@ -24387,17 +25082,17 @@ fi
24387 24387
 
24388 24388
 		CPPFLAGS="$CPPFLAGS $INCPDCURSES"
24389 24389
 		if test "${ac_cv_header_curses_h+set}" = set; then
24390
-  { echo "$as_me:$LINENO: checking for curses.h" >&5
24391
-echo $ECHO_N "checking for curses.h... $ECHO_C" >&6; }
24390
+  { $as_echo "$as_me:$LINENO: checking for curses.h" >&5
24391
+$as_echo_n "checking for curses.h... " >&6; }
24392 24392
 if test "${ac_cv_header_curses_h+set}" = set; then
24393
-  echo $ECHO_N "(cached) $ECHO_C" >&6
24393
+  $as_echo_n "(cached) " >&6
24394 24394
 fi
24395
-{ echo "$as_me:$LINENO: result: $ac_cv_header_curses_h" >&5
24396
-echo "${ECHO_T}$ac_cv_header_curses_h" >&6; }
24395
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_curses_h" >&5
24396
+$as_echo "$ac_cv_header_curses_h" >&6; }
24397 24397
 else
24398 24398
   # Is the header compilable?
24399
-{ echo "$as_me:$LINENO: checking curses.h usability" >&5
24400
-echo $ECHO_N "checking curses.h usability... $ECHO_C" >&6; }
24399
+{ $as_echo "$as_me:$LINENO: checking curses.h usability" >&5
24400
+$as_echo_n "checking curses.h usability... " >&6; }
24401 24401
 cat >conftest.$ac_ext <<_ACEOF
24402 24402
 /* confdefs.h.  */
24403 24403
 _ACEOF
... ...
@@ -24413,32 +25108,33 @@ case "(($ac_try" in
24413 24413
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
24414 24414
   *) ac_try_echo=$ac_try;;
24415 24415
 esac
24416
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
24416
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
24417
+$as_echo "$ac_try_echo") >&5
24417 24418
   (eval "$ac_compile") 2>conftest.er1
24418 24419
   ac_status=$?
24419 24420
   grep -v '^ *+' conftest.er1 >conftest.err
24420 24421
   rm -f conftest.er1
24421 24422
   cat conftest.err >&5
24422
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
24423
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
24423 24424
   (exit $ac_status); } && {
24424 24425
 	 test -z "$ac_c_werror_flag" ||
24425 24426
 	 test ! -s conftest.err
24426 24427
        } && test -s conftest.$ac_objext; then
24427 24428
   ac_header_compiler=yes
24428 24429
 else
24429
-  echo "$as_me: failed program was:" >&5
24430
+  $as_echo "$as_me: failed program was:" >&5
24430 24431
 sed 's/^/| /' conftest.$ac_ext >&5
24431 24432
 
24432 24433
 	ac_header_compiler=no
24433 24434
 fi
24434 24435
 
24435 24436
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
24436
-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
24437
-echo "${ECHO_T}$ac_header_compiler" >&6; }
24437
+{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
24438
+$as_echo "$ac_header_compiler" >&6; }
24438 24439
 
24439 24440
 # Is the header present?
24440
-{ echo "$as_me:$LINENO: checking curses.h presence" >&5
24441
-echo $ECHO_N "checking curses.h presence... $ECHO_C" >&6; }
24441
+{ $as_echo "$as_me:$LINENO: checking curses.h presence" >&5
24442
+$as_echo_n "checking curses.h presence... " >&6; }
24442 24443
 cat >conftest.$ac_ext <<_ACEOF
24443 24444
 /* confdefs.h.  */
24444 24445
 _ACEOF
... ...
@@ -24452,51 +25148,52 @@ case "(($ac_try" in
24452 24452
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
24453 24453
   *) ac_try_echo=$ac_try;;
24454 24454
 esac
24455
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
24455
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
24456
+$as_echo "$ac_try_echo") >&5
24456 24457
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
24457 24458
   ac_status=$?
24458 24459
   grep -v '^ *+' conftest.er1 >conftest.err
24459 24460
   rm -f conftest.er1
24460 24461
   cat conftest.err >&5
24461
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
24462
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
24462 24463
   (exit $ac_status); } >/dev/null && {
24463 24464
 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
24464 24465
 	 test ! -s conftest.err
24465 24466
        }; then
24466 24467
   ac_header_preproc=yes
24467 24468
 else
24468
-  echo "$as_me: failed program was:" >&5
24469
+  $as_echo "$as_me: failed program was:" >&5
24469 24470
 sed 's/^/| /' conftest.$ac_ext >&5
24470 24471
 
24471 24472
   ac_header_preproc=no
24472 24473
 fi
24473 24474
 
24474 24475
 rm -f conftest.err conftest.$ac_ext
24475
-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
24476
-echo "${ECHO_T}$ac_header_preproc" >&6; }
24476
+{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
24477
+$as_echo "$ac_header_preproc" >&6; }
24477 24478
 
24478 24479
 # So?  What about this header?
24479 24480
 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
24480 24481
   yes:no: )
24481
-    { echo "$as_me:$LINENO: WARNING: curses.h: accepted by the compiler, rejected by the preprocessor!" >&5
24482
-echo "$as_me: WARNING: curses.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
24483
-    { echo "$as_me:$LINENO: WARNING: curses.h: proceeding with the compiler's result" >&5
24484
-echo "$as_me: WARNING: curses.h: proceeding with the compiler's result" >&2;}
24482
+    { $as_echo "$as_me:$LINENO: WARNING: curses.h: accepted by the compiler, rejected by the preprocessor!" >&5
24483
+$as_echo "$as_me: WARNING: curses.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
24484
+    { $as_echo "$as_me:$LINENO: WARNING: curses.h: proceeding with the compiler's result" >&5
24485
+$as_echo "$as_me: WARNING: curses.h: proceeding with the compiler's result" >&2;}
24485 24486
     ac_header_preproc=yes
24486 24487
     ;;
24487 24488
   no:yes:* )
24488
-    { echo "$as_me:$LINENO: WARNING: curses.h: present but cannot be compiled" >&5
24489
-echo "$as_me: WARNING: curses.h: present but cannot be compiled" >&2;}
24490
-    { echo "$as_me:$LINENO: WARNING: curses.h:     check for missing prerequisite headers?" >&5
24491
-echo "$as_me: WARNING: curses.h:     check for missing prerequisite headers?" >&2;}
24492
-    { echo "$as_me:$LINENO: WARNING: curses.h: see the Autoconf documentation" >&5
24493
-echo "$as_me: WARNING: curses.h: see the Autoconf documentation" >&2;}
24494
-    { echo "$as_me:$LINENO: WARNING: curses.h:     section \"Present But Cannot Be Compiled\"" >&5
24495
-echo "$as_me: WARNING: curses.h:     section \"Present But Cannot Be Compiled\"" >&2;}
24496
-    { echo "$as_me:$LINENO: WARNING: curses.h: proceeding with the preprocessor's result" >&5
24497
-echo "$as_me: WARNING: curses.h: proceeding with the preprocessor's result" >&2;}
24498
-    { echo "$as_me:$LINENO: WARNING: curses.h: in the future, the compiler will take precedence" >&5
24499
-echo "$as_me: WARNING: curses.h: in the future, the compiler will take precedence" >&2;}
24489
+    { $as_echo "$as_me:$LINENO: WARNING: curses.h: present but cannot be compiled" >&5
24490
+$as_echo "$as_me: WARNING: curses.h: present but cannot be compiled" >&2;}
24491
+    { $as_echo "$as_me:$LINENO: WARNING: curses.h:     check for missing prerequisite headers?" >&5
24492
+$as_echo "$as_me: WARNING: curses.h:     check for missing prerequisite headers?" >&2;}
24493
+    { $as_echo "$as_me:$LINENO: WARNING: curses.h: see the Autoconf documentation" >&5
24494
+$as_echo "$as_me: WARNING: curses.h: see the Autoconf documentation" >&2;}
24495
+    { $as_echo "$as_me:$LINENO: WARNING: curses.h:     section \"Present But Cannot Be Compiled\"" >&5
24496
+$as_echo "$as_me: WARNING: curses.h:     section \"Present But Cannot Be Compiled\"" >&2;}
24497
+    { $as_echo "$as_me:$LINENO: WARNING: curses.h: proceeding with the preprocessor's result" >&5
24498
+$as_echo "$as_me: WARNING: curses.h: proceeding with the preprocessor's result" >&2;}
24499
+    { $as_echo "$as_me:$LINENO: WARNING: curses.h: in the future, the compiler will take precedence" >&5
24500
+$as_echo "$as_me: WARNING: curses.h: in the future, the compiler will take precedence" >&2;}
24500 24501
     ( cat <<\_ASBOX
24501 24502
 ## -------------------------------------- ##
24502 24503
 ## Report this to http://bugs.clamav.net/ ##
... ...
@@ -24505,18 +25202,18 @@ _ASBOX
24505 24505
      ) | sed "s/^/$as_me: WARNING:     /" >&2
24506 24506
     ;;
24507 24507
 esac
24508
-{ echo "$as_me:$LINENO: checking for curses.h" >&5
24509
-echo $ECHO_N "checking for curses.h... $ECHO_C" >&6; }
24508
+{ $as_echo "$as_me:$LINENO: checking for curses.h" >&5
24509
+$as_echo_n "checking for curses.h... " >&6; }
24510 24510
 if test "${ac_cv_header_curses_h+set}" = set; then
24511
-  echo $ECHO_N "(cached) $ECHO_C" >&6
24511
+  $as_echo_n "(cached) " >&6
24512 24512
 else
24513 24513
   ac_cv_header_curses_h=$ac_header_preproc
24514 24514
 fi
24515
-{ echo "$as_me:$LINENO: result: $ac_cv_header_curses_h" >&5
24516
-echo "${ECHO_T}$ac_cv_header_curses_h" >&6; }
24515
+{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_curses_h" >&5
24516
+$as_echo "$ac_cv_header_curses_h" >&6; }
24517 24517
 
24518 24518
 fi
24519
-if test $ac_cv_header_curses_h = yes; then
24519
+if test "x$ac_cv_header_curses_h" = x""yes; then
24520 24520
   have_header=yes
24521 24521
 else
24522 24522
   have_header=no
... ...
@@ -24529,8 +25226,8 @@ fi
24529 24529
 		if test "$have_header" = "yes"; then
24530 24530
 
24531 24531
 				LIBS="$LIBS $LIBPDCURSES"
24532
-				{ echo "$as_me:$LINENO: checking linking with pdcurses" >&5
24533
-echo $ECHO_N "checking linking with pdcurses... $ECHO_C" >&6; }
24532
+				{ $as_echo "$as_me:$LINENO: checking linking with pdcurses" >&5
24533
+$as_echo_n "checking linking with pdcurses... " >&6; }
24534 24534
 				cat >conftest.$ac_ext <<_ACEOF
24535 24535
 /* confdefs.h.  */
24536 24536
 _ACEOF
... ...
@@ -24552,32 +25249,36 @@ case "(($ac_try" in
24552 24552
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
24553 24553
   *) ac_try_echo=$ac_try;;
24554 24554
 esac
24555
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
24555
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
24556
+$as_echo "$ac_try_echo") >&5
24556 24557
   (eval "$ac_link") 2>conftest.er1
24557 24558
   ac_status=$?
24558 24559
   grep -v '^ *+' conftest.er1 >conftest.err
24559 24560
   rm -f conftest.er1
24560 24561
   cat conftest.err >&5
24561
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
24562
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
24562 24563
   (exit $ac_status); } && {
24563 24564
 	 test -z "$ac_c_werror_flag" ||
24564 24565
 	 test ! -s conftest.err
24565
-       } && test -s conftest$ac_exeext &&
24566
-       $as_test_x conftest$ac_exeext; then
24566
+       } && test -s conftest$ac_exeext && {
24567
+	 test "$cross_compiling" = yes ||
24568
+	 $as_test_x conftest$ac_exeext
24569
+       }; then
24567 24570
 
24568 24571
 					ac_cv_findlib_PDCURSES_libs="$LIBPDCURSES"
24569 24572
 					ac_cv_findlib_PDCURSES_ltlibs="$LTLIBPDCURSES"
24570 24573
 					ac_cv_findlib_PDCURSES_inc="$INCPDCURSES"
24571
-					{ echo "$as_me:$LINENO: result: ok" >&5
24572
-echo "${ECHO_T}ok" >&6; }
24574
+					{ $as_echo "$as_me:$LINENO: result: ok" >&5
24575
+$as_echo "ok" >&6; }
24573 24576
 
24574 24577
 else
24575
-  echo "$as_me: failed program was:" >&5
24578
+  $as_echo "$as_me: failed program was:" >&5
24576 24579
 sed 's/^/| /' conftest.$ac_ext >&5
24577 24580
 
24578 24581
 
24579 24582
 fi
24580 24583
 
24584
+rm -rf conftest.dSYM
24581 24585
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
24582 24586
       conftest$ac_exeext conftest.$ac_ext
24583 24587
 
... ...
@@ -24587,16 +25288,16 @@ fi
24587 24587
 		LIBS="$save_LIBS"
24588 24588
 	if test "X$ac_cv_findlib_PDCURSES_libs" = "X"; then
24589 24589
 
24590
-			{ echo "$as_me:$LINENO: unable to compile/link with pdcurses" >&5
24591
-echo "$as_me: unable to compile/link with pdcurses" >&6;}
24590
+			{ $as_echo "$as_me:$LINENO: unable to compile/link with pdcurses" >&5
24591
+$as_echo "$as_me: unable to compile/link with pdcurses" >&6;}
24592 24592
 			HAVE_LIBPDCURSES=no
24593
-			{ echo "$as_me:$LINENO: WARNING: ****** not building clamdtop: ncurses not found" >&5
24594
-echo "$as_me: WARNING: ****** not building clamdtop: ncurses not found" >&2;}
24593
+			{ $as_echo "$as_me:$LINENO: WARNING: ****** not building clamdtop: ncurses not found" >&5
24594
+$as_echo "$as_me: WARNING: ****** not building clamdtop: ncurses not found" >&2;}
24595 24595
 
24596 24596
 else
24597 24597
 
24598
-			{ echo "$as_me:$LINENO: Compiling and linking with pdcurses by using $ac_cv_findlib_PDCURSES_inc $ac_cv_findlib_PDCURSES_libs" >&5
24599
-echo "$as_me: Compiling and linking with pdcurses by using $ac_cv_findlib_PDCURSES_inc $ac_cv_findlib_PDCURSES_libs" >&6;}
24598
+			{ $as_echo "$as_me:$LINENO: Compiling and linking with pdcurses by using $ac_cv_findlib_PDCURSES_inc $ac_cv_findlib_PDCURSES_libs" >&5
24599
+$as_echo "$as_me: Compiling and linking with pdcurses by using $ac_cv_findlib_PDCURSES_inc $ac_cv_findlib_PDCURSES_libs" >&6;}
24600 24600
 
24601 24601
 cat >>confdefs.h <<\_ACEOF
24602 24602
 #define HAVE_LIBPDCURSES 1
... ...
@@ -24617,11 +25318,11 @@ fi
24617 24617
 fi
24618 24618
 
24619 24619
 if test "x$CURSES_LIBS" = "x" -a "$enable_clamdtop" = "yes"; then
24620
-    { { echo "$as_me:$LINENO: error:
24620
+    { { $as_echo "$as_me:$LINENO: error:
24621 24621
 
24622 24622
 ERROR!  Clamdtop was configured, but not found.  You need to install libncurses5-dev.
24623 24623
 " >&5
24624
-echo "$as_me: error:
24624
+$as_echo "$as_me: error:
24625 24625
 
24626 24626
 ERROR!  Clamdtop was configured, but not found.  You need to install libncurses5-dev.
24627 24627
 " >&2;}
... ...
@@ -24675,11 +25376,12 @@ _ACEOF
24675 24675
     case $ac_val in #(
24676 24676
     *${as_nl}*)
24677 24677
       case $ac_var in #(
24678
-      *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
24679
-echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
24678
+      *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5
24679
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
24680 24680
       esac
24681 24681
       case $ac_var in #(
24682 24682
       _ | IFS | as_nl) ;; #(
24683
+      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
24683 24684
       *) $as_unset $ac_var ;;
24684 24685
       esac ;;
24685 24686
     esac
... ...
@@ -24712,12 +25414,12 @@ echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
24712 24712
 if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
24713 24713
   if test -w "$cache_file"; then
24714 24714
     test "x$cache_file" != "x/dev/null" &&
24715
-      { echo "$as_me:$LINENO: updating cache $cache_file" >&5
24716
-echo "$as_me: updating cache $cache_file" >&6;}
24715
+      { $as_echo "$as_me:$LINENO: updating cache $cache_file" >&5
24716
+$as_echo "$as_me: updating cache $cache_file" >&6;}
24717 24717
     cat confcache >$cache_file
24718 24718
   else
24719
-    { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5
24720
-echo "$as_me: not updating unwritable cache $cache_file" >&6;}
24719
+    { $as_echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5
24720
+$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
24721 24721
   fi
24722 24722
 fi
24723 24723
 rm -f confcache
... ...
@@ -24733,7 +25435,7 @@ ac_ltlibobjs=
24733 24733
 for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
24734 24734
   # 1. Remove the extension, and $U if already installed.
24735 24735
   ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
24736
-  ac_i=`echo "$ac_i" | sed "$ac_script"`
24736
+  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
24737 24737
   # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
24738 24738
   #    will be set to the directory where LIBOBJS objects are built.
24739 24739
   ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext"
... ...
@@ -24745,30 +25447,30 @@ LTLIBOBJS=$ac_ltlibobjs
24745 24745
 
24746 24746
 
24747 24747
 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
24748
-  { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
24748
+  { { $as_echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
24749 24749
 Usually this means the macro was only invoked conditionally." >&5
24750
-echo "$as_me: error: conditional \"AMDEP\" was never defined.
24750
+$as_echo "$as_me: error: conditional \"AMDEP\" was never defined.
24751 24751
 Usually this means the macro was only invoked conditionally." >&2;}
24752 24752
    { (exit 1); exit 1; }; }
24753 24753
 fi
24754 24754
 if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
24755
-  { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.
24755
+  { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.
24756 24756
 Usually this means the macro was only invoked conditionally." >&5
24757
-echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.
24757
+$as_echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.
24758 24758
 Usually this means the macro was only invoked conditionally." >&2;}
24759 24759
    { (exit 1); exit 1; }; }
24760 24760
 fi
24761 24761
 if test -z "${INSTALL_LTDL_TRUE}" && test -z "${INSTALL_LTDL_FALSE}"; then
24762
-  { { echo "$as_me:$LINENO: error: conditional \"INSTALL_LTDL\" was never defined.
24762
+  { { $as_echo "$as_me:$LINENO: error: conditional \"INSTALL_LTDL\" was never defined.
24763 24763
 Usually this means the macro was only invoked conditionally." >&5
24764
-echo "$as_me: error: conditional \"INSTALL_LTDL\" was never defined.
24764
+$as_echo "$as_me: error: conditional \"INSTALL_LTDL\" was never defined.
24765 24765
 Usually this means the macro was only invoked conditionally." >&2;}
24766 24766
    { (exit 1); exit 1; }; }
24767 24767
 fi
24768 24768
 if test -z "${CONVENIENCE_LTDL_TRUE}" && test -z "${CONVENIENCE_LTDL_FALSE}"; then
24769
-  { { echo "$as_me:$LINENO: error: conditional \"CONVENIENCE_LTDL\" was never defined.
24769
+  { { $as_echo "$as_me:$LINENO: error: conditional \"CONVENIENCE_LTDL\" was never defined.
24770 24770
 Usually this means the macro was only invoked conditionally." >&5
24771
-echo "$as_me: error: conditional \"CONVENIENCE_LTDL\" was never defined.
24771
+$as_echo "$as_me: error: conditional \"CONVENIENCE_LTDL\" was never defined.
24772 24772
 Usually this means the macro was only invoked conditionally." >&2;}
24773 24773
    { (exit 1); exit 1; }; }
24774 24774
 fi
... ...
@@ -24789,83 +25491,85 @@ LT_CONFIG_H=clamav-config.h
24789 24789
     ltdl_LTLIBOBJS=$_ltdl_ltlibobjs
24790 24790
 
24791 24791
 
24792
+
24792 24793
 if test -z "${DISTCHECK_ENABLE_FLAGS_TRUE}" && test -z "${DISTCHECK_ENABLE_FLAGS_FALSE}"; then
24793
-  { { echo "$as_me:$LINENO: error: conditional \"DISTCHECK_ENABLE_FLAGS\" was never defined.
24794
+  { { $as_echo "$as_me:$LINENO: error: conditional \"DISTCHECK_ENABLE_FLAGS\" was never defined.
24794 24795
 Usually this means the macro was only invoked conditionally." >&5
24795
-echo "$as_me: error: conditional \"DISTCHECK_ENABLE_FLAGS\" was never defined.
24796
+$as_echo "$as_me: error: conditional \"DISTCHECK_ENABLE_FLAGS\" was never defined.
24796 24797
 Usually this means the macro was only invoked conditionally." >&2;}
24797 24798
    { (exit 1); exit 1; }; }
24798 24799
 fi
24799 24800
 if test -z "${VERSIONSCRIPT_TRUE}" && test -z "${VERSIONSCRIPT_FALSE}"; then
24800
-  { { echo "$as_me:$LINENO: error: conditional \"VERSIONSCRIPT\" was never defined.
24801
+  { { $as_echo "$as_me:$LINENO: error: conditional \"VERSIONSCRIPT\" was never defined.
24801 24802
 Usually this means the macro was only invoked conditionally." >&5
24802
-echo "$as_me: error: conditional \"VERSIONSCRIPT\" was never defined.
24803
+$as_echo "$as_me: error: conditional \"VERSIONSCRIPT\" was never defined.
24803 24804
 Usually this means the macro was only invoked conditionally." >&2;}
24804 24805
    { (exit 1); exit 1; }; }
24805 24806
 fi
24806 24807
 if test -z "${HAVE_LIBCHECK_TRUE}" && test -z "${HAVE_LIBCHECK_FALSE}"; then
24807
-  { { echo "$as_me:$LINENO: error: conditional \"HAVE_LIBCHECK\" was never defined.
24808
+  { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_LIBCHECK\" was never defined.
24808 24809
 Usually this means the macro was only invoked conditionally." >&5
24809
-echo "$as_me: error: conditional \"HAVE_LIBCHECK\" was never defined.
24810
+$as_echo "$as_me: error: conditional \"HAVE_LIBCHECK\" was never defined.
24810 24811
 Usually this means the macro was only invoked conditionally." >&2;}
24811 24812
    { (exit 1); exit 1; }; }
24812 24813
 fi
24813 24814
 if test -z "${ENABLE_COVERAGE_TRUE}" && test -z "${ENABLE_COVERAGE_FALSE}"; then
24814
-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_COVERAGE\" was never defined.
24815
+  { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_COVERAGE\" was never defined.
24815 24816
 Usually this means the macro was only invoked conditionally." >&5
24816
-echo "$as_me: error: conditional \"ENABLE_COVERAGE\" was never defined.
24817
+$as_echo "$as_me: error: conditional \"ENABLE_COVERAGE\" was never defined.
24817 24818
 Usually this means the macro was only invoked conditionally." >&2;}
24818 24819
    { (exit 1); exit 1; }; }
24819 24820
 fi
24820 24821
 if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
24821
-  { { echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined.
24822
+  { { $as_echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined.
24822 24823
 Usually this means the macro was only invoked conditionally." >&5
24823
-echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined.
24824
+$as_echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined.
24824 24825
 Usually this means the macro was only invoked conditionally." >&2;}
24825 24826
    { (exit 1); exit 1; }; }
24826 24827
 fi
24827 24828
 if test -z "${ENABLE_UNRAR_TRUE}" && test -z "${ENABLE_UNRAR_FALSE}"; then
24828
-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_UNRAR\" was never defined.
24829
+  { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_UNRAR\" was never defined.
24829 24830
 Usually this means the macro was only invoked conditionally." >&5
24830
-echo "$as_me: error: conditional \"ENABLE_UNRAR\" was never defined.
24831
+$as_echo "$as_me: error: conditional \"ENABLE_UNRAR\" was never defined.
24831 24832
 Usually this means the macro was only invoked conditionally." >&2;}
24832 24833
    { (exit 1); exit 1; }; }
24833 24834
 fi
24834 24835
 if test -z "${LINK_TOMMATH_TRUE}" && test -z "${LINK_TOMMATH_FALSE}"; then
24835
-  { { echo "$as_me:$LINENO: error: conditional \"LINK_TOMMATH\" was never defined.
24836
+  { { $as_echo "$as_me:$LINENO: error: conditional \"LINK_TOMMATH\" was never defined.
24836 24837
 Usually this means the macro was only invoked conditionally." >&5
24837
-echo "$as_me: error: conditional \"LINK_TOMMATH\" was never defined.
24838
+$as_echo "$as_me: error: conditional \"LINK_TOMMATH\" was never defined.
24838 24839
 Usually this means the macro was only invoked conditionally." >&2;}
24839 24840
    { (exit 1); exit 1; }; }
24840 24841
 fi
24841 24842
 if test -z "${BUILD_CLAMD_TRUE}" && test -z "${BUILD_CLAMD_FALSE}"; then
24842
-  { { echo "$as_me:$LINENO: error: conditional \"BUILD_CLAMD\" was never defined.
24843
+  { { $as_echo "$as_me:$LINENO: error: conditional \"BUILD_CLAMD\" was never defined.
24843 24844
 Usually this means the macro was only invoked conditionally." >&5
24844
-echo "$as_me: error: conditional \"BUILD_CLAMD\" was never defined.
24845
+$as_echo "$as_me: error: conditional \"BUILD_CLAMD\" was never defined.
24845 24846
 Usually this means the macro was only invoked conditionally." >&2;}
24846 24847
    { (exit 1); exit 1; }; }
24847 24848
 fi
24848 24849
 if test -z "${HAVE_MILTER_TRUE}" && test -z "${HAVE_MILTER_FALSE}"; then
24849
-  { { echo "$as_me:$LINENO: error: conditional \"HAVE_MILTER\" was never defined.
24850
+  { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_MILTER\" was never defined.
24850 24851
 Usually this means the macro was only invoked conditionally." >&5
24851
-echo "$as_me: error: conditional \"HAVE_MILTER\" was never defined.
24852
+$as_echo "$as_me: error: conditional \"HAVE_MILTER\" was never defined.
24852 24853
 Usually this means the macro was only invoked conditionally." >&2;}
24853 24854
    { (exit 1); exit 1; }; }
24854 24855
 fi
24855 24856
 if test -z "${HAVE_CURSES_TRUE}" && test -z "${HAVE_CURSES_FALSE}"; then
24856
-  { { echo "$as_me:$LINENO: error: conditional \"HAVE_CURSES\" was never defined.
24857
+  { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_CURSES\" was never defined.
24857 24858
 Usually this means the macro was only invoked conditionally." >&5
24858
-echo "$as_me: error: conditional \"HAVE_CURSES\" was never defined.
24859
+$as_echo "$as_me: error: conditional \"HAVE_CURSES\" was never defined.
24859 24860
 Usually this means the macro was only invoked conditionally." >&2;}
24860 24861
    { (exit 1); exit 1; }; }
24861 24862
 fi
24862 24863
 
24863 24864
 : ${CONFIG_STATUS=./config.status}
24865
+ac_write_fail=0
24864 24866
 ac_clean_files_save=$ac_clean_files
24865 24867
 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
24866
-{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
24867
-echo "$as_me: creating $CONFIG_STATUS" >&6;}
24868
-cat >$CONFIG_STATUS <<_ACEOF
24868
+{ $as_echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
24869
+$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
24870
+cat >$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
24869 24871
 #! $SHELL
24870 24872
 # Generated by $as_me.
24871 24873
 # Run this file to recreate the current configuration.
... ...
@@ -24878,7 +25582,7 @@ ac_cs_silent=false
24878 24878
 SHELL=\${CONFIG_SHELL-$SHELL}
24879 24879
 _ACEOF
24880 24880
 
24881
-cat >>$CONFIG_STATUS <<\_ACEOF
24881
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
24882 24882
 ## --------------------- ##
24883 24883
 ## M4sh Initialization.  ##
24884 24884
 ## --------------------- ##
... ...
@@ -24888,7 +25592,7 @@ DUALCASE=1; export DUALCASE # for MKS sh
24888 24888
 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
24889 24889
   emulate sh
24890 24890
   NULLCMD=:
24891
-  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
24891
+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
24892 24892
   # is contrary to our usage.  Disable this feature.
24893 24893
   alias -g '${1+"$@"}'='"$@"'
24894 24894
   setopt NO_GLOB_SUBST
... ...
@@ -24910,17 +25614,45 @@ as_cr_Letters=$as_cr_letters$as_cr_LETTERS
24910 24910
 as_cr_digits='0123456789'
24911 24911
 as_cr_alnum=$as_cr_Letters$as_cr_digits
24912 24912
 
24913
-# The user is always right.
24914
-if test "${PATH_SEPARATOR+set}" != set; then
24915
-  echo "#! /bin/sh" >conf$$.sh
24916
-  echo  "exit 0"   >>conf$$.sh
24917
-  chmod +x conf$$.sh
24918
-  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
24919
-    PATH_SEPARATOR=';'
24913
+as_nl='
24914
+'
24915
+export as_nl
24916
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
24917
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
24918
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
24919
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
24920
+if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
24921
+  as_echo='printf %s\n'
24922
+  as_echo_n='printf %s'
24923
+else
24924
+  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
24925
+    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
24926
+    as_echo_n='/usr/ucb/echo -n'
24920 24927
   else
24921
-    PATH_SEPARATOR=:
24928
+    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
24929
+    as_echo_n_body='eval
24930
+      arg=$1;
24931
+      case $arg in
24932
+      *"$as_nl"*)
24933
+	expr "X$arg" : "X\\(.*\\)$as_nl";
24934
+	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
24935
+      esac;
24936
+      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
24937
+    '
24938
+    export as_echo_n_body
24939
+    as_echo_n='sh -c $as_echo_n_body as_echo'
24922 24940
   fi
24923
-  rm -f conf$$.sh
24941
+  export as_echo_body
24942
+  as_echo='sh -c $as_echo_body as_echo'
24943
+fi
24944
+
24945
+# The user is always right.
24946
+if test "${PATH_SEPARATOR+set}" != set; then
24947
+  PATH_SEPARATOR=:
24948
+  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
24949
+    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
24950
+      PATH_SEPARATOR=';'
24951
+  }
24924 24952
 fi
24925 24953
 
24926 24954
 # Support unset when possible.
... ...
@@ -24936,8 +25668,6 @@ fi
24936 24936
 # there to prevent editors from complaining about space-tab.
24937 24937
 # (If _AS_PATH_WALK were called with IFS unset, it would disable word
24938 24938
 # splitting by setting IFS to empty value.)
24939
-as_nl='
24940
-'
24941 24939
 IFS=" ""	$as_nl"
24942 24940
 
24943 24941
 # Find who we are.  Look in the path if we contain no directory separator.
... ...
@@ -24960,7 +25690,7 @@ if test "x$as_myself" = x; then
24960 24960
   as_myself=$0
24961 24961
 fi
24962 24962
 if test ! -f "$as_myself"; then
24963
-  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
24963
+  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
24964 24964
   { (exit 1); exit 1; }
24965 24965
 fi
24966 24966
 
... ...
@@ -24973,17 +25703,10 @@ PS2='> '
24973 24973
 PS4='+ '
24974 24974
 
24975 24975
 # NLS nuisances.
24976
-for as_var in \
24977
-  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
24978
-  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
24979
-  LC_TELEPHONE LC_TIME
24980
-do
24981
-  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
24982
-    eval $as_var=C; export $as_var
24983
-  else
24984
-    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
24985
-  fi
24986
-done
24976
+LC_ALL=C
24977
+export LC_ALL
24978
+LANGUAGE=C
24979
+export LANGUAGE
24987 24980
 
24988 24981
 # Required to use basename.
24989 24982
 if expr a : '\(a\)' >/dev/null 2>&1 &&
... ...
@@ -25005,7 +25728,7 @@ as_me=`$as_basename -- "$0" ||
25005 25005
 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
25006 25006
 	 X"$0" : 'X\(//\)$' \| \
25007 25007
 	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
25008
-echo X/"$0" |
25008
+$as_echo X/"$0" |
25009 25009
     sed '/^.*\/\([^/][^/]*\)\/*$/{
25010 25010
 	    s//\1/
25011 25011
 	    q
... ...
@@ -25056,7 +25779,7 @@ $as_unset CDPATH
25056 25056
       s/-\n.*//
25057 25057
     ' >$as_me.lineno &&
25058 25058
   chmod +x "$as_me.lineno" ||
25059
-    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
25059
+    { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
25060 25060
    { (exit 1); exit 1; }; }
25061 25061
 
25062 25062
   # Don't try to exec as it changes $[0], causing all sort of problems
... ...
@@ -25084,7 +25807,6 @@ case `echo -n x` in
25084 25084
 *)
25085 25085
   ECHO_N='-n';;
25086 25086
 esac
25087
-
25088 25087
 if expr a : '\(a\)' >/dev/null 2>&1 &&
25089 25088
    test "X`expr 00001 : '.*\(...\)'`" = X001; then
25090 25089
   as_expr=expr
... ...
@@ -25097,19 +25819,22 @@ if test -d conf$$.dir; then
25097 25097
   rm -f conf$$.dir/conf$$.file
25098 25098
 else
25099 25099
   rm -f conf$$.dir
25100
-  mkdir conf$$.dir
25101
-fi
25102
-echo >conf$$.file
25103
-if ln -s conf$$.file conf$$ 2>/dev/null; then
25104
-  as_ln_s='ln -s'
25105
-  # ... but there are two gotchas:
25106
-  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
25107
-  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
25108
-  # In both cases, we have to default to `cp -p'.
25109
-  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
25100
+  mkdir conf$$.dir 2>/dev/null
25101
+fi
25102
+if (echo >conf$$.file) 2>/dev/null; then
25103
+  if ln -s conf$$.file conf$$ 2>/dev/null; then
25104
+    as_ln_s='ln -s'
25105
+    # ... but there are two gotchas:
25106
+    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
25107
+    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
25108
+    # In both cases, we have to default to `cp -p'.
25109
+    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
25110
+      as_ln_s='cp -p'
25111
+  elif ln conf$$.file conf$$ 2>/dev/null; then
25112
+    as_ln_s=ln
25113
+  else
25110 25114
     as_ln_s='cp -p'
25111
-elif ln conf$$.file conf$$ 2>/dev/null; then
25112
-  as_ln_s=ln
25115
+  fi
25113 25116
 else
25114 25117
   as_ln_s='cp -p'
25115 25118
 fi
... ...
@@ -25134,10 +25859,10 @@ else
25134 25134
   as_test_x='
25135 25135
     eval sh -c '\''
25136 25136
       if test -d "$1"; then
25137
-        test -d "$1/.";
25137
+	test -d "$1/.";
25138 25138
       else
25139 25139
 	case $1 in
25140
-        -*)set "./$1";;
25140
+	-*)set "./$1";;
25141 25141
 	esac;
25142 25142
 	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
25143 25143
 	???[sx]*):;;*)false;;esac;fi
... ...
@@ -25160,7 +25885,7 @@ exec 6>&1
25160 25160
 # values after options handling.
25161 25161
 ac_log="
25162 25162
 This file was extended by clamav $as_me devel, which was
25163
-generated by GNU Autoconf 2.61.  Invocation command line was
25163
+generated by GNU Autoconf 2.63.  Invocation command line was
25164 25164
 
25165 25165
   CONFIG_FILES    = $CONFIG_FILES
25166 25166
   CONFIG_HEADERS  = $CONFIG_HEADERS
... ...
@@ -25173,7 +25898,16 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q`
25173 25173
 
25174 25174
 _ACEOF
25175 25175
 
25176
-cat >>$CONFIG_STATUS <<_ACEOF
25176
+case $ac_config_files in *"
25177
+"*) set x $ac_config_files; shift; ac_config_files=$*;;
25178
+esac
25179
+
25180
+case $ac_config_headers in *"
25181
+"*) set x $ac_config_headers; shift; ac_config_headers=$*;;
25182
+esac
25183
+
25184
+
25185
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
25177 25186
 # Files that config.status was made for.
25178 25187
 config_files="$ac_config_files"
25179 25188
 config_headers="$ac_config_headers"
... ...
@@ -25181,22 +25915,23 @@ config_commands="$ac_config_commands"
25181 25181
 
25182 25182
 _ACEOF
25183 25183
 
25184
-cat >>$CONFIG_STATUS <<\_ACEOF
25184
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
25185 25185
 ac_cs_usage="\
25186 25186
 \`$as_me' instantiates files from templates according to the
25187 25187
 current configuration.
25188 25188
 
25189
-Usage: $0 [OPTIONS] [FILE]...
25189
+Usage: $0 [OPTION]... [FILE]...
25190 25190
 
25191 25191
   -h, --help       print this help, then exit
25192 25192
   -V, --version    print version number and configuration settings, then exit
25193
-  -q, --quiet      do not print progress messages
25193
+  -q, --quiet, --silent
25194
+                   do not print progress messages
25194 25195
   -d, --debug      don't remove temporary files
25195 25196
       --recheck    update $as_me by reconfiguring in the same conditions
25196
-  --file=FILE[:TEMPLATE]
25197
-		   instantiate the configuration file FILE
25198
-  --header=FILE[:TEMPLATE]
25199
-		   instantiate the configuration header FILE
25197
+      --file=FILE[:TEMPLATE]
25198
+                   instantiate the configuration file FILE
25199
+      --header=FILE[:TEMPLATE]
25200
+                   instantiate the configuration header FILE
25200 25201
 
25201 25202
 Configuration files:
25202 25203
 $config_files
... ...
@@ -25210,13 +25945,13 @@ $config_commands
25210 25210
 Report bugs to <bug-autoconf@gnu.org>."
25211 25211
 
25212 25212
 _ACEOF
25213
-cat >>$CONFIG_STATUS <<_ACEOF
25213
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
25214 25214
 ac_cs_version="\\
25215 25215
 clamav config.status devel
25216
-configured by $0, generated by GNU Autoconf 2.61,
25217
-  with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
25216
+configured by $0, generated by GNU Autoconf 2.63,
25217
+  with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
25218 25218
 
25219
-Copyright (C) 2006 Free Software Foundation, Inc.
25219
+Copyright (C) 2008 Free Software Foundation, Inc.
25220 25220
 This config.status script is free software; the Free Software Foundation
25221 25221
 gives unlimited permission to copy, distribute and modify it."
25222 25222
 
... ...
@@ -25224,11 +25959,12 @@ ac_pwd='$ac_pwd'
25224 25224
 srcdir='$srcdir'
25225 25225
 INSTALL='$INSTALL'
25226 25226
 MKDIR_P='$MKDIR_P'
25227
+AWK='$AWK'
25228
+test -n "\$AWK" || AWK=awk
25227 25229
 _ACEOF
25228 25230
 
25229
-cat >>$CONFIG_STATUS <<\_ACEOF
25230
-# If no file are specified by the user, then we need to provide default
25231
-# value.  By we need to know if files were specified by the user.
25231
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
25232
+# The default lists apply if the user does not specify any file.
25232 25233
 ac_need_defaults=:
25233 25234
 while test $# != 0
25234 25235
 do
... ...
@@ -25250,30 +25986,36 @@ do
25250 25250
   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
25251 25251
     ac_cs_recheck=: ;;
25252 25252
   --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
25253
-    echo "$ac_cs_version"; exit ;;
25253
+    $as_echo "$ac_cs_version"; exit ;;
25254 25254
   --debug | --debu | --deb | --de | --d | -d )
25255 25255
     debug=: ;;
25256 25256
   --file | --fil | --fi | --f )
25257 25257
     $ac_shift
25258
-    CONFIG_FILES="$CONFIG_FILES $ac_optarg"
25258
+    case $ac_optarg in
25259
+    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
25260
+    esac
25261
+    CONFIG_FILES="$CONFIG_FILES '$ac_optarg'"
25259 25262
     ac_need_defaults=false;;
25260 25263
   --header | --heade | --head | --hea )
25261 25264
     $ac_shift
25262
-    CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
25265
+    case $ac_optarg in
25266
+    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
25267
+    esac
25268
+    CONFIG_HEADERS="$CONFIG_HEADERS '$ac_optarg'"
25263 25269
     ac_need_defaults=false;;
25264 25270
   --he | --h)
25265 25271
     # Conflict between --help and --header
25266
-    { echo "$as_me: error: ambiguous option: $1
25272
+    { $as_echo "$as_me: error: ambiguous option: $1
25267 25273
 Try \`$0 --help' for more information." >&2
25268 25274
    { (exit 1); exit 1; }; };;
25269 25275
   --help | --hel | -h )
25270
-    echo "$ac_cs_usage"; exit ;;
25276
+    $as_echo "$ac_cs_usage"; exit ;;
25271 25277
   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
25272 25278
   | -silent | --silent | --silen | --sile | --sil | --si | --s)
25273 25279
     ac_cs_silent=: ;;
25274 25280
 
25275 25281
   # This is an error.
25276
-  -*) { echo "$as_me: error: unrecognized option: $1
25282
+  -*) { $as_echo "$as_me: error: unrecognized option: $1
25277 25283
 Try \`$0 --help' for more information." >&2
25278 25284
    { (exit 1); exit 1; }; } ;;
25279 25285
 
... ...
@@ -25292,27 +26034,29 @@ if $ac_cs_silent; then
25292 25292
 fi
25293 25293
 
25294 25294
 _ACEOF
25295
-cat >>$CONFIG_STATUS <<_ACEOF
25295
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
25296 25296
 if \$ac_cs_recheck; then
25297
-  echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
25298
-  CONFIG_SHELL=$SHELL
25297
+  set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
25298
+  shift
25299
+  \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
25300
+  CONFIG_SHELL='$SHELL'
25299 25301
   export CONFIG_SHELL
25300
-  exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
25302
+  exec "\$@"
25301 25303
 fi
25302 25304
 
25303 25305
 _ACEOF
25304
-cat >>$CONFIG_STATUS <<\_ACEOF
25306
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
25305 25307
 exec 5>>config.log
25306 25308
 {
25307 25309
   echo
25308 25310
   sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
25309 25311
 ## Running $as_me. ##
25310 25312
 _ASBOX
25311
-  echo "$ac_log"
25313
+  $as_echo "$ac_log"
25312 25314
 } >&5
25313 25315
 
25314 25316
 _ACEOF
25315
-cat >>$CONFIG_STATUS <<_ACEOF
25317
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
25316 25318
 #
25317 25319
 # INIT-COMMANDS
25318 25320
 #
... ...
@@ -25575,7 +26319,7 @@ fi
25575 25575
 
25576 25576
 _ACEOF
25577 25577
 
25578
-cat >>$CONFIG_STATUS <<\_ACEOF
25578
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
25579 25579
 
25580 25580
 # Handling of arguments.
25581 25581
 for ac_config_target in $ac_config_targets
... ...
@@ -25614,8 +26358,8 @@ do
25614 25614
     "docs/man/sigtool.1") CONFIG_FILES="$CONFIG_FILES docs/man/sigtool.1" ;;
25615 25615
     "docs/man/clamdtop.1") CONFIG_FILES="$CONFIG_FILES docs/man/clamdtop.1" ;;
25616 25616
 
25617
-  *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
25618
-echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
25617
+  *) { { $as_echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
25618
+$as_echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
25619 25619
    { (exit 1); exit 1; }; };;
25620 25620
   esac
25621 25621
 done
... ...
@@ -25656,280 +26400,144 @@ $debug ||
25656 25656
   (umask 077 && mkdir "$tmp")
25657 25657
 } ||
25658 25658
 {
25659
-   echo "$me: cannot create a temporary directory in ." >&2
25659
+   $as_echo "$as_me: cannot create a temporary directory in ." >&2
25660 25660
    { (exit 1); exit 1; }
25661 25661
 }
25662 25662
 
25663
-#
25664
-# Set up the sed scripts for CONFIG_FILES section.
25665
-#
25666
-
25667
-# No need to generate the scripts if there are no CONFIG_FILES.
25668
-# This happens for instance when ./config.status config.h
25663
+# Set up the scripts for CONFIG_FILES section.
25664
+# No need to generate them if there are no CONFIG_FILES.
25665
+# This happens for instance with `./config.status config.h'.
25669 25666
 if test -n "$CONFIG_FILES"; then
25670 25667
 
25671
-_ACEOF
25672
-
25673 25668
 
25674
-
25675
-ac_delim='%!_!# '
25676
-for ac_last_try in false false false false false :; do
25677
-  cat >conf$$subs.sed <<_ACEOF
25678
-SHELL!$SHELL$ac_delim
25679
-PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim
25680
-PACKAGE_NAME!$PACKAGE_NAME$ac_delim
25681
-PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim
25682
-PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim
25683
-PACKAGE_STRING!$PACKAGE_STRING$ac_delim
25684
-PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim
25685
-exec_prefix!$exec_prefix$ac_delim
25686
-prefix!$prefix$ac_delim
25687
-program_transform_name!$program_transform_name$ac_delim
25688
-bindir!$bindir$ac_delim
25689
-sbindir!$sbindir$ac_delim
25690
-libexecdir!$libexecdir$ac_delim
25691
-datarootdir!$datarootdir$ac_delim
25692
-datadir!$datadir$ac_delim
25693
-sysconfdir!$sysconfdir$ac_delim
25694
-sharedstatedir!$sharedstatedir$ac_delim
25695
-localstatedir!$localstatedir$ac_delim
25696
-includedir!$includedir$ac_delim
25697
-oldincludedir!$oldincludedir$ac_delim
25698
-docdir!$docdir$ac_delim
25699
-infodir!$infodir$ac_delim
25700
-htmldir!$htmldir$ac_delim
25701
-dvidir!$dvidir$ac_delim
25702
-pdfdir!$pdfdir$ac_delim
25703
-psdir!$psdir$ac_delim
25704
-libdir!$libdir$ac_delim
25705
-localedir!$localedir$ac_delim
25706
-mandir!$mandir$ac_delim
25707
-DEFS!$DEFS$ac_delim
25708
-ECHO_C!$ECHO_C$ac_delim
25709
-ECHO_N!$ECHO_N$ac_delim
25710
-ECHO_T!$ECHO_T$ac_delim
25711
-LIBS!$LIBS$ac_delim
25712
-build_alias!$build_alias$ac_delim
25713
-host_alias!$host_alias$ac_delim
25714
-target_alias!$target_alias$ac_delim
25715
-build!$build$ac_delim
25716
-build_cpu!$build_cpu$ac_delim
25717
-build_vendor!$build_vendor$ac_delim
25718
-build_os!$build_os$ac_delim
25719
-host!$host$ac_delim
25720
-host_cpu!$host_cpu$ac_delim
25721
-host_vendor!$host_vendor$ac_delim
25722
-host_os!$host_os$ac_delim
25723
-target!$target$ac_delim
25724
-target_cpu!$target_cpu$ac_delim
25725
-target_vendor!$target_vendor$ac_delim
25726
-target_os!$target_os$ac_delim
25727
-INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
25728
-INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
25729
-INSTALL_DATA!$INSTALL_DATA$ac_delim
25730
-am__isrc!$am__isrc$ac_delim
25731
-CYGPATH_W!$CYGPATH_W$ac_delim
25732
-PACKAGE!$PACKAGE$ac_delim
25733
-VERSION!$VERSION$ac_delim
25734
-ACLOCAL!$ACLOCAL$ac_delim
25735
-AUTOCONF!$AUTOCONF$ac_delim
25736
-AUTOMAKE!$AUTOMAKE$ac_delim
25737
-AUTOHEADER!$AUTOHEADER$ac_delim
25738
-MAKEINFO!$MAKEINFO$ac_delim
25739
-install_sh!$install_sh$ac_delim
25740
-STRIP!$STRIP$ac_delim
25741
-INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim
25742
-mkdir_p!$mkdir_p$ac_delim
25743
-AWK!$AWK$ac_delim
25744
-SET_MAKE!$SET_MAKE$ac_delim
25745
-am__leading_dot!$am__leading_dot$ac_delim
25746
-AMTAR!$AMTAR$ac_delim
25747
-am__tar!$am__tar$ac_delim
25748
-am__untar!$am__untar$ac_delim
25749
-LIBCLAMAV_VERSION!$LIBCLAMAV_VERSION$ac_delim
25750
-LN_S!$LN_S$ac_delim
25751
-LIBTOOL!$LIBTOOL$ac_delim
25752
-CC!$CC$ac_delim
25753
-CFLAGS!$CFLAGS$ac_delim
25754
-LDFLAGS!$LDFLAGS$ac_delim
25755
-CPPFLAGS!$CPPFLAGS$ac_delim
25756
-ac_ct_CC!$ac_ct_CC$ac_delim
25757
-EXEEXT!$EXEEXT$ac_delim
25758
-OBJEXT!$OBJEXT$ac_delim
25759
-DEPDIR!$DEPDIR$ac_delim
25760
-am__include!$am__include$ac_delim
25761
-am__quote!$am__quote$ac_delim
25762
-AMDEP_TRUE!$AMDEP_TRUE$ac_delim
25763
-AMDEP_FALSE!$AMDEP_FALSE$ac_delim
25764
-AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim
25765
-CCDEPMODE!$CCDEPMODE$ac_delim
25766
-am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim
25767
-am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim
25768
-SED!$SED$ac_delim
25769
-GREP!$GREP$ac_delim
25770
-EGREP!$EGREP$ac_delim
25771
-FGREP!$FGREP$ac_delim
25772
-LD!$LD$ac_delim
25773
-DUMPBIN!$DUMPBIN$ac_delim
25774
-ac_ct_DUMPBIN!$ac_ct_DUMPBIN$ac_delim
25775
-_ACEOF
25776
-
25777
-  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
25778
-    break
25779
-  elif $ac_last_try; then
25780
-    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
25781
-echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
25782
-   { (exit 1); exit 1; }; }
25783
-  else
25784
-    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
25785
-  fi
25786
-done
25787
-
25788
-ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
25789
-if test -n "$ac_eof"; then
25790
-  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
25791
-  ac_eof=`expr $ac_eof + 1`
25669
+ac_cr='
'
25670
+ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
25671
+if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
25672
+  ac_cs_awk_cr='\\r'
25673
+else
25674
+  ac_cs_awk_cr=$ac_cr
25792 25675
 fi
25793 25676
 
25794
-cat >>$CONFIG_STATUS <<_ACEOF
25795
-cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof
25796
-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
25797
-_ACEOF
25798
-sed '
25799
-s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
25800
-s/^/s,@/; s/!/@,|#_!!_#|/
25801
-:n
25802
-t n
25803
-s/'"$ac_delim"'$/,g/; t
25804
-s/$/\\/; p
25805
-N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
25806
-' >>$CONFIG_STATUS <conf$$subs.sed
25807
-rm -f conf$$subs.sed
25808
-cat >>$CONFIG_STATUS <<_ACEOF
25809
-CEOF$ac_eof
25677
+echo 'BEGIN {' >"$tmp/subs1.awk" &&
25810 25678
 _ACEOF
25811 25679
 
25812 25680
 
25681
+{
25682
+  echo "cat >conf$$subs.awk <<_ACEOF" &&
25683
+  echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
25684
+  echo "_ACEOF"
25685
+} >conf$$subs.sh ||
25686
+  { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
25687
+$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
25688
+   { (exit 1); exit 1; }; }
25689
+ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
25813 25690
 ac_delim='%!_!# '
25814 25691
 for ac_last_try in false false false false false :; do
25815
-  cat >conf$$subs.sed <<_ACEOF
25816
-NM!$NM$ac_delim
25817
-OBJDUMP!$OBJDUMP$ac_delim
25818
-AR!$AR$ac_delim
25819
-RANLIB!$RANLIB$ac_delim
25820
-lt_ECHO!$lt_ECHO$ac_delim
25821
-DSYMUTIL!$DSYMUTIL$ac_delim
25822
-NMEDIT!$NMEDIT$ac_delim
25823
-LIPO!$LIPO$ac_delim
25824
-OTOOL!$OTOOL$ac_delim
25825
-OTOOL64!$OTOOL64$ac_delim
25826
-CPP!$CPP$ac_delim
25827
-LIBLTDL!$LIBLTDL$ac_delim
25828
-LTDLDEPS!$LTDLDEPS$ac_delim
25829
-LTDLINCL!$LTDLINCL$ac_delim
25830
-INCLTDL!$INCLTDL$ac_delim
25831
-LT_DLLOADERS!$LT_DLLOADERS$ac_delim
25832
-LIBADD_DLOPEN!$LIBADD_DLOPEN$ac_delim
25833
-LIBADD_SHL_LOAD!$LIBADD_SHL_LOAD$ac_delim
25834
-LIBADD_DLD_LINK!$LIBADD_DLD_LINK$ac_delim
25835
-LT_DLPREOPEN!$LT_DLPREOPEN$ac_delim
25836
-LIBADD_DL!$LIBADD_DL$ac_delim
25837
-sys_symbol_underscore!$sys_symbol_underscore$ac_delim
25838
-ARGZ_H!$ARGZ_H$ac_delim
25839
-INSTALL_LTDL_TRUE!$INSTALL_LTDL_TRUE$ac_delim
25840
-INSTALL_LTDL_FALSE!$INSTALL_LTDL_FALSE$ac_delim
25841
-CONVENIENCE_LTDL_TRUE!$CONVENIENCE_LTDL_TRUE$ac_delim
25842
-CONVENIENCE_LTDL_FALSE!$CONVENIENCE_LTDL_FALSE$ac_delim
25843
-LT_CONFIG_H!$LT_CONFIG_H$ac_delim
25844
-LTDLOPEN!$LTDLOPEN$ac_delim
25845
-DISTCHECK_ENABLE_FLAGS_TRUE!$DISTCHECK_ENABLE_FLAGS_TRUE$ac_delim
25846
-DISTCHECK_ENABLE_FLAGS_FALSE!$DISTCHECK_ENABLE_FLAGS_FALSE$ac_delim
25847
-VERSIONSCRIPTFLAG!$VERSIONSCRIPTFLAG$ac_delim
25848
-VERSIONSCRIPT_TRUE!$VERSIONSCRIPT_TRUE$ac_delim
25849
-VERSIONSCRIPT_FALSE!$VERSIONSCRIPT_FALSE$ac_delim
25850
-GPERF!$GPERF$ac_delim
25851
-CHECK_CPPFLAGS!$CHECK_CPPFLAGS$ac_delim
25852
-CHECK_LIBS!$CHECK_LIBS$ac_delim
25853
-HAVE_LIBCHECK_TRUE!$HAVE_LIBCHECK_TRUE$ac_delim
25854
-HAVE_LIBCHECK_FALSE!$HAVE_LIBCHECK_FALSE$ac_delim
25855
-GCOV!$GCOV$ac_delim
25856
-LCOV!$LCOV$ac_delim
25857
-GENHTML!$GENHTML$ac_delim
25858
-ENABLE_COVERAGE_TRUE!$ENABLE_COVERAGE_TRUE$ac_delim
25859
-ENABLE_COVERAGE_FALSE!$ENABLE_COVERAGE_FALSE$ac_delim
25860
-MAINTAINER_MODE_TRUE!$MAINTAINER_MODE_TRUE$ac_delim
25861
-MAINTAINER_MODE_FALSE!$MAINTAINER_MODE_FALSE$ac_delim
25862
-MAINT!$MAINT$ac_delim
25863
-LIBBZ2!$LIBBZ2$ac_delim
25864
-LTLIBBZ2!$LTLIBBZ2$ac_delim
25865
-LIBBZ2_PREFIX!$LIBBZ2_PREFIX$ac_delim
25866
-ENABLE_UNRAR_TRUE!$ENABLE_UNRAR_TRUE$ac_delim
25867
-ENABLE_UNRAR_FALSE!$ENABLE_UNRAR_FALSE$ac_delim
25868
-LINK_TOMMATH_TRUE!$LINK_TOMMATH_TRUE$ac_delim
25869
-LINK_TOMMATH_FALSE!$LINK_TOMMATH_FALSE$ac_delim
25870
-DBDIR!$DBDIR$ac_delim
25871
-CFGDIR!$CFGDIR$ac_delim
25872
-LIBCLAMAV_LIBS!$LIBCLAMAV_LIBS$ac_delim
25873
-CLAMD_LIBS!$CLAMD_LIBS$ac_delim
25874
-CLAMAV_MILTER_LIBS!$CLAMAV_MILTER_LIBS$ac_delim
25875
-FRESHCLAM_LIBS!$FRESHCLAM_LIBS$ac_delim
25876
-TH_SAFE!$TH_SAFE$ac_delim
25877
-THREAD_LIBS!$THREAD_LIBS$ac_delim
25878
-BUILD_CLAMD_TRUE!$BUILD_CLAMD_TRUE$ac_delim
25879
-BUILD_CLAMD_FALSE!$BUILD_CLAMD_FALSE$ac_delim
25880
-HAVE_MILTER_TRUE!$HAVE_MILTER_TRUE$ac_delim
25881
-HAVE_MILTER_FALSE!$HAVE_MILTER_FALSE$ac_delim
25882
-GETENT!$GETENT$ac_delim
25883
-CLAMAVUSER!$CLAMAVUSER$ac_delim
25884
-CLAMAVGROUP!$CLAMAVGROUP$ac_delim
25885
-CURSES_CPPFLAGS!$CURSES_CPPFLAGS$ac_delim
25886
-CURSES_LIBS!$CURSES_LIBS$ac_delim
25887
-HAVE_CURSES_TRUE!$HAVE_CURSES_TRUE$ac_delim
25888
-HAVE_CURSES_FALSE!$HAVE_CURSES_FALSE$ac_delim
25889
-LIBOBJS!$LIBOBJS$ac_delim
25890
-LTLIBOBJS!$LTLIBOBJS$ac_delim
25891
-ltdl_LIBOBJS!$ltdl_LIBOBJS$ac_delim
25892
-ltdl_LTLIBOBJS!$ltdl_LTLIBOBJS$ac_delim
25893
-_ACEOF
25894
-
25895
-  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 77; then
25692
+  . ./conf$$subs.sh ||
25693
+    { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
25694
+$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
25695
+   { (exit 1); exit 1; }; }
25696
+
25697
+  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
25698
+  if test $ac_delim_n = $ac_delim_num; then
25896 25699
     break
25897 25700
   elif $ac_last_try; then
25898
-    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
25899
-echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
25701
+    { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
25702
+$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
25900 25703
    { (exit 1); exit 1; }; }
25901 25704
   else
25902 25705
     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
25903 25706
   fi
25904 25707
 done
25708
+rm -f conf$$subs.sh
25709
+
25710
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
25711
+cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&
25712
+_ACEOF
25713
+sed -n '
25714
+h
25715
+s/^/S["/; s/!.*/"]=/
25716
+p
25717
+g
25718
+s/^[^!]*!//
25719
+:repl
25720
+t repl
25721
+s/'"$ac_delim"'$//
25722
+t delim
25723
+:nl
25724
+h
25725
+s/\(.\{148\}\).*/\1/
25726
+t more1
25727
+s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
25728
+p
25729
+n
25730
+b repl
25731
+:more1
25732
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
25733
+p
25734
+g
25735
+s/.\{148\}//
25736
+t nl
25737
+:delim
25738
+h
25739
+s/\(.\{148\}\).*/\1/
25740
+t more2
25741
+s/["\\]/\\&/g; s/^/"/; s/$/"/
25742
+p
25743
+b
25744
+:more2
25745
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
25746
+p
25747
+g
25748
+s/.\{148\}//
25749
+t delim
25750
+' <conf$$subs.awk | sed '
25751
+/^[^""]/{
25752
+  N
25753
+  s/\n//
25754
+}
25755
+' >>$CONFIG_STATUS || ac_write_fail=1
25756
+rm -f conf$$subs.awk
25757
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
25758
+_ACAWK
25759
+cat >>"\$tmp/subs1.awk" <<_ACAWK &&
25760
+  for (key in S) S_is_set[key] = 1
25761
+  FS = ""
25905 25762
 
25906
-ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
25907
-if test -n "$ac_eof"; then
25908
-  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
25909
-  ac_eof=`expr $ac_eof + 1`
25910
-fi
25763
+}
25764
+{
25765
+  line = $ 0
25766
+  nfields = split(line, field, "@")
25767
+  substed = 0
25768
+  len = length(field[1])
25769
+  for (i = 2; i < nfields; i++) {
25770
+    key = field[i]
25771
+    keylen = length(key)
25772
+    if (S_is_set[key]) {
25773
+      value = S[key]
25774
+      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
25775
+      len += length(value) + length(field[++i])
25776
+      substed = 1
25777
+    } else
25778
+      len += 1 + keylen
25779
+  }
25780
+
25781
+  print line
25782
+}
25911 25783
 
25912
-cat >>$CONFIG_STATUS <<_ACEOF
25913
-cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof
25914
-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end
25784
+_ACAWK
25915 25785
 _ACEOF
25916
-sed '
25917
-s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
25918
-s/^/s,@/; s/!/@,|#_!!_#|/
25919
-:n
25920
-t n
25921
-s/'"$ac_delim"'$/,g/; t
25922
-s/$/\\/; p
25923
-N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
25924
-' >>$CONFIG_STATUS <conf$$subs.sed
25925
-rm -f conf$$subs.sed
25926
-cat >>$CONFIG_STATUS <<_ACEOF
25927
-:end
25928
-s/|#_!!_#|//g
25929
-CEOF$ac_eof
25786
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
25787
+if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
25788
+  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
25789
+else
25790
+  cat
25791
+fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
25792
+  || { { $as_echo "$as_me:$LINENO: error: could not setup config files machinery" >&5
25793
+$as_echo "$as_me: error: could not setup config files machinery" >&2;}
25794
+   { (exit 1); exit 1; }; }
25930 25795
 _ACEOF
25931 25796
 
25932
-
25933 25797
 # VPATH may cause trouble with some makes, so we remove $(srcdir),
25934 25798
 # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
25935 25799
 # trailing colons and then remove the whole line if VPATH becomes empty
... ...
@@ -25945,19 +26553,133 @@ s/^[^=]*=[	 ]*$//
25945 25945
 }'
25946 25946
 fi
25947 25947
 
25948
-cat >>$CONFIG_STATUS <<\_ACEOF
25948
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
25949 25949
 fi # test -n "$CONFIG_FILES"
25950 25950
 
25951
+# Set up the scripts for CONFIG_HEADERS section.
25952
+# No need to generate them if there are no CONFIG_HEADERS.
25953
+# This happens for instance with `./config.status Makefile'.
25954
+if test -n "$CONFIG_HEADERS"; then
25955
+cat >"$tmp/defines.awk" <<\_ACAWK ||
25956
+BEGIN {
25957
+_ACEOF
25958
+
25959
+# Transform confdefs.h into an awk script `defines.awk', embedded as
25960
+# here-document in config.status, that substitutes the proper values into
25961
+# config.h.in to produce config.h.
25962
+
25963
+# Create a delimiter string that does not exist in confdefs.h, to ease
25964
+# handling of long lines.
25965
+ac_delim='%!_!# '
25966
+for ac_last_try in false false :; do
25967
+  ac_t=`sed -n "/$ac_delim/p" confdefs.h`
25968
+  if test -z "$ac_t"; then
25969
+    break
25970
+  elif $ac_last_try; then
25971
+    { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_HEADERS" >&5
25972
+$as_echo "$as_me: error: could not make $CONFIG_HEADERS" >&2;}
25973
+   { (exit 1); exit 1; }; }
25974
+  else
25975
+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
25976
+  fi
25977
+done
25978
+
25979
+# For the awk script, D is an array of macro values keyed by name,
25980
+# likewise P contains macro parameters if any.  Preserve backslash
25981
+# newline sequences.
25982
+
25983
+ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
25984
+sed -n '
25985
+s/.\{148\}/&'"$ac_delim"'/g
25986
+t rset
25987
+:rset
25988
+s/^[	 ]*#[	 ]*define[	 ][	 ]*/ /
25989
+t def
25990
+d
25991
+:def
25992
+s/\\$//
25993
+t bsnl
25994
+s/["\\]/\\&/g
25995
+s/^ \('"$ac_word_re"'\)\(([^()]*)\)[	 ]*\(.*\)/P["\1"]="\2"\
25996
+D["\1"]=" \3"/p
25997
+s/^ \('"$ac_word_re"'\)[	 ]*\(.*\)/D["\1"]=" \2"/p
25998
+d
25999
+:bsnl
26000
+s/["\\]/\\&/g
26001
+s/^ \('"$ac_word_re"'\)\(([^()]*)\)[	 ]*\(.*\)/P["\1"]="\2"\
26002
+D["\1"]=" \3\\\\\\n"\\/p
26003
+t cont
26004
+s/^ \('"$ac_word_re"'\)[	 ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p
26005
+t cont
26006
+d
26007
+:cont
26008
+n
26009
+s/.\{148\}/&'"$ac_delim"'/g
26010
+t clear
26011
+:clear
26012
+s/\\$//
26013
+t bsnlc
26014
+s/["\\]/\\&/g; s/^/"/; s/$/"/p
26015
+d
26016
+:bsnlc
26017
+s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p
26018
+b cont
26019
+' <confdefs.h | sed '
26020
+s/'"$ac_delim"'/"\\\
26021
+"/g' >>$CONFIG_STATUS || ac_write_fail=1
26022
+
26023
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
26024
+  for (key in D) D_is_set[key] = 1
26025
+  FS = ""
26026
+}
26027
+/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ {
26028
+  line = \$ 0
26029
+  split(line, arg, " ")
26030
+  if (arg[1] == "#") {
26031
+    defundef = arg[2]
26032
+    mac1 = arg[3]
26033
+  } else {
26034
+    defundef = substr(arg[1], 2)
26035
+    mac1 = arg[2]
26036
+  }
26037
+  split(mac1, mac2, "(") #)
26038
+  macro = mac2[1]
26039
+  prefix = substr(line, 1, index(line, defundef) - 1)
26040
+  if (D_is_set[macro]) {
26041
+    # Preserve the white space surrounding the "#".
26042
+    print prefix "define", macro P[macro] D[macro]
26043
+    next
26044
+  } else {
26045
+    # Replace #undef with comments.  This is necessary, for example,
26046
+    # in the case of _POSIX_SOURCE, which is predefined and required
26047
+    # on some systems where configure will not decide to define it.
26048
+    if (defundef == "undef") {
26049
+      print "/*", prefix defundef, macro, "*/"
26050
+      next
26051
+    }
26052
+  }
26053
+}
26054
+{ print }
26055
+_ACAWK
26056
+_ACEOF
26057
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
26058
+  { { $as_echo "$as_me:$LINENO: error: could not setup config headers machinery" >&5
26059
+$as_echo "$as_me: error: could not setup config headers machinery" >&2;}
26060
+   { (exit 1); exit 1; }; }
26061
+fi # test -n "$CONFIG_HEADERS"
26062
+
25951 26063
 
25952
-for ac_tag in  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS
26064
+eval set X "  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS"
26065
+shift
26066
+for ac_tag
25953 26067
 do
25954 26068
   case $ac_tag in
25955 26069
   :[FHLC]) ac_mode=$ac_tag; continue;;
25956 26070
   esac
25957 26071
   case $ac_mode$ac_tag in
25958 26072
   :[FHL]*:*);;
25959
-  :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5
25960
-echo "$as_me: error: Invalid tag $ac_tag." >&2;}
26073
+  :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: invalid tag $ac_tag" >&5
26074
+$as_echo "$as_me: error: invalid tag $ac_tag" >&2;}
25961 26075
    { (exit 1); exit 1; }; };;
25962 26076
   :[FH]-) ac_tag=-:-;;
25963 26077
   :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
... ...
@@ -25986,26 +26708,38 @@ echo "$as_me: error: Invalid tag $ac_tag." >&2;}
25986 25986
 	   [\\/$]*) false;;
25987 25987
 	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
25988 25988
 	   esac ||
25989
-	   { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
25990
-echo "$as_me: error: cannot find input file: $ac_f" >&2;}
25989
+	   { { $as_echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
25990
+$as_echo "$as_me: error: cannot find input file: $ac_f" >&2;}
25991 25991
    { (exit 1); exit 1; }; };;
25992 25992
       esac
25993
-      ac_file_inputs="$ac_file_inputs $ac_f"
25993
+      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
25994
+      ac_file_inputs="$ac_file_inputs '$ac_f'"
25994 25995
     done
25995 25996
 
25996 25997
     # Let's still pretend it is `configure' which instantiates (i.e., don't
25997 25998
     # use $as_me), people would be surprised to read:
25998 25999
     #    /* config.h.  Generated by config.status.  */
25999
-    configure_input="Generated from "`IFS=:
26000
-	  echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure."
26000
+    configure_input='Generated from '`
26001
+	  $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
26002
+	`' by configure.'
26001 26003
     if test x"$ac_file" != x-; then
26002 26004
       configure_input="$ac_file.  $configure_input"
26003
-      { echo "$as_me:$LINENO: creating $ac_file" >&5
26004
-echo "$as_me: creating $ac_file" >&6;}
26005
+      { $as_echo "$as_me:$LINENO: creating $ac_file" >&5
26006
+$as_echo "$as_me: creating $ac_file" >&6;}
26005 26007
     fi
26008
+    # Neutralize special characters interpreted by sed in replacement strings.
26009
+    case $configure_input in #(
26010
+    *\&* | *\|* | *\\* )
26011
+       ac_sed_conf_input=`$as_echo "$configure_input" |
26012
+       sed 's/[\\\\&|]/\\\\&/g'`;; #(
26013
+    *) ac_sed_conf_input=$configure_input;;
26014
+    esac
26006 26015
 
26007 26016
     case $ac_tag in
26008
-    *:-:* | *:-) cat >"$tmp/stdin";;
26017
+    *:-:* | *:-) cat >"$tmp/stdin" \
26018
+      || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
26019
+$as_echo "$as_me: error: could not create $ac_file" >&2;}
26020
+   { (exit 1); exit 1; }; } ;;
26009 26021
     esac
26010 26022
     ;;
26011 26023
   esac
... ...
@@ -26015,7 +26749,7 @@ $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
26015 26015
 	 X"$ac_file" : 'X\(//\)[^/]' \| \
26016 26016
 	 X"$ac_file" : 'X\(//\)$' \| \
26017 26017
 	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
26018
-echo X"$ac_file" |
26018
+$as_echo X"$ac_file" |
26019 26019
     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
26020 26020
 	    s//\1/
26021 26021
 	    q
... ...
@@ -26041,7 +26775,7 @@ echo X"$ac_file" |
26041 26041
     as_dirs=
26042 26042
     while :; do
26043 26043
       case $as_dir in #(
26044
-      *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
26044
+      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
26045 26045
       *) as_qdir=$as_dir;;
26046 26046
       esac
26047 26047
       as_dirs="'$as_qdir' $as_dirs"
... ...
@@ -26050,7 +26784,7 @@ $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
26050 26050
 	 X"$as_dir" : 'X\(//\)[^/]' \| \
26051 26051
 	 X"$as_dir" : 'X\(//\)$' \| \
26052 26052
 	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
26053
-echo X"$as_dir" |
26053
+$as_echo X"$as_dir" |
26054 26054
     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
26055 26055
 	    s//\1/
26056 26056
 	    q
... ...
@@ -26071,17 +26805,17 @@ echo X"$as_dir" |
26071 26071
       test -d "$as_dir" && break
26072 26072
     done
26073 26073
     test -z "$as_dirs" || eval "mkdir $as_dirs"
26074
-  } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
26075
-echo "$as_me: error: cannot create directory $as_dir" >&2;}
26074
+  } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
26075
+$as_echo "$as_me: error: cannot create directory $as_dir" >&2;}
26076 26076
    { (exit 1); exit 1; }; }; }
26077 26077
   ac_builddir=.
26078 26078
 
26079 26079
 case "$ac_dir" in
26080 26080
 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
26081 26081
 *)
26082
-  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
26082
+  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
26083 26083
   # A ".." for each directory in $ac_dir_suffix.
26084
-  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
26084
+  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
26085 26085
   case $ac_top_builddir_sub in
26086 26086
   "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
26087 26087
   *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
... ...
@@ -26126,12 +26860,13 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
26126 26126
   esac
26127 26127
 _ACEOF
26128 26128
 
26129
-cat >>$CONFIG_STATUS <<\_ACEOF
26129
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
26130 26130
 # If the template does not know about datarootdir, expand it.
26131 26131
 # FIXME: This hack should be removed a few years after 2.60.
26132 26132
 ac_datarootdir_hack=; ac_datarootdir_seen=
26133 26133
 
26134
-case `sed -n '/datarootdir/ {
26134
+ac_sed_dataroot='
26135
+/datarootdir/ {
26135 26136
   p
26136 26137
   q
26137 26138
 }
... ...
@@ -26140,13 +26875,14 @@ case `sed -n '/datarootdir/ {
26140 26140
 /@infodir@/p
26141 26141
 /@localedir@/p
26142 26142
 /@mandir@/p
26143
-' $ac_file_inputs` in
26143
+'
26144
+case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
26144 26145
 *datarootdir*) ac_datarootdir_seen=yes;;
26145 26146
 *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
26146
-  { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
26147
-echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
26147
+  { $as_echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
26148
+$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
26148 26149
 _ACEOF
26149
-cat >>$CONFIG_STATUS <<_ACEOF
26150
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
26150 26151
   ac_datarootdir_hack='
26151 26152
   s&@datadir@&$datadir&g
26152 26153
   s&@docdir@&$docdir&g
... ...
@@ -26160,15 +26896,16 @@ _ACEOF
26160 26160
 # Neutralize VPATH when `$srcdir' = `.'.
26161 26161
 # Shell code in configure.ac might set extrasub.
26162 26162
 # FIXME: do we really want to maintain this feature?
26163
-cat >>$CONFIG_STATUS <<_ACEOF
26164
-  sed "$ac_vpsub
26163
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
26164
+ac_sed_extra="$ac_vpsub
26165 26165
 $extrasub
26166 26166
 _ACEOF
26167
-cat >>$CONFIG_STATUS <<\_ACEOF
26167
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
26168 26168
 :t
26169 26169
 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
26170
-s&@configure_input@&$configure_input&;t t
26170
+s|@configure_input@|$ac_sed_conf_input|;t t
26171 26171
 s&@top_builddir@&$ac_top_builddir_sub&;t t
26172
+s&@top_build_prefix@&$ac_top_build_prefix&;t t
26172 26173
 s&@srcdir@&$ac_srcdir&;t t
26173 26174
 s&@abs_srcdir@&$ac_abs_srcdir&;t t
26174 26175
 s&@top_srcdir@&$ac_top_srcdir&;t t
... ...
@@ -26179,121 +26916,60 @@ s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
26179 26179
 s&@INSTALL@&$ac_INSTALL&;t t
26180 26180
 s&@MKDIR_P@&$ac_MKDIR_P&;t t
26181 26181
 $ac_datarootdir_hack
26182
-" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out
26182
+"
26183
+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
26184
+  || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
26185
+$as_echo "$as_me: error: could not create $ac_file" >&2;}
26186
+   { (exit 1); exit 1; }; }
26183 26187
 
26184 26188
 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
26185 26189
   { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
26186 26190
   { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
26187
-  { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
26191
+  { $as_echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
26188 26192
 which seems to be undefined.  Please make sure it is defined." >&5
26189
-echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
26193
+$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
26190 26194
 which seems to be undefined.  Please make sure it is defined." >&2;}
26191 26195
 
26192 26196
   rm -f "$tmp/stdin"
26193 26197
   case $ac_file in
26194
-  -) cat "$tmp/out"; rm -f "$tmp/out";;
26195
-  *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
26196
-  esac
26198
+  -) cat "$tmp/out" && rm -f "$tmp/out";;
26199
+  *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
26200
+  esac \
26201
+  || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
26202
+$as_echo "$as_me: error: could not create $ac_file" >&2;}
26203
+   { (exit 1); exit 1; }; }
26197 26204
  ;;
26198 26205
   :H)
26199 26206
   #
26200 26207
   # CONFIG_HEADER
26201 26208
   #
26202
-_ACEOF
26203
-
26204
-# Transform confdefs.h into a sed script `conftest.defines', that
26205
-# substitutes the proper values into config.h.in to produce config.h.
26206
-rm -f conftest.defines conftest.tail
26207
-# First, append a space to every undef/define line, to ease matching.
26208
-echo 's/$/ /' >conftest.defines
26209
-# Then, protect against being on the right side of a sed subst, or in
26210
-# an unquoted here document, in config.status.  If some macros were
26211
-# called several times there might be several #defines for the same
26212
-# symbol, which is useless.  But do not sort them, since the last
26213
-# AC_DEFINE must be honored.
26214
-ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
26215
-# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where
26216
-# NAME is the cpp macro being defined, VALUE is the value it is being given.
26217
-# PARAMS is the parameter list in the macro definition--in most cases, it's
26218
-# just an empty string.
26219
-ac_dA='s,^\\([	 #]*\\)[^	 ]*\\([	 ]*'
26220
-ac_dB='\\)[	 (].*,\\1define\\2'
26221
-ac_dC=' '
26222
-ac_dD=' ,'
26223
-
26224
-uniq confdefs.h |
26225
-  sed -n '
26226
-	t rset
26227
-	:rset
26228
-	s/^[	 ]*#[	 ]*define[	 ][	 ]*//
26229
-	t ok
26230
-	d
26231
-	:ok
26232
-	s/[\\&,]/\\&/g
26233
-	s/^\('"$ac_word_re"'\)\(([^()]*)\)[	 ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p
26234
-	s/^\('"$ac_word_re"'\)[	 ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p
26235
-  ' >>conftest.defines
26236
-
26237
-# Remove the space that was appended to ease matching.
26238
-# Then replace #undef with comments.  This is necessary, for
26239
-# example, in the case of _POSIX_SOURCE, which is predefined and required
26240
-# on some systems where configure will not decide to define it.
26241
-# (The regexp can be short, since the line contains either #define or #undef.)
26242
-echo 's/ $//
26243
-s,^[	 #]*u.*,/* & */,' >>conftest.defines
26244
-
26245
-# Break up conftest.defines:
26246
-ac_max_sed_lines=50
26247
-
26248
-# First sed command is:	 sed -f defines.sed $ac_file_inputs >"$tmp/out1"
26249
-# Second one is:	 sed -f defines.sed "$tmp/out1" >"$tmp/out2"
26250
-# Third one will be:	 sed -f defines.sed "$tmp/out2" >"$tmp/out1"
26251
-# et cetera.
26252
-ac_in='$ac_file_inputs'
26253
-ac_out='"$tmp/out1"'
26254
-ac_nxt='"$tmp/out2"'
26255
-
26256
-while :
26257
-do
26258
-  # Write a here document:
26259
-    cat >>$CONFIG_STATUS <<_ACEOF
26260
-    # First, check the format of the line:
26261
-    cat >"\$tmp/defines.sed" <<\\CEOF
26262
-/^[	 ]*#[	 ]*undef[	 ][	 ]*$ac_word_re[	 ]*\$/b def
26263
-/^[	 ]*#[	 ]*define[	 ][	 ]*$ac_word_re[(	 ]/b def
26264
-b
26265
-:def
26266
-_ACEOF
26267
-  sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS
26268
-  echo 'CEOF
26269
-    sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS
26270
-  ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in
26271
-  sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail
26272
-  grep . conftest.tail >/dev/null || break
26273
-  rm -f conftest.defines
26274
-  mv conftest.tail conftest.defines
26275
-done
26276
-rm -f conftest.defines conftest.tail
26277
-
26278
-echo "ac_result=$ac_in" >>$CONFIG_STATUS
26279
-cat >>$CONFIG_STATUS <<\_ACEOF
26280 26209
   if test x"$ac_file" != x-; then
26281
-    echo "/* $configure_input  */" >"$tmp/config.h"
26282
-    cat "$ac_result" >>"$tmp/config.h"
26283
-    if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then
26284
-      { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
26285
-echo "$as_me: $ac_file is unchanged" >&6;}
26210
+    {
26211
+      $as_echo "/* $configure_input  */" \
26212
+      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
26213
+    } >"$tmp/config.h" \
26214
+      || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
26215
+$as_echo "$as_me: error: could not create $ac_file" >&2;}
26216
+   { (exit 1); exit 1; }; }
26217
+    if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
26218
+      { $as_echo "$as_me:$LINENO: $ac_file is unchanged" >&5
26219
+$as_echo "$as_me: $ac_file is unchanged" >&6;}
26286 26220
     else
26287
-      rm -f $ac_file
26288
-      mv "$tmp/config.h" $ac_file
26221
+      rm -f "$ac_file"
26222
+      mv "$tmp/config.h" "$ac_file" \
26223
+	|| { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
26224
+$as_echo "$as_me: error: could not create $ac_file" >&2;}
26225
+   { (exit 1); exit 1; }; }
26289 26226
     fi
26290 26227
   else
26291
-    echo "/* $configure_input  */"
26292
-    cat "$ac_result"
26228
+    $as_echo "/* $configure_input  */" \
26229
+      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
26230
+      || { { $as_echo "$as_me:$LINENO: error: could not create -" >&5
26231
+$as_echo "$as_me: error: could not create -" >&2;}
26232
+   { (exit 1); exit 1; }; }
26293 26233
   fi
26294
-  rm -f "$tmp/out12"
26295
-# Compute $ac_file's index in $config_headers.
26296
-_am_arg=$ac_file
26234
+# Compute "$ac_file"'s index in $config_headers.
26235
+_am_arg="$ac_file"
26297 26236
 _am_stamp_count=1
26298 26237
 for _am_header in $config_headers :; do
26299 26238
   case $_am_header in
... ...
@@ -26308,7 +26984,7 @@ $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
26308 26308
 	 X"$_am_arg" : 'X\(//\)[^/]' \| \
26309 26309
 	 X"$_am_arg" : 'X\(//\)$' \| \
26310 26310
 	 X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
26311
-echo X"$_am_arg" |
26311
+$as_echo X"$_am_arg" |
26312 26312
     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
26313 26313
 	    s//\1/
26314 26314
 	    q
... ...
@@ -26328,8 +27004,8 @@ echo X"$_am_arg" |
26328 26328
 	  s/.*/./; q'`/stamp-h$_am_stamp_count
26329 26329
  ;;
26330 26330
 
26331
-  :C)  { echo "$as_me:$LINENO: executing $ac_file commands" >&5
26332
-echo "$as_me: executing $ac_file commands" >&6;}
26331
+  :C)  { $as_echo "$as_me:$LINENO: executing $ac_file commands" >&5
26332
+$as_echo "$as_me: executing $ac_file commands" >&6;}
26333 26333
  ;;
26334 26334
   esac
26335 26335
 
... ...
@@ -26351,7 +27027,7 @@ $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
26351 26351
 	 X"$mf" : 'X\(//\)[^/]' \| \
26352 26352
 	 X"$mf" : 'X\(//\)$' \| \
26353 26353
 	 X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
26354
-echo X"$mf" |
26354
+$as_echo X"$mf" |
26355 26355
     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
26356 26356
 	    s//\1/
26357 26357
 	    q
... ...
@@ -26395,7 +27071,7 @@ $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
26395 26395
 	 X"$file" : 'X\(//\)[^/]' \| \
26396 26396
 	 X"$file" : 'X\(//\)$' \| \
26397 26397
 	 X"$file" : 'X\(/\)' \| . 2>/dev/null ||
26398
-echo X"$file" |
26398
+$as_echo X"$file" |
26399 26399
     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
26400 26400
 	    s//\1/
26401 26401
 	    q
... ...
@@ -26421,7 +27097,7 @@ echo X"$file" |
26421 26421
     as_dirs=
26422 26422
     while :; do
26423 26423
       case $as_dir in #(
26424
-      *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
26424
+      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
26425 26425
       *) as_qdir=$as_dir;;
26426 26426
       esac
26427 26427
       as_dirs="'$as_qdir' $as_dirs"
... ...
@@ -26430,7 +27106,7 @@ $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
26430 26430
 	 X"$as_dir" : 'X\(//\)[^/]' \| \
26431 26431
 	 X"$as_dir" : 'X\(//\)$' \| \
26432 26432
 	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
26433
-echo X"$as_dir" |
26433
+$as_echo X"$as_dir" |
26434 26434
     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
26435 26435
 	    s//\1/
26436 26436
 	    q
... ...
@@ -26451,8 +27127,8 @@ echo X"$as_dir" |
26451 26451
       test -d "$as_dir" && break
26452 26452
     done
26453 26453
     test -z "$as_dirs" || eval "mkdir $as_dirs"
26454
-  } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
26455
-echo "$as_me: error: cannot create directory $as_dir" >&2;}
26454
+  } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
26455
+$as_echo "$as_me: error: cannot create directory $as_dir" >&2;}
26456 26456
    { (exit 1); exit 1; }; }; }
26457 26457
     # echo "creating $dirpart/$file"
26458 26458
     echo '# dummy' > "$dirpart/$file"
... ...
@@ -27104,6 +27780,11 @@ _ACEOF
27104 27104
 chmod +x $CONFIG_STATUS
27105 27105
 ac_clean_files=$ac_clean_files_save
27106 27106
 
27107
+test $ac_write_fail = 0 ||
27108
+  { { $as_echo "$as_me:$LINENO: error: write failure creating $CONFIG_STATUS" >&5
27109
+$as_echo "$as_me: error: write failure creating $CONFIG_STATUS" >&2;}
27110
+   { (exit 1); exit 1; }; }
27111
+
27107 27112
 
27108 27113
 # configure is writing to config.log, and then calls config.status.
27109 27114
 # config.status does its own redirection, appending to config.log.
... ...
@@ -27125,18 +27806,22 @@ if test "$no_create" != yes; then
27125 27125
   # would make configure fail if this is the last instruction.
27126 27126
   $ac_cs_success || { (exit 1); exit 1; }
27127 27127
 fi
27128
+if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
27129
+  { $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
27130
+$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
27131
+fi
27128 27132
 
27129 27133
 
27130 27134
 # Yep, downgrading the compiler avoids the bug too:
27131 27135
 # 4.0.x, and 4.1.0 are the known buggy versions
27132 27136
 # 3.4 doesn't have the bug
27133 27137
 if test "x$gcc_check" != "xyes"; then
27134
-	{ echo "$as_me:$LINENO: WARNING:
27138
+	{ $as_echo "$as_me:$LINENO: WARNING:
27135 27139
 ****** Optimizations disabled to avoid compiler bugs
27136 27140
 ****** The resulting binaries will be slow!
27137 27141
 ****** It is recommended to either upgrade or downgrade your compiler
27138 27142
 " >&5
27139
-echo "$as_me: WARNING:
27143
+$as_echo "$as_me: WARNING:
27140 27144
 ****** Optimizations disabled to avoid compiler bugs
27141 27145
 ****** The resulting binaries will be slow!
27142 27146
 ****** It is recommended to either upgrade or downgrade your compiler
... ...
@@ -27144,14 +27829,14 @@ echo "$as_me: WARNING:
27144 27144
 fi
27145 27145
 
27146 27146
 if test "x$cross_compiling" != "xno" || test "x$gcc_check" != "xyes" || test "x$zlib_check" = "xno" ; then
27147
-{ echo "$as_me:$LINENO: WARNING:
27147
+{ $as_echo "$as_me:$LINENO: WARNING:
27148 27148
 ****** WARNING:
27149 27149
 ****** You are either cross compiling to a different host or
27150 27150
 ****** you have manually disabled important configure checks.
27151 27151
 ****** Please be aware that this build may be badly broken.
27152 27152
 ****** DO NOT REPORT BUGS BASED ON THIS BUILD !!!
27153 27153
 " >&5
27154
-echo "$as_me: WARNING:
27154
+$as_echo "$as_me: WARNING:
27155 27155
 ****** WARNING:
27156 27156
 ****** You are either cross compiling to a different host or
27157 27157
 ****** you have manually disabled important configure checks.
... ...
@@ -605,7 +605,7 @@ want_getaddrinfo=$enableval, want_getaddrinfo="yes")
605 605
 if test "$want_getaddrinfo" = "yes"
606 606
 then
607 607
     AC_MSG_CHECKING([for getaddrinfo])
608
-    AC_CACHE_VAL([have_gai],[
608
+    AC_CACHE_VAL([have_cv_gai],[
609 609
 		AC_TRY_RUN([
610 610
 		    #include <sys/types.h>
611 611
 		    #include <sys/socket.h>
... ...
@@ -623,12 +623,12 @@ then
623 623
 			return 0;
624 624
 		    }
625 625
 		],
626
-		[have_gai=yes],
627
-		[have_gai=no],
628
-		[have_gai=no])
626
+		[have_cv_gai=yes],
627
+		[have_cv_gai=no],
628
+		[have_cv_gai=no])
629 629
 		])
630
-    AC_MSG_RESULT([$have_gai])
631
-    if test "$have_gai" = yes; then
630
+    AC_MSG_RESULT([$have_cv_gai])
631
+    if test "$have_cv_gai" = yes; then
632 632
 	AC_DEFINE(HAVE_GETADDRINFO, 1, [have getaddrinfo()])
633 633
     fi
634 634
 fi
... ...
@@ -640,7 +640,7 @@ want_ipv6=$enableval, want_ipv6="yes")
640 640
 if test "$want_ipv6" = "yes"
641 641
 then
642 642
     AC_MSG_CHECKING([for IPv6 support])
643
-    AC_CACHE_VAL([have_ipv6],[
643
+    AC_CACHE_VAL([have_cv_ipv6],[
644 644
 		AC_TRY_RUN([
645 645
 		    #include <sys/types.h>
646 646
 		    #include <sys/socket.h>
... ...
@@ -663,12 +663,12 @@ then
663 663
 			return 0;
664 664
 		    }
665 665
 		],
666
-		[have_ipv6=yes],
667
-		[have_ipv6=no],
668
-		[have_ipv6=no])
666
+		[have_cv_ipv6=yes],
667
+		[have_cv_ipv6=no],
668
+		[have_cv_ipv6=no])
669 669
 		])
670
-    AC_MSG_RESULT([$have_ipv6])
671
-    if test "$have_ipv6" = yes; then
670
+    AC_MSG_RESULT([$have_cv_ipv6])
671
+    if test "$have_cv_ipv6" = yes; then
672 672
 	AC_DEFINE(SUPPORT_IPv6, 1, [Support for IPv6])
673 673
     fi
674 674
 fi
... ...
@@ -1384,68 +1384,68 @@ dnl check for __attribute__((packed))
1384 1384
 dnl but only on compilers claiming to be gcc compatible
1385 1385
 dnl because for example Sun's compiler silently ignores the packed attribute.
1386 1386
 AC_MSG_CHECKING([for structure packing via __attribute__((packed))])
1387
-AC_CACHE_VAL([have_attrib_packed],[
1387
+AC_CACHE_VAL([have_cv_attrib_packed],[
1388 1388
 	AC_TRY_COMPILE(,
1389 1389
 		[#ifdef __GNUC__
1390 1390
 		 struct { int i __attribute__((packed)); } s;
1391 1391
 		 #else
1392 1392
 		 #error Only checking for packed attribute on gcc-like compilers
1393 1393
 		 #endif],
1394
-		[have_attrib_packed=yes],
1395
-		[have_attrib_packed=no])
1394
+		[have_cv_attrib_packed=yes],
1395
+		[have_cv_attrib_packed=no])
1396 1396
 	])
1397
-AC_MSG_RESULT([$have_attrib_packed])
1397
+AC_MSG_RESULT([$have_cv_attrib_packed])
1398 1398
 
1399
-if test "$have_attrib_packed" = no; then
1399
+if test "$have_cv_attrib_packed" = no; then
1400 1400
 	AC_MSG_CHECKING([for structure packing via pragma])
1401
-	AC_CACHE_VAL([have_pragma_pack],[
1401
+	AC_CACHE_VAL([have_cv_pragma_pack],[
1402 1402
 		AC_TRY_RUN([
1403 1403
 			    int main(int argc, char **argv) {
1404 1404
 #pragma pack(1)			/* has to be in column 1 ! */
1405 1405
 			struct { char c; long l; } s;
1406 1406
 			return sizeof(s)==sizeof(s.c)+sizeof(s.l) ? 0:1; } ],
1407
-			[have_pragma_pack=yes],
1408
-			[have_pragma_pack=no])
1407
+			[have_cv_pragma_pack=yes],
1408
+			[have_cv_pragma_pack=no])
1409 1409
 		])
1410
-	AC_MSG_RESULT([$have_pragma_pack])
1411
-	if test "$have_pragma_pack" = yes; then
1410
+	AC_MSG_RESULT([$have_cv_pragma_pack])
1411
+	if test "$have_cv_pragma_pack" = yes; then
1412 1412
 		AC_DEFINE([HAVE_PRAGMA_PACK], 1, "pragma pack")
1413 1413
 	else
1414 1414
 		AC_MSG_CHECKING([for structure packing via hppa/hp-ux pragma])
1415
-		AC_CACHE_VAL([have_pragma_pack_hpux],[
1415
+		AC_CACHE_VAL([have_cv_pragma_pack_hpux],[
1416 1416
 			AC_TRY_RUN([
1417 1417
 			/* hppa/hp-ux wants pragma outside of function */
1418 1418
 #pragma pack 1 /* has to be in column 1 ! */
1419 1419
 			struct { char c; long l; } s;
1420 1420
 			    int main(int argc, char **argv) {
1421 1421
 			return sizeof(s)==sizeof(s.c)+sizeof(s.l) ? 0:1; } ],
1422
-			[have_pragma_pack_hpux=yes],
1423
-			[have_pragma_pack_hpux=no])
1422
+			[have_cv_pragma_pack_hpux=yes],
1423
+			[have_cv_pragma_pack_hpux=no])
1424 1424
 		])
1425
-		AC_MSG_RESULT([$have_pragma_pack_hpux])
1425
+		AC_MSG_RESULT([$have_cv_pragma_pack_hpux])
1426 1426
 		AC_DEFINE([HAVE_PRAGMA_PACK_HPPA], 1, "pragma pack hppa/hp-ux style")
1427 1427
 	fi
1428 1428
 fi
1429 1429
 
1430 1430
 dnl check for __attribute__((aligned))
1431 1431
 AC_MSG_CHECKING([for type aligning via __attribute__((aligned))])
1432
-AC_CACHE_VAL([have_attrib_aligned],[
1432
+AC_CACHE_VAL([have_cv_attrib_aligned],[
1433 1433
 	AC_TRY_COMPILE(,
1434 1434
 		[typedef int cl_aligned_int __attribute__((aligned));],
1435
-		[have_attrib_aligned=yes],
1436
-		[have_attrib_aligned=no])
1435
+		[have_cv_attrib_aligned=yes],
1436
+		[have_cv_attrib_aligned=no])
1437 1437
 	])
1438
-AC_MSG_RESULT([$have_attrib_aligned])
1438
+AC_MSG_RESULT([$have_cv_attrib_aligned])
1439 1439
 
1440
-if test "$have_attrib_packed" = no -a "$have_pragma_pack" = no -a "$have_pragma_pack_hpux" = no; then
1440
+if test "$have_cv_attrib_packed" = no -a "$have_cv_pragma_pack" = no -a "$have_cv_pragma_pack_hpux" = no; then
1441 1441
 	AC_MSG_ERROR(Need to know how to pack structures with this compiler)
1442 1442
 fi
1443 1443
 
1444
-if test "$have_attrib_packed" = yes; then
1444
+if test "$have_cv_attrib_packed" = yes; then
1445 1445
 	AC_DEFINE([HAVE_ATTRIB_PACKED], 1, [attrib packed])
1446 1446
 fi
1447 1447
 
1448
-if test "$have_attrib_aligned" = yes; then
1448
+if test "$have_cv_attrib_aligned" = yes; then
1449 1449
 	AC_DEFINE([HAVE_ATTRIB_ALIGNED], 1, [attrib aligned])
1450 1450
 fi
1451 1451
 
... ...
@@ -222,6 +222,7 @@ target_alias = @target_alias@
222 222
 target_cpu = @target_cpu@
223 223
 target_os = @target_os@
224 224
 target_vendor = @target_vendor@
225
+top_build_prefix = @top_build_prefix@
225 226
 top_builddir = @top_builddir@
226 227
 top_srcdir = @top_srcdir@
227 228
 EXTRA_DIST = main.cvd daily.cvd
... ...
@@ -228,6 +228,7 @@ target_alias = @target_alias@
228 228
 target_cpu = @target_cpu@
229 229
 target_os = @target_os@
230 230
 target_vendor = @target_vendor@
231
+top_build_prefix = @top_build_prefix@
231 232
 top_builddir = @top_builddir@
232 233
 top_srcdir = @top_srcdir@
233 234
 EXTRA_DIST = html $(top_srcdir)/docs/man/*.in clamdoc.pdf clamdoc.tex clamav-mirror-howto.pdf clamav-mirror-howto.tex phishsigs_howto.tex phishsigs_howto.pdf signatures.pdf signatures.tex clam.eps
... ...
@@ -221,6 +221,7 @@ target_alias = @target_alias@
221 221
 target_cpu = @target_cpu@
222 222
 target_os = @target_os@
223 223
 target_vendor = @target_vendor@
224
+top_build_prefix = @top_build_prefix@
224 225
 top_builddir = @top_builddir@
225 226
 top_srcdir = @top_srcdir@
226 227
 EXTRA_DIST = clamd.conf freshclam.conf clamav-milter.conf
... ...
@@ -248,6 +248,7 @@ target_alias = @target_alias@
248 248
 target_cpu = @target_cpu@
249 249
 target_os = @target_os@
250 250
 target_vendor = @target_vendor@
251
+top_build_prefix = @top_build_prefix@
251 252
 top_builddir = @top_builddir@
252 253
 top_srcdir = @top_srcdir@
253 254
 freshclam_SOURCES = \
... ...
@@ -346,6 +346,7 @@ target_alias = @target_alias@
346 346
 target_cpu = @target_cpu@
347 347
 target_os = @target_os@
348 348
 target_vendor = @target_vendor@
349
+top_build_prefix = @top_build_prefix@
349 350
 top_builddir = @top_builddir@
350 351
 top_srcdir = @top_srcdir@
351 352
 SUBDIRS = lzma .
... ...
@@ -241,6 +241,7 @@ target_alias = @target_alias@
241 241
 target_cpu = @target_cpu@
242 242
 target_os = @target_os@
243 243
 target_vendor = @target_vendor@
244
+top_build_prefix = @top_build_prefix@
244 245
 top_builddir = @top_builddir@
245 246
 top_srcdir = @top_srcdir@
246 247
 AM_CFLAGS = -fPIC -DPIC
... ...
@@ -305,6 +305,7 @@ target_alias = @target_alias@
305 305
 target_cpu = @target_cpu@
306 306
 target_os = @target_os@
307 307
 target_vendor = @target_vendor@
308
+top_build_prefix = @top_build_prefix@
308 309
 top_builddir = @top_builddir@
309 310
 top_srcdir = @top_srcdir@
310 311
 ACLOCAL_AMFLAGS = -I m4
... ...
@@ -245,6 +245,7 @@ target_alias = @target_alias@
245 245
 target_cpu = @target_cpu@
246 246
 target_os = @target_os@
247 247
 target_vendor = @target_vendor@
248
+top_build_prefix = @top_build_prefix@
248 249
 top_builddir = @top_builddir@
249 250
 top_srcdir = @top_srcdir@
250 251
 sigtool_SOURCES = \
... ...
@@ -203,6 +203,7 @@ target_alias = @target_alias@
203 203
 target_cpu = @target_cpu@
204 204
 target_os = @target_os@
205 205
 target_vendor = @target_vendor@
206
+top_build_prefix = @top_build_prefix@
206 207
 top_builddir = @top_builddir@
207 208
 top_srcdir = @top_srcdir@
208 209
 FILES = clam-v2.rar clam-v3.rar clam.cab clam.exe.bz2 clam.exe clam.zip \
... ...
@@ -248,6 +248,7 @@ target_alias = @target_alias@
248 248
 target_cpu = @target_cpu@
249 249
 target_os = @target_os@
250 250
 target_vendor = @target_vendor@
251
+top_build_prefix = @top_build_prefix@
251 252
 top_builddir = @top_builddir@
252 253
 top_srcdir = @top_srcdir@
253 254
 SPLIT_DIR = $(top_srcdir)/unit_tests/.split