1#! /bin/sh
2# Guess values for system-dependent variables and create Makefiles.
3# Generated by GNU Autoconf 2.69 for MIT/GNU Scheme documentation 9.2.
4#
5# Report bugs to <bug-mit-scheme@gnu.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# Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
15#     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
16#     2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Massachusetts
17#     Institute of Technology
18#
19# This file is part of MIT/GNU Scheme.
20#
21# MIT/GNU Scheme is free software; you can redistribute it and/or modify
22# it under the terms of the GNU General Public License as published by
23# the Free Software Foundation; either version 2 of the License, or (at
24# your option) any later version.
25#
26# MIT/GNU Scheme is distributed in the hope that it will be useful, but
27# WITHOUT ANY WARRANTY; without even the implied warranty of
28# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
29# General Public License for more details.
30#
31# You should have received a copy of the GNU General Public License
32# along with MIT/GNU Scheme; if not, write to the Free Software
33# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,
34# USA.
35#
36## -------------------- ##
37## M4sh Initialization. ##
38## -------------------- ##
39
40# Be more Bourne compatible
41DUALCASE=1; export DUALCASE # for MKS sh
42if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
43  emulate sh
44  NULLCMD=:
45  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
46  # is contrary to our usage.  Disable this feature.
47  alias -g '${1+"$@"}'='"$@"'
48  setopt NO_GLOB_SUBST
49else
50  case `(set -o) 2>/dev/null` in #(
51  *posix*) :
52    set -o posix ;; #(
53  *) :
54     ;;
55esac
56fi
57
58
59as_nl='
60'
61export as_nl
62# Printing a long string crashes Solaris 7 /usr/bin/printf.
63as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
64as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
65as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
66# Prefer a ksh shell builtin over an external printf program on Solaris,
67# but without wasting forks for bash or zsh.
68if test -z "$BASH_VERSION$ZSH_VERSION" \
69    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
70  as_echo='print -r --'
71  as_echo_n='print -rn --'
72elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
73  as_echo='printf %s\n'
74  as_echo_n='printf %s'
75else
76  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
77    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
78    as_echo_n='/usr/ucb/echo -n'
79  else
80    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
81    as_echo_n_body='eval
82      arg=$1;
83      case $arg in #(
84      *"$as_nl"*)
85	expr "X$arg" : "X\\(.*\\)$as_nl";
86	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
87      esac;
88      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
89    '
90    export as_echo_n_body
91    as_echo_n='sh -c $as_echo_n_body as_echo'
92  fi
93  export as_echo_body
94  as_echo='sh -c $as_echo_body as_echo'
95fi
96
97# The user is always right.
98if test "${PATH_SEPARATOR+set}" != set; then
99  PATH_SEPARATOR=:
100  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
101    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
102      PATH_SEPARATOR=';'
103  }
104fi
105
106
107# IFS
108# We need space, tab and new line, in precisely that order.  Quoting is
109# there to prevent editors from complaining about space-tab.
110# (If _AS_PATH_WALK were called with IFS unset, it would disable word
111# splitting by setting IFS to empty value.)
112IFS=" ""	$as_nl"
113
114# Find who we are.  Look in the path if we contain no directory separator.
115as_myself=
116case $0 in #((
117  *[\\/]* ) as_myself=$0 ;;
118  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
119for as_dir in $PATH
120do
121  IFS=$as_save_IFS
122  test -z "$as_dir" && as_dir=.
123    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
124  done
125IFS=$as_save_IFS
126
127     ;;
128esac
129# We did not find ourselves, most probably we were run as `sh COMMAND'
130# in which case we are not to be found in the path.
131if test "x$as_myself" = x; then
132  as_myself=$0
133fi
134if test ! -f "$as_myself"; then
135  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
136  exit 1
137fi
138
139# Unset variables that we do not need and which cause bugs (e.g. in
140# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
141# suppresses any "Segmentation fault" message there.  '((' could
142# trigger a bug in pdksh 5.2.14.
143for as_var in BASH_ENV ENV MAIL MAILPATH
144do eval test x\${$as_var+set} = xset \
145  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
146done
147PS1='$ '
148PS2='> '
149PS4='+ '
150
151# NLS nuisances.
152LC_ALL=C
153export LC_ALL
154LANGUAGE=C
155export LANGUAGE
156
157# CDPATH.
158(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
159
160# Use a proper internal environment variable to ensure we don't fall
161  # into an infinite loop, continuously re-executing ourselves.
162  if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
163    _as_can_reexec=no; export _as_can_reexec;
164    # We cannot yet assume a decent shell, so we have to provide a
165# neutralization value for shells without unset; and this also
166# works around shells that cannot unset nonexistent variables.
167# Preserve -v and -x to the replacement shell.
168BASH_ENV=/dev/null
169ENV=/dev/null
170(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
171case $- in # ((((
172  *v*x* | *x*v* ) as_opts=-vx ;;
173  *v* ) as_opts=-v ;;
174  *x* ) as_opts=-x ;;
175  * ) as_opts= ;;
176esac
177exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
178# Admittedly, this is quite paranoid, since all the known shells bail
179# out after a failed `exec'.
180$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
181as_fn_exit 255
182  fi
183  # We don't want this to propagate to other subprocesses.
184          { _as_can_reexec=; unset _as_can_reexec;}
185if test "x$CONFIG_SHELL" = x; then
186  as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
187  emulate sh
188  NULLCMD=:
189  # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
190  # is contrary to our usage.  Disable this feature.
191  alias -g '\${1+\"\$@\"}'='\"\$@\"'
192  setopt NO_GLOB_SUBST
193else
194  case \`(set -o) 2>/dev/null\` in #(
195  *posix*) :
196    set -o posix ;; #(
197  *) :
198     ;;
199esac
200fi
201"
202  as_required="as_fn_return () { (exit \$1); }
203as_fn_success () { as_fn_return 0; }
204as_fn_failure () { as_fn_return 1; }
205as_fn_ret_success () { return 0; }
206as_fn_ret_failure () { return 1; }
207
208exitcode=0
209as_fn_success || { exitcode=1; echo as_fn_success failed.; }
210as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
211as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
212as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
213if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
214
215else
216  exitcode=1; echo positional parameters were not saved.
217fi
218test x\$exitcode = x0 || exit 1
219test -x / || exit 1"
220  as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
221  as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
222  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
223  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
224  if (eval "$as_required") 2>/dev/null; then :
225  as_have_required=yes
226else
227  as_have_required=no
228fi
229  if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
230
231else
232  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
233as_found=false
234for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
235do
236  IFS=$as_save_IFS
237  test -z "$as_dir" && as_dir=.
238  as_found=:
239  case $as_dir in #(
240	 /*)
241	   for as_base in sh bash ksh sh5; do
242	     # Try only shells that exist, to save several forks.
243	     as_shell=$as_dir/$as_base
244	     if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
245		    { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
246  CONFIG_SHELL=$as_shell as_have_required=yes
247		   if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
248  break 2
249fi
250fi
251	   done;;
252       esac
253  as_found=false
254done
255$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
256	      { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
257  CONFIG_SHELL=$SHELL as_have_required=yes
258fi; }
259IFS=$as_save_IFS
260
261
262      if test "x$CONFIG_SHELL" != x; then :
263  export CONFIG_SHELL
264             # We cannot yet assume a decent shell, so we have to provide a
265# neutralization value for shells without unset; and this also
266# works around shells that cannot unset nonexistent variables.
267# Preserve -v and -x to the replacement shell.
268BASH_ENV=/dev/null
269ENV=/dev/null
270(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
271case $- in # ((((
272  *v*x* | *x*v* ) as_opts=-vx ;;
273  *v* ) as_opts=-v ;;
274  *x* ) as_opts=-x ;;
275  * ) as_opts= ;;
276esac
277exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
278# Admittedly, this is quite paranoid, since all the known shells bail
279# out after a failed `exec'.
280$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
281exit 255
282fi
283
284    if test x$as_have_required = xno; then :
285  $as_echo "$0: This script requires a shell more modern than all"
286  $as_echo "$0: the shells that I found on your system."
287  if test x${ZSH_VERSION+set} = xset ; then
288    $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
289    $as_echo "$0: be upgraded to zsh 4.3.4 or later."
290  else
291    $as_echo "$0: Please tell bug-autoconf@gnu.org and
292$0: bug-mit-scheme@gnu.org about your system, including any
293$0: error possibly output before this message. Then install
294$0: a modern shell, or manually run the script under such a
295$0: shell if you do have one."
296  fi
297  exit 1
298fi
299fi
300fi
301SHELL=${CONFIG_SHELL-/bin/sh}
302export SHELL
303# Unset more variables known to interfere with behavior of common tools.
304CLICOLOR_FORCE= GREP_OPTIONS=
305unset CLICOLOR_FORCE GREP_OPTIONS
306
307## --------------------- ##
308## M4sh Shell Functions. ##
309## --------------------- ##
310# as_fn_unset VAR
311# ---------------
312# Portably unset VAR.
313as_fn_unset ()
314{
315  { eval $1=; unset $1;}
316}
317as_unset=as_fn_unset
318
319# as_fn_set_status STATUS
320# -----------------------
321# Set $? to STATUS, without forking.
322as_fn_set_status ()
323{
324  return $1
325} # as_fn_set_status
326
327# as_fn_exit STATUS
328# -----------------
329# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
330as_fn_exit ()
331{
332  set +e
333  as_fn_set_status $1
334  exit $1
335} # as_fn_exit
336
337# as_fn_mkdir_p
338# -------------
339# Create "$as_dir" as a directory, including parents if necessary.
340as_fn_mkdir_p ()
341{
342
343  case $as_dir in #(
344  -*) as_dir=./$as_dir;;
345  esac
346  test -d "$as_dir" || eval $as_mkdir_p || {
347    as_dirs=
348    while :; do
349      case $as_dir in #(
350      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
351      *) as_qdir=$as_dir;;
352      esac
353      as_dirs="'$as_qdir' $as_dirs"
354      as_dir=`$as_dirname -- "$as_dir" ||
355$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
356	 X"$as_dir" : 'X\(//\)[^/]' \| \
357	 X"$as_dir" : 'X\(//\)$' \| \
358	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
359$as_echo X"$as_dir" |
360    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
361	    s//\1/
362	    q
363	  }
364	  /^X\(\/\/\)[^/].*/{
365	    s//\1/
366	    q
367	  }
368	  /^X\(\/\/\)$/{
369	    s//\1/
370	    q
371	  }
372	  /^X\(\/\).*/{
373	    s//\1/
374	    q
375	  }
376	  s/.*/./; q'`
377      test -d "$as_dir" && break
378    done
379    test -z "$as_dirs" || eval "mkdir $as_dirs"
380  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
381
382
383} # as_fn_mkdir_p
384
385# as_fn_executable_p FILE
386# -----------------------
387# Test if FILE is an executable regular file.
388as_fn_executable_p ()
389{
390  test -f "$1" && test -x "$1"
391} # as_fn_executable_p
392# as_fn_append VAR VALUE
393# ----------------------
394# Append the text in VALUE to the end of the definition contained in VAR. Take
395# advantage of any shell optimizations that allow amortized linear growth over
396# repeated appends, instead of the typical quadratic growth present in naive
397# implementations.
398if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
399  eval 'as_fn_append ()
400  {
401    eval $1+=\$2
402  }'
403else
404  as_fn_append ()
405  {
406    eval $1=\$$1\$2
407  }
408fi # as_fn_append
409
410# as_fn_arith ARG...
411# ------------------
412# Perform arithmetic evaluation on the ARGs, and store the result in the
413# global $as_val. Take advantage of shells that can avoid forks. The arguments
414# must be portable across $(()) and expr.
415if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
416  eval 'as_fn_arith ()
417  {
418    as_val=$(( $* ))
419  }'
420else
421  as_fn_arith ()
422  {
423    as_val=`expr "$@" || test $? -eq 1`
424  }
425fi # as_fn_arith
426
427
428# as_fn_error STATUS ERROR [LINENO LOG_FD]
429# ----------------------------------------
430# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
431# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
432# script with STATUS, using 1 if that was 0.
433as_fn_error ()
434{
435  as_status=$1; test $as_status -eq 0 && as_status=1
436  if test "$4"; then
437    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
438    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
439  fi
440  $as_echo "$as_me: error: $2" >&2
441  as_fn_exit $as_status
442} # as_fn_error
443
444if expr a : '\(a\)' >/dev/null 2>&1 &&
445   test "X`expr 00001 : '.*\(...\)'`" = X001; then
446  as_expr=expr
447else
448  as_expr=false
449fi
450
451if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
452  as_basename=basename
453else
454  as_basename=false
455fi
456
457if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
458  as_dirname=dirname
459else
460  as_dirname=false
461fi
462
463as_me=`$as_basename -- "$0" ||
464$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
465	 X"$0" : 'X\(//\)$' \| \
466	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
467$as_echo X/"$0" |
468    sed '/^.*\/\([^/][^/]*\)\/*$/{
469	    s//\1/
470	    q
471	  }
472	  /^X\/\(\/\/\)$/{
473	    s//\1/
474	    q
475	  }
476	  /^X\/\(\/\).*/{
477	    s//\1/
478	    q
479	  }
480	  s/.*/./; q'`
481
482# Avoid depending upon Character Ranges.
483as_cr_letters='abcdefghijklmnopqrstuvwxyz'
484as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
485as_cr_Letters=$as_cr_letters$as_cr_LETTERS
486as_cr_digits='0123456789'
487as_cr_alnum=$as_cr_Letters$as_cr_digits
488
489
490  as_lineno_1=$LINENO as_lineno_1a=$LINENO
491  as_lineno_2=$LINENO as_lineno_2a=$LINENO
492  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
493  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
494  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
495  sed -n '
496    p
497    /[$]LINENO/=
498  ' <$as_myself |
499    sed '
500      s/[$]LINENO.*/&-/
501      t lineno
502      b
503      :lineno
504      N
505      :loop
506      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
507      t loop
508      s/-\n.*//
509    ' >$as_me.lineno &&
510  chmod +x "$as_me.lineno" ||
511    { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
512
513  # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
514  # already done that, so ensure we don't try to do so again and fall
515  # in an infinite loop.  This has already happened in practice.
516  _as_can_reexec=no; export _as_can_reexec
517  # Don't try to exec as it changes $[0], causing all sort of problems
518  # (the dirname of $[0] is not the place where we might find the
519  # original and so on.  Autoconf is especially sensitive to this).
520  . "./$as_me.lineno"
521  # Exit status is that of the last command.
522  exit
523}
524
525ECHO_C= ECHO_N= ECHO_T=
526case `echo -n x` in #(((((
527-n*)
528  case `echo 'xy\c'` in
529  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
530  xy)  ECHO_C='\c';;
531  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
532       ECHO_T='	';;
533  esac;;
534*)
535  ECHO_N='-n';;
536esac
537
538rm -f conf$$ conf$$.exe conf$$.file
539if test -d conf$$.dir; then
540  rm -f conf$$.dir/conf$$.file
541else
542  rm -f conf$$.dir
543  mkdir conf$$.dir 2>/dev/null
544fi
545if (echo >conf$$.file) 2>/dev/null; then
546  if ln -s conf$$.file conf$$ 2>/dev/null; then
547    as_ln_s='ln -s'
548    # ... but there are two gotchas:
549    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
550    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
551    # In both cases, we have to default to `cp -pR'.
552    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
553      as_ln_s='cp -pR'
554  elif ln conf$$.file conf$$ 2>/dev/null; then
555    as_ln_s=ln
556  else
557    as_ln_s='cp -pR'
558  fi
559else
560  as_ln_s='cp -pR'
561fi
562rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
563rmdir conf$$.dir 2>/dev/null
564
565if mkdir -p . 2>/dev/null; then
566  as_mkdir_p='mkdir -p "$as_dir"'
567else
568  test -d ./-p && rmdir ./-p
569  as_mkdir_p=false
570fi
571
572as_test_x='test -x'
573as_executable_p=as_fn_executable_p
574
575# Sed expression to map a string onto a valid CPP name.
576as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
577
578# Sed expression to map a string onto a valid variable name.
579as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
580
581
582test -n "$DJDIR" || exec 7<&0 </dev/null
583exec 6>&1
584
585# Name of the host.
586# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
587# so uname gets run too.
588ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
589
590#
591# Initializations.
592#
593ac_default_prefix=/usr/local
594ac_clean_files=
595ac_config_libobj_dir=.
596LIBOBJS=
597cross_compiling=no
598subdirs=
599MFLAGS=
600MAKEFLAGS=
601
602# Identity of this package.
603PACKAGE_NAME='MIT/GNU Scheme documentation'
604PACKAGE_TARNAME='mit-scheme-doc'
605PACKAGE_VERSION='9.2'
606PACKAGE_STRING='MIT/GNU Scheme documentation 9.2'
607PACKAGE_BUGREPORT='bug-mit-scheme@gnu.org'
608PACKAGE_URL=''
609
610ac_unique_file="ref-manual/scheme.texinfo"
611ac_subst_vars='LTLIBOBJS
612LIBOBJS
613INST_TARGETS
614SET_MAKE
615LN_S
616INSTALL_DATA
617INSTALL_SCRIPT
618INSTALL_PROGRAM
619target_alias
620host_alias
621build_alias
622LIBS
623ECHO_T
624ECHO_N
625ECHO_C
626DEFS
627mandir
628localedir
629libdir
630psdir
631pdfdir
632dvidir
633htmldir
634infodir
635docdir
636oldincludedir
637includedir
638localstatedir
639sharedstatedir
640sysconfdir
641datadir
642datarootdir
643libexecdir
644sbindir
645bindir
646program_transform_name
647prefix
648exec_prefix
649PACKAGE_URL
650PACKAGE_BUGREPORT
651PACKAGE_STRING
652PACKAGE_VERSION
653PACKAGE_TARNAME
654PACKAGE_NAME
655PATH_SEPARATOR
656SHELL'
657ac_subst_files=''
658ac_user_opts='
659enable_option_checking
660enable_html
661enable_pdf
662enable_ps
663'
664      ac_precious_vars='build_alias
665host_alias
666target_alias'
667
668
669# Initialize some variables set by options.
670ac_init_help=
671ac_init_version=false
672ac_unrecognized_opts=
673ac_unrecognized_sep=
674# The variables have the same names as the options, with
675# dashes changed to underlines.
676cache_file=/dev/null
677exec_prefix=NONE
678no_create=
679no_recursion=
680prefix=NONE
681program_prefix=NONE
682program_suffix=NONE
683program_transform_name=s,x,x,
684silent=
685site=
686srcdir=
687verbose=
688x_includes=NONE
689x_libraries=NONE
690
691# Installation directory options.
692# These are left unexpanded so users can "make install exec_prefix=/foo"
693# and all the variables that are supposed to be based on exec_prefix
694# by default will actually change.
695# Use braces instead of parens because sh, perl, etc. also accept them.
696# (The list follows the same order as the GNU Coding Standards.)
697bindir='${exec_prefix}/bin'
698sbindir='${exec_prefix}/sbin'
699libexecdir='${exec_prefix}/libexec'
700datarootdir='${prefix}/share'
701datadir='${datarootdir}'
702sysconfdir='${prefix}/etc'
703sharedstatedir='${prefix}/com'
704localstatedir='${prefix}/var'
705includedir='${prefix}/include'
706oldincludedir='/usr/include'
707docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
708infodir='${datarootdir}/info'
709htmldir='${docdir}'
710dvidir='${docdir}'
711pdfdir='${docdir}'
712psdir='${docdir}'
713libdir='${exec_prefix}/lib'
714localedir='${datarootdir}/locale'
715mandir='${datarootdir}/man'
716
717ac_prev=
718ac_dashdash=
719for ac_option
720do
721  # If the previous option needs an argument, assign it.
722  if test -n "$ac_prev"; then
723    eval $ac_prev=\$ac_option
724    ac_prev=
725    continue
726  fi
727
728  case $ac_option in
729  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
730  *=)   ac_optarg= ;;
731  *)    ac_optarg=yes ;;
732  esac
733
734  # Accept the important Cygnus configure options, so we can diagnose typos.
735
736  case $ac_dashdash$ac_option in
737  --)
738    ac_dashdash=yes ;;
739
740  -bindir | --bindir | --bindi | --bind | --bin | --bi)
741    ac_prev=bindir ;;
742  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
743    bindir=$ac_optarg ;;
744
745  -build | --build | --buil | --bui | --bu)
746    ac_prev=build_alias ;;
747  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
748    build_alias=$ac_optarg ;;
749
750  -cache-file | --cache-file | --cache-fil | --cache-fi \
751  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
752    ac_prev=cache_file ;;
753  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
754  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
755    cache_file=$ac_optarg ;;
756
757  --config-cache | -C)
758    cache_file=config.cache ;;
759
760  -datadir | --datadir | --datadi | --datad)
761    ac_prev=datadir ;;
762  -datadir=* | --datadir=* | --datadi=* | --datad=*)
763    datadir=$ac_optarg ;;
764
765  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
766  | --dataroo | --dataro | --datar)
767    ac_prev=datarootdir ;;
768  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
769  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
770    datarootdir=$ac_optarg ;;
771
772  -disable-* | --disable-*)
773    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
774    # Reject names that are not valid shell variable names.
775    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
776      as_fn_error $? "invalid feature name: $ac_useropt"
777    ac_useropt_orig=$ac_useropt
778    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
779    case $ac_user_opts in
780      *"
781"enable_$ac_useropt"
782"*) ;;
783      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
784	 ac_unrecognized_sep=', ';;
785    esac
786    eval enable_$ac_useropt=no ;;
787
788  -docdir | --docdir | --docdi | --doc | --do)
789    ac_prev=docdir ;;
790  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
791    docdir=$ac_optarg ;;
792
793  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
794    ac_prev=dvidir ;;
795  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
796    dvidir=$ac_optarg ;;
797
798  -enable-* | --enable-*)
799    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
800    # Reject names that are not valid shell variable names.
801    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
802      as_fn_error $? "invalid feature name: $ac_useropt"
803    ac_useropt_orig=$ac_useropt
804    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
805    case $ac_user_opts in
806      *"
807"enable_$ac_useropt"
808"*) ;;
809      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
810	 ac_unrecognized_sep=', ';;
811    esac
812    eval enable_$ac_useropt=\$ac_optarg ;;
813
814  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
815  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
816  | --exec | --exe | --ex)
817    ac_prev=exec_prefix ;;
818  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
819  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
820  | --exec=* | --exe=* | --ex=*)
821    exec_prefix=$ac_optarg ;;
822
823  -gas | --gas | --ga | --g)
824    # Obsolete; use --with-gas.
825    with_gas=yes ;;
826
827  -help | --help | --hel | --he | -h)
828    ac_init_help=long ;;
829  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
830    ac_init_help=recursive ;;
831  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
832    ac_init_help=short ;;
833
834  -host | --host | --hos | --ho)
835    ac_prev=host_alias ;;
836  -host=* | --host=* | --hos=* | --ho=*)
837    host_alias=$ac_optarg ;;
838
839  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
840    ac_prev=htmldir ;;
841  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
842  | --ht=*)
843    htmldir=$ac_optarg ;;
844
845  -includedir | --includedir | --includedi | --included | --include \
846  | --includ | --inclu | --incl | --inc)
847    ac_prev=includedir ;;
848  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
849  | --includ=* | --inclu=* | --incl=* | --inc=*)
850    includedir=$ac_optarg ;;
851
852  -infodir | --infodir | --infodi | --infod | --info | --inf)
853    ac_prev=infodir ;;
854  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
855    infodir=$ac_optarg ;;
856
857  -libdir | --libdir | --libdi | --libd)
858    ac_prev=libdir ;;
859  -libdir=* | --libdir=* | --libdi=* | --libd=*)
860    libdir=$ac_optarg ;;
861
862  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
863  | --libexe | --libex | --libe)
864    ac_prev=libexecdir ;;
865  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
866  | --libexe=* | --libex=* | --libe=*)
867    libexecdir=$ac_optarg ;;
868
869  -localedir | --localedir | --localedi | --localed | --locale)
870    ac_prev=localedir ;;
871  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
872    localedir=$ac_optarg ;;
873
874  -localstatedir | --localstatedir | --localstatedi | --localstated \
875  | --localstate | --localstat | --localsta | --localst | --locals)
876    ac_prev=localstatedir ;;
877  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
878  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
879    localstatedir=$ac_optarg ;;
880
881  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
882    ac_prev=mandir ;;
883  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
884    mandir=$ac_optarg ;;
885
886  -nfp | --nfp | --nf)
887    # Obsolete; use --without-fp.
888    with_fp=no ;;
889
890  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
891  | --no-cr | --no-c | -n)
892    no_create=yes ;;
893
894  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
895  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
896    no_recursion=yes ;;
897
898  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
899  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
900  | --oldin | --oldi | --old | --ol | --o)
901    ac_prev=oldincludedir ;;
902  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
903  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
904  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
905    oldincludedir=$ac_optarg ;;
906
907  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
908    ac_prev=prefix ;;
909  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
910    prefix=$ac_optarg ;;
911
912  -program-prefix | --program-prefix | --program-prefi | --program-pref \
913  | --program-pre | --program-pr | --program-p)
914    ac_prev=program_prefix ;;
915  -program-prefix=* | --program-prefix=* | --program-prefi=* \
916  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
917    program_prefix=$ac_optarg ;;
918
919  -program-suffix | --program-suffix | --program-suffi | --program-suff \
920  | --program-suf | --program-su | --program-s)
921    ac_prev=program_suffix ;;
922  -program-suffix=* | --program-suffix=* | --program-suffi=* \
923  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
924    program_suffix=$ac_optarg ;;
925
926  -program-transform-name | --program-transform-name \
927  | --program-transform-nam | --program-transform-na \
928  | --program-transform-n | --program-transform- \
929  | --program-transform | --program-transfor \
930  | --program-transfo | --program-transf \
931  | --program-trans | --program-tran \
932  | --progr-tra | --program-tr | --program-t)
933    ac_prev=program_transform_name ;;
934  -program-transform-name=* | --program-transform-name=* \
935  | --program-transform-nam=* | --program-transform-na=* \
936  | --program-transform-n=* | --program-transform-=* \
937  | --program-transform=* | --program-transfor=* \
938  | --program-transfo=* | --program-transf=* \
939  | --program-trans=* | --program-tran=* \
940  | --progr-tra=* | --program-tr=* | --program-t=*)
941    program_transform_name=$ac_optarg ;;
942
943  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
944    ac_prev=pdfdir ;;
945  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
946    pdfdir=$ac_optarg ;;
947
948  -psdir | --psdir | --psdi | --psd | --ps)
949    ac_prev=psdir ;;
950  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
951    psdir=$ac_optarg ;;
952
953  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
954  | -silent | --silent | --silen | --sile | --sil)
955    silent=yes ;;
956
957  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
958    ac_prev=sbindir ;;
959  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
960  | --sbi=* | --sb=*)
961    sbindir=$ac_optarg ;;
962
963  -sharedstatedir | --sharedstatedir | --sharedstatedi \
964  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
965  | --sharedst | --shareds | --shared | --share | --shar \
966  | --sha | --sh)
967    ac_prev=sharedstatedir ;;
968  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
969  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
970  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
971  | --sha=* | --sh=*)
972    sharedstatedir=$ac_optarg ;;
973
974  -site | --site | --sit)
975    ac_prev=site ;;
976  -site=* | --site=* | --sit=*)
977    site=$ac_optarg ;;
978
979  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
980    ac_prev=srcdir ;;
981  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
982    srcdir=$ac_optarg ;;
983
984  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
985  | --syscon | --sysco | --sysc | --sys | --sy)
986    ac_prev=sysconfdir ;;
987  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
988  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
989    sysconfdir=$ac_optarg ;;
990
991  -target | --target | --targe | --targ | --tar | --ta | --t)
992    ac_prev=target_alias ;;
993  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
994    target_alias=$ac_optarg ;;
995
996  -v | -verbose | --verbose | --verbos | --verbo | --verb)
997    verbose=yes ;;
998
999  -version | --version | --versio | --versi | --vers | -V)
1000    ac_init_version=: ;;
1001
1002  -with-* | --with-*)
1003    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1004    # Reject names that are not valid shell variable names.
1005    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1006      as_fn_error $? "invalid package name: $ac_useropt"
1007    ac_useropt_orig=$ac_useropt
1008    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1009    case $ac_user_opts in
1010      *"
1011"with_$ac_useropt"
1012"*) ;;
1013      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
1014	 ac_unrecognized_sep=', ';;
1015    esac
1016    eval with_$ac_useropt=\$ac_optarg ;;
1017
1018  -without-* | --without-*)
1019    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1020    # Reject names that are not valid shell variable names.
1021    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1022      as_fn_error $? "invalid package name: $ac_useropt"
1023    ac_useropt_orig=$ac_useropt
1024    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1025    case $ac_user_opts in
1026      *"
1027"with_$ac_useropt"
1028"*) ;;
1029      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
1030	 ac_unrecognized_sep=', ';;
1031    esac
1032    eval with_$ac_useropt=no ;;
1033
1034  --x)
1035    # Obsolete; use --with-x.
1036    with_x=yes ;;
1037
1038  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
1039  | --x-incl | --x-inc | --x-in | --x-i)
1040    ac_prev=x_includes ;;
1041  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
1042  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
1043    x_includes=$ac_optarg ;;
1044
1045  -x-libraries | --x-libraries | --x-librarie | --x-librari \
1046  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
1047    ac_prev=x_libraries ;;
1048  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
1049  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
1050    x_libraries=$ac_optarg ;;
1051
1052  -*) as_fn_error $? "unrecognized option: \`$ac_option'
1053Try \`$0 --help' for more information"
1054    ;;
1055
1056  *=*)
1057    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
1058    # Reject names that are not valid shell variable names.
1059    case $ac_envvar in #(
1060      '' | [0-9]* | *[!_$as_cr_alnum]* )
1061      as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
1062    esac
1063    eval $ac_envvar=\$ac_optarg
1064    export $ac_envvar ;;
1065
1066  *)
1067    # FIXME: should be removed in autoconf 3.0.
1068    $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1069    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1070      $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
1071    : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
1072    ;;
1073
1074  esac
1075done
1076
1077if test -n "$ac_prev"; then
1078  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
1079  as_fn_error $? "missing argument to $ac_option"
1080fi
1081
1082if test -n "$ac_unrecognized_opts"; then
1083  case $enable_option_checking in
1084    no) ;;
1085    fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
1086    *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
1087  esac
1088fi
1089
1090# Check all directory arguments for consistency.
1091for ac_var in	exec_prefix prefix bindir sbindir libexecdir datarootdir \
1092		datadir sysconfdir sharedstatedir localstatedir includedir \
1093		oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
1094		libdir localedir mandir
1095do
1096  eval ac_val=\$$ac_var
1097  # Remove trailing slashes.
1098  case $ac_val in
1099    */ )
1100      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
1101      eval $ac_var=\$ac_val;;
1102  esac
1103  # Be sure to have absolute directory names.
1104  case $ac_val in
1105    [\\/$]* | ?:[\\/]* )  continue;;
1106    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
1107  esac
1108  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
1109done
1110
1111# There might be people who depend on the old broken behavior: `$host'
1112# used to hold the argument of --host etc.
1113# FIXME: To remove some day.
1114build=$build_alias
1115host=$host_alias
1116target=$target_alias
1117
1118# FIXME: To remove some day.
1119if test "x$host_alias" != x; then
1120  if test "x$build_alias" = x; then
1121    cross_compiling=maybe
1122  elif test "x$build_alias" != "x$host_alias"; then
1123    cross_compiling=yes
1124  fi
1125fi
1126
1127ac_tool_prefix=
1128test -n "$host_alias" && ac_tool_prefix=$host_alias-
1129
1130test "$silent" = yes && exec 6>/dev/null
1131
1132
1133ac_pwd=`pwd` && test -n "$ac_pwd" &&
1134ac_ls_di=`ls -di .` &&
1135ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
1136  as_fn_error $? "working directory cannot be determined"
1137test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
1138  as_fn_error $? "pwd does not report name of working directory"
1139
1140
1141# Find the source files, if location was not specified.
1142if test -z "$srcdir"; then
1143  ac_srcdir_defaulted=yes
1144  # Try the directory containing this script, then the parent directory.
1145  ac_confdir=`$as_dirname -- "$as_myself" ||
1146$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1147	 X"$as_myself" : 'X\(//\)[^/]' \| \
1148	 X"$as_myself" : 'X\(//\)$' \| \
1149	 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
1150$as_echo X"$as_myself" |
1151    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1152	    s//\1/
1153	    q
1154	  }
1155	  /^X\(\/\/\)[^/].*/{
1156	    s//\1/
1157	    q
1158	  }
1159	  /^X\(\/\/\)$/{
1160	    s//\1/
1161	    q
1162	  }
1163	  /^X\(\/\).*/{
1164	    s//\1/
1165	    q
1166	  }
1167	  s/.*/./; q'`
1168  srcdir=$ac_confdir
1169  if test ! -r "$srcdir/$ac_unique_file"; then
1170    srcdir=..
1171  fi
1172else
1173  ac_srcdir_defaulted=no
1174fi
1175if test ! -r "$srcdir/$ac_unique_file"; then
1176  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
1177  as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
1178fi
1179ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
1180ac_abs_confdir=`(
1181	cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
1182	pwd)`
1183# When building in place, set srcdir=.
1184if test "$ac_abs_confdir" = "$ac_pwd"; then
1185  srcdir=.
1186fi
1187# Remove unnecessary trailing slashes from srcdir.
1188# Double slashes in file names in object file debugging info
1189# mess up M-x gdb in Emacs.
1190case $srcdir in
1191*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
1192esac
1193for ac_var in $ac_precious_vars; do
1194  eval ac_env_${ac_var}_set=\${${ac_var}+set}
1195  eval ac_env_${ac_var}_value=\$${ac_var}
1196  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
1197  eval ac_cv_env_${ac_var}_value=\$${ac_var}
1198done
1199
1200#
1201# Report the --help message.
1202#
1203if test "$ac_init_help" = "long"; then
1204  # Omit some internal or obsolete options to make the list less imposing.
1205  # This message is too long to be a string in the A/UX 3.1 sh.
1206  cat <<_ACEOF
1207\`configure' configures MIT/GNU Scheme documentation 9.2 to adapt to many kinds of systems.
1208
1209Usage: $0 [OPTION]... [VAR=VALUE]...
1210
1211To assign environment variables (e.g., CC, CFLAGS...), specify them as
1212VAR=VALUE.  See below for descriptions of some of the useful variables.
1213
1214Defaults for the options are specified in brackets.
1215
1216Configuration:
1217  -h, --help              display this help and exit
1218      --help=short        display options specific to this package
1219      --help=recursive    display the short help of all the included packages
1220  -V, --version           display version information and exit
1221  -q, --quiet, --silent   do not print \`checking ...' messages
1222      --cache-file=FILE   cache test results in FILE [disabled]
1223  -C, --config-cache      alias for \`--cache-file=config.cache'
1224  -n, --no-create         do not create output files
1225      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
1226
1227Installation directories:
1228  --prefix=PREFIX         install architecture-independent files in PREFIX
1229                          [$ac_default_prefix]
1230  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
1231                          [PREFIX]
1232
1233By default, \`make install' will install all the files in
1234\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
1235an installation prefix other than \`$ac_default_prefix' using \`--prefix',
1236for instance \`--prefix=\$HOME'.
1237
1238For better control, use the options below.
1239
1240Fine tuning of the installation directories:
1241  --bindir=DIR            user executables [EPREFIX/bin]
1242  --sbindir=DIR           system admin executables [EPREFIX/sbin]
1243  --libexecdir=DIR        program executables [EPREFIX/libexec]
1244  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
1245  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
1246  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
1247  --libdir=DIR            object code libraries [EPREFIX/lib]
1248  --includedir=DIR        C header files [PREFIX/include]
1249  --oldincludedir=DIR     C header files for non-gcc [/usr/include]
1250  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
1251  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
1252  --infodir=DIR           info documentation [DATAROOTDIR/info]
1253  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
1254  --mandir=DIR            man documentation [DATAROOTDIR/man]
1255  --docdir=DIR            documentation root [DATAROOTDIR/doc/mit-scheme-doc]
1256  --htmldir=DIR           html documentation [DOCDIR]
1257  --dvidir=DIR            dvi documentation [DOCDIR]
1258  --pdfdir=DIR            pdf documentation [DOCDIR]
1259  --psdir=DIR             ps documentation [DOCDIR]
1260_ACEOF
1261
1262  cat <<\_ACEOF
1263_ACEOF
1264fi
1265
1266if test -n "$ac_init_help"; then
1267  case $ac_init_help in
1268     short | recursive ) echo "Configuration of MIT/GNU Scheme documentation 9.2:";;
1269   esac
1270  cat <<\_ACEOF
1271
1272Optional Features:
1273  --disable-option-checking  ignore unrecognized --enable/--with options
1274  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
1275  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
1276  --enable-html           generate HTML documentation
1277  --enable-pdf            generate PDF documentation
1278  --enable-ps             generate Postscript documentation
1279
1280Report bugs to <bug-mit-scheme@gnu.org>.
1281_ACEOF
1282ac_status=$?
1283fi
1284
1285if test "$ac_init_help" = "recursive"; then
1286  # If there are subdirs, report their specific --help.
1287  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
1288    test -d "$ac_dir" ||
1289      { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
1290      continue
1291    ac_builddir=.
1292
1293case "$ac_dir" in
1294.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1295*)
1296  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1297  # A ".." for each directory in $ac_dir_suffix.
1298  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1299  case $ac_top_builddir_sub in
1300  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1301  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1302  esac ;;
1303esac
1304ac_abs_top_builddir=$ac_pwd
1305ac_abs_builddir=$ac_pwd$ac_dir_suffix
1306# for backward compatibility:
1307ac_top_builddir=$ac_top_build_prefix
1308
1309case $srcdir in
1310  .)  # We are building in place.
1311    ac_srcdir=.
1312    ac_top_srcdir=$ac_top_builddir_sub
1313    ac_abs_top_srcdir=$ac_pwd ;;
1314  [\\/]* | ?:[\\/]* )  # Absolute name.
1315    ac_srcdir=$srcdir$ac_dir_suffix;
1316    ac_top_srcdir=$srcdir
1317    ac_abs_top_srcdir=$srcdir ;;
1318  *) # Relative name.
1319    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1320    ac_top_srcdir=$ac_top_build_prefix$srcdir
1321    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1322esac
1323ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1324
1325    cd "$ac_dir" || { ac_status=$?; continue; }
1326    # Check for guested configure.
1327    if test -f "$ac_srcdir/configure.gnu"; then
1328      echo &&
1329      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
1330    elif test -f "$ac_srcdir/configure"; then
1331      echo &&
1332      $SHELL "$ac_srcdir/configure" --help=recursive
1333    else
1334      $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
1335    fi || ac_status=$?
1336    cd "$ac_pwd" || { ac_status=$?; break; }
1337  done
1338fi
1339
1340test -n "$ac_init_help" && exit $ac_status
1341if $ac_init_version; then
1342  cat <<\_ACEOF
1343MIT/GNU Scheme documentation configure 9.2
1344generated by GNU Autoconf 2.69
1345
1346Copyright (C) 2012 Free Software Foundation, Inc.
1347This configure script is free software; the Free Software Foundation
1348gives unlimited permission to copy, distribute and modify it.
1349
1350Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
1351    1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
1352    2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Massachusetts
1353    Institute of Technology
1354
1355This file is part of MIT/GNU Scheme.
1356
1357MIT/GNU Scheme is free software; you can redistribute it and/or modify
1358it under the terms of the GNU General Public License as published by
1359the Free Software Foundation; either version 2 of the License, or (at
1360your option) any later version.
1361
1362MIT/GNU Scheme is distributed in the hope that it will be useful, but
1363WITHOUT ANY WARRANTY; without even the implied warranty of
1364MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1365General Public License for more details.
1366
1367You should have received a copy of the GNU General Public License
1368along with MIT/GNU Scheme; if not, write to the Free Software
1369Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,
1370USA.
1371
1372_ACEOF
1373  exit
1374fi
1375
1376## ------------------------ ##
1377## Autoconf initialization. ##
1378## ------------------------ ##
1379cat >config.log <<_ACEOF
1380This file contains any messages produced by compilers while
1381running configure, to aid debugging if configure makes a mistake.
1382
1383It was created by MIT/GNU Scheme documentation $as_me 9.2, which was
1384generated by GNU Autoconf 2.69.  Invocation command line was
1385
1386  $ $0 $@
1387
1388_ACEOF
1389exec 5>>config.log
1390{
1391cat <<_ASUNAME
1392## --------- ##
1393## Platform. ##
1394## --------- ##
1395
1396hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
1397uname -m = `(uname -m) 2>/dev/null || echo unknown`
1398uname -r = `(uname -r) 2>/dev/null || echo unknown`
1399uname -s = `(uname -s) 2>/dev/null || echo unknown`
1400uname -v = `(uname -v) 2>/dev/null || echo unknown`
1401
1402/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
1403/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
1404
1405/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
1406/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
1407/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
1408/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
1409/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
1410/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
1411/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
1412
1413_ASUNAME
1414
1415as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1416for as_dir in $PATH
1417do
1418  IFS=$as_save_IFS
1419  test -z "$as_dir" && as_dir=.
1420    $as_echo "PATH: $as_dir"
1421  done
1422IFS=$as_save_IFS
1423
1424} >&5
1425
1426cat >&5 <<_ACEOF
1427
1428
1429## ----------- ##
1430## Core tests. ##
1431## ----------- ##
1432
1433_ACEOF
1434
1435
1436# Keep a trace of the command line.
1437# Strip out --no-create and --no-recursion so they do not pile up.
1438# Strip out --silent because we don't want to record it for future runs.
1439# Also quote any args containing shell meta-characters.
1440# Make two passes to allow for proper duplicate-argument suppression.
1441ac_configure_args=
1442ac_configure_args0=
1443ac_configure_args1=
1444ac_must_keep_next=false
1445for ac_pass in 1 2
1446do
1447  for ac_arg
1448  do
1449    case $ac_arg in
1450    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
1451    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1452    | -silent | --silent | --silen | --sile | --sil)
1453      continue ;;
1454    *\'*)
1455      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1456    esac
1457    case $ac_pass in
1458    1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
1459    2)
1460      as_fn_append ac_configure_args1 " '$ac_arg'"
1461      if test $ac_must_keep_next = true; then
1462	ac_must_keep_next=false # Got value, back to normal.
1463      else
1464	case $ac_arg in
1465	  *=* | --config-cache | -C | -disable-* | --disable-* \
1466	  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
1467	  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
1468	  | -with-* | --with-* | -without-* | --without-* | --x)
1469	    case "$ac_configure_args0 " in
1470	      "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
1471	    esac
1472	    ;;
1473	  -* ) ac_must_keep_next=true ;;
1474	esac
1475      fi
1476      as_fn_append ac_configure_args " '$ac_arg'"
1477      ;;
1478    esac
1479  done
1480done
1481{ ac_configure_args0=; unset ac_configure_args0;}
1482{ ac_configure_args1=; unset ac_configure_args1;}
1483
1484# When interrupted or exit'd, cleanup temporary files, and complete
1485# config.log.  We remove comments because anyway the quotes in there
1486# would cause problems or look ugly.
1487# WARNING: Use '\'' to represent an apostrophe within the trap.
1488# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
1489trap 'exit_status=$?
1490  # Save into config.log some information that might help in debugging.
1491  {
1492    echo
1493
1494    $as_echo "## ---------------- ##
1495## Cache variables. ##
1496## ---------------- ##"
1497    echo
1498    # The following way of writing the cache mishandles newlines in values,
1499(
1500  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
1501    eval ac_val=\$$ac_var
1502    case $ac_val in #(
1503    *${as_nl}*)
1504      case $ac_var in #(
1505      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
1506$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
1507      esac
1508      case $ac_var in #(
1509      _ | IFS | as_nl) ;; #(
1510      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
1511      *) { eval $ac_var=; unset $ac_var;} ;;
1512      esac ;;
1513    esac
1514  done
1515  (set) 2>&1 |
1516    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
1517    *${as_nl}ac_space=\ *)
1518      sed -n \
1519	"s/'\''/'\''\\\\'\'''\''/g;
1520	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
1521      ;; #(
1522    *)
1523      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
1524      ;;
1525    esac |
1526    sort
1527)
1528    echo
1529
1530    $as_echo "## ----------------- ##
1531## Output variables. ##
1532## ----------------- ##"
1533    echo
1534    for ac_var in $ac_subst_vars
1535    do
1536      eval ac_val=\$$ac_var
1537      case $ac_val in
1538      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1539      esac
1540      $as_echo "$ac_var='\''$ac_val'\''"
1541    done | sort
1542    echo
1543
1544    if test -n "$ac_subst_files"; then
1545      $as_echo "## ------------------- ##
1546## File substitutions. ##
1547## ------------------- ##"
1548      echo
1549      for ac_var in $ac_subst_files
1550      do
1551	eval ac_val=\$$ac_var
1552	case $ac_val in
1553	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1554	esac
1555	$as_echo "$ac_var='\''$ac_val'\''"
1556      done | sort
1557      echo
1558    fi
1559
1560    if test -s confdefs.h; then
1561      $as_echo "## ----------- ##
1562## confdefs.h. ##
1563## ----------- ##"
1564      echo
1565      cat confdefs.h
1566      echo
1567    fi
1568    test "$ac_signal" != 0 &&
1569      $as_echo "$as_me: caught signal $ac_signal"
1570    $as_echo "$as_me: exit $exit_status"
1571  } >&5
1572  rm -f core *.core core.conftest.* &&
1573    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
1574    exit $exit_status
1575' 0
1576for ac_signal in 1 2 13 15; do
1577  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
1578done
1579ac_signal=0
1580
1581# confdefs.h avoids OS command line length limits that DEFS can exceed.
1582rm -f -r conftest* confdefs.h
1583
1584$as_echo "/* confdefs.h */" > confdefs.h
1585
1586# Predefined preprocessor variables.
1587
1588cat >>confdefs.h <<_ACEOF
1589#define PACKAGE_NAME "$PACKAGE_NAME"
1590_ACEOF
1591
1592cat >>confdefs.h <<_ACEOF
1593#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
1594_ACEOF
1595
1596cat >>confdefs.h <<_ACEOF
1597#define PACKAGE_VERSION "$PACKAGE_VERSION"
1598_ACEOF
1599
1600cat >>confdefs.h <<_ACEOF
1601#define PACKAGE_STRING "$PACKAGE_STRING"
1602_ACEOF
1603
1604cat >>confdefs.h <<_ACEOF
1605#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
1606_ACEOF
1607
1608cat >>confdefs.h <<_ACEOF
1609#define PACKAGE_URL "$PACKAGE_URL"
1610_ACEOF
1611
1612
1613# Let the site file select an alternate cache file if it wants to.
1614# Prefer an explicitly selected file to automatically selected ones.
1615ac_site_file1=NONE
1616ac_site_file2=NONE
1617if test -n "$CONFIG_SITE"; then
1618  # We do not want a PATH search for config.site.
1619  case $CONFIG_SITE in #((
1620    -*)  ac_site_file1=./$CONFIG_SITE;;
1621    */*) ac_site_file1=$CONFIG_SITE;;
1622    *)   ac_site_file1=./$CONFIG_SITE;;
1623  esac
1624elif test "x$prefix" != xNONE; then
1625  ac_site_file1=$prefix/share/config.site
1626  ac_site_file2=$prefix/etc/config.site
1627else
1628  ac_site_file1=$ac_default_prefix/share/config.site
1629  ac_site_file2=$ac_default_prefix/etc/config.site
1630fi
1631for ac_site_file in "$ac_site_file1" "$ac_site_file2"
1632do
1633  test "x$ac_site_file" = xNONE && continue
1634  if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
1635    { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
1636$as_echo "$as_me: loading site script $ac_site_file" >&6;}
1637    sed 's/^/| /' "$ac_site_file" >&5
1638    . "$ac_site_file" \
1639      || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1640$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1641as_fn_error $? "failed to load site script $ac_site_file
1642See \`config.log' for more details" "$LINENO" 5; }
1643  fi
1644done
1645
1646if test -r "$cache_file"; then
1647  # Some versions of bash will fail to source /dev/null (special files
1648  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.
1649  if test /dev/null != "$cache_file" && test -f "$cache_file"; then
1650    { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
1651$as_echo "$as_me: loading cache $cache_file" >&6;}
1652    case $cache_file in
1653      [\\/]* | ?:[\\/]* ) . "$cache_file";;
1654      *)                      . "./$cache_file";;
1655    esac
1656  fi
1657else
1658  { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
1659$as_echo "$as_me: creating cache $cache_file" >&6;}
1660  >$cache_file
1661fi
1662
1663# Check that the precious variables saved in the cache have kept the same
1664# value.
1665ac_cache_corrupted=false
1666for ac_var in $ac_precious_vars; do
1667  eval ac_old_set=\$ac_cv_env_${ac_var}_set
1668  eval ac_new_set=\$ac_env_${ac_var}_set
1669  eval ac_old_val=\$ac_cv_env_${ac_var}_value
1670  eval ac_new_val=\$ac_env_${ac_var}_value
1671  case $ac_old_set,$ac_new_set in
1672    set,)
1673      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1674$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1675      ac_cache_corrupted=: ;;
1676    ,set)
1677      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
1678$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1679      ac_cache_corrupted=: ;;
1680    ,);;
1681    *)
1682      if test "x$ac_old_val" != "x$ac_new_val"; then
1683	# differences in whitespace do not lead to failure.
1684	ac_old_val_w=`echo x $ac_old_val`
1685	ac_new_val_w=`echo x $ac_new_val`
1686	if test "$ac_old_val_w" != "$ac_new_val_w"; then
1687	  { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
1688$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1689	  ac_cache_corrupted=:
1690	else
1691	  { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
1692$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
1693	  eval $ac_var=\$ac_old_val
1694	fi
1695	{ $as_echo "$as_me:${as_lineno-$LINENO}:   former value:  \`$ac_old_val'" >&5
1696$as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
1697	{ $as_echo "$as_me:${as_lineno-$LINENO}:   current value: \`$ac_new_val'" >&5
1698$as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
1699      fi;;
1700  esac
1701  # Pass precious variables to config.status.
1702  if test "$ac_new_set" = set; then
1703    case $ac_new_val in
1704    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1705    *) ac_arg=$ac_var=$ac_new_val ;;
1706    esac
1707    case " $ac_configure_args " in
1708      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
1709      *) as_fn_append ac_configure_args " '$ac_arg'" ;;
1710    esac
1711  fi
1712done
1713if $ac_cache_corrupted; then
1714  { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1715$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1716  { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
1717$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
1718  as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
1719fi
1720## -------------------- ##
1721## Main body of script. ##
1722## -------------------- ##
1723
1724ac_ext=c
1725ac_cpp='$CPP $CPPFLAGS'
1726ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1727ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1728ac_compiler_gnu=$ac_cv_c_compiler_gnu
1729
1730
1731
1732
1733
1734
1735ac_aux_dir=
1736for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
1737  if test -f "$ac_dir/install-sh"; then
1738    ac_aux_dir=$ac_dir
1739    ac_install_sh="$ac_aux_dir/install-sh -c"
1740    break
1741  elif test -f "$ac_dir/install.sh"; then
1742    ac_aux_dir=$ac_dir
1743    ac_install_sh="$ac_aux_dir/install.sh -c"
1744    break
1745  elif test -f "$ac_dir/shtool"; then
1746    ac_aux_dir=$ac_dir
1747    ac_install_sh="$ac_aux_dir/shtool install -c"
1748    break
1749  fi
1750done
1751if test -z "$ac_aux_dir"; then
1752  as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
1753fi
1754
1755# These three variables are undocumented and unsupported,
1756# and are intended to be withdrawn in a future Autoconf release.
1757# They can cause serious problems if a builder's source tree is in a directory
1758# whose full name contains unusual characters.
1759ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
1760ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
1761ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
1762
1763
1764# Find a good install program.  We prefer a C program (faster),
1765# so one script is as good as another.  But avoid the broken or
1766# incompatible versions:
1767# SysV /etc/install, /usr/sbin/install
1768# SunOS /usr/etc/install
1769# IRIX /sbin/install
1770# AIX /bin/install
1771# AmigaOS /C/install, which installs bootblocks on floppy discs
1772# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
1773# AFS /usr/afsws/bin/install, which mishandles nonexistent args
1774# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
1775# OS/2's system install, which has a completely different semantic
1776# ./install, which can be erroneously created by make from ./install.sh.
1777# Reject install programs that cannot install multiple files.
1778{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
1779$as_echo_n "checking for a BSD-compatible install... " >&6; }
1780if test -z "$INSTALL"; then
1781if ${ac_cv_path_install+:} false; then :
1782  $as_echo_n "(cached) " >&6
1783else
1784  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1785for as_dir in $PATH
1786do
1787  IFS=$as_save_IFS
1788  test -z "$as_dir" && as_dir=.
1789    # Account for people who put trailing slashes in PATH elements.
1790case $as_dir/ in #((
1791  ./ | .// | /[cC]/* | \
1792  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
1793  ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
1794  /usr/ucb/* ) ;;
1795  *)
1796    # OSF1 and SCO ODT 3.0 have their own names for install.
1797    # Don't use installbsd from OSF since it installs stuff as root
1798    # by default.
1799    for ac_prog in ginstall scoinst install; do
1800      for ac_exec_ext in '' $ac_executable_extensions; do
1801	if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
1802	  if test $ac_prog = install &&
1803	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
1804	    # AIX install.  It has an incompatible calling convention.
1805	    :
1806	  elif test $ac_prog = install &&
1807	    grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
1808	    # program-specific install script used by HP pwplus--don't use.
1809	    :
1810	  else
1811	    rm -rf conftest.one conftest.two conftest.dir
1812	    echo one > conftest.one
1813	    echo two > conftest.two
1814	    mkdir conftest.dir
1815	    if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
1816	      test -s conftest.one && test -s conftest.two &&
1817	      test -s conftest.dir/conftest.one &&
1818	      test -s conftest.dir/conftest.two
1819	    then
1820	      ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
1821	      break 3
1822	    fi
1823	  fi
1824	fi
1825      done
1826    done
1827    ;;
1828esac
1829
1830  done
1831IFS=$as_save_IFS
1832
1833rm -rf conftest.one conftest.two conftest.dir
1834
1835fi
1836  if test "${ac_cv_path_install+set}" = set; then
1837    INSTALL=$ac_cv_path_install
1838  else
1839    # As a last resort, use the slow shell script.  Don't cache a
1840    # value for INSTALL within a source directory, because that will
1841    # break other packages using the cache if that directory is
1842    # removed, or if the value is a relative name.
1843    INSTALL=$ac_install_sh
1844  fi
1845fi
1846{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
1847$as_echo "$INSTALL" >&6; }
1848
1849# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
1850# It thinks the first close brace ends the variable substitution.
1851test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
1852
1853test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
1854
1855test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
1856
1857{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5
1858$as_echo_n "checking whether ln -s works... " >&6; }
1859LN_S=$as_ln_s
1860if test "$LN_S" = "ln -s"; then
1861  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
1862$as_echo "yes" >&6; }
1863else
1864  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5
1865$as_echo "no, using $LN_S" >&6; }
1866fi
1867
1868{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
1869$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
1870set x ${MAKE-make}
1871ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
1872if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
1873  $as_echo_n "(cached) " >&6
1874else
1875  cat >conftest.make <<\_ACEOF
1876SHELL = /bin/sh
1877all:
1878	@echo '@@@%%%=$(MAKE)=@@@%%%'
1879_ACEOF
1880# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
1881case `${MAKE-make} -f conftest.make 2>/dev/null` in
1882  *@@@%%%=?*=@@@%%%*)
1883    eval ac_cv_prog_make_${ac_make}_set=yes;;
1884  *)
1885    eval ac_cv_prog_make_${ac_make}_set=no;;
1886esac
1887rm -f conftest.make
1888fi
1889if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
1890  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
1891$as_echo "yes" >&6; }
1892  SET_MAKE=
1893else
1894  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
1895$as_echo "no" >&6; }
1896  SET_MAKE="MAKE=${MAKE-make}"
1897fi
1898
1899if test "$(${INSTALL} --help 2> /dev/null | fgrep -e --preserve-timestamps)"
1900then
1901    INSTALL="${INSTALL} --preserve-timestamps"
1902fi
1903
1904INST_TARGETS=
1905
1906# Check whether --enable-html was given.
1907if test "${enable_html+set}" = set; then :
1908  enableval=$enable_html;
1909fi
1910
1911if test "${enable_html:-yes}" = "yes"; then
1912    htmldir="${libdir}/mit-scheme/doc"
1913elif test "${enable_html}" = "no"; then
1914    htmldir=
1915else
1916    htmldir="${enable_html}"
1917fi
1918test "${htmldir}" = "" || INST_TARGETS="${INST_TARGETS} install-html"
1919
1920
1921# Check whether --enable-pdf was given.
1922if test "${enable_pdf+set}" = set; then :
1923  enableval=$enable_pdf;
1924fi
1925
1926if test "${enable_pdf:-yes}" = "yes"; then
1927    pdfdir="${libdir}/mit-scheme/doc"
1928elif test "${enable_pdf}" = "no"; then
1929    pdfdir=
1930else
1931    pdfdir="${enable_pdf}"
1932fi
1933test "${pdfdir}" = "" || INST_TARGETS="${INST_TARGETS} install-pdf"
1934
1935
1936# Check whether --enable-ps was given.
1937if test "${enable_ps+set}" = set; then :
1938  enableval=$enable_ps;
1939fi
1940
1941if test "${enable_ps:-yes}" = "yes"; then
1942    psdir="${libdir}/mit-scheme/doc"
1943elif test "${enable_ps}" = "no"; then
1944    psdir=
1945else
1946    psdir="${enable_ps}"
1947fi
1948test "${psdir}" = "" || INST_TARGETS="${INST_TARGETS} install-ps"
1949
1950
1951
1952
1953ac_config_files="$ac_config_files Makefile make-common ffi/Makefile imail/Makefile ref-manual/Makefile sos/Makefile user-manual/Makefile"
1954
1955cat >confcache <<\_ACEOF
1956# This file is a shell script that caches the results of configure
1957# tests run on this system so they can be shared between configure
1958# scripts and configure runs, see configure's option --config-cache.
1959# It is not useful on other systems.  If it contains results you don't
1960# want to keep, you may remove or edit it.
1961#
1962# config.status only pays attention to the cache file if you give it
1963# the --recheck option to rerun configure.
1964#
1965# `ac_cv_env_foo' variables (set or unset) will be overridden when
1966# loading this file, other *unset* `ac_cv_foo' will be assigned the
1967# following values.
1968
1969_ACEOF
1970
1971# The following way of writing the cache mishandles newlines in values,
1972# but we know of no workaround that is simple, portable, and efficient.
1973# So, we kill variables containing newlines.
1974# Ultrix sh set writes to stderr and can't be redirected directly,
1975# and sets the high bit in the cache file unless we assign to the vars.
1976(
1977  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
1978    eval ac_val=\$$ac_var
1979    case $ac_val in #(
1980    *${as_nl}*)
1981      case $ac_var in #(
1982      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
1983$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
1984      esac
1985      case $ac_var in #(
1986      _ | IFS | as_nl) ;; #(
1987      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
1988      *) { eval $ac_var=; unset $ac_var;} ;;
1989      esac ;;
1990    esac
1991  done
1992
1993  (set) 2>&1 |
1994    case $as_nl`(ac_space=' '; set) 2>&1` in #(
1995    *${as_nl}ac_space=\ *)
1996      # `set' does not quote correctly, so add quotes: double-quote
1997      # substitution turns \\\\ into \\, and sed turns \\ into \.
1998      sed -n \
1999	"s/'/'\\\\''/g;
2000	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
2001      ;; #(
2002    *)
2003      # `set' quotes correctly as required by POSIX, so do not add quotes.
2004      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
2005      ;;
2006    esac |
2007    sort
2008) |
2009  sed '
2010     /^ac_cv_env_/b end
2011     t clear
2012     :clear
2013     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
2014     t end
2015     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
2016     :end' >>confcache
2017if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
2018  if test -w "$cache_file"; then
2019    if test "x$cache_file" != "x/dev/null"; then
2020      { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
2021$as_echo "$as_me: updating cache $cache_file" >&6;}
2022      if test ! -f "$cache_file" || test -h "$cache_file"; then
2023	cat confcache >"$cache_file"
2024      else
2025        case $cache_file in #(
2026        */* | ?:*)
2027	  mv -f confcache "$cache_file"$$ &&
2028	  mv -f "$cache_file"$$ "$cache_file" ;; #(
2029        *)
2030	  mv -f confcache "$cache_file" ;;
2031	esac
2032      fi
2033    fi
2034  else
2035    { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
2036$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
2037  fi
2038fi
2039rm -f confcache
2040
2041test "x$prefix" = xNONE && prefix=$ac_default_prefix
2042# Let make expand exec_prefix.
2043test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
2044
2045# Transform confdefs.h into DEFS.
2046# Protect against shell expansion while executing Makefile rules.
2047# Protect against Makefile macro expansion.
2048#
2049# If the first sed substitution is executed (which looks for macros that
2050# take arguments), then branch to the quote section.  Otherwise,
2051# look for a macro that doesn't take arguments.
2052ac_script='
2053:mline
2054/\\$/{
2055 N
2056 s,\\\n,,
2057 b mline
2058}
2059t clear
2060:clear
2061s/^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 (][^	 (]*([^)]*)\)[	 ]*\(.*\)/-D\1=\2/g
2062t quote
2063s/^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 ][^	 ]*\)[	 ]*\(.*\)/-D\1=\2/g
2064t quote
2065b any
2066:quote
2067s/[	 `~#$^&*(){}\\|;'\''"<>?]/\\&/g
2068s/\[/\\&/g
2069s/\]/\\&/g
2070s/\$/$$/g
2071H
2072:any
2073${
2074	g
2075	s/^\n//
2076	s/\n/ /g
2077	p
2078}
2079'
2080DEFS=`sed -n "$ac_script" confdefs.h`
2081
2082
2083ac_libobjs=
2084ac_ltlibobjs=
2085U=
2086for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
2087  # 1. Remove the extension, and $U if already installed.
2088  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
2089  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
2090  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
2091  #    will be set to the directory where LIBOBJS objects are built.
2092  as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
2093  as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
2094done
2095LIBOBJS=$ac_libobjs
2096
2097LTLIBOBJS=$ac_ltlibobjs
2098
2099
2100
2101: "${CONFIG_STATUS=./config.status}"
2102ac_write_fail=0
2103ac_clean_files_save=$ac_clean_files
2104ac_clean_files="$ac_clean_files $CONFIG_STATUS"
2105{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
2106$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
2107as_write_fail=0
2108cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
2109#! $SHELL
2110# Generated by $as_me.
2111# Run this file to recreate the current configuration.
2112# Compiler output produced by configure, useful for debugging
2113# configure, is in config.log if it exists.
2114
2115debug=false
2116ac_cs_recheck=false
2117ac_cs_silent=false
2118
2119SHELL=\${CONFIG_SHELL-$SHELL}
2120export SHELL
2121_ASEOF
2122cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
2123## -------------------- ##
2124## M4sh Initialization. ##
2125## -------------------- ##
2126
2127# Be more Bourne compatible
2128DUALCASE=1; export DUALCASE # for MKS sh
2129if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
2130  emulate sh
2131  NULLCMD=:
2132  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
2133  # is contrary to our usage.  Disable this feature.
2134  alias -g '${1+"$@"}'='"$@"'
2135  setopt NO_GLOB_SUBST
2136else
2137  case `(set -o) 2>/dev/null` in #(
2138  *posix*) :
2139    set -o posix ;; #(
2140  *) :
2141     ;;
2142esac
2143fi
2144
2145
2146as_nl='
2147'
2148export as_nl
2149# Printing a long string crashes Solaris 7 /usr/bin/printf.
2150as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
2151as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
2152as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
2153# Prefer a ksh shell builtin over an external printf program on Solaris,
2154# but without wasting forks for bash or zsh.
2155if test -z "$BASH_VERSION$ZSH_VERSION" \
2156    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
2157  as_echo='print -r --'
2158  as_echo_n='print -rn --'
2159elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
2160  as_echo='printf %s\n'
2161  as_echo_n='printf %s'
2162else
2163  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
2164    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
2165    as_echo_n='/usr/ucb/echo -n'
2166  else
2167    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
2168    as_echo_n_body='eval
2169      arg=$1;
2170      case $arg in #(
2171      *"$as_nl"*)
2172	expr "X$arg" : "X\\(.*\\)$as_nl";
2173	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
2174      esac;
2175      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
2176    '
2177    export as_echo_n_body
2178    as_echo_n='sh -c $as_echo_n_body as_echo'
2179  fi
2180  export as_echo_body
2181  as_echo='sh -c $as_echo_body as_echo'
2182fi
2183
2184# The user is always right.
2185if test "${PATH_SEPARATOR+set}" != set; then
2186  PATH_SEPARATOR=:
2187  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
2188    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
2189      PATH_SEPARATOR=';'
2190  }
2191fi
2192
2193
2194# IFS
2195# We need space, tab and new line, in precisely that order.  Quoting is
2196# there to prevent editors from complaining about space-tab.
2197# (If _AS_PATH_WALK were called with IFS unset, it would disable word
2198# splitting by setting IFS to empty value.)
2199IFS=" ""	$as_nl"
2200
2201# Find who we are.  Look in the path if we contain no directory separator.
2202as_myself=
2203case $0 in #((
2204  *[\\/]* ) as_myself=$0 ;;
2205  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2206for as_dir in $PATH
2207do
2208  IFS=$as_save_IFS
2209  test -z "$as_dir" && as_dir=.
2210    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
2211  done
2212IFS=$as_save_IFS
2213
2214     ;;
2215esac
2216# We did not find ourselves, most probably we were run as `sh COMMAND'
2217# in which case we are not to be found in the path.
2218if test "x$as_myself" = x; then
2219  as_myself=$0
2220fi
2221if test ! -f "$as_myself"; then
2222  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
2223  exit 1
2224fi
2225
2226# Unset variables that we do not need and which cause bugs (e.g. in
2227# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
2228# suppresses any "Segmentation fault" message there.  '((' could
2229# trigger a bug in pdksh 5.2.14.
2230for as_var in BASH_ENV ENV MAIL MAILPATH
2231do eval test x\${$as_var+set} = xset \
2232  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
2233done
2234PS1='$ '
2235PS2='> '
2236PS4='+ '
2237
2238# NLS nuisances.
2239LC_ALL=C
2240export LC_ALL
2241LANGUAGE=C
2242export LANGUAGE
2243
2244# CDPATH.
2245(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
2246
2247
2248# as_fn_error STATUS ERROR [LINENO LOG_FD]
2249# ----------------------------------------
2250# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
2251# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
2252# script with STATUS, using 1 if that was 0.
2253as_fn_error ()
2254{
2255  as_status=$1; test $as_status -eq 0 && as_status=1
2256  if test "$4"; then
2257    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2258    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
2259  fi
2260  $as_echo "$as_me: error: $2" >&2
2261  as_fn_exit $as_status
2262} # as_fn_error
2263
2264
2265# as_fn_set_status STATUS
2266# -----------------------
2267# Set $? to STATUS, without forking.
2268as_fn_set_status ()
2269{
2270  return $1
2271} # as_fn_set_status
2272
2273# as_fn_exit STATUS
2274# -----------------
2275# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
2276as_fn_exit ()
2277{
2278  set +e
2279  as_fn_set_status $1
2280  exit $1
2281} # as_fn_exit
2282
2283# as_fn_unset VAR
2284# ---------------
2285# Portably unset VAR.
2286as_fn_unset ()
2287{
2288  { eval $1=; unset $1;}
2289}
2290as_unset=as_fn_unset
2291# as_fn_append VAR VALUE
2292# ----------------------
2293# Append the text in VALUE to the end of the definition contained in VAR. Take
2294# advantage of any shell optimizations that allow amortized linear growth over
2295# repeated appends, instead of the typical quadratic growth present in naive
2296# implementations.
2297if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
2298  eval 'as_fn_append ()
2299  {
2300    eval $1+=\$2
2301  }'
2302else
2303  as_fn_append ()
2304  {
2305    eval $1=\$$1\$2
2306  }
2307fi # as_fn_append
2308
2309# as_fn_arith ARG...
2310# ------------------
2311# Perform arithmetic evaluation on the ARGs, and store the result in the
2312# global $as_val. Take advantage of shells that can avoid forks. The arguments
2313# must be portable across $(()) and expr.
2314if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
2315  eval 'as_fn_arith ()
2316  {
2317    as_val=$(( $* ))
2318  }'
2319else
2320  as_fn_arith ()
2321  {
2322    as_val=`expr "$@" || test $? -eq 1`
2323  }
2324fi # as_fn_arith
2325
2326
2327if expr a : '\(a\)' >/dev/null 2>&1 &&
2328   test "X`expr 00001 : '.*\(...\)'`" = X001; then
2329  as_expr=expr
2330else
2331  as_expr=false
2332fi
2333
2334if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
2335  as_basename=basename
2336else
2337  as_basename=false
2338fi
2339
2340if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
2341  as_dirname=dirname
2342else
2343  as_dirname=false
2344fi
2345
2346as_me=`$as_basename -- "$0" ||
2347$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
2348	 X"$0" : 'X\(//\)$' \| \
2349	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
2350$as_echo X/"$0" |
2351    sed '/^.*\/\([^/][^/]*\)\/*$/{
2352	    s//\1/
2353	    q
2354	  }
2355	  /^X\/\(\/\/\)$/{
2356	    s//\1/
2357	    q
2358	  }
2359	  /^X\/\(\/\).*/{
2360	    s//\1/
2361	    q
2362	  }
2363	  s/.*/./; q'`
2364
2365# Avoid depending upon Character Ranges.
2366as_cr_letters='abcdefghijklmnopqrstuvwxyz'
2367as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
2368as_cr_Letters=$as_cr_letters$as_cr_LETTERS
2369as_cr_digits='0123456789'
2370as_cr_alnum=$as_cr_Letters$as_cr_digits
2371
2372ECHO_C= ECHO_N= ECHO_T=
2373case `echo -n x` in #(((((
2374-n*)
2375  case `echo 'xy\c'` in
2376  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
2377  xy)  ECHO_C='\c';;
2378  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
2379       ECHO_T='	';;
2380  esac;;
2381*)
2382  ECHO_N='-n';;
2383esac
2384
2385rm -f conf$$ conf$$.exe conf$$.file
2386if test -d conf$$.dir; then
2387  rm -f conf$$.dir/conf$$.file
2388else
2389  rm -f conf$$.dir
2390  mkdir conf$$.dir 2>/dev/null
2391fi
2392if (echo >conf$$.file) 2>/dev/null; then
2393  if ln -s conf$$.file conf$$ 2>/dev/null; then
2394    as_ln_s='ln -s'
2395    # ... but there are two gotchas:
2396    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
2397    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
2398    # In both cases, we have to default to `cp -pR'.
2399    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
2400      as_ln_s='cp -pR'
2401  elif ln conf$$.file conf$$ 2>/dev/null; then
2402    as_ln_s=ln
2403  else
2404    as_ln_s='cp -pR'
2405  fi
2406else
2407  as_ln_s='cp -pR'
2408fi
2409rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
2410rmdir conf$$.dir 2>/dev/null
2411
2412
2413# as_fn_mkdir_p
2414# -------------
2415# Create "$as_dir" as a directory, including parents if necessary.
2416as_fn_mkdir_p ()
2417{
2418
2419  case $as_dir in #(
2420  -*) as_dir=./$as_dir;;
2421  esac
2422  test -d "$as_dir" || eval $as_mkdir_p || {
2423    as_dirs=
2424    while :; do
2425      case $as_dir in #(
2426      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
2427      *) as_qdir=$as_dir;;
2428      esac
2429      as_dirs="'$as_qdir' $as_dirs"
2430      as_dir=`$as_dirname -- "$as_dir" ||
2431$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
2432	 X"$as_dir" : 'X\(//\)[^/]' \| \
2433	 X"$as_dir" : 'X\(//\)$' \| \
2434	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
2435$as_echo X"$as_dir" |
2436    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
2437	    s//\1/
2438	    q
2439	  }
2440	  /^X\(\/\/\)[^/].*/{
2441	    s//\1/
2442	    q
2443	  }
2444	  /^X\(\/\/\)$/{
2445	    s//\1/
2446	    q
2447	  }
2448	  /^X\(\/\).*/{
2449	    s//\1/
2450	    q
2451	  }
2452	  s/.*/./; q'`
2453      test -d "$as_dir" && break
2454    done
2455    test -z "$as_dirs" || eval "mkdir $as_dirs"
2456  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
2457
2458
2459} # as_fn_mkdir_p
2460if mkdir -p . 2>/dev/null; then
2461  as_mkdir_p='mkdir -p "$as_dir"'
2462else
2463  test -d ./-p && rmdir ./-p
2464  as_mkdir_p=false
2465fi
2466
2467
2468# as_fn_executable_p FILE
2469# -----------------------
2470# Test if FILE is an executable regular file.
2471as_fn_executable_p ()
2472{
2473  test -f "$1" && test -x "$1"
2474} # as_fn_executable_p
2475as_test_x='test -x'
2476as_executable_p=as_fn_executable_p
2477
2478# Sed expression to map a string onto a valid CPP name.
2479as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
2480
2481# Sed expression to map a string onto a valid variable name.
2482as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
2483
2484
2485exec 6>&1
2486## ----------------------------------- ##
2487## Main body of $CONFIG_STATUS script. ##
2488## ----------------------------------- ##
2489_ASEOF
2490test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
2491
2492cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2493# Save the log message, to keep $0 and so on meaningful, and to
2494# report actual input values of CONFIG_FILES etc. instead of their
2495# values after options handling.
2496ac_log="
2497This file was extended by MIT/GNU Scheme documentation $as_me 9.2, which was
2498generated by GNU Autoconf 2.69.  Invocation command line was
2499
2500  CONFIG_FILES    = $CONFIG_FILES
2501  CONFIG_HEADERS  = $CONFIG_HEADERS
2502  CONFIG_LINKS    = $CONFIG_LINKS
2503  CONFIG_COMMANDS = $CONFIG_COMMANDS
2504  $ $0 $@
2505
2506on `(hostname || uname -n) 2>/dev/null | sed 1q`
2507"
2508
2509_ACEOF
2510
2511case $ac_config_files in *"
2512"*) set x $ac_config_files; shift; ac_config_files=$*;;
2513esac
2514
2515
2516
2517cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2518# Files that config.status was made for.
2519config_files="$ac_config_files"
2520
2521_ACEOF
2522
2523cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2524ac_cs_usage="\
2525\`$as_me' instantiates files and other configuration actions
2526from templates according to the current configuration.  Unless the files
2527and actions are specified as TAGs, all are instantiated by default.
2528
2529Usage: $0 [OPTION]... [TAG]...
2530
2531  -h, --help       print this help, then exit
2532  -V, --version    print version number and configuration settings, then exit
2533      --config     print configuration, then exit
2534  -q, --quiet, --silent
2535                   do not print progress messages
2536  -d, --debug      don't remove temporary files
2537      --recheck    update $as_me by reconfiguring in the same conditions
2538      --file=FILE[:TEMPLATE]
2539                   instantiate the configuration file FILE
2540
2541Configuration files:
2542$config_files
2543
2544Report bugs to <bug-mit-scheme@gnu.org>."
2545
2546_ACEOF
2547cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2548ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
2549ac_cs_version="\\
2550MIT/GNU Scheme documentation config.status 9.2
2551configured by $0, generated by GNU Autoconf 2.69,
2552  with options \\"\$ac_cs_config\\"
2553
2554Copyright (C) 2012 Free Software Foundation, Inc.
2555This config.status script is free software; the Free Software Foundation
2556gives unlimited permission to copy, distribute and modify it."
2557
2558ac_pwd='$ac_pwd'
2559srcdir='$srcdir'
2560INSTALL='$INSTALL'
2561test -n "\$AWK" || AWK=awk
2562_ACEOF
2563
2564cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2565# The default lists apply if the user does not specify any file.
2566ac_need_defaults=:
2567while test $# != 0
2568do
2569  case $1 in
2570  --*=?*)
2571    ac_option=`expr "X$1" : 'X\([^=]*\)='`
2572    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
2573    ac_shift=:
2574    ;;
2575  --*=)
2576    ac_option=`expr "X$1" : 'X\([^=]*\)='`
2577    ac_optarg=
2578    ac_shift=:
2579    ;;
2580  *)
2581    ac_option=$1
2582    ac_optarg=$2
2583    ac_shift=shift
2584    ;;
2585  esac
2586
2587  case $ac_option in
2588  # Handling of the options.
2589  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
2590    ac_cs_recheck=: ;;
2591  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
2592    $as_echo "$ac_cs_version"; exit ;;
2593  --config | --confi | --conf | --con | --co | --c )
2594    $as_echo "$ac_cs_config"; exit ;;
2595  --debug | --debu | --deb | --de | --d | -d )
2596    debug=: ;;
2597  --file | --fil | --fi | --f )
2598    $ac_shift
2599    case $ac_optarg in
2600    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
2601    '') as_fn_error $? "missing file argument" ;;
2602    esac
2603    as_fn_append CONFIG_FILES " '$ac_optarg'"
2604    ac_need_defaults=false;;
2605  --he | --h |  --help | --hel | -h )
2606    $as_echo "$ac_cs_usage"; exit ;;
2607  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
2608  | -silent | --silent | --silen | --sile | --sil | --si | --s)
2609    ac_cs_silent=: ;;
2610
2611  # This is an error.
2612  -*) as_fn_error $? "unrecognized option: \`$1'
2613Try \`$0 --help' for more information." ;;
2614
2615  *) as_fn_append ac_config_targets " $1"
2616     ac_need_defaults=false ;;
2617
2618  esac
2619  shift
2620done
2621
2622ac_configure_extra_args=
2623
2624if $ac_cs_silent; then
2625  exec 6>/dev/null
2626  ac_configure_extra_args="$ac_configure_extra_args --silent"
2627fi
2628
2629_ACEOF
2630cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2631if \$ac_cs_recheck; then
2632  set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
2633  shift
2634  \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
2635  CONFIG_SHELL='$SHELL'
2636  export CONFIG_SHELL
2637  exec "\$@"
2638fi
2639
2640_ACEOF
2641cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2642exec 5>>config.log
2643{
2644  echo
2645  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
2646## Running $as_me. ##
2647_ASBOX
2648  $as_echo "$ac_log"
2649} >&5
2650
2651_ACEOF
2652cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2653_ACEOF
2654
2655cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2656
2657# Handling of arguments.
2658for ac_config_target in $ac_config_targets
2659do
2660  case $ac_config_target in
2661    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
2662    "make-common") CONFIG_FILES="$CONFIG_FILES make-common" ;;
2663    "ffi/Makefile") CONFIG_FILES="$CONFIG_FILES ffi/Makefile" ;;
2664    "imail/Makefile") CONFIG_FILES="$CONFIG_FILES imail/Makefile" ;;
2665    "ref-manual/Makefile") CONFIG_FILES="$CONFIG_FILES ref-manual/Makefile" ;;
2666    "sos/Makefile") CONFIG_FILES="$CONFIG_FILES sos/Makefile" ;;
2667    "user-manual/Makefile") CONFIG_FILES="$CONFIG_FILES user-manual/Makefile" ;;
2668
2669  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
2670  esac
2671done
2672
2673
2674# If the user did not use the arguments to specify the items to instantiate,
2675# then the envvar interface is used.  Set only those that are not.
2676# We use the long form for the default assignment because of an extremely
2677# bizarre bug on SunOS 4.1.3.
2678if $ac_need_defaults; then
2679  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
2680fi
2681
2682# Have a temporary directory for convenience.  Make it in the build tree
2683# simply because there is no reason against having it here, and in addition,
2684# creating and moving files from /tmp can sometimes cause problems.
2685# Hook for its removal unless debugging.
2686# Note that there is a small window in which the directory will not be cleaned:
2687# after its creation but before its name has been assigned to `$tmp'.
2688$debug ||
2689{
2690  tmp= ac_tmp=
2691  trap 'exit_status=$?
2692  : "${ac_tmp:=$tmp}"
2693  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
2694' 0
2695  trap 'as_fn_exit 1' 1 2 13 15
2696}
2697# Create a (secure) tmp directory for tmp files.
2698
2699{
2700  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
2701  test -d "$tmp"
2702}  ||
2703{
2704  tmp=./conf$$-$RANDOM
2705  (umask 077 && mkdir "$tmp")
2706} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
2707ac_tmp=$tmp
2708
2709# Set up the scripts for CONFIG_FILES section.
2710# No need to generate them if there are no CONFIG_FILES.
2711# This happens for instance with `./config.status config.h'.
2712if test -n "$CONFIG_FILES"; then
2713
2714
2715ac_cr=`echo X | tr X '\015'`
2716# On cygwin, bash can eat \r inside `` if the user requested igncr.
2717# But we know of no other shell where ac_cr would be empty at this
2718# point, so we can use a bashism as a fallback.
2719if test "x$ac_cr" = x; then
2720  eval ac_cr=\$\'\\r\'
2721fi
2722ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
2723if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
2724  ac_cs_awk_cr='\\r'
2725else
2726  ac_cs_awk_cr=$ac_cr
2727fi
2728
2729echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
2730_ACEOF
2731
2732
2733{
2734  echo "cat >conf$$subs.awk <<_ACEOF" &&
2735  echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
2736  echo "_ACEOF"
2737} >conf$$subs.sh ||
2738  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
2739ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
2740ac_delim='%!_!# '
2741for ac_last_try in false false false false false :; do
2742  . ./conf$$subs.sh ||
2743    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
2744
2745  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
2746  if test $ac_delim_n = $ac_delim_num; then
2747    break
2748  elif $ac_last_try; then
2749    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
2750  else
2751    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
2752  fi
2753done
2754rm -f conf$$subs.sh
2755
2756cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2757cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
2758_ACEOF
2759sed -n '
2760h
2761s/^/S["/; s/!.*/"]=/
2762p
2763g
2764s/^[^!]*!//
2765:repl
2766t repl
2767s/'"$ac_delim"'$//
2768t delim
2769:nl
2770h
2771s/\(.\{148\}\)..*/\1/
2772t more1
2773s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
2774p
2775n
2776b repl
2777:more1
2778s/["\\]/\\&/g; s/^/"/; s/$/"\\/
2779p
2780g
2781s/.\{148\}//
2782t nl
2783:delim
2784h
2785s/\(.\{148\}\)..*/\1/
2786t more2
2787s/["\\]/\\&/g; s/^/"/; s/$/"/
2788p
2789b
2790:more2
2791s/["\\]/\\&/g; s/^/"/; s/$/"\\/
2792p
2793g
2794s/.\{148\}//
2795t delim
2796' <conf$$subs.awk | sed '
2797/^[^""]/{
2798  N
2799  s/\n//
2800}
2801' >>$CONFIG_STATUS || ac_write_fail=1
2802rm -f conf$$subs.awk
2803cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2804_ACAWK
2805cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
2806  for (key in S) S_is_set[key] = 1
2807  FS = ""
2808
2809}
2810{
2811  line = $ 0
2812  nfields = split(line, field, "@")
2813  substed = 0
2814  len = length(field[1])
2815  for (i = 2; i < nfields; i++) {
2816    key = field[i]
2817    keylen = length(key)
2818    if (S_is_set[key]) {
2819      value = S[key]
2820      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
2821      len += length(value) + length(field[++i])
2822      substed = 1
2823    } else
2824      len += 1 + keylen
2825  }
2826
2827  print line
2828}
2829
2830_ACAWK
2831_ACEOF
2832cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2833if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
2834  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
2835else
2836  cat
2837fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
2838  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
2839_ACEOF
2840
2841# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
2842# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
2843# trailing colons and then remove the whole line if VPATH becomes empty
2844# (actually we leave an empty line to preserve line numbers).
2845if test "x$srcdir" = x.; then
2846  ac_vpsub='/^[	 ]*VPATH[	 ]*=[	 ]*/{
2847h
2848s///
2849s/^/:/
2850s/[	 ]*$/:/
2851s/:\$(srcdir):/:/g
2852s/:\${srcdir}:/:/g
2853s/:@srcdir@:/:/g
2854s/^:*//
2855s/:*$//
2856x
2857s/\(=[	 ]*\).*/\1/
2858G
2859s/\n//
2860s/^[^=]*=[	 ]*$//
2861}'
2862fi
2863
2864cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2865fi # test -n "$CONFIG_FILES"
2866
2867
2868eval set X "  :F $CONFIG_FILES      "
2869shift
2870for ac_tag
2871do
2872  case $ac_tag in
2873  :[FHLC]) ac_mode=$ac_tag; continue;;
2874  esac
2875  case $ac_mode$ac_tag in
2876  :[FHL]*:*);;
2877  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
2878  :[FH]-) ac_tag=-:-;;
2879  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
2880  esac
2881  ac_save_IFS=$IFS
2882  IFS=:
2883  set x $ac_tag
2884  IFS=$ac_save_IFS
2885  shift
2886  ac_file=$1
2887  shift
2888
2889  case $ac_mode in
2890  :L) ac_source=$1;;
2891  :[FH])
2892    ac_file_inputs=
2893    for ac_f
2894    do
2895      case $ac_f in
2896      -) ac_f="$ac_tmp/stdin";;
2897      *) # Look for the file first in the build tree, then in the source tree
2898	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
2899	 # because $ac_f cannot contain `:'.
2900	 test -f "$ac_f" ||
2901	   case $ac_f in
2902	   [\\/$]*) false;;
2903	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
2904	   esac ||
2905	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
2906      esac
2907      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
2908      as_fn_append ac_file_inputs " '$ac_f'"
2909    done
2910
2911    # Let's still pretend it is `configure' which instantiates (i.e., don't
2912    # use $as_me), people would be surprised to read:
2913    #    /* config.h.  Generated by config.status.  */
2914    configure_input='Generated from '`
2915	  $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
2916	`' by configure.'
2917    if test x"$ac_file" != x-; then
2918      configure_input="$ac_file.  $configure_input"
2919      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
2920$as_echo "$as_me: creating $ac_file" >&6;}
2921    fi
2922    # Neutralize special characters interpreted by sed in replacement strings.
2923    case $configure_input in #(
2924    *\&* | *\|* | *\\* )
2925       ac_sed_conf_input=`$as_echo "$configure_input" |
2926       sed 's/[\\\\&|]/\\\\&/g'`;; #(
2927    *) ac_sed_conf_input=$configure_input;;
2928    esac
2929
2930    case $ac_tag in
2931    *:-:* | *:-) cat >"$ac_tmp/stdin" \
2932      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
2933    esac
2934    ;;
2935  esac
2936
2937  ac_dir=`$as_dirname -- "$ac_file" ||
2938$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
2939	 X"$ac_file" : 'X\(//\)[^/]' \| \
2940	 X"$ac_file" : 'X\(//\)$' \| \
2941	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
2942$as_echo X"$ac_file" |
2943    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
2944	    s//\1/
2945	    q
2946	  }
2947	  /^X\(\/\/\)[^/].*/{
2948	    s//\1/
2949	    q
2950	  }
2951	  /^X\(\/\/\)$/{
2952	    s//\1/
2953	    q
2954	  }
2955	  /^X\(\/\).*/{
2956	    s//\1/
2957	    q
2958	  }
2959	  s/.*/./; q'`
2960  as_dir="$ac_dir"; as_fn_mkdir_p
2961  ac_builddir=.
2962
2963case "$ac_dir" in
2964.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
2965*)
2966  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
2967  # A ".." for each directory in $ac_dir_suffix.
2968  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
2969  case $ac_top_builddir_sub in
2970  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
2971  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
2972  esac ;;
2973esac
2974ac_abs_top_builddir=$ac_pwd
2975ac_abs_builddir=$ac_pwd$ac_dir_suffix
2976# for backward compatibility:
2977ac_top_builddir=$ac_top_build_prefix
2978
2979case $srcdir in
2980  .)  # We are building in place.
2981    ac_srcdir=.
2982    ac_top_srcdir=$ac_top_builddir_sub
2983    ac_abs_top_srcdir=$ac_pwd ;;
2984  [\\/]* | ?:[\\/]* )  # Absolute name.
2985    ac_srcdir=$srcdir$ac_dir_suffix;
2986    ac_top_srcdir=$srcdir
2987    ac_abs_top_srcdir=$srcdir ;;
2988  *) # Relative name.
2989    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
2990    ac_top_srcdir=$ac_top_build_prefix$srcdir
2991    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
2992esac
2993ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
2994
2995
2996  case $ac_mode in
2997  :F)
2998  #
2999  # CONFIG_FILE
3000  #
3001
3002  case $INSTALL in
3003  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
3004  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
3005  esac
3006_ACEOF
3007
3008cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3009# If the template does not know about datarootdir, expand it.
3010# FIXME: This hack should be removed a few years after 2.60.
3011ac_datarootdir_hack=; ac_datarootdir_seen=
3012ac_sed_dataroot='
3013/datarootdir/ {
3014  p
3015  q
3016}
3017/@datadir@/p
3018/@docdir@/p
3019/@infodir@/p
3020/@localedir@/p
3021/@mandir@/p'
3022case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
3023*datarootdir*) ac_datarootdir_seen=yes;;
3024*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
3025  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
3026$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
3027_ACEOF
3028cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3029  ac_datarootdir_hack='
3030  s&@datadir@&$datadir&g
3031  s&@docdir@&$docdir&g
3032  s&@infodir@&$infodir&g
3033  s&@localedir@&$localedir&g
3034  s&@mandir@&$mandir&g
3035  s&\\\${datarootdir}&$datarootdir&g' ;;
3036esac
3037_ACEOF
3038
3039# Neutralize VPATH when `$srcdir' = `.'.
3040# Shell code in configure.ac might set extrasub.
3041# FIXME: do we really want to maintain this feature?
3042cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3043ac_sed_extra="$ac_vpsub
3044$extrasub
3045_ACEOF
3046cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3047:t
3048/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
3049s|@configure_input@|$ac_sed_conf_input|;t t
3050s&@top_builddir@&$ac_top_builddir_sub&;t t
3051s&@top_build_prefix@&$ac_top_build_prefix&;t t
3052s&@srcdir@&$ac_srcdir&;t t
3053s&@abs_srcdir@&$ac_abs_srcdir&;t t
3054s&@top_srcdir@&$ac_top_srcdir&;t t
3055s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
3056s&@builddir@&$ac_builddir&;t t
3057s&@abs_builddir@&$ac_abs_builddir&;t t
3058s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
3059s&@INSTALL@&$ac_INSTALL&;t t
3060$ac_datarootdir_hack
3061"
3062eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
3063  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
3064
3065test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
3066  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
3067  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
3068      "$ac_tmp/out"`; test -z "$ac_out"; } &&
3069  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
3070which seems to be undefined.  Please make sure it is defined" >&5
3071$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
3072which seems to be undefined.  Please make sure it is defined" >&2;}
3073
3074  rm -f "$ac_tmp/stdin"
3075  case $ac_file in
3076  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
3077  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
3078  esac \
3079  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
3080 ;;
3081
3082
3083
3084  esac
3085
3086done # for ac_tag
3087
3088
3089as_fn_exit 0
3090_ACEOF
3091ac_clean_files=$ac_clean_files_save
3092
3093test $ac_write_fail = 0 ||
3094  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
3095
3096
3097# configure is writing to config.log, and then calls config.status.
3098# config.status does its own redirection, appending to config.log.
3099# Unfortunately, on DOS this fails, as config.log is still kept open
3100# by configure, so config.status won't be able to write to it; its
3101# output is simply discarded.  So we exec the FD to /dev/null,
3102# effectively closing config.log, so it can be properly (re)opened and
3103# appended to by config.status.  When coming back to configure, we
3104# need to make the FD available again.
3105if test "$no_create" != yes; then
3106  ac_cs_success=:
3107  ac_config_status_args=
3108  test "$silent" = yes &&
3109    ac_config_status_args="$ac_config_status_args --quiet"
3110  exec 5>/dev/null
3111  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
3112  exec 5>>config.log
3113  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
3114  # would make configure fail if this is the last instruction.
3115  $ac_cs_success || as_fn_exit 1
3116fi
3117if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
3118  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
3119$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
3120fi
3121
3122