1#! /bin/sh
2# Guess values for system-dependent variables and create Makefiles.
3# Generated by GNU Autoconf 2.69 for afuse 0.4.1.
4#
5#
6# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
7#
8#
9# This configure script is free software; the Free Software Foundation
10# gives unlimited permission to copy, distribute and modify it.
11## -------------------- ##
12## M4sh Initialization. ##
13## -------------------- ##
14
15# Be more Bourne compatible
16DUALCASE=1; export DUALCASE # for MKS sh
17if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
18  emulate sh
19  NULLCMD=:
20  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
21  # is contrary to our usage.  Disable this feature.
22  alias -g '${1+"$@"}'='"$@"'
23  setopt NO_GLOB_SUBST
24else
25  case `(set -o) 2>/dev/null` in #(
26  *posix*) :
27    set -o posix ;; #(
28  *) :
29     ;;
30esac
31fi
32
33
34as_nl='
35'
36export as_nl
37# Printing a long string crashes Solaris 7 /usr/bin/printf.
38as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
39as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
40as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
41# Prefer a ksh shell builtin over an external printf program on Solaris,
42# but without wasting forks for bash or zsh.
43if test -z "$BASH_VERSION$ZSH_VERSION" \
44    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
45  as_echo='print -r --'
46  as_echo_n='print -rn --'
47elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
48  as_echo='printf %s\n'
49  as_echo_n='printf %s'
50else
51  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
52    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
53    as_echo_n='/usr/ucb/echo -n'
54  else
55    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
56    as_echo_n_body='eval
57      arg=$1;
58      case $arg in #(
59      *"$as_nl"*)
60	expr "X$arg" : "X\\(.*\\)$as_nl";
61	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
62      esac;
63      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
64    '
65    export as_echo_n_body
66    as_echo_n='sh -c $as_echo_n_body as_echo'
67  fi
68  export as_echo_body
69  as_echo='sh -c $as_echo_body as_echo'
70fi
71
72# The user is always right.
73if test "${PATH_SEPARATOR+set}" != set; then
74  PATH_SEPARATOR=:
75  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
76    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
77      PATH_SEPARATOR=';'
78  }
79fi
80
81
82# IFS
83# We need space, tab and new line, in precisely that order.  Quoting is
84# there to prevent editors from complaining about space-tab.
85# (If _AS_PATH_WALK were called with IFS unset, it would disable word
86# splitting by setting IFS to empty value.)
87IFS=" ""	$as_nl"
88
89# Find who we are.  Look in the path if we contain no directory separator.
90as_myself=
91case $0 in #((
92  *[\\/]* ) as_myself=$0 ;;
93  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
94for as_dir in $PATH
95do
96  IFS=$as_save_IFS
97  test -z "$as_dir" && as_dir=.
98    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
99  done
100IFS=$as_save_IFS
101
102     ;;
103esac
104# We did not find ourselves, most probably we were run as `sh COMMAND'
105# in which case we are not to be found in the path.
106if test "x$as_myself" = x; then
107  as_myself=$0
108fi
109if test ! -f "$as_myself"; then
110  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
111  exit 1
112fi
113
114# Unset variables that we do not need and which cause bugs (e.g. in
115# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
116# suppresses any "Segmentation fault" message there.  '((' could
117# trigger a bug in pdksh 5.2.14.
118for as_var in BASH_ENV ENV MAIL MAILPATH
119do eval test x\${$as_var+set} = xset \
120  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
121done
122PS1='$ '
123PS2='> '
124PS4='+ '
125
126# NLS nuisances.
127LC_ALL=C
128export LC_ALL
129LANGUAGE=C
130export LANGUAGE
131
132# CDPATH.
133(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
134
135# Use a proper internal environment variable to ensure we don't fall
136  # into an infinite loop, continuously re-executing ourselves.
137  if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
138    _as_can_reexec=no; export _as_can_reexec;
139    # We cannot yet assume a decent shell, so we have to provide a
140# neutralization value for shells without unset; and this also
141# works around shells that cannot unset nonexistent variables.
142# Preserve -v and -x to the replacement shell.
143BASH_ENV=/dev/null
144ENV=/dev/null
145(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
146case $- in # ((((
147  *v*x* | *x*v* ) as_opts=-vx ;;
148  *v* ) as_opts=-v ;;
149  *x* ) as_opts=-x ;;
150  * ) as_opts= ;;
151esac
152exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
153# Admittedly, this is quite paranoid, since all the known shells bail
154# out after a failed `exec'.
155$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
156as_fn_exit 255
157  fi
158  # We don't want this to propagate to other subprocesses.
159          { _as_can_reexec=; unset _as_can_reexec;}
160if test "x$CONFIG_SHELL" = x; then
161  as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
162  emulate sh
163  NULLCMD=:
164  # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
165  # is contrary to our usage.  Disable this feature.
166  alias -g '\${1+\"\$@\"}'='\"\$@\"'
167  setopt NO_GLOB_SUBST
168else
169  case \`(set -o) 2>/dev/null\` in #(
170  *posix*) :
171    set -o posix ;; #(
172  *) :
173     ;;
174esac
175fi
176"
177  as_required="as_fn_return () { (exit \$1); }
178as_fn_success () { as_fn_return 0; }
179as_fn_failure () { as_fn_return 1; }
180as_fn_ret_success () { return 0; }
181as_fn_ret_failure () { return 1; }
182
183exitcode=0
184as_fn_success || { exitcode=1; echo as_fn_success failed.; }
185as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
186as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
187as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
188if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
189
190else
191  exitcode=1; echo positional parameters were not saved.
192fi
193test x\$exitcode = x0 || exit 1
194test -x / || exit 1"
195  as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
196  as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
197  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
198  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
199  if (eval "$as_required") 2>/dev/null; then :
200  as_have_required=yes
201else
202  as_have_required=no
203fi
204  if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
205
206else
207  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
208as_found=false
209for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
210do
211  IFS=$as_save_IFS
212  test -z "$as_dir" && as_dir=.
213  as_found=:
214  case $as_dir in #(
215	 /*)
216	   for as_base in sh bash ksh sh5; do
217	     # Try only shells that exist, to save several forks.
218	     as_shell=$as_dir/$as_base
219	     if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
220		    { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
221  CONFIG_SHELL=$as_shell as_have_required=yes
222		   if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
223  break 2
224fi
225fi
226	   done;;
227       esac
228  as_found=false
229done
230$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
231	      { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
232  CONFIG_SHELL=$SHELL as_have_required=yes
233fi; }
234IFS=$as_save_IFS
235
236
237      if test "x$CONFIG_SHELL" != x; then :
238  export CONFIG_SHELL
239             # We cannot yet assume a decent shell, so we have to provide a
240# neutralization value for shells without unset; and this also
241# works around shells that cannot unset nonexistent variables.
242# Preserve -v and -x to the replacement shell.
243BASH_ENV=/dev/null
244ENV=/dev/null
245(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
246case $- in # ((((
247  *v*x* | *x*v* ) as_opts=-vx ;;
248  *v* ) as_opts=-v ;;
249  *x* ) as_opts=-x ;;
250  * ) as_opts= ;;
251esac
252exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
253# Admittedly, this is quite paranoid, since all the known shells bail
254# out after a failed `exec'.
255$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
256exit 255
257fi
258
259    if test x$as_have_required = xno; then :
260  $as_echo "$0: This script requires a shell more modern than all"
261  $as_echo "$0: the shells that I found on your system."
262  if test x${ZSH_VERSION+set} = xset ; then
263    $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
264    $as_echo "$0: be upgraded to zsh 4.3.4 or later."
265  else
266    $as_echo "$0: Please tell bug-autoconf@gnu.org about your system,
267$0: including any error possibly output before this
268$0: message. Then install a modern shell, or manually run
269$0: the script under such a shell if you do have one."
270  fi
271  exit 1
272fi
273fi
274fi
275SHELL=${CONFIG_SHELL-/bin/sh}
276export SHELL
277# Unset more variables known to interfere with behavior of common tools.
278CLICOLOR_FORCE= GREP_OPTIONS=
279unset CLICOLOR_FORCE GREP_OPTIONS
280
281## --------------------- ##
282## M4sh Shell Functions. ##
283## --------------------- ##
284# as_fn_unset VAR
285# ---------------
286# Portably unset VAR.
287as_fn_unset ()
288{
289  { eval $1=; unset $1;}
290}
291as_unset=as_fn_unset
292
293# as_fn_set_status STATUS
294# -----------------------
295# Set $? to STATUS, without forking.
296as_fn_set_status ()
297{
298  return $1
299} # as_fn_set_status
300
301# as_fn_exit STATUS
302# -----------------
303# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
304as_fn_exit ()
305{
306  set +e
307  as_fn_set_status $1
308  exit $1
309} # as_fn_exit
310
311# as_fn_mkdir_p
312# -------------
313# Create "$as_dir" as a directory, including parents if necessary.
314as_fn_mkdir_p ()
315{
316
317  case $as_dir in #(
318  -*) as_dir=./$as_dir;;
319  esac
320  test -d "$as_dir" || eval $as_mkdir_p || {
321    as_dirs=
322    while :; do
323      case $as_dir in #(
324      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
325      *) as_qdir=$as_dir;;
326      esac
327      as_dirs="'$as_qdir' $as_dirs"
328      as_dir=`$as_dirname -- "$as_dir" ||
329$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
330	 X"$as_dir" : 'X\(//\)[^/]' \| \
331	 X"$as_dir" : 'X\(//\)$' \| \
332	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
333$as_echo X"$as_dir" |
334    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
335	    s//\1/
336	    q
337	  }
338	  /^X\(\/\/\)[^/].*/{
339	    s//\1/
340	    q
341	  }
342	  /^X\(\/\/\)$/{
343	    s//\1/
344	    q
345	  }
346	  /^X\(\/\).*/{
347	    s//\1/
348	    q
349	  }
350	  s/.*/./; q'`
351      test -d "$as_dir" && break
352    done
353    test -z "$as_dirs" || eval "mkdir $as_dirs"
354  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
355
356
357} # as_fn_mkdir_p
358
359# as_fn_executable_p FILE
360# -----------------------
361# Test if FILE is an executable regular file.
362as_fn_executable_p ()
363{
364  test -f "$1" && test -x "$1"
365} # as_fn_executable_p
366# as_fn_append VAR VALUE
367# ----------------------
368# Append the text in VALUE to the end of the definition contained in VAR. Take
369# advantage of any shell optimizations that allow amortized linear growth over
370# repeated appends, instead of the typical quadratic growth present in naive
371# implementations.
372if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
373  eval 'as_fn_append ()
374  {
375    eval $1+=\$2
376  }'
377else
378  as_fn_append ()
379  {
380    eval $1=\$$1\$2
381  }
382fi # as_fn_append
383
384# as_fn_arith ARG...
385# ------------------
386# Perform arithmetic evaluation on the ARGs, and store the result in the
387# global $as_val. Take advantage of shells that can avoid forks. The arguments
388# must be portable across $(()) and expr.
389if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
390  eval 'as_fn_arith ()
391  {
392    as_val=$(( $* ))
393  }'
394else
395  as_fn_arith ()
396  {
397    as_val=`expr "$@" || test $? -eq 1`
398  }
399fi # as_fn_arith
400
401
402# as_fn_error STATUS ERROR [LINENO LOG_FD]
403# ----------------------------------------
404# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
405# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
406# script with STATUS, using 1 if that was 0.
407as_fn_error ()
408{
409  as_status=$1; test $as_status -eq 0 && as_status=1
410  if test "$4"; then
411    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
412    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
413  fi
414  $as_echo "$as_me: error: $2" >&2
415  as_fn_exit $as_status
416} # as_fn_error
417
418if expr a : '\(a\)' >/dev/null 2>&1 &&
419   test "X`expr 00001 : '.*\(...\)'`" = X001; then
420  as_expr=expr
421else
422  as_expr=false
423fi
424
425if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
426  as_basename=basename
427else
428  as_basename=false
429fi
430
431if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
432  as_dirname=dirname
433else
434  as_dirname=false
435fi
436
437as_me=`$as_basename -- "$0" ||
438$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
439	 X"$0" : 'X\(//\)$' \| \
440	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
441$as_echo X/"$0" |
442    sed '/^.*\/\([^/][^/]*\)\/*$/{
443	    s//\1/
444	    q
445	  }
446	  /^X\/\(\/\/\)$/{
447	    s//\1/
448	    q
449	  }
450	  /^X\/\(\/\).*/{
451	    s//\1/
452	    q
453	  }
454	  s/.*/./; q'`
455
456# Avoid depending upon Character Ranges.
457as_cr_letters='abcdefghijklmnopqrstuvwxyz'
458as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
459as_cr_Letters=$as_cr_letters$as_cr_LETTERS
460as_cr_digits='0123456789'
461as_cr_alnum=$as_cr_Letters$as_cr_digits
462
463
464  as_lineno_1=$LINENO as_lineno_1a=$LINENO
465  as_lineno_2=$LINENO as_lineno_2a=$LINENO
466  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
467  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
468  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
469  sed -n '
470    p
471    /[$]LINENO/=
472  ' <$as_myself |
473    sed '
474      s/[$]LINENO.*/&-/
475      t lineno
476      b
477      :lineno
478      N
479      :loop
480      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
481      t loop
482      s/-\n.*//
483    ' >$as_me.lineno &&
484  chmod +x "$as_me.lineno" ||
485    { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
486
487  # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
488  # already done that, so ensure we don't try to do so again and fall
489  # in an infinite loop.  This has already happened in practice.
490  _as_can_reexec=no; export _as_can_reexec
491  # Don't try to exec as it changes $[0], causing all sort of problems
492  # (the dirname of $[0] is not the place where we might find the
493  # original and so on.  Autoconf is especially sensitive to this).
494  . "./$as_me.lineno"
495  # Exit status is that of the last command.
496  exit
497}
498
499ECHO_C= ECHO_N= ECHO_T=
500case `echo -n x` in #(((((
501-n*)
502  case `echo 'xy\c'` in
503  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
504  xy)  ECHO_C='\c';;
505  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
506       ECHO_T='	';;
507  esac;;
508*)
509  ECHO_N='-n';;
510esac
511
512rm -f conf$$ conf$$.exe conf$$.file
513if test -d conf$$.dir; then
514  rm -f conf$$.dir/conf$$.file
515else
516  rm -f conf$$.dir
517  mkdir conf$$.dir 2>/dev/null
518fi
519if (echo >conf$$.file) 2>/dev/null; then
520  if ln -s conf$$.file conf$$ 2>/dev/null; then
521    as_ln_s='ln -s'
522    # ... but there are two gotchas:
523    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
524    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
525    # In both cases, we have to default to `cp -pR'.
526    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
527      as_ln_s='cp -pR'
528  elif ln conf$$.file conf$$ 2>/dev/null; then
529    as_ln_s=ln
530  else
531    as_ln_s='cp -pR'
532  fi
533else
534  as_ln_s='cp -pR'
535fi
536rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
537rmdir conf$$.dir 2>/dev/null
538
539if mkdir -p . 2>/dev/null; then
540  as_mkdir_p='mkdir -p "$as_dir"'
541else
542  test -d ./-p && rmdir ./-p
543  as_mkdir_p=false
544fi
545
546as_test_x='test -x'
547as_executable_p=as_fn_executable_p
548
549# Sed expression to map a string onto a valid CPP name.
550as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
551
552# Sed expression to map a string onto a valid variable name.
553as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
554
555
556test -n "$DJDIR" || exec 7<&0 </dev/null
557exec 6>&1
558
559# Name of the host.
560# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
561# so uname gets run too.
562ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
563
564#
565# Initializations.
566#
567ac_default_prefix=/usr/local
568ac_clean_files=
569ac_config_libobj_dir=.
570LIBOBJS=
571cross_compiling=no
572subdirs=
573MFLAGS=
574MAKEFLAGS=
575
576# Identity of this package.
577PACKAGE_NAME='afuse'
578PACKAGE_TARNAME='afuse'
579PACKAGE_VERSION='0.4.1'
580PACKAGE_STRING='afuse 0.4.1'
581PACKAGE_BUGREPORT=''
582PACKAGE_URL=''
583
584ac_unique_file="src/afuse.c"
585ac_subst_vars='am__EXEEXT_FALSE
586am__EXEEXT_TRUE
587LTLIBOBJS
588LIBOBJS
589FUSE_OPT_COMPAT_FALSE
590FUSE_OPT_COMPAT_TRUE
591FUSE_LIBS
592FUSE_CFLAGS
593PKG_CONFIG_LIBDIR
594PKG_CONFIG_PATH
595PKG_CONFIG
596am__fastdepCC_FALSE
597am__fastdepCC_TRUE
598CCDEPMODE
599am__nodep
600AMDEPBACKSLASH
601AMDEP_FALSE
602AMDEP_TRUE
603am__quote
604am__include
605DEPDIR
606OBJEXT
607EXEEXT
608ac_ct_CC
609CPPFLAGS
610LDFLAGS
611CFLAGS
612CC
613RANLIB
614AM_BACKSLASH
615AM_DEFAULT_VERBOSITY
616AM_DEFAULT_V
617AM_V
618am__untar
619am__tar
620AMTAR
621am__leading_dot
622SET_MAKE
623AWK
624mkdir_p
625MKDIR_P
626INSTALL_STRIP_PROGRAM
627STRIP
628install_sh
629MAKEINFO
630AUTOHEADER
631AUTOMAKE
632AUTOCONF
633ACLOCAL
634VERSION
635PACKAGE
636CYGPATH_W
637am__isrc
638INSTALL_DATA
639INSTALL_SCRIPT
640INSTALL_PROGRAM
641target_alias
642host_alias
643build_alias
644LIBS
645ECHO_T
646ECHO_N
647ECHO_C
648DEFS
649mandir
650localedir
651libdir
652psdir
653pdfdir
654dvidir
655htmldir
656infodir
657docdir
658oldincludedir
659includedir
660localstatedir
661sharedstatedir
662sysconfdir
663datadir
664datarootdir
665libexecdir
666sbindir
667bindir
668program_transform_name
669prefix
670exec_prefix
671PACKAGE_URL
672PACKAGE_BUGREPORT
673PACKAGE_STRING
674PACKAGE_VERSION
675PACKAGE_TARNAME
676PACKAGE_NAME
677PATH_SEPARATOR
678SHELL'
679ac_subst_files=''
680ac_user_opts='
681enable_option_checking
682enable_silent_rules
683enable_dependency_tracking
684'
685      ac_precious_vars='build_alias
686host_alias
687target_alias
688CC
689CFLAGS
690LDFLAGS
691LIBS
692CPPFLAGS
693PKG_CONFIG
694PKG_CONFIG_PATH
695PKG_CONFIG_LIBDIR
696FUSE_CFLAGS
697FUSE_LIBS'
698
699
700# Initialize some variables set by options.
701ac_init_help=
702ac_init_version=false
703ac_unrecognized_opts=
704ac_unrecognized_sep=
705# The variables have the same names as the options, with
706# dashes changed to underlines.
707cache_file=/dev/null
708exec_prefix=NONE
709no_create=
710no_recursion=
711prefix=NONE
712program_prefix=NONE
713program_suffix=NONE
714program_transform_name=s,x,x,
715silent=
716site=
717srcdir=
718verbose=
719x_includes=NONE
720x_libraries=NONE
721
722# Installation directory options.
723# These are left unexpanded so users can "make install exec_prefix=/foo"
724# and all the variables that are supposed to be based on exec_prefix
725# by default will actually change.
726# Use braces instead of parens because sh, perl, etc. also accept them.
727# (The list follows the same order as the GNU Coding Standards.)
728bindir='${exec_prefix}/bin'
729sbindir='${exec_prefix}/sbin'
730libexecdir='${exec_prefix}/libexec'
731datarootdir='${prefix}/share'
732datadir='${datarootdir}'
733sysconfdir='${prefix}/etc'
734sharedstatedir='${prefix}/com'
735localstatedir='${prefix}/var'
736includedir='${prefix}/include'
737oldincludedir='/usr/include'
738docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
739infodir='${datarootdir}/info'
740htmldir='${docdir}'
741dvidir='${docdir}'
742pdfdir='${docdir}'
743psdir='${docdir}'
744libdir='${exec_prefix}/lib'
745localedir='${datarootdir}/locale'
746mandir='${datarootdir}/man'
747
748ac_prev=
749ac_dashdash=
750for ac_option
751do
752  # If the previous option needs an argument, assign it.
753  if test -n "$ac_prev"; then
754    eval $ac_prev=\$ac_option
755    ac_prev=
756    continue
757  fi
758
759  case $ac_option in
760  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
761  *=)   ac_optarg= ;;
762  *)    ac_optarg=yes ;;
763  esac
764
765  # Accept the important Cygnus configure options, so we can diagnose typos.
766
767  case $ac_dashdash$ac_option in
768  --)
769    ac_dashdash=yes ;;
770
771  -bindir | --bindir | --bindi | --bind | --bin | --bi)
772    ac_prev=bindir ;;
773  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
774    bindir=$ac_optarg ;;
775
776  -build | --build | --buil | --bui | --bu)
777    ac_prev=build_alias ;;
778  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
779    build_alias=$ac_optarg ;;
780
781  -cache-file | --cache-file | --cache-fil | --cache-fi \
782  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
783    ac_prev=cache_file ;;
784  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
785  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
786    cache_file=$ac_optarg ;;
787
788  --config-cache | -C)
789    cache_file=config.cache ;;
790
791  -datadir | --datadir | --datadi | --datad)
792    ac_prev=datadir ;;
793  -datadir=* | --datadir=* | --datadi=* | --datad=*)
794    datadir=$ac_optarg ;;
795
796  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
797  | --dataroo | --dataro | --datar)
798    ac_prev=datarootdir ;;
799  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
800  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
801    datarootdir=$ac_optarg ;;
802
803  -disable-* | --disable-*)
804    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
805    # Reject names that are not valid shell variable names.
806    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
807      as_fn_error $? "invalid feature name: $ac_useropt"
808    ac_useropt_orig=$ac_useropt
809    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
810    case $ac_user_opts in
811      *"
812"enable_$ac_useropt"
813"*) ;;
814      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
815	 ac_unrecognized_sep=', ';;
816    esac
817    eval enable_$ac_useropt=no ;;
818
819  -docdir | --docdir | --docdi | --doc | --do)
820    ac_prev=docdir ;;
821  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
822    docdir=$ac_optarg ;;
823
824  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
825    ac_prev=dvidir ;;
826  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
827    dvidir=$ac_optarg ;;
828
829  -enable-* | --enable-*)
830    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
831    # Reject names that are not valid shell variable names.
832    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
833      as_fn_error $? "invalid feature name: $ac_useropt"
834    ac_useropt_orig=$ac_useropt
835    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
836    case $ac_user_opts in
837      *"
838"enable_$ac_useropt"
839"*) ;;
840      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
841	 ac_unrecognized_sep=', ';;
842    esac
843    eval enable_$ac_useropt=\$ac_optarg ;;
844
845  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
846  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
847  | --exec | --exe | --ex)
848    ac_prev=exec_prefix ;;
849  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
850  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
851  | --exec=* | --exe=* | --ex=*)
852    exec_prefix=$ac_optarg ;;
853
854  -gas | --gas | --ga | --g)
855    # Obsolete; use --with-gas.
856    with_gas=yes ;;
857
858  -help | --help | --hel | --he | -h)
859    ac_init_help=long ;;
860  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
861    ac_init_help=recursive ;;
862  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
863    ac_init_help=short ;;
864
865  -host | --host | --hos | --ho)
866    ac_prev=host_alias ;;
867  -host=* | --host=* | --hos=* | --ho=*)
868    host_alias=$ac_optarg ;;
869
870  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
871    ac_prev=htmldir ;;
872  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
873  | --ht=*)
874    htmldir=$ac_optarg ;;
875
876  -includedir | --includedir | --includedi | --included | --include \
877  | --includ | --inclu | --incl | --inc)
878    ac_prev=includedir ;;
879  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
880  | --includ=* | --inclu=* | --incl=* | --inc=*)
881    includedir=$ac_optarg ;;
882
883  -infodir | --infodir | --infodi | --infod | --info | --inf)
884    ac_prev=infodir ;;
885  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
886    infodir=$ac_optarg ;;
887
888  -libdir | --libdir | --libdi | --libd)
889    ac_prev=libdir ;;
890  -libdir=* | --libdir=* | --libdi=* | --libd=*)
891    libdir=$ac_optarg ;;
892
893  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
894  | --libexe | --libex | --libe)
895    ac_prev=libexecdir ;;
896  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
897  | --libexe=* | --libex=* | --libe=*)
898    libexecdir=$ac_optarg ;;
899
900  -localedir | --localedir | --localedi | --localed | --locale)
901    ac_prev=localedir ;;
902  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
903    localedir=$ac_optarg ;;
904
905  -localstatedir | --localstatedir | --localstatedi | --localstated \
906  | --localstate | --localstat | --localsta | --localst | --locals)
907    ac_prev=localstatedir ;;
908  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
909  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
910    localstatedir=$ac_optarg ;;
911
912  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
913    ac_prev=mandir ;;
914  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
915    mandir=$ac_optarg ;;
916
917  -nfp | --nfp | --nf)
918    # Obsolete; use --without-fp.
919    with_fp=no ;;
920
921  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
922  | --no-cr | --no-c | -n)
923    no_create=yes ;;
924
925  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
926  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
927    no_recursion=yes ;;
928
929  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
930  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
931  | --oldin | --oldi | --old | --ol | --o)
932    ac_prev=oldincludedir ;;
933  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
934  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
935  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
936    oldincludedir=$ac_optarg ;;
937
938  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
939    ac_prev=prefix ;;
940  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
941    prefix=$ac_optarg ;;
942
943  -program-prefix | --program-prefix | --program-prefi | --program-pref \
944  | --program-pre | --program-pr | --program-p)
945    ac_prev=program_prefix ;;
946  -program-prefix=* | --program-prefix=* | --program-prefi=* \
947  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
948    program_prefix=$ac_optarg ;;
949
950  -program-suffix | --program-suffix | --program-suffi | --program-suff \
951  | --program-suf | --program-su | --program-s)
952    ac_prev=program_suffix ;;
953  -program-suffix=* | --program-suffix=* | --program-suffi=* \
954  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
955    program_suffix=$ac_optarg ;;
956
957  -program-transform-name | --program-transform-name \
958  | --program-transform-nam | --program-transform-na \
959  | --program-transform-n | --program-transform- \
960  | --program-transform | --program-transfor \
961  | --program-transfo | --program-transf \
962  | --program-trans | --program-tran \
963  | --progr-tra | --program-tr | --program-t)
964    ac_prev=program_transform_name ;;
965  -program-transform-name=* | --program-transform-name=* \
966  | --program-transform-nam=* | --program-transform-na=* \
967  | --program-transform-n=* | --program-transform-=* \
968  | --program-transform=* | --program-transfor=* \
969  | --program-transfo=* | --program-transf=* \
970  | --program-trans=* | --program-tran=* \
971  | --progr-tra=* | --program-tr=* | --program-t=*)
972    program_transform_name=$ac_optarg ;;
973
974  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
975    ac_prev=pdfdir ;;
976  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
977    pdfdir=$ac_optarg ;;
978
979  -psdir | --psdir | --psdi | --psd | --ps)
980    ac_prev=psdir ;;
981  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
982    psdir=$ac_optarg ;;
983
984  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
985  | -silent | --silent | --silen | --sile | --sil)
986    silent=yes ;;
987
988  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
989    ac_prev=sbindir ;;
990  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
991  | --sbi=* | --sb=*)
992    sbindir=$ac_optarg ;;
993
994  -sharedstatedir | --sharedstatedir | --sharedstatedi \
995  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
996  | --sharedst | --shareds | --shared | --share | --shar \
997  | --sha | --sh)
998    ac_prev=sharedstatedir ;;
999  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
1000  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
1001  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
1002  | --sha=* | --sh=*)
1003    sharedstatedir=$ac_optarg ;;
1004
1005  -site | --site | --sit)
1006    ac_prev=site ;;
1007  -site=* | --site=* | --sit=*)
1008    site=$ac_optarg ;;
1009
1010  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
1011    ac_prev=srcdir ;;
1012  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
1013    srcdir=$ac_optarg ;;
1014
1015  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
1016  | --syscon | --sysco | --sysc | --sys | --sy)
1017    ac_prev=sysconfdir ;;
1018  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
1019  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
1020    sysconfdir=$ac_optarg ;;
1021
1022  -target | --target | --targe | --targ | --tar | --ta | --t)
1023    ac_prev=target_alias ;;
1024  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
1025    target_alias=$ac_optarg ;;
1026
1027  -v | -verbose | --verbose | --verbos | --verbo | --verb)
1028    verbose=yes ;;
1029
1030  -version | --version | --versio | --versi | --vers | -V)
1031    ac_init_version=: ;;
1032
1033  -with-* | --with-*)
1034    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1035    # Reject names that are not valid shell variable names.
1036    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1037      as_fn_error $? "invalid package name: $ac_useropt"
1038    ac_useropt_orig=$ac_useropt
1039    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1040    case $ac_user_opts in
1041      *"
1042"with_$ac_useropt"
1043"*) ;;
1044      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
1045	 ac_unrecognized_sep=', ';;
1046    esac
1047    eval with_$ac_useropt=\$ac_optarg ;;
1048
1049  -without-* | --without-*)
1050    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1051    # Reject names that are not valid shell variable names.
1052    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1053      as_fn_error $? "invalid package name: $ac_useropt"
1054    ac_useropt_orig=$ac_useropt
1055    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1056    case $ac_user_opts in
1057      *"
1058"with_$ac_useropt"
1059"*) ;;
1060      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
1061	 ac_unrecognized_sep=', ';;
1062    esac
1063    eval with_$ac_useropt=no ;;
1064
1065  --x)
1066    # Obsolete; use --with-x.
1067    with_x=yes ;;
1068
1069  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
1070  | --x-incl | --x-inc | --x-in | --x-i)
1071    ac_prev=x_includes ;;
1072  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
1073  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
1074    x_includes=$ac_optarg ;;
1075
1076  -x-libraries | --x-libraries | --x-librarie | --x-librari \
1077  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
1078    ac_prev=x_libraries ;;
1079  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
1080  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
1081    x_libraries=$ac_optarg ;;
1082
1083  -*) as_fn_error $? "unrecognized option: \`$ac_option'
1084Try \`$0 --help' for more information"
1085    ;;
1086
1087  *=*)
1088    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
1089    # Reject names that are not valid shell variable names.
1090    case $ac_envvar in #(
1091      '' | [0-9]* | *[!_$as_cr_alnum]* )
1092      as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
1093    esac
1094    eval $ac_envvar=\$ac_optarg
1095    export $ac_envvar ;;
1096
1097  *)
1098    # FIXME: should be removed in autoconf 3.0.
1099    $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1100    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1101      $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
1102    : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
1103    ;;
1104
1105  esac
1106done
1107
1108if test -n "$ac_prev"; then
1109  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
1110  as_fn_error $? "missing argument to $ac_option"
1111fi
1112
1113if test -n "$ac_unrecognized_opts"; then
1114  case $enable_option_checking in
1115    no) ;;
1116    fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
1117    *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
1118  esac
1119fi
1120
1121# Check all directory arguments for consistency.
1122for ac_var in	exec_prefix prefix bindir sbindir libexecdir datarootdir \
1123		datadir sysconfdir sharedstatedir localstatedir includedir \
1124		oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
1125		libdir localedir mandir
1126do
1127  eval ac_val=\$$ac_var
1128  # Remove trailing slashes.
1129  case $ac_val in
1130    */ )
1131      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
1132      eval $ac_var=\$ac_val;;
1133  esac
1134  # Be sure to have absolute directory names.
1135  case $ac_val in
1136    [\\/$]* | ?:[\\/]* )  continue;;
1137    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
1138  esac
1139  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
1140done
1141
1142# There might be people who depend on the old broken behavior: `$host'
1143# used to hold the argument of --host etc.
1144# FIXME: To remove some day.
1145build=$build_alias
1146host=$host_alias
1147target=$target_alias
1148
1149# FIXME: To remove some day.
1150if test "x$host_alias" != x; then
1151  if test "x$build_alias" = x; then
1152    cross_compiling=maybe
1153  elif test "x$build_alias" != "x$host_alias"; then
1154    cross_compiling=yes
1155  fi
1156fi
1157
1158ac_tool_prefix=
1159test -n "$host_alias" && ac_tool_prefix=$host_alias-
1160
1161test "$silent" = yes && exec 6>/dev/null
1162
1163
1164ac_pwd=`pwd` && test -n "$ac_pwd" &&
1165ac_ls_di=`ls -di .` &&
1166ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
1167  as_fn_error $? "working directory cannot be determined"
1168test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
1169  as_fn_error $? "pwd does not report name of working directory"
1170
1171
1172# Find the source files, if location was not specified.
1173if test -z "$srcdir"; then
1174  ac_srcdir_defaulted=yes
1175  # Try the directory containing this script, then the parent directory.
1176  ac_confdir=`$as_dirname -- "$as_myself" ||
1177$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1178	 X"$as_myself" : 'X\(//\)[^/]' \| \
1179	 X"$as_myself" : 'X\(//\)$' \| \
1180	 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
1181$as_echo X"$as_myself" |
1182    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1183	    s//\1/
1184	    q
1185	  }
1186	  /^X\(\/\/\)[^/].*/{
1187	    s//\1/
1188	    q
1189	  }
1190	  /^X\(\/\/\)$/{
1191	    s//\1/
1192	    q
1193	  }
1194	  /^X\(\/\).*/{
1195	    s//\1/
1196	    q
1197	  }
1198	  s/.*/./; q'`
1199  srcdir=$ac_confdir
1200  if test ! -r "$srcdir/$ac_unique_file"; then
1201    srcdir=..
1202  fi
1203else
1204  ac_srcdir_defaulted=no
1205fi
1206if test ! -r "$srcdir/$ac_unique_file"; then
1207  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
1208  as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
1209fi
1210ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
1211ac_abs_confdir=`(
1212	cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
1213	pwd)`
1214# When building in place, set srcdir=.
1215if test "$ac_abs_confdir" = "$ac_pwd"; then
1216  srcdir=.
1217fi
1218# Remove unnecessary trailing slashes from srcdir.
1219# Double slashes in file names in object file debugging info
1220# mess up M-x gdb in Emacs.
1221case $srcdir in
1222*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
1223esac
1224for ac_var in $ac_precious_vars; do
1225  eval ac_env_${ac_var}_set=\${${ac_var}+set}
1226  eval ac_env_${ac_var}_value=\$${ac_var}
1227  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
1228  eval ac_cv_env_${ac_var}_value=\$${ac_var}
1229done
1230
1231#
1232# Report the --help message.
1233#
1234if test "$ac_init_help" = "long"; then
1235  # Omit some internal or obsolete options to make the list less imposing.
1236  # This message is too long to be a string in the A/UX 3.1 sh.
1237  cat <<_ACEOF
1238\`configure' configures afuse 0.4.1 to adapt to many kinds of systems.
1239
1240Usage: $0 [OPTION]... [VAR=VALUE]...
1241
1242To assign environment variables (e.g., CC, CFLAGS...), specify them as
1243VAR=VALUE.  See below for descriptions of some of the useful variables.
1244
1245Defaults for the options are specified in brackets.
1246
1247Configuration:
1248  -h, --help              display this help and exit
1249      --help=short        display options specific to this package
1250      --help=recursive    display the short help of all the included packages
1251  -V, --version           display version information and exit
1252  -q, --quiet, --silent   do not print \`checking ...' messages
1253      --cache-file=FILE   cache test results in FILE [disabled]
1254  -C, --config-cache      alias for \`--cache-file=config.cache'
1255  -n, --no-create         do not create output files
1256      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
1257
1258Installation directories:
1259  --prefix=PREFIX         install architecture-independent files in PREFIX
1260                          [$ac_default_prefix]
1261  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
1262                          [PREFIX]
1263
1264By default, \`make install' will install all the files in
1265\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
1266an installation prefix other than \`$ac_default_prefix' using \`--prefix',
1267for instance \`--prefix=\$HOME'.
1268
1269For better control, use the options below.
1270
1271Fine tuning of the installation directories:
1272  --bindir=DIR            user executables [EPREFIX/bin]
1273  --sbindir=DIR           system admin executables [EPREFIX/sbin]
1274  --libexecdir=DIR        program executables [EPREFIX/libexec]
1275  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
1276  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
1277  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
1278  --libdir=DIR            object code libraries [EPREFIX/lib]
1279  --includedir=DIR        C header files [PREFIX/include]
1280  --oldincludedir=DIR     C header files for non-gcc [/usr/include]
1281  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
1282  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
1283  --infodir=DIR           info documentation [DATAROOTDIR/info]
1284  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
1285  --mandir=DIR            man documentation [DATAROOTDIR/man]
1286  --docdir=DIR            documentation root [DATAROOTDIR/doc/afuse]
1287  --htmldir=DIR           html documentation [DOCDIR]
1288  --dvidir=DIR            dvi documentation [DOCDIR]
1289  --pdfdir=DIR            pdf documentation [DOCDIR]
1290  --psdir=DIR             ps documentation [DOCDIR]
1291_ACEOF
1292
1293  cat <<\_ACEOF
1294
1295Program names:
1296  --program-prefix=PREFIX            prepend PREFIX to installed program names
1297  --program-suffix=SUFFIX            append SUFFIX to installed program names
1298  --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
1299_ACEOF
1300fi
1301
1302if test -n "$ac_init_help"; then
1303  case $ac_init_help in
1304     short | recursive ) echo "Configuration of afuse 0.4.1:";;
1305   esac
1306  cat <<\_ACEOF
1307
1308Optional Features:
1309  --disable-option-checking  ignore unrecognized --enable/--with options
1310  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
1311  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
1312  --enable-silent-rules   less verbose build output (undo: "make V=1")
1313  --disable-silent-rules  verbose build output (undo: "make V=0")
1314  --enable-dependency-tracking
1315                          do not reject slow dependency extractors
1316  --disable-dependency-tracking
1317                          speeds up one-time build
1318
1319Some influential environment variables:
1320  CC          C compiler command
1321  CFLAGS      C compiler flags
1322  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
1323              nonstandard directory <lib dir>
1324  LIBS        libraries to pass to the linker, e.g. -l<library>
1325  CPPFLAGS    (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
1326              you have headers in a nonstandard directory <include dir>
1327  PKG_CONFIG  path to pkg-config utility
1328  PKG_CONFIG_PATH
1329              directories to add to pkg-config's search path
1330  PKG_CONFIG_LIBDIR
1331              path overriding pkg-config's built-in search path
1332  FUSE_CFLAGS C compiler flags for FUSE, overriding pkg-config
1333  FUSE_LIBS   linker flags for FUSE, overriding pkg-config
1334
1335Use these variables to override the choices made by `configure' or to help
1336it to find libraries and programs with nonstandard names/locations.
1337
1338Report bugs to the package provider.
1339_ACEOF
1340ac_status=$?
1341fi
1342
1343if test "$ac_init_help" = "recursive"; then
1344  # If there are subdirs, report their specific --help.
1345  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
1346    test -d "$ac_dir" ||
1347      { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
1348      continue
1349    ac_builddir=.
1350
1351case "$ac_dir" in
1352.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1353*)
1354  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1355  # A ".." for each directory in $ac_dir_suffix.
1356  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1357  case $ac_top_builddir_sub in
1358  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1359  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1360  esac ;;
1361esac
1362ac_abs_top_builddir=$ac_pwd
1363ac_abs_builddir=$ac_pwd$ac_dir_suffix
1364# for backward compatibility:
1365ac_top_builddir=$ac_top_build_prefix
1366
1367case $srcdir in
1368  .)  # We are building in place.
1369    ac_srcdir=.
1370    ac_top_srcdir=$ac_top_builddir_sub
1371    ac_abs_top_srcdir=$ac_pwd ;;
1372  [\\/]* | ?:[\\/]* )  # Absolute name.
1373    ac_srcdir=$srcdir$ac_dir_suffix;
1374    ac_top_srcdir=$srcdir
1375    ac_abs_top_srcdir=$srcdir ;;
1376  *) # Relative name.
1377    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1378    ac_top_srcdir=$ac_top_build_prefix$srcdir
1379    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1380esac
1381ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1382
1383    cd "$ac_dir" || { ac_status=$?; continue; }
1384    # Check for guested configure.
1385    if test -f "$ac_srcdir/configure.gnu"; then
1386      echo &&
1387      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
1388    elif test -f "$ac_srcdir/configure"; then
1389      echo &&
1390      $SHELL "$ac_srcdir/configure" --help=recursive
1391    else
1392      $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
1393    fi || ac_status=$?
1394    cd "$ac_pwd" || { ac_status=$?; break; }
1395  done
1396fi
1397
1398test -n "$ac_init_help" && exit $ac_status
1399if $ac_init_version; then
1400  cat <<\_ACEOF
1401afuse configure 0.4.1
1402generated by GNU Autoconf 2.69
1403
1404Copyright (C) 2012 Free Software Foundation, Inc.
1405This configure script is free software; the Free Software Foundation
1406gives unlimited permission to copy, distribute and modify it.
1407_ACEOF
1408  exit
1409fi
1410
1411## ------------------------ ##
1412## Autoconf initialization. ##
1413## ------------------------ ##
1414
1415# ac_fn_c_try_compile LINENO
1416# --------------------------
1417# Try to compile conftest.$ac_ext, and return whether this succeeded.
1418ac_fn_c_try_compile ()
1419{
1420  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1421  rm -f conftest.$ac_objext
1422  if { { ac_try="$ac_compile"
1423case "(($ac_try" in
1424  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
1425  *) ac_try_echo=$ac_try;;
1426esac
1427eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
1428$as_echo "$ac_try_echo"; } >&5
1429  (eval "$ac_compile") 2>conftest.err
1430  ac_status=$?
1431  if test -s conftest.err; then
1432    grep -v '^ *+' conftest.err >conftest.er1
1433    cat conftest.er1 >&5
1434    mv -f conftest.er1 conftest.err
1435  fi
1436  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1437  test $ac_status = 0; } && {
1438	 test -z "$ac_c_werror_flag" ||
1439	 test ! -s conftest.err
1440       } && test -s conftest.$ac_objext; then :
1441  ac_retval=0
1442else
1443  $as_echo "$as_me: failed program was:" >&5
1444sed 's/^/| /' conftest.$ac_ext >&5
1445
1446	ac_retval=1
1447fi
1448  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1449  as_fn_set_status $ac_retval
1450
1451} # ac_fn_c_try_compile
1452
1453# ac_fn_c_try_link LINENO
1454# -----------------------
1455# Try to link conftest.$ac_ext, and return whether this succeeded.
1456ac_fn_c_try_link ()
1457{
1458  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1459  rm -f conftest.$ac_objext conftest$ac_exeext
1460  if { { ac_try="$ac_link"
1461case "(($ac_try" in
1462  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
1463  *) ac_try_echo=$ac_try;;
1464esac
1465eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
1466$as_echo "$ac_try_echo"; } >&5
1467  (eval "$ac_link") 2>conftest.err
1468  ac_status=$?
1469  if test -s conftest.err; then
1470    grep -v '^ *+' conftest.err >conftest.er1
1471    cat conftest.er1 >&5
1472    mv -f conftest.er1 conftest.err
1473  fi
1474  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1475  test $ac_status = 0; } && {
1476	 test -z "$ac_c_werror_flag" ||
1477	 test ! -s conftest.err
1478       } && test -s conftest$ac_exeext && {
1479	 test "$cross_compiling" = yes ||
1480	 test -x conftest$ac_exeext
1481       }; then :
1482  ac_retval=0
1483else
1484  $as_echo "$as_me: failed program was:" >&5
1485sed 's/^/| /' conftest.$ac_ext >&5
1486
1487	ac_retval=1
1488fi
1489  # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
1490  # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
1491  # interfere with the next link command; also delete a directory that is
1492  # left behind by Apple's compiler.  We do this before executing the actions.
1493  rm -rf conftest.dSYM conftest_ipa8_conftest.oo
1494  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1495  as_fn_set_status $ac_retval
1496
1497} # ac_fn_c_try_link
1498
1499# ac_fn_c_check_func LINENO FUNC VAR
1500# ----------------------------------
1501# Tests whether FUNC exists, setting the cache variable VAR accordingly
1502ac_fn_c_check_func ()
1503{
1504  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1505  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1506$as_echo_n "checking for $2... " >&6; }
1507if eval \${$3+:} false; then :
1508  $as_echo_n "(cached) " >&6
1509else
1510  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1511/* end confdefs.h.  */
1512/* Define $2 to an innocuous variant, in case <limits.h> declares $2.
1513   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
1514#define $2 innocuous_$2
1515
1516/* System header to define __stub macros and hopefully few prototypes,
1517    which can conflict with char $2 (); below.
1518    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
1519    <limits.h> exists even on freestanding compilers.  */
1520
1521#ifdef __STDC__
1522# include <limits.h>
1523#else
1524# include <assert.h>
1525#endif
1526
1527#undef $2
1528
1529/* Override any GCC internal prototype to avoid an error.
1530   Use char because int might match the return type of a GCC
1531   builtin and then its argument prototype would still apply.  */
1532#ifdef __cplusplus
1533extern "C"
1534#endif
1535char $2 ();
1536/* The GNU C library defines this for functions which it implements
1537    to always fail with ENOSYS.  Some functions are actually named
1538    something starting with __ and the normal name is an alias.  */
1539#if defined __stub_$2 || defined __stub___$2
1540choke me
1541#endif
1542
1543int
1544main ()
1545{
1546return $2 ();
1547  ;
1548  return 0;
1549}
1550_ACEOF
1551if ac_fn_c_try_link "$LINENO"; then :
1552  eval "$3=yes"
1553else
1554  eval "$3=no"
1555fi
1556rm -f core conftest.err conftest.$ac_objext \
1557    conftest$ac_exeext conftest.$ac_ext
1558fi
1559eval ac_res=\$$3
1560	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1561$as_echo "$ac_res" >&6; }
1562  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1563
1564} # ac_fn_c_check_func
1565cat >config.log <<_ACEOF
1566This file contains any messages produced by compilers while
1567running configure, to aid debugging if configure makes a mistake.
1568
1569It was created by afuse $as_me 0.4.1, which was
1570generated by GNU Autoconf 2.69.  Invocation command line was
1571
1572  $ $0 $@
1573
1574_ACEOF
1575exec 5>>config.log
1576{
1577cat <<_ASUNAME
1578## --------- ##
1579## Platform. ##
1580## --------- ##
1581
1582hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
1583uname -m = `(uname -m) 2>/dev/null || echo unknown`
1584uname -r = `(uname -r) 2>/dev/null || echo unknown`
1585uname -s = `(uname -s) 2>/dev/null || echo unknown`
1586uname -v = `(uname -v) 2>/dev/null || echo unknown`
1587
1588/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
1589/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
1590
1591/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
1592/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
1593/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
1594/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
1595/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
1596/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
1597/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
1598
1599_ASUNAME
1600
1601as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1602for as_dir in $PATH
1603do
1604  IFS=$as_save_IFS
1605  test -z "$as_dir" && as_dir=.
1606    $as_echo "PATH: $as_dir"
1607  done
1608IFS=$as_save_IFS
1609
1610} >&5
1611
1612cat >&5 <<_ACEOF
1613
1614
1615## ----------- ##
1616## Core tests. ##
1617## ----------- ##
1618
1619_ACEOF
1620
1621
1622# Keep a trace of the command line.
1623# Strip out --no-create and --no-recursion so they do not pile up.
1624# Strip out --silent because we don't want to record it for future runs.
1625# Also quote any args containing shell meta-characters.
1626# Make two passes to allow for proper duplicate-argument suppression.
1627ac_configure_args=
1628ac_configure_args0=
1629ac_configure_args1=
1630ac_must_keep_next=false
1631for ac_pass in 1 2
1632do
1633  for ac_arg
1634  do
1635    case $ac_arg in
1636    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
1637    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1638    | -silent | --silent | --silen | --sile | --sil)
1639      continue ;;
1640    *\'*)
1641      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1642    esac
1643    case $ac_pass in
1644    1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
1645    2)
1646      as_fn_append ac_configure_args1 " '$ac_arg'"
1647      if test $ac_must_keep_next = true; then
1648	ac_must_keep_next=false # Got value, back to normal.
1649      else
1650	case $ac_arg in
1651	  *=* | --config-cache | -C | -disable-* | --disable-* \
1652	  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
1653	  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
1654	  | -with-* | --with-* | -without-* | --without-* | --x)
1655	    case "$ac_configure_args0 " in
1656	      "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
1657	    esac
1658	    ;;
1659	  -* ) ac_must_keep_next=true ;;
1660	esac
1661      fi
1662      as_fn_append ac_configure_args " '$ac_arg'"
1663      ;;
1664    esac
1665  done
1666done
1667{ ac_configure_args0=; unset ac_configure_args0;}
1668{ ac_configure_args1=; unset ac_configure_args1;}
1669
1670# When interrupted or exit'd, cleanup temporary files, and complete
1671# config.log.  We remove comments because anyway the quotes in there
1672# would cause problems or look ugly.
1673# WARNING: Use '\'' to represent an apostrophe within the trap.
1674# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
1675trap 'exit_status=$?
1676  # Save into config.log some information that might help in debugging.
1677  {
1678    echo
1679
1680    $as_echo "## ---------------- ##
1681## Cache variables. ##
1682## ---------------- ##"
1683    echo
1684    # The following way of writing the cache mishandles newlines in values,
1685(
1686  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
1687    eval ac_val=\$$ac_var
1688    case $ac_val in #(
1689    *${as_nl}*)
1690      case $ac_var in #(
1691      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
1692$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
1693      esac
1694      case $ac_var in #(
1695      _ | IFS | as_nl) ;; #(
1696      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
1697      *) { eval $ac_var=; unset $ac_var;} ;;
1698      esac ;;
1699    esac
1700  done
1701  (set) 2>&1 |
1702    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
1703    *${as_nl}ac_space=\ *)
1704      sed -n \
1705	"s/'\''/'\''\\\\'\'''\''/g;
1706	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
1707      ;; #(
1708    *)
1709      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
1710      ;;
1711    esac |
1712    sort
1713)
1714    echo
1715
1716    $as_echo "## ----------------- ##
1717## Output variables. ##
1718## ----------------- ##"
1719    echo
1720    for ac_var in $ac_subst_vars
1721    do
1722      eval ac_val=\$$ac_var
1723      case $ac_val in
1724      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1725      esac
1726      $as_echo "$ac_var='\''$ac_val'\''"
1727    done | sort
1728    echo
1729
1730    if test -n "$ac_subst_files"; then
1731      $as_echo "## ------------------- ##
1732## File substitutions. ##
1733## ------------------- ##"
1734      echo
1735      for ac_var in $ac_subst_files
1736      do
1737	eval ac_val=\$$ac_var
1738	case $ac_val in
1739	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1740	esac
1741	$as_echo "$ac_var='\''$ac_val'\''"
1742      done | sort
1743      echo
1744    fi
1745
1746    if test -s confdefs.h; then
1747      $as_echo "## ----------- ##
1748## confdefs.h. ##
1749## ----------- ##"
1750      echo
1751      cat confdefs.h
1752      echo
1753    fi
1754    test "$ac_signal" != 0 &&
1755      $as_echo "$as_me: caught signal $ac_signal"
1756    $as_echo "$as_me: exit $exit_status"
1757  } >&5
1758  rm -f core *.core core.conftest.* &&
1759    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
1760    exit $exit_status
1761' 0
1762for ac_signal in 1 2 13 15; do
1763  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
1764done
1765ac_signal=0
1766
1767# confdefs.h avoids OS command line length limits that DEFS can exceed.
1768rm -f -r conftest* confdefs.h
1769
1770$as_echo "/* confdefs.h */" > confdefs.h
1771
1772# Predefined preprocessor variables.
1773
1774cat >>confdefs.h <<_ACEOF
1775#define PACKAGE_NAME "$PACKAGE_NAME"
1776_ACEOF
1777
1778cat >>confdefs.h <<_ACEOF
1779#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
1780_ACEOF
1781
1782cat >>confdefs.h <<_ACEOF
1783#define PACKAGE_VERSION "$PACKAGE_VERSION"
1784_ACEOF
1785
1786cat >>confdefs.h <<_ACEOF
1787#define PACKAGE_STRING "$PACKAGE_STRING"
1788_ACEOF
1789
1790cat >>confdefs.h <<_ACEOF
1791#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
1792_ACEOF
1793
1794cat >>confdefs.h <<_ACEOF
1795#define PACKAGE_URL "$PACKAGE_URL"
1796_ACEOF
1797
1798
1799# Let the site file select an alternate cache file if it wants to.
1800# Prefer an explicitly selected file to automatically selected ones.
1801ac_site_file1=NONE
1802ac_site_file2=NONE
1803if test -n "$CONFIG_SITE"; then
1804  # We do not want a PATH search for config.site.
1805  case $CONFIG_SITE in #((
1806    -*)  ac_site_file1=./$CONFIG_SITE;;
1807    */*) ac_site_file1=$CONFIG_SITE;;
1808    *)   ac_site_file1=./$CONFIG_SITE;;
1809  esac
1810elif test "x$prefix" != xNONE; then
1811  ac_site_file1=$prefix/share/config.site
1812  ac_site_file2=$prefix/etc/config.site
1813else
1814  ac_site_file1=$ac_default_prefix/share/config.site
1815  ac_site_file2=$ac_default_prefix/etc/config.site
1816fi
1817for ac_site_file in "$ac_site_file1" "$ac_site_file2"
1818do
1819  test "x$ac_site_file" = xNONE && continue
1820  if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
1821    { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
1822$as_echo "$as_me: loading site script $ac_site_file" >&6;}
1823    sed 's/^/| /' "$ac_site_file" >&5
1824    . "$ac_site_file" \
1825      || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1826$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1827as_fn_error $? "failed to load site script $ac_site_file
1828See \`config.log' for more details" "$LINENO" 5; }
1829  fi
1830done
1831
1832if test -r "$cache_file"; then
1833  # Some versions of bash will fail to source /dev/null (special files
1834  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.
1835  if test /dev/null != "$cache_file" && test -f "$cache_file"; then
1836    { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
1837$as_echo "$as_me: loading cache $cache_file" >&6;}
1838    case $cache_file in
1839      [\\/]* | ?:[\\/]* ) . "$cache_file";;
1840      *)                      . "./$cache_file";;
1841    esac
1842  fi
1843else
1844  { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
1845$as_echo "$as_me: creating cache $cache_file" >&6;}
1846  >$cache_file
1847fi
1848
1849# Check that the precious variables saved in the cache have kept the same
1850# value.
1851ac_cache_corrupted=false
1852for ac_var in $ac_precious_vars; do
1853  eval ac_old_set=\$ac_cv_env_${ac_var}_set
1854  eval ac_new_set=\$ac_env_${ac_var}_set
1855  eval ac_old_val=\$ac_cv_env_${ac_var}_value
1856  eval ac_new_val=\$ac_env_${ac_var}_value
1857  case $ac_old_set,$ac_new_set in
1858    set,)
1859      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1860$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1861      ac_cache_corrupted=: ;;
1862    ,set)
1863      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
1864$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1865      ac_cache_corrupted=: ;;
1866    ,);;
1867    *)
1868      if test "x$ac_old_val" != "x$ac_new_val"; then
1869	# differences in whitespace do not lead to failure.
1870	ac_old_val_w=`echo x $ac_old_val`
1871	ac_new_val_w=`echo x $ac_new_val`
1872	if test "$ac_old_val_w" != "$ac_new_val_w"; then
1873	  { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
1874$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1875	  ac_cache_corrupted=:
1876	else
1877	  { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
1878$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
1879	  eval $ac_var=\$ac_old_val
1880	fi
1881	{ $as_echo "$as_me:${as_lineno-$LINENO}:   former value:  \`$ac_old_val'" >&5
1882$as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
1883	{ $as_echo "$as_me:${as_lineno-$LINENO}:   current value: \`$ac_new_val'" >&5
1884$as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
1885      fi;;
1886  esac
1887  # Pass precious variables to config.status.
1888  if test "$ac_new_set" = set; then
1889    case $ac_new_val in
1890    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1891    *) ac_arg=$ac_var=$ac_new_val ;;
1892    esac
1893    case " $ac_configure_args " in
1894      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
1895      *) as_fn_append ac_configure_args " '$ac_arg'" ;;
1896    esac
1897  fi
1898done
1899if $ac_cache_corrupted; then
1900  { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1901$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1902  { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
1903$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
1904  as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
1905fi
1906## -------------------- ##
1907## Main body of script. ##
1908## -------------------- ##
1909
1910ac_ext=c
1911ac_cpp='$CPP $CPPFLAGS'
1912ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1913ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1914ac_compiler_gnu=$ac_cv_c_compiler_gnu
1915
1916
1917
1918am__api_version='1.13'
1919
1920ac_aux_dir=
1921for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
1922  if test -f "$ac_dir/install-sh"; then
1923    ac_aux_dir=$ac_dir
1924    ac_install_sh="$ac_aux_dir/install-sh -c"
1925    break
1926  elif test -f "$ac_dir/install.sh"; then
1927    ac_aux_dir=$ac_dir
1928    ac_install_sh="$ac_aux_dir/install.sh -c"
1929    break
1930  elif test -f "$ac_dir/shtool"; then
1931    ac_aux_dir=$ac_dir
1932    ac_install_sh="$ac_aux_dir/shtool install -c"
1933    break
1934  fi
1935done
1936if test -z "$ac_aux_dir"; then
1937  as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
1938fi
1939
1940# These three variables are undocumented and unsupported,
1941# and are intended to be withdrawn in a future Autoconf release.
1942# They can cause serious problems if a builder's source tree is in a directory
1943# whose full name contains unusual characters.
1944ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
1945ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
1946ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
1947
1948
1949# Find a good install program.  We prefer a C program (faster),
1950# so one script is as good as another.  But avoid the broken or
1951# incompatible versions:
1952# SysV /etc/install, /usr/sbin/install
1953# SunOS /usr/etc/install
1954# IRIX /sbin/install
1955# AIX /bin/install
1956# AmigaOS /C/install, which installs bootblocks on floppy discs
1957# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
1958# AFS /usr/afsws/bin/install, which mishandles nonexistent args
1959# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
1960# OS/2's system install, which has a completely different semantic
1961# ./install, which can be erroneously created by make from ./install.sh.
1962# Reject install programs that cannot install multiple files.
1963{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
1964$as_echo_n "checking for a BSD-compatible install... " >&6; }
1965if test -z "$INSTALL"; then
1966if ${ac_cv_path_install+:} false; then :
1967  $as_echo_n "(cached) " >&6
1968else
1969  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1970for as_dir in $PATH
1971do
1972  IFS=$as_save_IFS
1973  test -z "$as_dir" && as_dir=.
1974    # Account for people who put trailing slashes in PATH elements.
1975case $as_dir/ in #((
1976  ./ | .// | /[cC]/* | \
1977  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
1978  ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
1979  /usr/ucb/* ) ;;
1980  *)
1981    # OSF1 and SCO ODT 3.0 have their own names for install.
1982    # Don't use installbsd from OSF since it installs stuff as root
1983    # by default.
1984    for ac_prog in ginstall scoinst install; do
1985      for ac_exec_ext in '' $ac_executable_extensions; do
1986	if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
1987	  if test $ac_prog = install &&
1988	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
1989	    # AIX install.  It has an incompatible calling convention.
1990	    :
1991	  elif test $ac_prog = install &&
1992	    grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
1993	    # program-specific install script used by HP pwplus--don't use.
1994	    :
1995	  else
1996	    rm -rf conftest.one conftest.two conftest.dir
1997	    echo one > conftest.one
1998	    echo two > conftest.two
1999	    mkdir conftest.dir
2000	    if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
2001	      test -s conftest.one && test -s conftest.two &&
2002	      test -s conftest.dir/conftest.one &&
2003	      test -s conftest.dir/conftest.two
2004	    then
2005	      ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
2006	      break 3
2007	    fi
2008	  fi
2009	fi
2010      done
2011    done
2012    ;;
2013esac
2014
2015  done
2016IFS=$as_save_IFS
2017
2018rm -rf conftest.one conftest.two conftest.dir
2019
2020fi
2021  if test "${ac_cv_path_install+set}" = set; then
2022    INSTALL=$ac_cv_path_install
2023  else
2024    # As a last resort, use the slow shell script.  Don't cache a
2025    # value for INSTALL within a source directory, because that will
2026    # break other packages using the cache if that directory is
2027    # removed, or if the value is a relative name.
2028    INSTALL=$ac_install_sh
2029  fi
2030fi
2031{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
2032$as_echo "$INSTALL" >&6; }
2033
2034# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
2035# It thinks the first close brace ends the variable substitution.
2036test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
2037
2038test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
2039
2040test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
2041
2042{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
2043$as_echo_n "checking whether build environment is sane... " >&6; }
2044# Reject unsafe characters in $srcdir or the absolute working directory
2045# name.  Accept space and tab only in the latter.
2046am_lf='
2047'
2048case `pwd` in
2049  *[\\\"\#\$\&\'\`$am_lf]*)
2050    as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
2051esac
2052case $srcdir in
2053  *[\\\"\#\$\&\'\`$am_lf\ \	]*)
2054    as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;;
2055esac
2056
2057# Do 'set' in a subshell so we don't clobber the current shell's
2058# arguments.  Must try -L first in case configure is actually a
2059# symlink; some systems play weird games with the mod time of symlinks
2060# (eg FreeBSD returns the mod time of the symlink's containing
2061# directory).
2062if (
2063   am_has_slept=no
2064   for am_try in 1 2; do
2065     echo "timestamp, slept: $am_has_slept" > conftest.file
2066     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
2067     if test "$*" = "X"; then
2068	# -L didn't work.
2069	set X `ls -t "$srcdir/configure" conftest.file`
2070     fi
2071     if test "$*" != "X $srcdir/configure conftest.file" \
2072	&& test "$*" != "X conftest.file $srcdir/configure"; then
2073
2074	# If neither matched, then we have a broken ls.  This can happen
2075	# if, for instance, CONFIG_SHELL is bash and it inherits a
2076	# broken ls alias from the environment.  This has actually
2077	# happened.  Such a system could not be considered "sane".
2078	as_fn_error $? "ls -t appears to fail.  Make sure there is not a broken
2079  alias in your environment" "$LINENO" 5
2080     fi
2081     if test "$2" = conftest.file || test $am_try -eq 2; then
2082       break
2083     fi
2084     # Just in case.
2085     sleep 1
2086     am_has_slept=yes
2087   done
2088   test "$2" = conftest.file
2089   )
2090then
2091   # Ok.
2092   :
2093else
2094   as_fn_error $? "newly created file is older than distributed files!
2095Check your system clock" "$LINENO" 5
2096fi
2097{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2098$as_echo "yes" >&6; }
2099# If we didn't sleep, we still need to ensure time stamps of config.status and
2100# generated files are strictly newer.
2101am_sleep_pid=
2102if grep 'slept: no' conftest.file >/dev/null 2>&1; then
2103  ( sleep 1 ) &
2104  am_sleep_pid=$!
2105fi
2106
2107rm -f conftest.file
2108
2109test "$program_prefix" != NONE &&
2110  program_transform_name="s&^&$program_prefix&;$program_transform_name"
2111# Use a double $ so make ignores it.
2112test "$program_suffix" != NONE &&
2113  program_transform_name="s&\$&$program_suffix&;$program_transform_name"
2114# Double any \ or $.
2115# By default was `s,x,x', remove it if useless.
2116ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
2117program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
2118
2119# expand $ac_aux_dir to an absolute path
2120am_aux_dir=`cd $ac_aux_dir && pwd`
2121
2122if test x"${MISSING+set}" != xset; then
2123  case $am_aux_dir in
2124  *\ * | *\	*)
2125    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
2126  *)
2127    MISSING="\${SHELL} $am_aux_dir/missing" ;;
2128  esac
2129fi
2130# Use eval to expand $SHELL
2131if eval "$MISSING --is-lightweight"; then
2132  am_missing_run="$MISSING "
2133else
2134  am_missing_run=
2135  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
2136$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
2137fi
2138
2139if test x"${install_sh}" != xset; then
2140  case $am_aux_dir in
2141  *\ * | *\	*)
2142    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
2143  *)
2144    install_sh="\${SHELL} $am_aux_dir/install-sh"
2145  esac
2146fi
2147
2148# Installed binaries are usually stripped using 'strip' when the user
2149# run "make install-strip".  However 'strip' might not be the right
2150# tool to use in cross-compilation environments, therefore Automake
2151# will honor the 'STRIP' environment variable to overrule this program.
2152if test "$cross_compiling" != no; then
2153  if test -n "$ac_tool_prefix"; then
2154  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
2155set dummy ${ac_tool_prefix}strip; ac_word=$2
2156{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2157$as_echo_n "checking for $ac_word... " >&6; }
2158if ${ac_cv_prog_STRIP+:} false; then :
2159  $as_echo_n "(cached) " >&6
2160else
2161  if test -n "$STRIP"; then
2162  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
2163else
2164as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2165for as_dir in $PATH
2166do
2167  IFS=$as_save_IFS
2168  test -z "$as_dir" && as_dir=.
2169    for ac_exec_ext in '' $ac_executable_extensions; do
2170  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2171    ac_cv_prog_STRIP="${ac_tool_prefix}strip"
2172    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2173    break 2
2174  fi
2175done
2176  done
2177IFS=$as_save_IFS
2178
2179fi
2180fi
2181STRIP=$ac_cv_prog_STRIP
2182if test -n "$STRIP"; then
2183  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
2184$as_echo "$STRIP" >&6; }
2185else
2186  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2187$as_echo "no" >&6; }
2188fi
2189
2190
2191fi
2192if test -z "$ac_cv_prog_STRIP"; then
2193  ac_ct_STRIP=$STRIP
2194  # Extract the first word of "strip", so it can be a program name with args.
2195set dummy strip; ac_word=$2
2196{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2197$as_echo_n "checking for $ac_word... " >&6; }
2198if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
2199  $as_echo_n "(cached) " >&6
2200else
2201  if test -n "$ac_ct_STRIP"; then
2202  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
2203else
2204as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2205for as_dir in $PATH
2206do
2207  IFS=$as_save_IFS
2208  test -z "$as_dir" && as_dir=.
2209    for ac_exec_ext in '' $ac_executable_extensions; do
2210  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2211    ac_cv_prog_ac_ct_STRIP="strip"
2212    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2213    break 2
2214  fi
2215done
2216  done
2217IFS=$as_save_IFS
2218
2219fi
2220fi
2221ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
2222if test -n "$ac_ct_STRIP"; then
2223  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
2224$as_echo "$ac_ct_STRIP" >&6; }
2225else
2226  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2227$as_echo "no" >&6; }
2228fi
2229
2230  if test "x$ac_ct_STRIP" = x; then
2231    STRIP=":"
2232  else
2233    case $cross_compiling:$ac_tool_warned in
2234yes:)
2235{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
2236$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
2237ac_tool_warned=yes ;;
2238esac
2239    STRIP=$ac_ct_STRIP
2240  fi
2241else
2242  STRIP="$ac_cv_prog_STRIP"
2243fi
2244
2245fi
2246INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
2247
2248{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
2249$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
2250if test -z "$MKDIR_P"; then
2251  if ${ac_cv_path_mkdir+:} false; then :
2252  $as_echo_n "(cached) " >&6
2253else
2254  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2255for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
2256do
2257  IFS=$as_save_IFS
2258  test -z "$as_dir" && as_dir=.
2259    for ac_prog in mkdir gmkdir; do
2260	 for ac_exec_ext in '' $ac_executable_extensions; do
2261	   as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
2262	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
2263	     'mkdir (GNU coreutils) '* | \
2264	     'mkdir (coreutils) '* | \
2265	     'mkdir (fileutils) '4.1*)
2266	       ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
2267	       break 3;;
2268	   esac
2269	 done
2270       done
2271  done
2272IFS=$as_save_IFS
2273
2274fi
2275
2276  test -d ./--version && rmdir ./--version
2277  if test "${ac_cv_path_mkdir+set}" = set; then
2278    MKDIR_P="$ac_cv_path_mkdir -p"
2279  else
2280    # As a last resort, use the slow shell script.  Don't cache a
2281    # value for MKDIR_P within a source directory, because that will
2282    # break other packages using the cache if that directory is
2283    # removed, or if the value is a relative name.
2284    MKDIR_P="$ac_install_sh -d"
2285  fi
2286fi
2287{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
2288$as_echo "$MKDIR_P" >&6; }
2289
2290for ac_prog in gawk mawk nawk awk
2291do
2292  # Extract the first word of "$ac_prog", so it can be a program name with args.
2293set dummy $ac_prog; ac_word=$2
2294{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2295$as_echo_n "checking for $ac_word... " >&6; }
2296if ${ac_cv_prog_AWK+:} false; then :
2297  $as_echo_n "(cached) " >&6
2298else
2299  if test -n "$AWK"; then
2300  ac_cv_prog_AWK="$AWK" # Let the user override the test.
2301else
2302as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2303for as_dir in $PATH
2304do
2305  IFS=$as_save_IFS
2306  test -z "$as_dir" && as_dir=.
2307    for ac_exec_ext in '' $ac_executable_extensions; do
2308  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2309    ac_cv_prog_AWK="$ac_prog"
2310    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2311    break 2
2312  fi
2313done
2314  done
2315IFS=$as_save_IFS
2316
2317fi
2318fi
2319AWK=$ac_cv_prog_AWK
2320if test -n "$AWK"; then
2321  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
2322$as_echo "$AWK" >&6; }
2323else
2324  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2325$as_echo "no" >&6; }
2326fi
2327
2328
2329  test -n "$AWK" && break
2330done
2331
2332{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
2333$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
2334set x ${MAKE-make}
2335ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
2336if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
2337  $as_echo_n "(cached) " >&6
2338else
2339  cat >conftest.make <<\_ACEOF
2340SHELL = /bin/sh
2341all:
2342	@echo '@@@%%%=$(MAKE)=@@@%%%'
2343_ACEOF
2344# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
2345case `${MAKE-make} -f conftest.make 2>/dev/null` in
2346  *@@@%%%=?*=@@@%%%*)
2347    eval ac_cv_prog_make_${ac_make}_set=yes;;
2348  *)
2349    eval ac_cv_prog_make_${ac_make}_set=no;;
2350esac
2351rm -f conftest.make
2352fi
2353if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
2354  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2355$as_echo "yes" >&6; }
2356  SET_MAKE=
2357else
2358  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2359$as_echo "no" >&6; }
2360  SET_MAKE="MAKE=${MAKE-make}"
2361fi
2362
2363rm -rf .tst 2>/dev/null
2364mkdir .tst 2>/dev/null
2365if test -d .tst; then
2366  am__leading_dot=.
2367else
2368  am__leading_dot=_
2369fi
2370rmdir .tst 2>/dev/null
2371
2372# Check whether --enable-silent-rules was given.
2373if test "${enable_silent_rules+set}" = set; then :
2374  enableval=$enable_silent_rules;
2375fi
2376
2377case $enable_silent_rules in # (((
2378  yes) AM_DEFAULT_VERBOSITY=0;;
2379   no) AM_DEFAULT_VERBOSITY=1;;
2380    *) AM_DEFAULT_VERBOSITY=1;;
2381esac
2382am_make=${MAKE-make}
2383{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
2384$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
2385if ${am_cv_make_support_nested_variables+:} false; then :
2386  $as_echo_n "(cached) " >&6
2387else
2388  if $as_echo 'TRUE=$(BAR$(V))
2389BAR0=false
2390BAR1=true
2391V=1
2392am__doit:
2393	@$(TRUE)
2394.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
2395  am_cv_make_support_nested_variables=yes
2396else
2397  am_cv_make_support_nested_variables=no
2398fi
2399fi
2400{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
2401$as_echo "$am_cv_make_support_nested_variables" >&6; }
2402if test $am_cv_make_support_nested_variables = yes; then
2403    AM_V='$(V)'
2404  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
2405else
2406  AM_V=$AM_DEFAULT_VERBOSITY
2407  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
2408fi
2409AM_BACKSLASH='\'
2410
2411if test "`cd $srcdir && pwd`" != "`pwd`"; then
2412  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
2413  # is not polluted with repeated "-I."
2414  am__isrc=' -I$(srcdir)'
2415  # test to see if srcdir already configured
2416  if test -f $srcdir/config.status; then
2417    as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
2418  fi
2419fi
2420
2421# test whether we have cygpath
2422if test -z "$CYGPATH_W"; then
2423  if (cygpath --version) >/dev/null 2>/dev/null; then
2424    CYGPATH_W='cygpath -w'
2425  else
2426    CYGPATH_W=echo
2427  fi
2428fi
2429
2430
2431# Define the identity of the package.
2432 PACKAGE='afuse'
2433 VERSION='0.4.1'
2434
2435
2436cat >>confdefs.h <<_ACEOF
2437#define PACKAGE "$PACKAGE"
2438_ACEOF
2439
2440
2441cat >>confdefs.h <<_ACEOF
2442#define VERSION "$VERSION"
2443_ACEOF
2444
2445# Some tools Automake needs.
2446
2447ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
2448
2449
2450AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
2451
2452
2453AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
2454
2455
2456AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
2457
2458
2459MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
2460
2461# For better backward compatibility.  To be removed once Automake 1.9.x
2462# dies out for good.  For more background, see:
2463# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
2464# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
2465mkdir_p='$(MKDIR_P)'
2466
2467# We need awk for the "check" target.  The system "awk" is bad on
2468# some platforms.
2469# Always define AMTAR for backward compatibility.  Yes, it's still used
2470# in the wild :-(  We should find a proper way to deprecate it ...
2471AMTAR='$${TAR-tar}'
2472
2473am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
2474
2475
2476
2477
2478
2479if test -n "$ac_tool_prefix"; then
2480  # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
2481set dummy ${ac_tool_prefix}ranlib; ac_word=$2
2482{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2483$as_echo_n "checking for $ac_word... " >&6; }
2484if ${ac_cv_prog_RANLIB+:} false; then :
2485  $as_echo_n "(cached) " >&6
2486else
2487  if test -n "$RANLIB"; then
2488  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
2489else
2490as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2491for as_dir in $PATH
2492do
2493  IFS=$as_save_IFS
2494  test -z "$as_dir" && as_dir=.
2495    for ac_exec_ext in '' $ac_executable_extensions; do
2496  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2497    ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
2498    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2499    break 2
2500  fi
2501done
2502  done
2503IFS=$as_save_IFS
2504
2505fi
2506fi
2507RANLIB=$ac_cv_prog_RANLIB
2508if test -n "$RANLIB"; then
2509  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5
2510$as_echo "$RANLIB" >&6; }
2511else
2512  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2513$as_echo "no" >&6; }
2514fi
2515
2516
2517fi
2518if test -z "$ac_cv_prog_RANLIB"; then
2519  ac_ct_RANLIB=$RANLIB
2520  # Extract the first word of "ranlib", so it can be a program name with args.
2521set dummy ranlib; ac_word=$2
2522{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2523$as_echo_n "checking for $ac_word... " >&6; }
2524if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
2525  $as_echo_n "(cached) " >&6
2526else
2527  if test -n "$ac_ct_RANLIB"; then
2528  ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
2529else
2530as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2531for as_dir in $PATH
2532do
2533  IFS=$as_save_IFS
2534  test -z "$as_dir" && as_dir=.
2535    for ac_exec_ext in '' $ac_executable_extensions; do
2536  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2537    ac_cv_prog_ac_ct_RANLIB="ranlib"
2538    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2539    break 2
2540  fi
2541done
2542  done
2543IFS=$as_save_IFS
2544
2545fi
2546fi
2547ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
2548if test -n "$ac_ct_RANLIB"; then
2549  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5
2550$as_echo "$ac_ct_RANLIB" >&6; }
2551else
2552  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2553$as_echo "no" >&6; }
2554fi
2555
2556  if test "x$ac_ct_RANLIB" = x; then
2557    RANLIB=":"
2558  else
2559    case $cross_compiling:$ac_tool_warned in
2560yes:)
2561{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
2562$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
2563ac_tool_warned=yes ;;
2564esac
2565    RANLIB=$ac_ct_RANLIB
2566  fi
2567else
2568  RANLIB="$ac_cv_prog_RANLIB"
2569fi
2570
2571
2572
2573ac_config_headers="$ac_config_headers config.h"
2574
2575
2576# Checks for programs.
2577ac_ext=c
2578ac_cpp='$CPP $CPPFLAGS'
2579ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2580ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2581ac_compiler_gnu=$ac_cv_c_compiler_gnu
2582if test -n "$ac_tool_prefix"; then
2583  # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
2584set dummy ${ac_tool_prefix}gcc; ac_word=$2
2585{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2586$as_echo_n "checking for $ac_word... " >&6; }
2587if ${ac_cv_prog_CC+:} false; then :
2588  $as_echo_n "(cached) " >&6
2589else
2590  if test -n "$CC"; then
2591  ac_cv_prog_CC="$CC" # Let the user override the test.
2592else
2593as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2594for as_dir in $PATH
2595do
2596  IFS=$as_save_IFS
2597  test -z "$as_dir" && as_dir=.
2598    for ac_exec_ext in '' $ac_executable_extensions; do
2599  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2600    ac_cv_prog_CC="${ac_tool_prefix}gcc"
2601    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2602    break 2
2603  fi
2604done
2605  done
2606IFS=$as_save_IFS
2607
2608fi
2609fi
2610CC=$ac_cv_prog_CC
2611if test -n "$CC"; then
2612  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
2613$as_echo "$CC" >&6; }
2614else
2615  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2616$as_echo "no" >&6; }
2617fi
2618
2619
2620fi
2621if test -z "$ac_cv_prog_CC"; then
2622  ac_ct_CC=$CC
2623  # Extract the first word of "gcc", so it can be a program name with args.
2624set dummy gcc; ac_word=$2
2625{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2626$as_echo_n "checking for $ac_word... " >&6; }
2627if ${ac_cv_prog_ac_ct_CC+:} false; then :
2628  $as_echo_n "(cached) " >&6
2629else
2630  if test -n "$ac_ct_CC"; then
2631  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
2632else
2633as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2634for as_dir in $PATH
2635do
2636  IFS=$as_save_IFS
2637  test -z "$as_dir" && as_dir=.
2638    for ac_exec_ext in '' $ac_executable_extensions; do
2639  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2640    ac_cv_prog_ac_ct_CC="gcc"
2641    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2642    break 2
2643  fi
2644done
2645  done
2646IFS=$as_save_IFS
2647
2648fi
2649fi
2650ac_ct_CC=$ac_cv_prog_ac_ct_CC
2651if test -n "$ac_ct_CC"; then
2652  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
2653$as_echo "$ac_ct_CC" >&6; }
2654else
2655  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2656$as_echo "no" >&6; }
2657fi
2658
2659  if test "x$ac_ct_CC" = x; then
2660    CC=""
2661  else
2662    case $cross_compiling:$ac_tool_warned in
2663yes:)
2664{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
2665$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
2666ac_tool_warned=yes ;;
2667esac
2668    CC=$ac_ct_CC
2669  fi
2670else
2671  CC="$ac_cv_prog_CC"
2672fi
2673
2674if test -z "$CC"; then
2675          if test -n "$ac_tool_prefix"; then
2676    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
2677set dummy ${ac_tool_prefix}cc; ac_word=$2
2678{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2679$as_echo_n "checking for $ac_word... " >&6; }
2680if ${ac_cv_prog_CC+:} false; then :
2681  $as_echo_n "(cached) " >&6
2682else
2683  if test -n "$CC"; then
2684  ac_cv_prog_CC="$CC" # Let the user override the test.
2685else
2686as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2687for as_dir in $PATH
2688do
2689  IFS=$as_save_IFS
2690  test -z "$as_dir" && as_dir=.
2691    for ac_exec_ext in '' $ac_executable_extensions; do
2692  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2693    ac_cv_prog_CC="${ac_tool_prefix}cc"
2694    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2695    break 2
2696  fi
2697done
2698  done
2699IFS=$as_save_IFS
2700
2701fi
2702fi
2703CC=$ac_cv_prog_CC
2704if test -n "$CC"; then
2705  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
2706$as_echo "$CC" >&6; }
2707else
2708  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2709$as_echo "no" >&6; }
2710fi
2711
2712
2713  fi
2714fi
2715if test -z "$CC"; then
2716  # Extract the first word of "cc", so it can be a program name with args.
2717set dummy cc; ac_word=$2
2718{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2719$as_echo_n "checking for $ac_word... " >&6; }
2720if ${ac_cv_prog_CC+:} false; then :
2721  $as_echo_n "(cached) " >&6
2722else
2723  if test -n "$CC"; then
2724  ac_cv_prog_CC="$CC" # Let the user override the test.
2725else
2726  ac_prog_rejected=no
2727as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2728for as_dir in $PATH
2729do
2730  IFS=$as_save_IFS
2731  test -z "$as_dir" && as_dir=.
2732    for ac_exec_ext in '' $ac_executable_extensions; do
2733  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2734    if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
2735       ac_prog_rejected=yes
2736       continue
2737     fi
2738    ac_cv_prog_CC="cc"
2739    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2740    break 2
2741  fi
2742done
2743  done
2744IFS=$as_save_IFS
2745
2746if test $ac_prog_rejected = yes; then
2747  # We found a bogon in the path, so make sure we never use it.
2748  set dummy $ac_cv_prog_CC
2749  shift
2750  if test $# != 0; then
2751    # We chose a different compiler from the bogus one.
2752    # However, it has the same basename, so the bogon will be chosen
2753    # first if we set CC to just the basename; use the full file name.
2754    shift
2755    ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
2756  fi
2757fi
2758fi
2759fi
2760CC=$ac_cv_prog_CC
2761if test -n "$CC"; then
2762  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
2763$as_echo "$CC" >&6; }
2764else
2765  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2766$as_echo "no" >&6; }
2767fi
2768
2769
2770fi
2771if test -z "$CC"; then
2772  if test -n "$ac_tool_prefix"; then
2773  for ac_prog in cl.exe
2774  do
2775    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
2776set dummy $ac_tool_prefix$ac_prog; ac_word=$2
2777{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2778$as_echo_n "checking for $ac_word... " >&6; }
2779if ${ac_cv_prog_CC+:} false; then :
2780  $as_echo_n "(cached) " >&6
2781else
2782  if test -n "$CC"; then
2783  ac_cv_prog_CC="$CC" # Let the user override the test.
2784else
2785as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2786for as_dir in $PATH
2787do
2788  IFS=$as_save_IFS
2789  test -z "$as_dir" && as_dir=.
2790    for ac_exec_ext in '' $ac_executable_extensions; do
2791  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2792    ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
2793    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2794    break 2
2795  fi
2796done
2797  done
2798IFS=$as_save_IFS
2799
2800fi
2801fi
2802CC=$ac_cv_prog_CC
2803if test -n "$CC"; then
2804  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
2805$as_echo "$CC" >&6; }
2806else
2807  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2808$as_echo "no" >&6; }
2809fi
2810
2811
2812    test -n "$CC" && break
2813  done
2814fi
2815if test -z "$CC"; then
2816  ac_ct_CC=$CC
2817  for ac_prog in cl.exe
2818do
2819  # Extract the first word of "$ac_prog", so it can be a program name with args.
2820set dummy $ac_prog; ac_word=$2
2821{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2822$as_echo_n "checking for $ac_word... " >&6; }
2823if ${ac_cv_prog_ac_ct_CC+:} false; then :
2824  $as_echo_n "(cached) " >&6
2825else
2826  if test -n "$ac_ct_CC"; then
2827  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
2828else
2829as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2830for as_dir in $PATH
2831do
2832  IFS=$as_save_IFS
2833  test -z "$as_dir" && as_dir=.
2834    for ac_exec_ext in '' $ac_executable_extensions; do
2835  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2836    ac_cv_prog_ac_ct_CC="$ac_prog"
2837    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2838    break 2
2839  fi
2840done
2841  done
2842IFS=$as_save_IFS
2843
2844fi
2845fi
2846ac_ct_CC=$ac_cv_prog_ac_ct_CC
2847if test -n "$ac_ct_CC"; then
2848  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
2849$as_echo "$ac_ct_CC" >&6; }
2850else
2851  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2852$as_echo "no" >&6; }
2853fi
2854
2855
2856  test -n "$ac_ct_CC" && break
2857done
2858
2859  if test "x$ac_ct_CC" = x; then
2860    CC=""
2861  else
2862    case $cross_compiling:$ac_tool_warned in
2863yes:)
2864{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
2865$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
2866ac_tool_warned=yes ;;
2867esac
2868    CC=$ac_ct_CC
2869  fi
2870fi
2871
2872fi
2873
2874
2875test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2876$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2877as_fn_error $? "no acceptable C compiler found in \$PATH
2878See \`config.log' for more details" "$LINENO" 5; }
2879
2880# Provide some information about the compiler.
2881$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
2882set X $ac_compile
2883ac_compiler=$2
2884for ac_option in --version -v -V -qversion; do
2885  { { ac_try="$ac_compiler $ac_option >&5"
2886case "(($ac_try" in
2887  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2888  *) ac_try_echo=$ac_try;;
2889esac
2890eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
2891$as_echo "$ac_try_echo"; } >&5
2892  (eval "$ac_compiler $ac_option >&5") 2>conftest.err
2893  ac_status=$?
2894  if test -s conftest.err; then
2895    sed '10a\
2896... rest of stderr output deleted ...
2897         10q' conftest.err >conftest.er1
2898    cat conftest.er1 >&5
2899  fi
2900  rm -f conftest.er1 conftest.err
2901  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2902  test $ac_status = 0; }
2903done
2904
2905cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2906/* end confdefs.h.  */
2907
2908int
2909main ()
2910{
2911
2912  ;
2913  return 0;
2914}
2915_ACEOF
2916ac_clean_files_save=$ac_clean_files
2917ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
2918# Try to create an executable without -o first, disregard a.out.
2919# It will help us diagnose broken compilers, and finding out an intuition
2920# of exeext.
2921{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
2922$as_echo_n "checking whether the C compiler works... " >&6; }
2923ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
2924
2925# The possible output files:
2926ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
2927
2928ac_rmfiles=
2929for ac_file in $ac_files
2930do
2931  case $ac_file in
2932    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
2933    * ) ac_rmfiles="$ac_rmfiles $ac_file";;
2934  esac
2935done
2936rm -f $ac_rmfiles
2937
2938if { { ac_try="$ac_link_default"
2939case "(($ac_try" in
2940  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2941  *) ac_try_echo=$ac_try;;
2942esac
2943eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
2944$as_echo "$ac_try_echo"; } >&5
2945  (eval "$ac_link_default") 2>&5
2946  ac_status=$?
2947  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2948  test $ac_status = 0; }; then :
2949  # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
2950# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
2951# in a Makefile.  We should not override ac_cv_exeext if it was cached,
2952# so that the user can short-circuit this test for compilers unknown to
2953# Autoconf.
2954for ac_file in $ac_files ''
2955do
2956  test -f "$ac_file" || continue
2957  case $ac_file in
2958    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
2959	;;
2960    [ab].out )
2961	# We found the default executable, but exeext='' is most
2962	# certainly right.
2963	break;;
2964    *.* )
2965	if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
2966	then :; else
2967	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
2968	fi
2969	# We set ac_cv_exeext here because the later test for it is not
2970	# safe: cross compilers may not add the suffix if given an `-o'
2971	# argument, so we may need to know it at that point already.
2972	# Even if this section looks crufty: it has the advantage of
2973	# actually working.
2974	break;;
2975    * )
2976	break;;
2977  esac
2978done
2979test "$ac_cv_exeext" = no && ac_cv_exeext=
2980
2981else
2982  ac_file=''
2983fi
2984if test -z "$ac_file"; then :
2985  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2986$as_echo "no" >&6; }
2987$as_echo "$as_me: failed program was:" >&5
2988sed 's/^/| /' conftest.$ac_ext >&5
2989
2990{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2991$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2992as_fn_error 77 "C compiler cannot create executables
2993See \`config.log' for more details" "$LINENO" 5; }
2994else
2995  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2996$as_echo "yes" >&6; }
2997fi
2998{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
2999$as_echo_n "checking for C compiler default output file name... " >&6; }
3000{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
3001$as_echo "$ac_file" >&6; }
3002ac_exeext=$ac_cv_exeext
3003
3004rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
3005ac_clean_files=$ac_clean_files_save
3006{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
3007$as_echo_n "checking for suffix of executables... " >&6; }
3008if { { ac_try="$ac_link"
3009case "(($ac_try" in
3010  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3011  *) ac_try_echo=$ac_try;;
3012esac
3013eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
3014$as_echo "$ac_try_echo"; } >&5
3015  (eval "$ac_link") 2>&5
3016  ac_status=$?
3017  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
3018  test $ac_status = 0; }; then :
3019  # If both `conftest.exe' and `conftest' are `present' (well, observable)
3020# catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
3021# work properly (i.e., refer to `conftest.exe'), while it won't with
3022# `rm'.
3023for ac_file in conftest.exe conftest conftest.*; do
3024  test -f "$ac_file" || continue
3025  case $ac_file in
3026    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
3027    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
3028	  break;;
3029    * ) break;;
3030  esac
3031done
3032else
3033  { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3034$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3035as_fn_error $? "cannot compute suffix of executables: cannot compile and link
3036See \`config.log' for more details" "$LINENO" 5; }
3037fi
3038rm -f conftest conftest$ac_cv_exeext
3039{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
3040$as_echo "$ac_cv_exeext" >&6; }
3041
3042rm -f conftest.$ac_ext
3043EXEEXT=$ac_cv_exeext
3044ac_exeext=$EXEEXT
3045cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3046/* end confdefs.h.  */
3047#include <stdio.h>
3048int
3049main ()
3050{
3051FILE *f = fopen ("conftest.out", "w");
3052 return ferror (f) || fclose (f) != 0;
3053
3054  ;
3055  return 0;
3056}
3057_ACEOF
3058ac_clean_files="$ac_clean_files conftest.out"
3059# Check that the compiler produces executables we can run.  If not, either
3060# the compiler is broken, or we cross compile.
3061{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
3062$as_echo_n "checking whether we are cross compiling... " >&6; }
3063if test "$cross_compiling" != yes; then
3064  { { ac_try="$ac_link"
3065case "(($ac_try" in
3066  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3067  *) ac_try_echo=$ac_try;;
3068esac
3069eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
3070$as_echo "$ac_try_echo"; } >&5
3071  (eval "$ac_link") 2>&5
3072  ac_status=$?
3073  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
3074  test $ac_status = 0; }
3075  if { ac_try='./conftest$ac_cv_exeext'
3076  { { case "(($ac_try" in
3077  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3078  *) ac_try_echo=$ac_try;;
3079esac
3080eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
3081$as_echo "$ac_try_echo"; } >&5
3082  (eval "$ac_try") 2>&5
3083  ac_status=$?
3084  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
3085  test $ac_status = 0; }; }; then
3086    cross_compiling=no
3087  else
3088    if test "$cross_compiling" = maybe; then
3089	cross_compiling=yes
3090    else
3091	{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3092$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3093as_fn_error $? "cannot run C compiled programs.
3094If you meant to cross compile, use \`--host'.
3095See \`config.log' for more details" "$LINENO" 5; }
3096    fi
3097  fi
3098fi
3099{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
3100$as_echo "$cross_compiling" >&6; }
3101
3102rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
3103ac_clean_files=$ac_clean_files_save
3104{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
3105$as_echo_n "checking for suffix of object files... " >&6; }
3106if ${ac_cv_objext+:} false; then :
3107  $as_echo_n "(cached) " >&6
3108else
3109  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3110/* end confdefs.h.  */
3111
3112int
3113main ()
3114{
3115
3116  ;
3117  return 0;
3118}
3119_ACEOF
3120rm -f conftest.o conftest.obj
3121if { { ac_try="$ac_compile"
3122case "(($ac_try" in
3123  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3124  *) ac_try_echo=$ac_try;;
3125esac
3126eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
3127$as_echo "$ac_try_echo"; } >&5
3128  (eval "$ac_compile") 2>&5
3129  ac_status=$?
3130  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
3131  test $ac_status = 0; }; then :
3132  for ac_file in conftest.o conftest.obj conftest.*; do
3133  test -f "$ac_file" || continue;
3134  case $ac_file in
3135    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
3136    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
3137       break;;
3138  esac
3139done
3140else
3141  $as_echo "$as_me: failed program was:" >&5
3142sed 's/^/| /' conftest.$ac_ext >&5
3143
3144{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3145$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3146as_fn_error $? "cannot compute suffix of object files: cannot compile
3147See \`config.log' for more details" "$LINENO" 5; }
3148fi
3149rm -f conftest.$ac_cv_objext conftest.$ac_ext
3150fi
3151{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
3152$as_echo "$ac_cv_objext" >&6; }
3153OBJEXT=$ac_cv_objext
3154ac_objext=$OBJEXT
3155{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
3156$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
3157if ${ac_cv_c_compiler_gnu+:} false; then :
3158  $as_echo_n "(cached) " >&6
3159else
3160  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3161/* end confdefs.h.  */
3162
3163int
3164main ()
3165{
3166#ifndef __GNUC__
3167       choke me
3168#endif
3169
3170  ;
3171  return 0;
3172}
3173_ACEOF
3174if ac_fn_c_try_compile "$LINENO"; then :
3175  ac_compiler_gnu=yes
3176else
3177  ac_compiler_gnu=no
3178fi
3179rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3180ac_cv_c_compiler_gnu=$ac_compiler_gnu
3181
3182fi
3183{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
3184$as_echo "$ac_cv_c_compiler_gnu" >&6; }
3185if test $ac_compiler_gnu = yes; then
3186  GCC=yes
3187else
3188  GCC=
3189fi
3190ac_test_CFLAGS=${CFLAGS+set}
3191ac_save_CFLAGS=$CFLAGS
3192{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
3193$as_echo_n "checking whether $CC accepts -g... " >&6; }
3194if ${ac_cv_prog_cc_g+:} false; then :
3195  $as_echo_n "(cached) " >&6
3196else
3197  ac_save_c_werror_flag=$ac_c_werror_flag
3198   ac_c_werror_flag=yes
3199   ac_cv_prog_cc_g=no
3200   CFLAGS="-g"
3201   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3202/* end confdefs.h.  */
3203
3204int
3205main ()
3206{
3207
3208  ;
3209  return 0;
3210}
3211_ACEOF
3212if ac_fn_c_try_compile "$LINENO"; then :
3213  ac_cv_prog_cc_g=yes
3214else
3215  CFLAGS=""
3216      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3217/* end confdefs.h.  */
3218
3219int
3220main ()
3221{
3222
3223  ;
3224  return 0;
3225}
3226_ACEOF
3227if ac_fn_c_try_compile "$LINENO"; then :
3228
3229else
3230  ac_c_werror_flag=$ac_save_c_werror_flag
3231	 CFLAGS="-g"
3232	 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3233/* end confdefs.h.  */
3234
3235int
3236main ()
3237{
3238
3239  ;
3240  return 0;
3241}
3242_ACEOF
3243if ac_fn_c_try_compile "$LINENO"; then :
3244  ac_cv_prog_cc_g=yes
3245fi
3246rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3247fi
3248rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3249fi
3250rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3251   ac_c_werror_flag=$ac_save_c_werror_flag
3252fi
3253{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
3254$as_echo "$ac_cv_prog_cc_g" >&6; }
3255if test "$ac_test_CFLAGS" = set; then
3256  CFLAGS=$ac_save_CFLAGS
3257elif test $ac_cv_prog_cc_g = yes; then
3258  if test "$GCC" = yes; then
3259    CFLAGS="-g -O2"
3260  else
3261    CFLAGS="-g"
3262  fi
3263else
3264  if test "$GCC" = yes; then
3265    CFLAGS="-O2"
3266  else
3267    CFLAGS=
3268  fi
3269fi
3270{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
3271$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
3272if ${ac_cv_prog_cc_c89+:} false; then :
3273  $as_echo_n "(cached) " >&6
3274else
3275  ac_cv_prog_cc_c89=no
3276ac_save_CC=$CC
3277cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3278/* end confdefs.h.  */
3279#include <stdarg.h>
3280#include <stdio.h>
3281struct stat;
3282/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
3283struct buf { int x; };
3284FILE * (*rcsopen) (struct buf *, struct stat *, int);
3285static char *e (p, i)
3286     char **p;
3287     int i;
3288{
3289  return p[i];
3290}
3291static char *f (char * (*g) (char **, int), char **p, ...)
3292{
3293  char *s;
3294  va_list v;
3295  va_start (v,p);
3296  s = g (p, va_arg (v,int));
3297  va_end (v);
3298  return s;
3299}
3300
3301/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
3302   function prototypes and stuff, but not '\xHH' hex character constants.
3303   These don't provoke an error unfortunately, instead are silently treated
3304   as 'x'.  The following induces an error, until -std is added to get
3305   proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
3306   array size at least.  It's necessary to write '\x00'==0 to get something
3307   that's true only with -std.  */
3308int osf4_cc_array ['\x00' == 0 ? 1 : -1];
3309
3310/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
3311   inside strings and character constants.  */
3312#define FOO(x) 'x'
3313int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
3314
3315int test (int i, double x);
3316struct s1 {int (*f) (int a);};
3317struct s2 {int (*f) (double a);};
3318int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
3319int argc;
3320char **argv;
3321int
3322main ()
3323{
3324return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
3325  ;
3326  return 0;
3327}
3328_ACEOF
3329for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
3330	-Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
3331do
3332  CC="$ac_save_CC $ac_arg"
3333  if ac_fn_c_try_compile "$LINENO"; then :
3334  ac_cv_prog_cc_c89=$ac_arg
3335fi
3336rm -f core conftest.err conftest.$ac_objext
3337  test "x$ac_cv_prog_cc_c89" != "xno" && break
3338done
3339rm -f conftest.$ac_ext
3340CC=$ac_save_CC
3341
3342fi
3343# AC_CACHE_VAL
3344case "x$ac_cv_prog_cc_c89" in
3345  x)
3346    { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
3347$as_echo "none needed" >&6; } ;;
3348  xno)
3349    { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
3350$as_echo "unsupported" >&6; } ;;
3351  *)
3352    CC="$CC $ac_cv_prog_cc_c89"
3353    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
3354$as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
3355esac
3356if test "x$ac_cv_prog_cc_c89" != xno; then :
3357
3358fi
3359
3360ac_ext=c
3361ac_cpp='$CPP $CPPFLAGS'
3362ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3363ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3364ac_compiler_gnu=$ac_cv_c_compiler_gnu
3365DEPDIR="${am__leading_dot}deps"
3366
3367ac_config_commands="$ac_config_commands depfiles"
3368
3369
3370am_make=${MAKE-make}
3371cat > confinc << 'END'
3372am__doit:
3373	@echo this is the am__doit target
3374.PHONY: am__doit
3375END
3376# If we don't find an include directive, just comment out the code.
3377{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
3378$as_echo_n "checking for style of include used by $am_make... " >&6; }
3379am__include="#"
3380am__quote=
3381_am_result=none
3382# First try GNU make style include.
3383echo "include confinc" > confmf
3384# Ignore all kinds of additional output from 'make'.
3385case `$am_make -s -f confmf 2> /dev/null` in #(
3386*the\ am__doit\ target*)
3387  am__include=include
3388  am__quote=
3389  _am_result=GNU
3390  ;;
3391esac
3392# Now try BSD make style include.
3393if test "$am__include" = "#"; then
3394   echo '.include "confinc"' > confmf
3395   case `$am_make -s -f confmf 2> /dev/null` in #(
3396   *the\ am__doit\ target*)
3397     am__include=.include
3398     am__quote="\""
3399     _am_result=BSD
3400     ;;
3401   esac
3402fi
3403
3404
3405{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
3406$as_echo "$_am_result" >&6; }
3407rm -f confinc confmf
3408
3409# Check whether --enable-dependency-tracking was given.
3410if test "${enable_dependency_tracking+set}" = set; then :
3411  enableval=$enable_dependency_tracking;
3412fi
3413
3414if test "x$enable_dependency_tracking" != xno; then
3415  am_depcomp="$ac_aux_dir/depcomp"
3416  AMDEPBACKSLASH='\'
3417  am__nodep='_no'
3418fi
3419 if test "x$enable_dependency_tracking" != xno; then
3420  AMDEP_TRUE=
3421  AMDEP_FALSE='#'
3422else
3423  AMDEP_TRUE='#'
3424  AMDEP_FALSE=
3425fi
3426
3427
3428
3429depcc="$CC"   am_compiler_list=
3430
3431{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
3432$as_echo_n "checking dependency style of $depcc... " >&6; }
3433if ${am_cv_CC_dependencies_compiler_type+:} false; then :
3434  $as_echo_n "(cached) " >&6
3435else
3436  if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
3437  # We make a subdir and do the tests there.  Otherwise we can end up
3438  # making bogus files that we don't know about and never remove.  For
3439  # instance it was reported that on HP-UX the gcc test will end up
3440  # making a dummy file named 'D' -- because '-MD' means "put the output
3441  # in D".
3442  rm -rf conftest.dir
3443  mkdir conftest.dir
3444  # Copy depcomp to subdir because otherwise we won't find it if we're
3445  # using a relative directory.
3446  cp "$am_depcomp" conftest.dir
3447  cd conftest.dir
3448  # We will build objects and dependencies in a subdirectory because
3449  # it helps to detect inapplicable dependency modes.  For instance
3450  # both Tru64's cc and ICC support -MD to output dependencies as a
3451  # side effect of compilation, but ICC will put the dependencies in
3452  # the current directory while Tru64 will put them in the object
3453  # directory.
3454  mkdir sub
3455
3456  am_cv_CC_dependencies_compiler_type=none
3457  if test "$am_compiler_list" = ""; then
3458     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
3459  fi
3460  am__universal=false
3461  case " $depcc " in #(
3462     *\ -arch\ *\ -arch\ *) am__universal=true ;;
3463     esac
3464
3465  for depmode in $am_compiler_list; do
3466    # Setup a source with many dependencies, because some compilers
3467    # like to wrap large dependency lists on column 80 (with \), and
3468    # we should not choose a depcomp mode which is confused by this.
3469    #
3470    # We need to recreate these files for each test, as the compiler may
3471    # overwrite some of them when testing with obscure command lines.
3472    # This happens at least with the AIX C compiler.
3473    : > sub/conftest.c
3474    for i in 1 2 3 4 5 6; do
3475      echo '#include "conftst'$i'.h"' >> sub/conftest.c
3476      # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
3477      # Solaris 10 /bin/sh.
3478      echo '/* dummy */' > sub/conftst$i.h
3479    done
3480    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
3481
3482    # We check with '-c' and '-o' for the sake of the "dashmstdout"
3483    # mode.  It turns out that the SunPro C++ compiler does not properly
3484    # handle '-M -o', and we need to detect this.  Also, some Intel
3485    # versions had trouble with output in subdirs.
3486    am__obj=sub/conftest.${OBJEXT-o}
3487    am__minus_obj="-o $am__obj"
3488    case $depmode in
3489    gcc)
3490      # This depmode causes a compiler race in universal mode.
3491      test "$am__universal" = false || continue
3492      ;;
3493    nosideeffect)
3494      # After this tag, mechanisms are not by side-effect, so they'll
3495      # only be used when explicitly requested.
3496      if test "x$enable_dependency_tracking" = xyes; then
3497	continue
3498      else
3499	break
3500      fi
3501      ;;
3502    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
3503      # This compiler won't grok '-c -o', but also, the minuso test has
3504      # not run yet.  These depmodes are late enough in the game, and
3505      # so weak that their functioning should not be impacted.
3506      am__obj=conftest.${OBJEXT-o}
3507      am__minus_obj=
3508      ;;
3509    none) break ;;
3510    esac
3511    if depmode=$depmode \
3512       source=sub/conftest.c object=$am__obj \
3513       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
3514       $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
3515         >/dev/null 2>conftest.err &&
3516       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
3517       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
3518       grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
3519       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
3520      # icc doesn't choke on unknown options, it will just issue warnings
3521      # or remarks (even with -Werror).  So we grep stderr for any message
3522      # that says an option was ignored or not supported.
3523      # When given -MP, icc 7.0 and 7.1 complain thusly:
3524      #   icc: Command line warning: ignoring option '-M'; no argument required
3525      # The diagnosis changed in icc 8.0:
3526      #   icc: Command line remark: option '-MP' not supported
3527      if (grep 'ignoring option' conftest.err ||
3528          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
3529        am_cv_CC_dependencies_compiler_type=$depmode
3530        break
3531      fi
3532    fi
3533  done
3534
3535  cd ..
3536  rm -rf conftest.dir
3537else
3538  am_cv_CC_dependencies_compiler_type=none
3539fi
3540
3541fi
3542{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5
3543$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; }
3544CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
3545
3546 if
3547  test "x$enable_dependency_tracking" != xno \
3548  && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
3549  am__fastdepCC_TRUE=
3550  am__fastdepCC_FALSE='#'
3551else
3552  am__fastdepCC_TRUE='#'
3553  am__fastdepCC_FALSE=
3554fi
3555
3556
3557
3558# Checks for libraries.
3559export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH
3560
3561
3562
3563
3564
3565
3566
3567if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
3568	if test -n "$ac_tool_prefix"; then
3569  # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
3570set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
3571{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3572$as_echo_n "checking for $ac_word... " >&6; }
3573if ${ac_cv_path_PKG_CONFIG+:} false; then :
3574  $as_echo_n "(cached) " >&6
3575else
3576  case $PKG_CONFIG in
3577  [\\/]* | ?:[\\/]*)
3578  ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
3579  ;;
3580  *)
3581  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3582for as_dir in $PATH
3583do
3584  IFS=$as_save_IFS
3585  test -z "$as_dir" && as_dir=.
3586    for ac_exec_ext in '' $ac_executable_extensions; do
3587  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3588    ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
3589    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3590    break 2
3591  fi
3592done
3593  done
3594IFS=$as_save_IFS
3595
3596  ;;
3597esac
3598fi
3599PKG_CONFIG=$ac_cv_path_PKG_CONFIG
3600if test -n "$PKG_CONFIG"; then
3601  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
3602$as_echo "$PKG_CONFIG" >&6; }
3603else
3604  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3605$as_echo "no" >&6; }
3606fi
3607
3608
3609fi
3610if test -z "$ac_cv_path_PKG_CONFIG"; then
3611  ac_pt_PKG_CONFIG=$PKG_CONFIG
3612  # Extract the first word of "pkg-config", so it can be a program name with args.
3613set dummy pkg-config; ac_word=$2
3614{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3615$as_echo_n "checking for $ac_word... " >&6; }
3616if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
3617  $as_echo_n "(cached) " >&6
3618else
3619  case $ac_pt_PKG_CONFIG in
3620  [\\/]* | ?:[\\/]*)
3621  ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
3622  ;;
3623  *)
3624  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3625for as_dir in $PATH
3626do
3627  IFS=$as_save_IFS
3628  test -z "$as_dir" && as_dir=.
3629    for ac_exec_ext in '' $ac_executable_extensions; do
3630  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3631    ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
3632    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3633    break 2
3634  fi
3635done
3636  done
3637IFS=$as_save_IFS
3638
3639  ;;
3640esac
3641fi
3642ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
3643if test -n "$ac_pt_PKG_CONFIG"; then
3644  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
3645$as_echo "$ac_pt_PKG_CONFIG" >&6; }
3646else
3647  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3648$as_echo "no" >&6; }
3649fi
3650
3651  if test "x$ac_pt_PKG_CONFIG" = x; then
3652    PKG_CONFIG=""
3653  else
3654    case $cross_compiling:$ac_tool_warned in
3655yes:)
3656{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
3657$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
3658ac_tool_warned=yes ;;
3659esac
3660    PKG_CONFIG=$ac_pt_PKG_CONFIG
3661  fi
3662else
3663  PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
3664fi
3665
3666fi
3667if test -n "$PKG_CONFIG"; then
3668	_pkg_min_version=0.9.0
3669	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
3670$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
3671	if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
3672		{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3673$as_echo "yes" >&6; }
3674	else
3675		{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3676$as_echo "no" >&6; }
3677		PKG_CONFIG=""
3678	fi
3679fi
3680
3681pkg_failed=no
3682{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for FUSE" >&5
3683$as_echo_n "checking for FUSE... " >&6; }
3684
3685if test -n "$FUSE_CFLAGS"; then
3686    pkg_cv_FUSE_CFLAGS="$FUSE_CFLAGS"
3687 elif test -n "$PKG_CONFIG"; then
3688    if test -n "$PKG_CONFIG" && \
3689    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"fuse >= 2.3\""; } >&5
3690  ($PKG_CONFIG --exists --print-errors "fuse >= 2.3") 2>&5
3691  ac_status=$?
3692  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
3693  test $ac_status = 0; }; then
3694  pkg_cv_FUSE_CFLAGS=`$PKG_CONFIG --cflags "fuse >= 2.3" 2>/dev/null`
3695		      test "x$?" != "x0" && pkg_failed=yes
3696else
3697  pkg_failed=yes
3698fi
3699 else
3700    pkg_failed=untried
3701fi
3702if test -n "$FUSE_LIBS"; then
3703    pkg_cv_FUSE_LIBS="$FUSE_LIBS"
3704 elif test -n "$PKG_CONFIG"; then
3705    if test -n "$PKG_CONFIG" && \
3706    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"fuse >= 2.3\""; } >&5
3707  ($PKG_CONFIG --exists --print-errors "fuse >= 2.3") 2>&5
3708  ac_status=$?
3709  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
3710  test $ac_status = 0; }; then
3711  pkg_cv_FUSE_LIBS=`$PKG_CONFIG --libs "fuse >= 2.3" 2>/dev/null`
3712		      test "x$?" != "x0" && pkg_failed=yes
3713else
3714  pkg_failed=yes
3715fi
3716 else
3717    pkg_failed=untried
3718fi
3719
3720
3721
3722if test $pkg_failed = yes; then
3723   	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3724$as_echo "no" >&6; }
3725
3726if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
3727        _pkg_short_errors_supported=yes
3728else
3729        _pkg_short_errors_supported=no
3730fi
3731        if test $_pkg_short_errors_supported = yes; then
3732	        FUSE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "fuse >= 2.3" 2>&1`
3733        else
3734	        FUSE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "fuse >= 2.3" 2>&1`
3735        fi
3736	# Put the nasty error message in config.log where it belongs
3737	echo "$FUSE_PKG_ERRORS" >&5
3738
3739	as_fn_error $? "Package requirements (fuse >= 2.3) were not met:
3740
3741$FUSE_PKG_ERRORS
3742
3743Consider adjusting the PKG_CONFIG_PATH environment variable if you
3744installed software in a non-standard prefix.
3745
3746Alternatively, you may set the environment variables FUSE_CFLAGS
3747and FUSE_LIBS to avoid the need to call pkg-config.
3748See the pkg-config man page for more details." "$LINENO" 5
3749elif test $pkg_failed = untried; then
3750     	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3751$as_echo "no" >&6; }
3752	{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3753$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3754as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
3755is in your PATH or set the PKG_CONFIG environment variable to the full
3756path to pkg-config.
3757
3758Alternatively, you may set the environment variables FUSE_CFLAGS
3759and FUSE_LIBS to avoid the need to call pkg-config.
3760See the pkg-config man page for more details.
3761
3762To get pkg-config, see <http://pkg-config.freedesktop.org/>.
3763See \`config.log' for more details" "$LINENO" 5; }
3764else
3765	FUSE_CFLAGS=$pkg_cv_FUSE_CFLAGS
3766	FUSE_LIBS=$pkg_cv_FUSE_LIBS
3767        { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3768$as_echo "yes" >&6; }
3769
3770fi
3771CFLAGS="$CFLAGS -Wall -Wextra $FUSE_CFLAGS -DFUSE_USE_VERSION=25"
3772LIBS="$FUSE_LIBS"
3773
3774# Check if we need to enable compatibility code for old FUSE versions
3775have_fuse_opt_parse=no
3776
3777ac_fn_c_check_func "$LINENO" "fuse_opt_parse" "ac_cv_func_fuse_opt_parse"
3778if test "x$ac_cv_func_fuse_opt_parse" = xyes; then :
3779  have_fuse_opt_parse=yes
3780fi
3781
3782if test "$have_fuse_opt_parse" = no; then
3783        CFLAGS="$CFLAGS -I$PWD/compat"
3784fi
3785 if test "$have_fuse_opt_parse" = no; then
3786  FUSE_OPT_COMPAT_TRUE=
3787  FUSE_OPT_COMPAT_FALSE='#'
3788else
3789  FUSE_OPT_COMPAT_TRUE='#'
3790  FUSE_OPT_COMPAT_FALSE=
3791fi
3792
3793
3794
3795for ac_func in setxattr fdatasync getline fgetln
3796do :
3797  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
3798ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
3799if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
3800  cat >>confdefs.h <<_ACEOF
3801#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
3802_ACEOF
3803
3804fi
3805done
3806
3807
3808ac_config_files="$ac_config_files Makefile src/Makefile compat/Makefile"
3809
3810
3811if test "x$ac_cv_func_getline" = "xno" -a "x$ac_cv_func_fgetln" = "xno"; then
3812	as_fn_error $? "Neither getline nor fgetln are available, we can't compile" "$LINENO" 5
3813fi
3814
3815cat >confcache <<\_ACEOF
3816# This file is a shell script that caches the results of configure
3817# tests run on this system so they can be shared between configure
3818# scripts and configure runs, see configure's option --config-cache.
3819# It is not useful on other systems.  If it contains results you don't
3820# want to keep, you may remove or edit it.
3821#
3822# config.status only pays attention to the cache file if you give it
3823# the --recheck option to rerun configure.
3824#
3825# `ac_cv_env_foo' variables (set or unset) will be overridden when
3826# loading this file, other *unset* `ac_cv_foo' will be assigned the
3827# following values.
3828
3829_ACEOF
3830
3831# The following way of writing the cache mishandles newlines in values,
3832# but we know of no workaround that is simple, portable, and efficient.
3833# So, we kill variables containing newlines.
3834# Ultrix sh set writes to stderr and can't be redirected directly,
3835# and sets the high bit in the cache file unless we assign to the vars.
3836(
3837  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
3838    eval ac_val=\$$ac_var
3839    case $ac_val in #(
3840    *${as_nl}*)
3841      case $ac_var in #(
3842      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
3843$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
3844      esac
3845      case $ac_var in #(
3846      _ | IFS | as_nl) ;; #(
3847      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
3848      *) { eval $ac_var=; unset $ac_var;} ;;
3849      esac ;;
3850    esac
3851  done
3852
3853  (set) 2>&1 |
3854    case $as_nl`(ac_space=' '; set) 2>&1` in #(
3855    *${as_nl}ac_space=\ *)
3856      # `set' does not quote correctly, so add quotes: double-quote
3857      # substitution turns \\\\ into \\, and sed turns \\ into \.
3858      sed -n \
3859	"s/'/'\\\\''/g;
3860	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
3861      ;; #(
3862    *)
3863      # `set' quotes correctly as required by POSIX, so do not add quotes.
3864      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
3865      ;;
3866    esac |
3867    sort
3868) |
3869  sed '
3870     /^ac_cv_env_/b end
3871     t clear
3872     :clear
3873     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
3874     t end
3875     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
3876     :end' >>confcache
3877if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
3878  if test -w "$cache_file"; then
3879    if test "x$cache_file" != "x/dev/null"; then
3880      { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
3881$as_echo "$as_me: updating cache $cache_file" >&6;}
3882      if test ! -f "$cache_file" || test -h "$cache_file"; then
3883	cat confcache >"$cache_file"
3884      else
3885        case $cache_file in #(
3886        */* | ?:*)
3887	  mv -f confcache "$cache_file"$$ &&
3888	  mv -f "$cache_file"$$ "$cache_file" ;; #(
3889        *)
3890	  mv -f confcache "$cache_file" ;;
3891	esac
3892      fi
3893    fi
3894  else
3895    { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
3896$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
3897  fi
3898fi
3899rm -f confcache
3900
3901test "x$prefix" = xNONE && prefix=$ac_default_prefix
3902# Let make expand exec_prefix.
3903test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
3904
3905DEFS=-DHAVE_CONFIG_H
3906
3907ac_libobjs=
3908ac_ltlibobjs=
3909U=
3910for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
3911  # 1. Remove the extension, and $U if already installed.
3912  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
3913  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
3914  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
3915  #    will be set to the directory where LIBOBJS objects are built.
3916  as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
3917  as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
3918done
3919LIBOBJS=$ac_libobjs
3920
3921LTLIBOBJS=$ac_ltlibobjs
3922
3923
3924{ $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5
3925$as_echo_n "checking that generated files are newer than configure... " >&6; }
3926   if test -n "$am_sleep_pid"; then
3927     # Hide warnings about reused PIDs.
3928     wait $am_sleep_pid 2>/dev/null
3929   fi
3930   { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5
3931$as_echo "done" >&6; }
3932 if test -n "$EXEEXT"; then
3933  am__EXEEXT_TRUE=
3934  am__EXEEXT_FALSE='#'
3935else
3936  am__EXEEXT_TRUE='#'
3937  am__EXEEXT_FALSE=
3938fi
3939
3940if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
3941  as_fn_error $? "conditional \"AMDEP\" was never defined.
3942Usually this means the macro was only invoked conditionally." "$LINENO" 5
3943fi
3944if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
3945  as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
3946Usually this means the macro was only invoked conditionally." "$LINENO" 5
3947fi
3948if test -z "${FUSE_OPT_COMPAT_TRUE}" && test -z "${FUSE_OPT_COMPAT_FALSE}"; then
3949  as_fn_error $? "conditional \"FUSE_OPT_COMPAT\" was never defined.
3950Usually this means the macro was only invoked conditionally." "$LINENO" 5
3951fi
3952
3953: "${CONFIG_STATUS=./config.status}"
3954ac_write_fail=0
3955ac_clean_files_save=$ac_clean_files
3956ac_clean_files="$ac_clean_files $CONFIG_STATUS"
3957{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
3958$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
3959as_write_fail=0
3960cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
3961#! $SHELL
3962# Generated by $as_me.
3963# Run this file to recreate the current configuration.
3964# Compiler output produced by configure, useful for debugging
3965# configure, is in config.log if it exists.
3966
3967debug=false
3968ac_cs_recheck=false
3969ac_cs_silent=false
3970
3971SHELL=\${CONFIG_SHELL-$SHELL}
3972export SHELL
3973_ASEOF
3974cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
3975## -------------------- ##
3976## M4sh Initialization. ##
3977## -------------------- ##
3978
3979# Be more Bourne compatible
3980DUALCASE=1; export DUALCASE # for MKS sh
3981if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
3982  emulate sh
3983  NULLCMD=:
3984  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
3985  # is contrary to our usage.  Disable this feature.
3986  alias -g '${1+"$@"}'='"$@"'
3987  setopt NO_GLOB_SUBST
3988else
3989  case `(set -o) 2>/dev/null` in #(
3990  *posix*) :
3991    set -o posix ;; #(
3992  *) :
3993     ;;
3994esac
3995fi
3996
3997
3998as_nl='
3999'
4000export as_nl
4001# Printing a long string crashes Solaris 7 /usr/bin/printf.
4002as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
4003as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
4004as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
4005# Prefer a ksh shell builtin over an external printf program on Solaris,
4006# but without wasting forks for bash or zsh.
4007if test -z "$BASH_VERSION$ZSH_VERSION" \
4008    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
4009  as_echo='print -r --'
4010  as_echo_n='print -rn --'
4011elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
4012  as_echo='printf %s\n'
4013  as_echo_n='printf %s'
4014else
4015  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
4016    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
4017    as_echo_n='/usr/ucb/echo -n'
4018  else
4019    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
4020    as_echo_n_body='eval
4021      arg=$1;
4022      case $arg in #(
4023      *"$as_nl"*)
4024	expr "X$arg" : "X\\(.*\\)$as_nl";
4025	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
4026      esac;
4027      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
4028    '
4029    export as_echo_n_body
4030    as_echo_n='sh -c $as_echo_n_body as_echo'
4031  fi
4032  export as_echo_body
4033  as_echo='sh -c $as_echo_body as_echo'
4034fi
4035
4036# The user is always right.
4037if test "${PATH_SEPARATOR+set}" != set; then
4038  PATH_SEPARATOR=:
4039  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
4040    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
4041      PATH_SEPARATOR=';'
4042  }
4043fi
4044
4045
4046# IFS
4047# We need space, tab and new line, in precisely that order.  Quoting is
4048# there to prevent editors from complaining about space-tab.
4049# (If _AS_PATH_WALK were called with IFS unset, it would disable word
4050# splitting by setting IFS to empty value.)
4051IFS=" ""	$as_nl"
4052
4053# Find who we are.  Look in the path if we contain no directory separator.
4054as_myself=
4055case $0 in #((
4056  *[\\/]* ) as_myself=$0 ;;
4057  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4058for as_dir in $PATH
4059do
4060  IFS=$as_save_IFS
4061  test -z "$as_dir" && as_dir=.
4062    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
4063  done
4064IFS=$as_save_IFS
4065
4066     ;;
4067esac
4068# We did not find ourselves, most probably we were run as `sh COMMAND'
4069# in which case we are not to be found in the path.
4070if test "x$as_myself" = x; then
4071  as_myself=$0
4072fi
4073if test ! -f "$as_myself"; then
4074  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
4075  exit 1
4076fi
4077
4078# Unset variables that we do not need and which cause bugs (e.g. in
4079# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
4080# suppresses any "Segmentation fault" message there.  '((' could
4081# trigger a bug in pdksh 5.2.14.
4082for as_var in BASH_ENV ENV MAIL MAILPATH
4083do eval test x\${$as_var+set} = xset \
4084  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
4085done
4086PS1='$ '
4087PS2='> '
4088PS4='+ '
4089
4090# NLS nuisances.
4091LC_ALL=C
4092export LC_ALL
4093LANGUAGE=C
4094export LANGUAGE
4095
4096# CDPATH.
4097(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
4098
4099
4100# as_fn_error STATUS ERROR [LINENO LOG_FD]
4101# ----------------------------------------
4102# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
4103# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
4104# script with STATUS, using 1 if that was 0.
4105as_fn_error ()
4106{
4107  as_status=$1; test $as_status -eq 0 && as_status=1
4108  if test "$4"; then
4109    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
4110    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
4111  fi
4112  $as_echo "$as_me: error: $2" >&2
4113  as_fn_exit $as_status
4114} # as_fn_error
4115
4116
4117# as_fn_set_status STATUS
4118# -----------------------
4119# Set $? to STATUS, without forking.
4120as_fn_set_status ()
4121{
4122  return $1
4123} # as_fn_set_status
4124
4125# as_fn_exit STATUS
4126# -----------------
4127# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
4128as_fn_exit ()
4129{
4130  set +e
4131  as_fn_set_status $1
4132  exit $1
4133} # as_fn_exit
4134
4135# as_fn_unset VAR
4136# ---------------
4137# Portably unset VAR.
4138as_fn_unset ()
4139{
4140  { eval $1=; unset $1;}
4141}
4142as_unset=as_fn_unset
4143# as_fn_append VAR VALUE
4144# ----------------------
4145# Append the text in VALUE to the end of the definition contained in VAR. Take
4146# advantage of any shell optimizations that allow amortized linear growth over
4147# repeated appends, instead of the typical quadratic growth present in naive
4148# implementations.
4149if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
4150  eval 'as_fn_append ()
4151  {
4152    eval $1+=\$2
4153  }'
4154else
4155  as_fn_append ()
4156  {
4157    eval $1=\$$1\$2
4158  }
4159fi # as_fn_append
4160
4161# as_fn_arith ARG...
4162# ------------------
4163# Perform arithmetic evaluation on the ARGs, and store the result in the
4164# global $as_val. Take advantage of shells that can avoid forks. The arguments
4165# must be portable across $(()) and expr.
4166if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
4167  eval 'as_fn_arith ()
4168  {
4169    as_val=$(( $* ))
4170  }'
4171else
4172  as_fn_arith ()
4173  {
4174    as_val=`expr "$@" || test $? -eq 1`
4175  }
4176fi # as_fn_arith
4177
4178
4179if expr a : '\(a\)' >/dev/null 2>&1 &&
4180   test "X`expr 00001 : '.*\(...\)'`" = X001; then
4181  as_expr=expr
4182else
4183  as_expr=false
4184fi
4185
4186if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
4187  as_basename=basename
4188else
4189  as_basename=false
4190fi
4191
4192if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
4193  as_dirname=dirname
4194else
4195  as_dirname=false
4196fi
4197
4198as_me=`$as_basename -- "$0" ||
4199$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
4200	 X"$0" : 'X\(//\)$' \| \
4201	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
4202$as_echo X/"$0" |
4203    sed '/^.*\/\([^/][^/]*\)\/*$/{
4204	    s//\1/
4205	    q
4206	  }
4207	  /^X\/\(\/\/\)$/{
4208	    s//\1/
4209	    q
4210	  }
4211	  /^X\/\(\/\).*/{
4212	    s//\1/
4213	    q
4214	  }
4215	  s/.*/./; q'`
4216
4217# Avoid depending upon Character Ranges.
4218as_cr_letters='abcdefghijklmnopqrstuvwxyz'
4219as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
4220as_cr_Letters=$as_cr_letters$as_cr_LETTERS
4221as_cr_digits='0123456789'
4222as_cr_alnum=$as_cr_Letters$as_cr_digits
4223
4224ECHO_C= ECHO_N= ECHO_T=
4225case `echo -n x` in #(((((
4226-n*)
4227  case `echo 'xy\c'` in
4228  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
4229  xy)  ECHO_C='\c';;
4230  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
4231       ECHO_T='	';;
4232  esac;;
4233*)
4234  ECHO_N='-n';;
4235esac
4236
4237rm -f conf$$ conf$$.exe conf$$.file
4238if test -d conf$$.dir; then
4239  rm -f conf$$.dir/conf$$.file
4240else
4241  rm -f conf$$.dir
4242  mkdir conf$$.dir 2>/dev/null
4243fi
4244if (echo >conf$$.file) 2>/dev/null; then
4245  if ln -s conf$$.file conf$$ 2>/dev/null; then
4246    as_ln_s='ln -s'
4247    # ... but there are two gotchas:
4248    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
4249    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
4250    # In both cases, we have to default to `cp -pR'.
4251    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
4252      as_ln_s='cp -pR'
4253  elif ln conf$$.file conf$$ 2>/dev/null; then
4254    as_ln_s=ln
4255  else
4256    as_ln_s='cp -pR'
4257  fi
4258else
4259  as_ln_s='cp -pR'
4260fi
4261rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
4262rmdir conf$$.dir 2>/dev/null
4263
4264
4265# as_fn_mkdir_p
4266# -------------
4267# Create "$as_dir" as a directory, including parents if necessary.
4268as_fn_mkdir_p ()
4269{
4270
4271  case $as_dir in #(
4272  -*) as_dir=./$as_dir;;
4273  esac
4274  test -d "$as_dir" || eval $as_mkdir_p || {
4275    as_dirs=
4276    while :; do
4277      case $as_dir in #(
4278      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
4279      *) as_qdir=$as_dir;;
4280      esac
4281      as_dirs="'$as_qdir' $as_dirs"
4282      as_dir=`$as_dirname -- "$as_dir" ||
4283$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
4284	 X"$as_dir" : 'X\(//\)[^/]' \| \
4285	 X"$as_dir" : 'X\(//\)$' \| \
4286	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
4287$as_echo X"$as_dir" |
4288    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
4289	    s//\1/
4290	    q
4291	  }
4292	  /^X\(\/\/\)[^/].*/{
4293	    s//\1/
4294	    q
4295	  }
4296	  /^X\(\/\/\)$/{
4297	    s//\1/
4298	    q
4299	  }
4300	  /^X\(\/\).*/{
4301	    s//\1/
4302	    q
4303	  }
4304	  s/.*/./; q'`
4305      test -d "$as_dir" && break
4306    done
4307    test -z "$as_dirs" || eval "mkdir $as_dirs"
4308  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
4309
4310
4311} # as_fn_mkdir_p
4312if mkdir -p . 2>/dev/null; then
4313  as_mkdir_p='mkdir -p "$as_dir"'
4314else
4315  test -d ./-p && rmdir ./-p
4316  as_mkdir_p=false
4317fi
4318
4319
4320# as_fn_executable_p FILE
4321# -----------------------
4322# Test if FILE is an executable regular file.
4323as_fn_executable_p ()
4324{
4325  test -f "$1" && test -x "$1"
4326} # as_fn_executable_p
4327as_test_x='test -x'
4328as_executable_p=as_fn_executable_p
4329
4330# Sed expression to map a string onto a valid CPP name.
4331as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
4332
4333# Sed expression to map a string onto a valid variable name.
4334as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
4335
4336
4337exec 6>&1
4338## ----------------------------------- ##
4339## Main body of $CONFIG_STATUS script. ##
4340## ----------------------------------- ##
4341_ASEOF
4342test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
4343
4344cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4345# Save the log message, to keep $0 and so on meaningful, and to
4346# report actual input values of CONFIG_FILES etc. instead of their
4347# values after options handling.
4348ac_log="
4349This file was extended by afuse $as_me 0.4.1, which was
4350generated by GNU Autoconf 2.69.  Invocation command line was
4351
4352  CONFIG_FILES    = $CONFIG_FILES
4353  CONFIG_HEADERS  = $CONFIG_HEADERS
4354  CONFIG_LINKS    = $CONFIG_LINKS
4355  CONFIG_COMMANDS = $CONFIG_COMMANDS
4356  $ $0 $@
4357
4358on `(hostname || uname -n) 2>/dev/null | sed 1q`
4359"
4360
4361_ACEOF
4362
4363case $ac_config_files in *"
4364"*) set x $ac_config_files; shift; ac_config_files=$*;;
4365esac
4366
4367case $ac_config_headers in *"
4368"*) set x $ac_config_headers; shift; ac_config_headers=$*;;
4369esac
4370
4371
4372cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4373# Files that config.status was made for.
4374config_files="$ac_config_files"
4375config_headers="$ac_config_headers"
4376config_commands="$ac_config_commands"
4377
4378_ACEOF
4379
4380cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4381ac_cs_usage="\
4382\`$as_me' instantiates files and other configuration actions
4383from templates according to the current configuration.  Unless the files
4384and actions are specified as TAGs, all are instantiated by default.
4385
4386Usage: $0 [OPTION]... [TAG]...
4387
4388  -h, --help       print this help, then exit
4389  -V, --version    print version number and configuration settings, then exit
4390      --config     print configuration, then exit
4391  -q, --quiet, --silent
4392                   do not print progress messages
4393  -d, --debug      don't remove temporary files
4394      --recheck    update $as_me by reconfiguring in the same conditions
4395      --file=FILE[:TEMPLATE]
4396                   instantiate the configuration file FILE
4397      --header=FILE[:TEMPLATE]
4398                   instantiate the configuration header FILE
4399
4400Configuration files:
4401$config_files
4402
4403Configuration headers:
4404$config_headers
4405
4406Configuration commands:
4407$config_commands
4408
4409Report bugs to the package provider."
4410
4411_ACEOF
4412cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4413ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
4414ac_cs_version="\\
4415afuse config.status 0.4.1
4416configured by $0, generated by GNU Autoconf 2.69,
4417  with options \\"\$ac_cs_config\\"
4418
4419Copyright (C) 2012 Free Software Foundation, Inc.
4420This config.status script is free software; the Free Software Foundation
4421gives unlimited permission to copy, distribute and modify it."
4422
4423ac_pwd='$ac_pwd'
4424srcdir='$srcdir'
4425INSTALL='$INSTALL'
4426MKDIR_P='$MKDIR_P'
4427AWK='$AWK'
4428test -n "\$AWK" || AWK=awk
4429_ACEOF
4430
4431cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4432# The default lists apply if the user does not specify any file.
4433ac_need_defaults=:
4434while test $# != 0
4435do
4436  case $1 in
4437  --*=?*)
4438    ac_option=`expr "X$1" : 'X\([^=]*\)='`
4439    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
4440    ac_shift=:
4441    ;;
4442  --*=)
4443    ac_option=`expr "X$1" : 'X\([^=]*\)='`
4444    ac_optarg=
4445    ac_shift=:
4446    ;;
4447  *)
4448    ac_option=$1
4449    ac_optarg=$2
4450    ac_shift=shift
4451    ;;
4452  esac
4453
4454  case $ac_option in
4455  # Handling of the options.
4456  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
4457    ac_cs_recheck=: ;;
4458  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
4459    $as_echo "$ac_cs_version"; exit ;;
4460  --config | --confi | --conf | --con | --co | --c )
4461    $as_echo "$ac_cs_config"; exit ;;
4462  --debug | --debu | --deb | --de | --d | -d )
4463    debug=: ;;
4464  --file | --fil | --fi | --f )
4465    $ac_shift
4466    case $ac_optarg in
4467    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
4468    '') as_fn_error $? "missing file argument" ;;
4469    esac
4470    as_fn_append CONFIG_FILES " '$ac_optarg'"
4471    ac_need_defaults=false;;
4472  --header | --heade | --head | --hea )
4473    $ac_shift
4474    case $ac_optarg in
4475    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
4476    esac
4477    as_fn_append CONFIG_HEADERS " '$ac_optarg'"
4478    ac_need_defaults=false;;
4479  --he | --h)
4480    # Conflict between --help and --header
4481    as_fn_error $? "ambiguous option: \`$1'
4482Try \`$0 --help' for more information.";;
4483  --help | --hel | -h )
4484    $as_echo "$ac_cs_usage"; exit ;;
4485  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
4486  | -silent | --silent | --silen | --sile | --sil | --si | --s)
4487    ac_cs_silent=: ;;
4488
4489  # This is an error.
4490  -*) as_fn_error $? "unrecognized option: \`$1'
4491Try \`$0 --help' for more information." ;;
4492
4493  *) as_fn_append ac_config_targets " $1"
4494     ac_need_defaults=false ;;
4495
4496  esac
4497  shift
4498done
4499
4500ac_configure_extra_args=
4501
4502if $ac_cs_silent; then
4503  exec 6>/dev/null
4504  ac_configure_extra_args="$ac_configure_extra_args --silent"
4505fi
4506
4507_ACEOF
4508cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4509if \$ac_cs_recheck; then
4510  set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
4511  shift
4512  \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
4513  CONFIG_SHELL='$SHELL'
4514  export CONFIG_SHELL
4515  exec "\$@"
4516fi
4517
4518_ACEOF
4519cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4520exec 5>>config.log
4521{
4522  echo
4523  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
4524## Running $as_me. ##
4525_ASBOX
4526  $as_echo "$ac_log"
4527} >&5
4528
4529_ACEOF
4530cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4531#
4532# INIT-COMMANDS
4533#
4534AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
4535
4536_ACEOF
4537
4538cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4539
4540# Handling of arguments.
4541for ac_config_target in $ac_config_targets
4542do
4543  case $ac_config_target in
4544    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
4545    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
4546    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
4547    "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
4548    "compat/Makefile") CONFIG_FILES="$CONFIG_FILES compat/Makefile" ;;
4549
4550  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
4551  esac
4552done
4553
4554
4555# If the user did not use the arguments to specify the items to instantiate,
4556# then the envvar interface is used.  Set only those that are not.
4557# We use the long form for the default assignment because of an extremely
4558# bizarre bug on SunOS 4.1.3.
4559if $ac_need_defaults; then
4560  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
4561  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
4562  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
4563fi
4564
4565# Have a temporary directory for convenience.  Make it in the build tree
4566# simply because there is no reason against having it here, and in addition,
4567# creating and moving files from /tmp can sometimes cause problems.
4568# Hook for its removal unless debugging.
4569# Note that there is a small window in which the directory will not be cleaned:
4570# after its creation but before its name has been assigned to `$tmp'.
4571$debug ||
4572{
4573  tmp= ac_tmp=
4574  trap 'exit_status=$?
4575  : "${ac_tmp:=$tmp}"
4576  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
4577' 0
4578  trap 'as_fn_exit 1' 1 2 13 15
4579}
4580# Create a (secure) tmp directory for tmp files.
4581
4582{
4583  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
4584  test -d "$tmp"
4585}  ||
4586{
4587  tmp=./conf$$-$RANDOM
4588  (umask 077 && mkdir "$tmp")
4589} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
4590ac_tmp=$tmp
4591
4592# Set up the scripts for CONFIG_FILES section.
4593# No need to generate them if there are no CONFIG_FILES.
4594# This happens for instance with `./config.status config.h'.
4595if test -n "$CONFIG_FILES"; then
4596
4597
4598ac_cr=`echo X | tr X '\015'`
4599# On cygwin, bash can eat \r inside `` if the user requested igncr.
4600# But we know of no other shell where ac_cr would be empty at this
4601# point, so we can use a bashism as a fallback.
4602if test "x$ac_cr" = x; then
4603  eval ac_cr=\$\'\\r\'
4604fi
4605ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
4606if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
4607  ac_cs_awk_cr='\\r'
4608else
4609  ac_cs_awk_cr=$ac_cr
4610fi
4611
4612echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
4613_ACEOF
4614
4615
4616{
4617  echo "cat >conf$$subs.awk <<_ACEOF" &&
4618  echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
4619  echo "_ACEOF"
4620} >conf$$subs.sh ||
4621  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
4622ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
4623ac_delim='%!_!# '
4624for ac_last_try in false false false false false :; do
4625  . ./conf$$subs.sh ||
4626    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
4627
4628  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
4629  if test $ac_delim_n = $ac_delim_num; then
4630    break
4631  elif $ac_last_try; then
4632    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
4633  else
4634    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
4635  fi
4636done
4637rm -f conf$$subs.sh
4638
4639cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4640cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
4641_ACEOF
4642sed -n '
4643h
4644s/^/S["/; s/!.*/"]=/
4645p
4646g
4647s/^[^!]*!//
4648:repl
4649t repl
4650s/'"$ac_delim"'$//
4651t delim
4652:nl
4653h
4654s/\(.\{148\}\)..*/\1/
4655t more1
4656s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
4657p
4658n
4659b repl
4660:more1
4661s/["\\]/\\&/g; s/^/"/; s/$/"\\/
4662p
4663g
4664s/.\{148\}//
4665t nl
4666:delim
4667h
4668s/\(.\{148\}\)..*/\1/
4669t more2
4670s/["\\]/\\&/g; s/^/"/; s/$/"/
4671p
4672b
4673:more2
4674s/["\\]/\\&/g; s/^/"/; s/$/"\\/
4675p
4676g
4677s/.\{148\}//
4678t delim
4679' <conf$$subs.awk | sed '
4680/^[^""]/{
4681  N
4682  s/\n//
4683}
4684' >>$CONFIG_STATUS || ac_write_fail=1
4685rm -f conf$$subs.awk
4686cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4687_ACAWK
4688cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
4689  for (key in S) S_is_set[key] = 1
4690  FS = ""
4691
4692}
4693{
4694  line = $ 0
4695  nfields = split(line, field, "@")
4696  substed = 0
4697  len = length(field[1])
4698  for (i = 2; i < nfields; i++) {
4699    key = field[i]
4700    keylen = length(key)
4701    if (S_is_set[key]) {
4702      value = S[key]
4703      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
4704      len += length(value) + length(field[++i])
4705      substed = 1
4706    } else
4707      len += 1 + keylen
4708  }
4709
4710  print line
4711}
4712
4713_ACAWK
4714_ACEOF
4715cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4716if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
4717  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
4718else
4719  cat
4720fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
4721  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
4722_ACEOF
4723
4724# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
4725# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
4726# trailing colons and then remove the whole line if VPATH becomes empty
4727# (actually we leave an empty line to preserve line numbers).
4728if test "x$srcdir" = x.; then
4729  ac_vpsub='/^[	 ]*VPATH[	 ]*=[	 ]*/{
4730h
4731s///
4732s/^/:/
4733s/[	 ]*$/:/
4734s/:\$(srcdir):/:/g
4735s/:\${srcdir}:/:/g
4736s/:@srcdir@:/:/g
4737s/^:*//
4738s/:*$//
4739x
4740s/\(=[	 ]*\).*/\1/
4741G
4742s/\n//
4743s/^[^=]*=[	 ]*$//
4744}'
4745fi
4746
4747cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4748fi # test -n "$CONFIG_FILES"
4749
4750# Set up the scripts for CONFIG_HEADERS section.
4751# No need to generate them if there are no CONFIG_HEADERS.
4752# This happens for instance with `./config.status Makefile'.
4753if test -n "$CONFIG_HEADERS"; then
4754cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
4755BEGIN {
4756_ACEOF
4757
4758# Transform confdefs.h into an awk script `defines.awk', embedded as
4759# here-document in config.status, that substitutes the proper values into
4760# config.h.in to produce config.h.
4761
4762# Create a delimiter string that does not exist in confdefs.h, to ease
4763# handling of long lines.
4764ac_delim='%!_!# '
4765for ac_last_try in false false :; do
4766  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
4767  if test -z "$ac_tt"; then
4768    break
4769  elif $ac_last_try; then
4770    as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
4771  else
4772    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
4773  fi
4774done
4775
4776# For the awk script, D is an array of macro values keyed by name,
4777# likewise P contains macro parameters if any.  Preserve backslash
4778# newline sequences.
4779
4780ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
4781sed -n '
4782s/.\{148\}/&'"$ac_delim"'/g
4783t rset
4784:rset
4785s/^[	 ]*#[	 ]*define[	 ][	 ]*/ /
4786t def
4787d
4788:def
4789s/\\$//
4790t bsnl
4791s/["\\]/\\&/g
4792s/^ \('"$ac_word_re"'\)\(([^()]*)\)[	 ]*\(.*\)/P["\1"]="\2"\
4793D["\1"]=" \3"/p
4794s/^ \('"$ac_word_re"'\)[	 ]*\(.*\)/D["\1"]=" \2"/p
4795d
4796:bsnl
4797s/["\\]/\\&/g
4798s/^ \('"$ac_word_re"'\)\(([^()]*)\)[	 ]*\(.*\)/P["\1"]="\2"\
4799D["\1"]=" \3\\\\\\n"\\/p
4800t cont
4801s/^ \('"$ac_word_re"'\)[	 ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p
4802t cont
4803d
4804:cont
4805n
4806s/.\{148\}/&'"$ac_delim"'/g
4807t clear
4808:clear
4809s/\\$//
4810t bsnlc
4811s/["\\]/\\&/g; s/^/"/; s/$/"/p
4812d
4813:bsnlc
4814s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p
4815b cont
4816' <confdefs.h | sed '
4817s/'"$ac_delim"'/"\\\
4818"/g' >>$CONFIG_STATUS || ac_write_fail=1
4819
4820cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4821  for (key in D) D_is_set[key] = 1
4822  FS = ""
4823}
4824/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ {
4825  line = \$ 0
4826  split(line, arg, " ")
4827  if (arg[1] == "#") {
4828    defundef = arg[2]
4829    mac1 = arg[3]
4830  } else {
4831    defundef = substr(arg[1], 2)
4832    mac1 = arg[2]
4833  }
4834  split(mac1, mac2, "(") #)
4835  macro = mac2[1]
4836  prefix = substr(line, 1, index(line, defundef) - 1)
4837  if (D_is_set[macro]) {
4838    # Preserve the white space surrounding the "#".
4839    print prefix "define", macro P[macro] D[macro]
4840    next
4841  } else {
4842    # Replace #undef with comments.  This is necessary, for example,
4843    # in the case of _POSIX_SOURCE, which is predefined and required
4844    # on some systems where configure will not decide to define it.
4845    if (defundef == "undef") {
4846      print "/*", prefix defundef, macro, "*/"
4847      next
4848    }
4849  }
4850}
4851{ print }
4852_ACAWK
4853_ACEOF
4854cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4855  as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
4856fi # test -n "$CONFIG_HEADERS"
4857
4858
4859eval set X "  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS"
4860shift
4861for ac_tag
4862do
4863  case $ac_tag in
4864  :[FHLC]) ac_mode=$ac_tag; continue;;
4865  esac
4866  case $ac_mode$ac_tag in
4867  :[FHL]*:*);;
4868  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
4869  :[FH]-) ac_tag=-:-;;
4870  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
4871  esac
4872  ac_save_IFS=$IFS
4873  IFS=:
4874  set x $ac_tag
4875  IFS=$ac_save_IFS
4876  shift
4877  ac_file=$1
4878  shift
4879
4880  case $ac_mode in
4881  :L) ac_source=$1;;
4882  :[FH])
4883    ac_file_inputs=
4884    for ac_f
4885    do
4886      case $ac_f in
4887      -) ac_f="$ac_tmp/stdin";;
4888      *) # Look for the file first in the build tree, then in the source tree
4889	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
4890	 # because $ac_f cannot contain `:'.
4891	 test -f "$ac_f" ||
4892	   case $ac_f in
4893	   [\\/$]*) false;;
4894	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
4895	   esac ||
4896	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
4897      esac
4898      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
4899      as_fn_append ac_file_inputs " '$ac_f'"
4900    done
4901
4902    # Let's still pretend it is `configure' which instantiates (i.e., don't
4903    # use $as_me), people would be surprised to read:
4904    #    /* config.h.  Generated by config.status.  */
4905    configure_input='Generated from '`
4906	  $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
4907	`' by configure.'
4908    if test x"$ac_file" != x-; then
4909      configure_input="$ac_file.  $configure_input"
4910      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
4911$as_echo "$as_me: creating $ac_file" >&6;}
4912    fi
4913    # Neutralize special characters interpreted by sed in replacement strings.
4914    case $configure_input in #(
4915    *\&* | *\|* | *\\* )
4916       ac_sed_conf_input=`$as_echo "$configure_input" |
4917       sed 's/[\\\\&|]/\\\\&/g'`;; #(
4918    *) ac_sed_conf_input=$configure_input;;
4919    esac
4920
4921    case $ac_tag in
4922    *:-:* | *:-) cat >"$ac_tmp/stdin" \
4923      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
4924    esac
4925    ;;
4926  esac
4927
4928  ac_dir=`$as_dirname -- "$ac_file" ||
4929$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
4930	 X"$ac_file" : 'X\(//\)[^/]' \| \
4931	 X"$ac_file" : 'X\(//\)$' \| \
4932	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
4933$as_echo X"$ac_file" |
4934    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
4935	    s//\1/
4936	    q
4937	  }
4938	  /^X\(\/\/\)[^/].*/{
4939	    s//\1/
4940	    q
4941	  }
4942	  /^X\(\/\/\)$/{
4943	    s//\1/
4944	    q
4945	  }
4946	  /^X\(\/\).*/{
4947	    s//\1/
4948	    q
4949	  }
4950	  s/.*/./; q'`
4951  as_dir="$ac_dir"; as_fn_mkdir_p
4952  ac_builddir=.
4953
4954case "$ac_dir" in
4955.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
4956*)
4957  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
4958  # A ".." for each directory in $ac_dir_suffix.
4959  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
4960  case $ac_top_builddir_sub in
4961  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
4962  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
4963  esac ;;
4964esac
4965ac_abs_top_builddir=$ac_pwd
4966ac_abs_builddir=$ac_pwd$ac_dir_suffix
4967# for backward compatibility:
4968ac_top_builddir=$ac_top_build_prefix
4969
4970case $srcdir in
4971  .)  # We are building in place.
4972    ac_srcdir=.
4973    ac_top_srcdir=$ac_top_builddir_sub
4974    ac_abs_top_srcdir=$ac_pwd ;;
4975  [\\/]* | ?:[\\/]* )  # Absolute name.
4976    ac_srcdir=$srcdir$ac_dir_suffix;
4977    ac_top_srcdir=$srcdir
4978    ac_abs_top_srcdir=$srcdir ;;
4979  *) # Relative name.
4980    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
4981    ac_top_srcdir=$ac_top_build_prefix$srcdir
4982    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
4983esac
4984ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
4985
4986
4987  case $ac_mode in
4988  :F)
4989  #
4990  # CONFIG_FILE
4991  #
4992
4993  case $INSTALL in
4994  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
4995  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
4996  esac
4997  ac_MKDIR_P=$MKDIR_P
4998  case $MKDIR_P in
4999  [\\/$]* | ?:[\\/]* ) ;;
5000  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
5001  esac
5002_ACEOF
5003
5004cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
5005# If the template does not know about datarootdir, expand it.
5006# FIXME: This hack should be removed a few years after 2.60.
5007ac_datarootdir_hack=; ac_datarootdir_seen=
5008ac_sed_dataroot='
5009/datarootdir/ {
5010  p
5011  q
5012}
5013/@datadir@/p
5014/@docdir@/p
5015/@infodir@/p
5016/@localedir@/p
5017/@mandir@/p'
5018case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
5019*datarootdir*) ac_datarootdir_seen=yes;;
5020*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
5021  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
5022$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
5023_ACEOF
5024cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
5025  ac_datarootdir_hack='
5026  s&@datadir@&$datadir&g
5027  s&@docdir@&$docdir&g
5028  s&@infodir@&$infodir&g
5029  s&@localedir@&$localedir&g
5030  s&@mandir@&$mandir&g
5031  s&\\\${datarootdir}&$datarootdir&g' ;;
5032esac
5033_ACEOF
5034
5035# Neutralize VPATH when `$srcdir' = `.'.
5036# Shell code in configure.ac might set extrasub.
5037# FIXME: do we really want to maintain this feature?
5038cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
5039ac_sed_extra="$ac_vpsub
5040$extrasub
5041_ACEOF
5042cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
5043:t
5044/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
5045s|@configure_input@|$ac_sed_conf_input|;t t
5046s&@top_builddir@&$ac_top_builddir_sub&;t t
5047s&@top_build_prefix@&$ac_top_build_prefix&;t t
5048s&@srcdir@&$ac_srcdir&;t t
5049s&@abs_srcdir@&$ac_abs_srcdir&;t t
5050s&@top_srcdir@&$ac_top_srcdir&;t t
5051s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
5052s&@builddir@&$ac_builddir&;t t
5053s&@abs_builddir@&$ac_abs_builddir&;t t
5054s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
5055s&@INSTALL@&$ac_INSTALL&;t t
5056s&@MKDIR_P@&$ac_MKDIR_P&;t t
5057$ac_datarootdir_hack
5058"
5059eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
5060  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
5061
5062test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
5063  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
5064  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
5065      "$ac_tmp/out"`; test -z "$ac_out"; } &&
5066  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
5067which seems to be undefined.  Please make sure it is defined" >&5
5068$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
5069which seems to be undefined.  Please make sure it is defined" >&2;}
5070
5071  rm -f "$ac_tmp/stdin"
5072  case $ac_file in
5073  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
5074  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
5075  esac \
5076  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
5077 ;;
5078  :H)
5079  #
5080  # CONFIG_HEADER
5081  #
5082  if test x"$ac_file" != x-; then
5083    {
5084      $as_echo "/* $configure_input  */" \
5085      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
5086    } >"$ac_tmp/config.h" \
5087      || as_fn_error $? "could not create $ac_file" "$LINENO" 5
5088    if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
5089      { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
5090$as_echo "$as_me: $ac_file is unchanged" >&6;}
5091    else
5092      rm -f "$ac_file"
5093      mv "$ac_tmp/config.h" "$ac_file" \
5094	|| as_fn_error $? "could not create $ac_file" "$LINENO" 5
5095    fi
5096  else
5097    $as_echo "/* $configure_input  */" \
5098      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
5099      || as_fn_error $? "could not create -" "$LINENO" 5
5100  fi
5101# Compute "$ac_file"'s index in $config_headers.
5102_am_arg="$ac_file"
5103_am_stamp_count=1
5104for _am_header in $config_headers :; do
5105  case $_am_header in
5106    $_am_arg | $_am_arg:* )
5107      break ;;
5108    * )
5109      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
5110  esac
5111done
5112echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
5113$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
5114	 X"$_am_arg" : 'X\(//\)[^/]' \| \
5115	 X"$_am_arg" : 'X\(//\)$' \| \
5116	 X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
5117$as_echo X"$_am_arg" |
5118    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
5119	    s//\1/
5120	    q
5121	  }
5122	  /^X\(\/\/\)[^/].*/{
5123	    s//\1/
5124	    q
5125	  }
5126	  /^X\(\/\/\)$/{
5127	    s//\1/
5128	    q
5129	  }
5130	  /^X\(\/\).*/{
5131	    s//\1/
5132	    q
5133	  }
5134	  s/.*/./; q'`/stamp-h$_am_stamp_count
5135 ;;
5136
5137  :C)  { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
5138$as_echo "$as_me: executing $ac_file commands" >&6;}
5139 ;;
5140  esac
5141
5142
5143  case $ac_file$ac_mode in
5144    "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
5145  # Older Autoconf quotes --file arguments for eval, but not when files
5146  # are listed without --file.  Let's play safe and only enable the eval
5147  # if we detect the quoting.
5148  case $CONFIG_FILES in
5149  *\'*) eval set x "$CONFIG_FILES" ;;
5150  *)   set x $CONFIG_FILES ;;
5151  esac
5152  shift
5153  for mf
5154  do
5155    # Strip MF so we end up with the name of the file.
5156    mf=`echo "$mf" | sed -e 's/:.*$//'`
5157    # Check whether this is an Automake generated Makefile or not.
5158    # We used to match only the files named 'Makefile.in', but
5159    # some people rename them; so instead we look at the file content.
5160    # Grep'ing the first line is not enough: some people post-process
5161    # each Makefile.in and add a new line on top of each file to say so.
5162    # Grep'ing the whole file is not good either: AIX grep has a line
5163    # limit of 2048, but all sed's we know have understand at least 4000.
5164    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
5165      dirpart=`$as_dirname -- "$mf" ||
5166$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
5167	 X"$mf" : 'X\(//\)[^/]' \| \
5168	 X"$mf" : 'X\(//\)$' \| \
5169	 X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
5170$as_echo X"$mf" |
5171    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
5172	    s//\1/
5173	    q
5174	  }
5175	  /^X\(\/\/\)[^/].*/{
5176	    s//\1/
5177	    q
5178	  }
5179	  /^X\(\/\/\)$/{
5180	    s//\1/
5181	    q
5182	  }
5183	  /^X\(\/\).*/{
5184	    s//\1/
5185	    q
5186	  }
5187	  s/.*/./; q'`
5188    else
5189      continue
5190    fi
5191    # Extract the definition of DEPDIR, am__include, and am__quote
5192    # from the Makefile without running 'make'.
5193    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
5194    test -z "$DEPDIR" && continue
5195    am__include=`sed -n 's/^am__include = //p' < "$mf"`
5196    test -z "am__include" && continue
5197    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
5198    # Find all dependency output files, they are included files with
5199    # $(DEPDIR) in their names.  We invoke sed twice because it is the
5200    # simplest approach to changing $(DEPDIR) to its actual value in the
5201    # expansion.
5202    for file in `sed -n "
5203      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
5204	 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
5205      # Make sure the directory exists.
5206      test -f "$dirpart/$file" && continue
5207      fdir=`$as_dirname -- "$file" ||
5208$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
5209	 X"$file" : 'X\(//\)[^/]' \| \
5210	 X"$file" : 'X\(//\)$' \| \
5211	 X"$file" : 'X\(/\)' \| . 2>/dev/null ||
5212$as_echo X"$file" |
5213    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
5214	    s//\1/
5215	    q
5216	  }
5217	  /^X\(\/\/\)[^/].*/{
5218	    s//\1/
5219	    q
5220	  }
5221	  /^X\(\/\/\)$/{
5222	    s//\1/
5223	    q
5224	  }
5225	  /^X\(\/\).*/{
5226	    s//\1/
5227	    q
5228	  }
5229	  s/.*/./; q'`
5230      as_dir=$dirpart/$fdir; as_fn_mkdir_p
5231      # echo "creating $dirpart/$file"
5232      echo '# dummy' > "$dirpart/$file"
5233    done
5234  done
5235}
5236 ;;
5237
5238  esac
5239done # for ac_tag
5240
5241
5242as_fn_exit 0
5243_ACEOF
5244ac_clean_files=$ac_clean_files_save
5245
5246test $ac_write_fail = 0 ||
5247  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
5248
5249
5250# configure is writing to config.log, and then calls config.status.
5251# config.status does its own redirection, appending to config.log.
5252# Unfortunately, on DOS this fails, as config.log is still kept open
5253# by configure, so config.status won't be able to write to it; its
5254# output is simply discarded.  So we exec the FD to /dev/null,
5255# effectively closing config.log, so it can be properly (re)opened and
5256# appended to by config.status.  When coming back to configure, we
5257# need to make the FD available again.
5258if test "$no_create" != yes; then
5259  ac_cs_success=:
5260  ac_config_status_args=
5261  test "$silent" = yes &&
5262    ac_config_status_args="$ac_config_status_args --quiet"
5263  exec 5>/dev/null
5264  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
5265  exec 5>>config.log
5266  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
5267  # would make configure fail if this is the last instruction.
5268  $ac_cs_success || as_fn_exit 1
5269fi
5270if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
5271  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
5272$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
5273fi
5274
5275