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