1#! /bin/sh
2# Guess values for system-dependent variables and create Makefiles.
3# Generated by GNU Autoconf 2.69 for maxima 5.43.2.
4#
5#
6# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
7#
8#
9# This configure script is free software; the Free Software Foundation
10# gives unlimited permission to copy, distribute and modify it.
11## -------------------- ##
12## M4sh Initialization. ##
13## -------------------- ##
14
15# Be more Bourne compatible
16DUALCASE=1; export DUALCASE # for MKS sh
17if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
18  emulate sh
19  NULLCMD=:
20  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
21  # is contrary to our usage.  Disable this feature.
22  alias -g '${1+"$@"}'='"$@"'
23  setopt NO_GLOB_SUBST
24else
25  case `(set -o) 2>/dev/null` in #(
26  *posix*) :
27    set -o posix ;; #(
28  *) :
29     ;;
30esac
31fi
32
33
34as_nl='
35'
36export as_nl
37# Printing a long string crashes Solaris 7 /usr/bin/printf.
38as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
39as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
40as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
41# Prefer a ksh shell builtin over an external printf program on Solaris,
42# but without wasting forks for bash or zsh.
43if test -z "$BASH_VERSION$ZSH_VERSION" \
44    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
45  as_echo='print -r --'
46  as_echo_n='print -rn --'
47elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
48  as_echo='printf %s\n'
49  as_echo_n='printf %s'
50else
51  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
52    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
53    as_echo_n='/usr/ucb/echo -n'
54  else
55    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
56    as_echo_n_body='eval
57      arg=$1;
58      case $arg in #(
59      *"$as_nl"*)
60	expr "X$arg" : "X\\(.*\\)$as_nl";
61	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
62      esac;
63      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
64    '
65    export as_echo_n_body
66    as_echo_n='sh -c $as_echo_n_body as_echo'
67  fi
68  export as_echo_body
69  as_echo='sh -c $as_echo_body as_echo'
70fi
71
72# The user is always right.
73if test "${PATH_SEPARATOR+set}" != set; then
74  PATH_SEPARATOR=:
75  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
76    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
77      PATH_SEPARATOR=';'
78  }
79fi
80
81
82# IFS
83# We need space, tab and new line, in precisely that order.  Quoting is
84# there to prevent editors from complaining about space-tab.
85# (If _AS_PATH_WALK were called with IFS unset, it would disable word
86# splitting by setting IFS to empty value.)
87IFS=" ""	$as_nl"
88
89# Find who we are.  Look in the path if we contain no directory separator.
90as_myself=
91case $0 in #((
92  *[\\/]* ) as_myself=$0 ;;
93  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
94for as_dir in $PATH
95do
96  IFS=$as_save_IFS
97  test -z "$as_dir" && as_dir=.
98    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
99  done
100IFS=$as_save_IFS
101
102     ;;
103esac
104# We did not find ourselves, most probably we were run as `sh COMMAND'
105# in which case we are not to be found in the path.
106if test "x$as_myself" = x; then
107  as_myself=$0
108fi
109if test ! -f "$as_myself"; then
110  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
111  exit 1
112fi
113
114# Unset variables that we do not need and which cause bugs (e.g. in
115# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
116# suppresses any "Segmentation fault" message there.  '((' could
117# trigger a bug in pdksh 5.2.14.
118for as_var in BASH_ENV ENV MAIL MAILPATH
119do eval test x\${$as_var+set} = xset \
120  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
121done
122PS1='$ '
123PS2='> '
124PS4='+ '
125
126# NLS nuisances.
127LC_ALL=C
128export LC_ALL
129LANGUAGE=C
130export LANGUAGE
131
132# CDPATH.
133(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
134
135# Use a proper internal environment variable to ensure we don't fall
136  # into an infinite loop, continuously re-executing ourselves.
137  if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
138    _as_can_reexec=no; export _as_can_reexec;
139    # We cannot yet assume a decent shell, so we have to provide a
140# neutralization value for shells without unset; and this also
141# works around shells that cannot unset nonexistent variables.
142# Preserve -v and -x to the replacement shell.
143BASH_ENV=/dev/null
144ENV=/dev/null
145(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
146case $- in # ((((
147  *v*x* | *x*v* ) as_opts=-vx ;;
148  *v* ) as_opts=-v ;;
149  *x* ) as_opts=-x ;;
150  * ) as_opts= ;;
151esac
152exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
153# Admittedly, this is quite paranoid, since all the known shells bail
154# out after a failed `exec'.
155$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
156as_fn_exit 255
157  fi
158  # We don't want this to propagate to other subprocesses.
159          { _as_can_reexec=; unset _as_can_reexec;}
160if test "x$CONFIG_SHELL" = x; then
161  as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
162  emulate sh
163  NULLCMD=:
164  # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
165  # is contrary to our usage.  Disable this feature.
166  alias -g '\${1+\"\$@\"}'='\"\$@\"'
167  setopt NO_GLOB_SUBST
168else
169  case \`(set -o) 2>/dev/null\` in #(
170  *posix*) :
171    set -o posix ;; #(
172  *) :
173     ;;
174esac
175fi
176"
177  as_required="as_fn_return () { (exit \$1); }
178as_fn_success () { as_fn_return 0; }
179as_fn_failure () { as_fn_return 1; }
180as_fn_ret_success () { return 0; }
181as_fn_ret_failure () { return 1; }
182
183exitcode=0
184as_fn_success || { exitcode=1; echo as_fn_success failed.; }
185as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
186as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
187as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
188if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
189
190else
191  exitcode=1; echo positional parameters were not saved.
192fi
193test x\$exitcode = x0 || exit 1
194test -x / || exit 1"
195  as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
196  as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
197  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
198  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
199test \$(( 1 + 1 )) = 2 || exit 1"
200  if (eval "$as_required") 2>/dev/null; then :
201  as_have_required=yes
202else
203  as_have_required=no
204fi
205  if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
206
207else
208  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
209as_found=false
210for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
211do
212  IFS=$as_save_IFS
213  test -z "$as_dir" && as_dir=.
214  as_found=:
215  case $as_dir in #(
216	 /*)
217	   for as_base in sh bash ksh sh5; do
218	     # Try only shells that exist, to save several forks.
219	     as_shell=$as_dir/$as_base
220	     if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
221		    { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
222  CONFIG_SHELL=$as_shell as_have_required=yes
223		   if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
224  break 2
225fi
226fi
227	   done;;
228       esac
229  as_found=false
230done
231$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
232	      { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
233  CONFIG_SHELL=$SHELL as_have_required=yes
234fi; }
235IFS=$as_save_IFS
236
237
238      if test "x$CONFIG_SHELL" != x; then :
239  export CONFIG_SHELL
240             # We cannot yet assume a decent shell, so we have to provide a
241# neutralization value for shells without unset; and this also
242# works around shells that cannot unset nonexistent variables.
243# Preserve -v and -x to the replacement shell.
244BASH_ENV=/dev/null
245ENV=/dev/null
246(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
247case $- in # ((((
248  *v*x* | *x*v* ) as_opts=-vx ;;
249  *v* ) as_opts=-v ;;
250  *x* ) as_opts=-x ;;
251  * ) as_opts= ;;
252esac
253exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
254# Admittedly, this is quite paranoid, since all the known shells bail
255# out after a failed `exec'.
256$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
257exit 255
258fi
259
260    if test x$as_have_required = xno; then :
261  $as_echo "$0: This script requires a shell more modern than all"
262  $as_echo "$0: the shells that I found on your system."
263  if test x${ZSH_VERSION+set} = xset ; then
264    $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
265    $as_echo "$0: be upgraded to zsh 4.3.4 or later."
266  else
267    $as_echo "$0: Please tell bug-autoconf@gnu.org about your system,
268$0: including any error possibly output before this
269$0: message. Then install a modern shell, or manually run
270$0: the script under such a shell if you do have one."
271  fi
272  exit 1
273fi
274fi
275fi
276SHELL=${CONFIG_SHELL-/bin/sh}
277export SHELL
278# Unset more variables known to interfere with behavior of common tools.
279CLICOLOR_FORCE= GREP_OPTIONS=
280unset CLICOLOR_FORCE GREP_OPTIONS
281
282## --------------------- ##
283## M4sh Shell Functions. ##
284## --------------------- ##
285# as_fn_unset VAR
286# ---------------
287# Portably unset VAR.
288as_fn_unset ()
289{
290  { eval $1=; unset $1;}
291}
292as_unset=as_fn_unset
293
294# as_fn_set_status STATUS
295# -----------------------
296# Set $? to STATUS, without forking.
297as_fn_set_status ()
298{
299  return $1
300} # as_fn_set_status
301
302# as_fn_exit STATUS
303# -----------------
304# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
305as_fn_exit ()
306{
307  set +e
308  as_fn_set_status $1
309  exit $1
310} # as_fn_exit
311
312# as_fn_mkdir_p
313# -------------
314# Create "$as_dir" as a directory, including parents if necessary.
315as_fn_mkdir_p ()
316{
317
318  case $as_dir in #(
319  -*) as_dir=./$as_dir;;
320  esac
321  test -d "$as_dir" || eval $as_mkdir_p || {
322    as_dirs=
323    while :; do
324      case $as_dir in #(
325      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
326      *) as_qdir=$as_dir;;
327      esac
328      as_dirs="'$as_qdir' $as_dirs"
329      as_dir=`$as_dirname -- "$as_dir" ||
330$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
331	 X"$as_dir" : 'X\(//\)[^/]' \| \
332	 X"$as_dir" : 'X\(//\)$' \| \
333	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
334$as_echo X"$as_dir" |
335    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
336	    s//\1/
337	    q
338	  }
339	  /^X\(\/\/\)[^/].*/{
340	    s//\1/
341	    q
342	  }
343	  /^X\(\/\/\)$/{
344	    s//\1/
345	    q
346	  }
347	  /^X\(\/\).*/{
348	    s//\1/
349	    q
350	  }
351	  s/.*/./; q'`
352      test -d "$as_dir" && break
353    done
354    test -z "$as_dirs" || eval "mkdir $as_dirs"
355  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
356
357
358} # as_fn_mkdir_p
359
360# as_fn_executable_p FILE
361# -----------------------
362# Test if FILE is an executable regular file.
363as_fn_executable_p ()
364{
365  test -f "$1" && test -x "$1"
366} # as_fn_executable_p
367# as_fn_append VAR VALUE
368# ----------------------
369# Append the text in VALUE to the end of the definition contained in VAR. Take
370# advantage of any shell optimizations that allow amortized linear growth over
371# repeated appends, instead of the typical quadratic growth present in naive
372# implementations.
373if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
374  eval 'as_fn_append ()
375  {
376    eval $1+=\$2
377  }'
378else
379  as_fn_append ()
380  {
381    eval $1=\$$1\$2
382  }
383fi # as_fn_append
384
385# as_fn_arith ARG...
386# ------------------
387# Perform arithmetic evaluation on the ARGs, and store the result in the
388# global $as_val. Take advantage of shells that can avoid forks. The arguments
389# must be portable across $(()) and expr.
390if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
391  eval 'as_fn_arith ()
392  {
393    as_val=$(( $* ))
394  }'
395else
396  as_fn_arith ()
397  {
398    as_val=`expr "$@" || test $? -eq 1`
399  }
400fi # as_fn_arith
401
402
403# as_fn_error STATUS ERROR [LINENO LOG_FD]
404# ----------------------------------------
405# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
406# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
407# script with STATUS, using 1 if that was 0.
408as_fn_error ()
409{
410  as_status=$1; test $as_status -eq 0 && as_status=1
411  if test "$4"; then
412    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
413    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
414  fi
415  $as_echo "$as_me: error: $2" >&2
416  as_fn_exit $as_status
417} # as_fn_error
418
419if expr a : '\(a\)' >/dev/null 2>&1 &&
420   test "X`expr 00001 : '.*\(...\)'`" = X001; then
421  as_expr=expr
422else
423  as_expr=false
424fi
425
426if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
427  as_basename=basename
428else
429  as_basename=false
430fi
431
432if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
433  as_dirname=dirname
434else
435  as_dirname=false
436fi
437
438as_me=`$as_basename -- "$0" ||
439$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
440	 X"$0" : 'X\(//\)$' \| \
441	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
442$as_echo X/"$0" |
443    sed '/^.*\/\([^/][^/]*\)\/*$/{
444	    s//\1/
445	    q
446	  }
447	  /^X\/\(\/\/\)$/{
448	    s//\1/
449	    q
450	  }
451	  /^X\/\(\/\).*/{
452	    s//\1/
453	    q
454	  }
455	  s/.*/./; q'`
456
457# Avoid depending upon Character Ranges.
458as_cr_letters='abcdefghijklmnopqrstuvwxyz'
459as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
460as_cr_Letters=$as_cr_letters$as_cr_LETTERS
461as_cr_digits='0123456789'
462as_cr_alnum=$as_cr_Letters$as_cr_digits
463
464
465  as_lineno_1=$LINENO as_lineno_1a=$LINENO
466  as_lineno_2=$LINENO as_lineno_2a=$LINENO
467  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
468  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
469  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
470  sed -n '
471    p
472    /[$]LINENO/=
473  ' <$as_myself |
474    sed '
475      s/[$]LINENO.*/&-/
476      t lineno
477      b
478      :lineno
479      N
480      :loop
481      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
482      t loop
483      s/-\n.*//
484    ' >$as_me.lineno &&
485  chmod +x "$as_me.lineno" ||
486    { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
487
488  # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
489  # already done that, so ensure we don't try to do so again and fall
490  # in an infinite loop.  This has already happened in practice.
491  _as_can_reexec=no; export _as_can_reexec
492  # Don't try to exec as it changes $[0], causing all sort of problems
493  # (the dirname of $[0] is not the place where we might find the
494  # original and so on.  Autoconf is especially sensitive to this).
495  . "./$as_me.lineno"
496  # Exit status is that of the last command.
497  exit
498}
499
500ECHO_C= ECHO_N= ECHO_T=
501case `echo -n x` in #(((((
502-n*)
503  case `echo 'xy\c'` in
504  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
505  xy)  ECHO_C='\c';;
506  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
507       ECHO_T='	';;
508  esac;;
509*)
510  ECHO_N='-n';;
511esac
512
513rm -f conf$$ conf$$.exe conf$$.file
514if test -d conf$$.dir; then
515  rm -f conf$$.dir/conf$$.file
516else
517  rm -f conf$$.dir
518  mkdir conf$$.dir 2>/dev/null
519fi
520if (echo >conf$$.file) 2>/dev/null; then
521  if ln -s conf$$.file conf$$ 2>/dev/null; then
522    as_ln_s='ln -s'
523    # ... but there are two gotchas:
524    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
525    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
526    # In both cases, we have to default to `cp -pR'.
527    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
528      as_ln_s='cp -pR'
529  elif ln conf$$.file conf$$ 2>/dev/null; then
530    as_ln_s=ln
531  else
532    as_ln_s='cp -pR'
533  fi
534else
535  as_ln_s='cp -pR'
536fi
537rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
538rmdir conf$$.dir 2>/dev/null
539
540if mkdir -p . 2>/dev/null; then
541  as_mkdir_p='mkdir -p "$as_dir"'
542else
543  test -d ./-p && rmdir ./-p
544  as_mkdir_p=false
545fi
546
547as_test_x='test -x'
548as_executable_p=as_fn_executable_p
549
550# Sed expression to map a string onto a valid CPP name.
551as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
552
553# Sed expression to map a string onto a valid variable name.
554as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
555
556
557test -n "$DJDIR" || exec 7<&0 </dev/null
558exec 6>&1
559
560# Name of the host.
561# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
562# so uname gets run too.
563ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
564
565#
566# Initializations.
567#
568ac_default_prefix=/usr/local
569ac_clean_files=
570ac_config_libobj_dir=.
571LIBOBJS=
572cross_compiling=no
573subdirs=
574MFLAGS=
575MAKEFLAGS=
576
577# Identity of this package.
578PACKAGE_NAME='maxima'
579PACKAGE_TARNAME='maxima'
580PACKAGE_VERSION='5.43.2'
581PACKAGE_STRING='maxima 5.43.2'
582PACKAGE_BUGREPORT=''
583PACKAGE_URL=''
584
585ac_unique_file="src/macsys.lisp"
586ac_subst_vars='SBCL_EXTRA_ARGS
587LTLIBOBJS
588LIBOBJS
589pkgpyexecdir
590pyexecdir
591pkgpythondir
592pythondir
593PYTHON_PLATFORM
594PYTHON_EXEC_PREFIX
595PYTHON_PREFIX
596PYTHON_VERSION
597PYTHON
598SED
599CAT
600EGREP
601GREP
602DISTCLEAN_EXTRA_SRC_FILES
603lisp_only_build
604EMACSDIR
605default_sharedirs
606LDFLAGS
607default_layout_autotools
608expanded_infodir
609expanded_datadir
610expanded_libexecdir
611expanded_libdir
612expanded_exec_prefix
613expanded_top_srcdir
614top_builddir
615abs_top_srcdir
616abs_top_builddir
617top_srcdir
618POSIX_SHELL
619WISH
620JRE
621ABCL_JAR
622lisps_enabled
623HHC
624DEFAULTLISP
625CCL64_NAME
626ECL_NAME
627OPENMCL_NAME
628ACL_NAME
629GCL_NAME
630SBCL_NAME
631SCL_RUNTIME_PATH
632SCL_RUNTIME
633SCL_NAME
634CMUCL_EXEC
635CMUCL_RUNTIME_PATH
636CMUCL_RUNTIME
637CMUCL_NAME
638CLISP_RUNTIME_PATH
639CLISP_RUNTIME
640CLISP_NAME
641GCL_ALT_LINK_FALSE
642GCL_ALT_LINK_TRUE
643CCL64_EXEC_FALSE
644CCL64_EXEC_TRUE
645CCL64_FALSE
646CCL64_TRUE
647ECL_FALSE
648ECL_TRUE
649OPENMCL_EXEC_FALSE
650OPENMCL_EXEC_TRUE
651OPENMCL_FALSE
652OPENMCL_TRUE
653ACL_FALSE
654ACL_TRUE
655SBCL_EXEC_FALSE
656SBCL_EXEC_TRUE
657SBCL_FALSE
658SBCL_TRUE
659SCL_FALSE
660SCL_TRUE
661CMUCL_EXEC_FALSE
662CMUCL_EXEC_TRUE
663CMUCL_FALSE
664CMUCL_TRUE
665GCL_FALSE
666GCL_TRUE
667CLISP_EXEC_FALSE
668CLISP_EXEC_TRUE
669CLISP_FALSE
670CLISP_TRUE
671ABCL_FALSE
672ABCL_TRUE
673ccl64_found
674GCC331_FALSE
675GCC331_TRUE
676IMGKIT
677SDXKIT
678TCLKIT_RUNTIME
679TCLKITSH
680GCCVER
681mathjax_enable
682mathjax_script
683MATHJAX_FALSE
684MATHJAX_TRUE
685win64_installer
686WIN64_INSTALLER_FALSE
687WIN64_INSTALLER_TRUE
688WINKILL_EXE_FALSE
689WINKILL_EXE_TRUE
690XMAXIMA_EXE_FALSE
691XMAXIMA_EXE_TRUE
692QUIET_BUILD_FALSE
693QUIET_BUILD_TRUE
694hhc_found
695CHM_FALSE
696CHM_TRUE
697USE_RECODE_FALSE
698USE_RECODE_TRUE
699recode_found
700iconv_found
701LANG_PT_BR_UTF8_FALSE
702LANG_PT_BR_UTF8_TRUE
703LANG_PT_BR_FALSE
704LANG_PT_BR_TRUE
705lang_pt_br
706LANG_PT_UTF8_FALSE
707LANG_PT_UTF8_TRUE
708LANG_PT_FALSE
709LANG_PT_TRUE
710lang_pt
711LANG_ES_UTF8_FALSE
712LANG_ES_UTF8_TRUE
713LANG_ES_FALSE
714LANG_ES_TRUE
715lang_es
716LANG_DE_UTF8_FALSE
717LANG_DE_UTF8_TRUE
718LANG_DE_FALSE
719LANG_DE_TRUE
720ENABLE_GETTEXT_FALSE
721ENABLE_GETTEXT_TRUE
722ecl_found
723openmcl_found
724gcl_found
725acl_found
726sbcl_found
727scl_found
728cmucl_found
729manual_version
730git_found
731clisp_found
732am__EXEEXT_FALSE
733am__EXEEXT_TRUE
734WIN64_FALSE
735WIN64_TRUE
736WIN32_FALSE
737WIN32_TRUE
738win64
739win32
740EXEEXT
741host_os
742host_vendor
743host_cpu
744host
745build_os
746build_vendor
747build_cpu
748build
749lispdir
750EMACSLOADPATH
751EMACS
752AM_BACKSLASH
753AM_DEFAULT_VERBOSITY
754AM_DEFAULT_V
755AM_V
756am__untar
757am__tar
758AMTAR
759am__leading_dot
760SET_MAKE
761AWK
762mkdir_p
763MKDIR_P
764INSTALL_STRIP_PROGRAM
765STRIP
766install_sh
767MAKEINFO
768AUTOHEADER
769AUTOMAKE
770AUTOCONF
771ACLOCAL
772VERSION
773PACKAGE
774CYGPATH_W
775am__isrc
776INSTALL_DATA
777INSTALL_SCRIPT
778INSTALL_PROGRAM
779target_alias
780host_alias
781build_alias
782LIBS
783ECHO_T
784ECHO_N
785ECHO_C
786DEFS
787mandir
788localedir
789libdir
790psdir
791pdfdir
792dvidir
793htmldir
794infodir
795docdir
796oldincludedir
797includedir
798localstatedir
799sharedstatedir
800sysconfdir
801datadir
802datarootdir
803libexecdir
804sbindir
805bindir
806program_transform_name
807prefix
808exec_prefix
809PACKAGE_URL
810PACKAGE_BUGREPORT
811PACKAGE_STRING
812PACKAGE_VERSION
813PACKAGE_TARNAME
814PACKAGE_NAME
815PATH_SEPARATOR
816SHELL'
817ac_subst_files=''
818ac_user_opts='
819enable_option_checking
820enable_silent_rules
821with_lispdir
822enable_abcl
823with_abcl_jar
824with_jre
825enable_clisp
826with_clisp
827with_clisp_runtime
828enable_clisp_exec
829enable_cmucl
830with_cmucl
831with_cmucl_runtime
832enable_cmucl_exec
833enable_scl
834with_scl
835with_scl_runtime
836enable_sbcl
837with_sbcl
838enable_sbcl_exec
839enable_acl
840with_acl
841enable_gcl
842with_gcl
843enable_openmcl
844with_openmcl
845enable_openmcl_exec
846enable_ccl
847with_ccl
848enable_ccl_exec
849enable_ccl64
850with_ccl64
851enable_ccl64_exec
852enable_ecl
853with_ecl
854enable_gettext
855enable_lang_de
856enable_lang_de_utf8
857enable_lang_es
858enable_lang_es_utf8
859enable_lang_pt
860enable_lang_pt_utf8
861enable_lang_pt_BR
862enable_lang_pt_BR_utf8
863enable_recode
864enable_chm
865with_hhc
866enable_quiet_build
867enable_xmaxima_exe
868enable_winkill_exe
869enable_win64_installer
870enable_mathjax
871enable_gcl_alt_link
872with_default_lisp
873with_posix_shell
874with_wish
875with_emacs_prefix
876'
877      ac_precious_vars='build_alias
878host_alias
879target_alias
880EMACS
881EMACSLOADPATH
882PYTHON'
883
884
885# Initialize some variables set by options.
886ac_init_help=
887ac_init_version=false
888ac_unrecognized_opts=
889ac_unrecognized_sep=
890# The variables have the same names as the options, with
891# dashes changed to underlines.
892cache_file=/dev/null
893exec_prefix=NONE
894no_create=
895no_recursion=
896prefix=NONE
897program_prefix=NONE
898program_suffix=NONE
899program_transform_name=s,x,x,
900silent=
901site=
902srcdir=
903verbose=
904x_includes=NONE
905x_libraries=NONE
906
907# Installation directory options.
908# These are left unexpanded so users can "make install exec_prefix=/foo"
909# and all the variables that are supposed to be based on exec_prefix
910# by default will actually change.
911# Use braces instead of parens because sh, perl, etc. also accept them.
912# (The list follows the same order as the GNU Coding Standards.)
913bindir='${exec_prefix}/bin'
914sbindir='${exec_prefix}/sbin'
915libexecdir='${exec_prefix}/libexec'
916datarootdir='${prefix}/share'
917datadir='${datarootdir}'
918sysconfdir='${prefix}/etc'
919sharedstatedir='${prefix}/com'
920localstatedir='${prefix}/var'
921includedir='${prefix}/include'
922oldincludedir='/usr/include'
923docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
924infodir='${datarootdir}/info'
925htmldir='${docdir}'
926dvidir='${docdir}'
927pdfdir='${docdir}'
928psdir='${docdir}'
929libdir='${exec_prefix}/lib'
930localedir='${datarootdir}/locale'
931mandir='${datarootdir}/man'
932
933ac_prev=
934ac_dashdash=
935for ac_option
936do
937  # If the previous option needs an argument, assign it.
938  if test -n "$ac_prev"; then
939    eval $ac_prev=\$ac_option
940    ac_prev=
941    continue
942  fi
943
944  case $ac_option in
945  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
946  *=)   ac_optarg= ;;
947  *)    ac_optarg=yes ;;
948  esac
949
950  # Accept the important Cygnus configure options, so we can diagnose typos.
951
952  case $ac_dashdash$ac_option in
953  --)
954    ac_dashdash=yes ;;
955
956  -bindir | --bindir | --bindi | --bind | --bin | --bi)
957    ac_prev=bindir ;;
958  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
959    bindir=$ac_optarg ;;
960
961  -build | --build | --buil | --bui | --bu)
962    ac_prev=build_alias ;;
963  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
964    build_alias=$ac_optarg ;;
965
966  -cache-file | --cache-file | --cache-fil | --cache-fi \
967  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
968    ac_prev=cache_file ;;
969  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
970  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
971    cache_file=$ac_optarg ;;
972
973  --config-cache | -C)
974    cache_file=config.cache ;;
975
976  -datadir | --datadir | --datadi | --datad)
977    ac_prev=datadir ;;
978  -datadir=* | --datadir=* | --datadi=* | --datad=*)
979    datadir=$ac_optarg ;;
980
981  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
982  | --dataroo | --dataro | --datar)
983    ac_prev=datarootdir ;;
984  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
985  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
986    datarootdir=$ac_optarg ;;
987
988  -disable-* | --disable-*)
989    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
990    # Reject names that are not valid shell variable names.
991    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
992      as_fn_error $? "invalid feature name: $ac_useropt"
993    ac_useropt_orig=$ac_useropt
994    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
995    case $ac_user_opts in
996      *"
997"enable_$ac_useropt"
998"*) ;;
999      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
1000	 ac_unrecognized_sep=', ';;
1001    esac
1002    eval enable_$ac_useropt=no ;;
1003
1004  -docdir | --docdir | --docdi | --doc | --do)
1005    ac_prev=docdir ;;
1006  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
1007    docdir=$ac_optarg ;;
1008
1009  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
1010    ac_prev=dvidir ;;
1011  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
1012    dvidir=$ac_optarg ;;
1013
1014  -enable-* | --enable-*)
1015    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
1016    # Reject names that are not valid shell variable names.
1017    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1018      as_fn_error $? "invalid feature name: $ac_useropt"
1019    ac_useropt_orig=$ac_useropt
1020    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1021    case $ac_user_opts in
1022      *"
1023"enable_$ac_useropt"
1024"*) ;;
1025      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
1026	 ac_unrecognized_sep=', ';;
1027    esac
1028    eval enable_$ac_useropt=\$ac_optarg ;;
1029
1030  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
1031  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
1032  | --exec | --exe | --ex)
1033    ac_prev=exec_prefix ;;
1034  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
1035  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
1036  | --exec=* | --exe=* | --ex=*)
1037    exec_prefix=$ac_optarg ;;
1038
1039  -gas | --gas | --ga | --g)
1040    # Obsolete; use --with-gas.
1041    with_gas=yes ;;
1042
1043  -help | --help | --hel | --he | -h)
1044    ac_init_help=long ;;
1045  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
1046    ac_init_help=recursive ;;
1047  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
1048    ac_init_help=short ;;
1049
1050  -host | --host | --hos | --ho)
1051    ac_prev=host_alias ;;
1052  -host=* | --host=* | --hos=* | --ho=*)
1053    host_alias=$ac_optarg ;;
1054
1055  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
1056    ac_prev=htmldir ;;
1057  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
1058  | --ht=*)
1059    htmldir=$ac_optarg ;;
1060
1061  -includedir | --includedir | --includedi | --included | --include \
1062  | --includ | --inclu | --incl | --inc)
1063    ac_prev=includedir ;;
1064  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
1065  | --includ=* | --inclu=* | --incl=* | --inc=*)
1066    includedir=$ac_optarg ;;
1067
1068  -infodir | --infodir | --infodi | --infod | --info | --inf)
1069    ac_prev=infodir ;;
1070  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
1071    infodir=$ac_optarg ;;
1072
1073  -libdir | --libdir | --libdi | --libd)
1074    ac_prev=libdir ;;
1075  -libdir=* | --libdir=* | --libdi=* | --libd=*)
1076    libdir=$ac_optarg ;;
1077
1078  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
1079  | --libexe | --libex | --libe)
1080    ac_prev=libexecdir ;;
1081  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
1082  | --libexe=* | --libex=* | --libe=*)
1083    libexecdir=$ac_optarg ;;
1084
1085  -localedir | --localedir | --localedi | --localed | --locale)
1086    ac_prev=localedir ;;
1087  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
1088    localedir=$ac_optarg ;;
1089
1090  -localstatedir | --localstatedir | --localstatedi | --localstated \
1091  | --localstate | --localstat | --localsta | --localst | --locals)
1092    ac_prev=localstatedir ;;
1093  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
1094  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
1095    localstatedir=$ac_optarg ;;
1096
1097  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
1098    ac_prev=mandir ;;
1099  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
1100    mandir=$ac_optarg ;;
1101
1102  -nfp | --nfp | --nf)
1103    # Obsolete; use --without-fp.
1104    with_fp=no ;;
1105
1106  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
1107  | --no-cr | --no-c | -n)
1108    no_create=yes ;;
1109
1110  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
1111  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
1112    no_recursion=yes ;;
1113
1114  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
1115  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
1116  | --oldin | --oldi | --old | --ol | --o)
1117    ac_prev=oldincludedir ;;
1118  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
1119  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
1120  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
1121    oldincludedir=$ac_optarg ;;
1122
1123  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
1124    ac_prev=prefix ;;
1125  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
1126    prefix=$ac_optarg ;;
1127
1128  -program-prefix | --program-prefix | --program-prefi | --program-pref \
1129  | --program-pre | --program-pr | --program-p)
1130    ac_prev=program_prefix ;;
1131  -program-prefix=* | --program-prefix=* | --program-prefi=* \
1132  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
1133    program_prefix=$ac_optarg ;;
1134
1135  -program-suffix | --program-suffix | --program-suffi | --program-suff \
1136  | --program-suf | --program-su | --program-s)
1137    ac_prev=program_suffix ;;
1138  -program-suffix=* | --program-suffix=* | --program-suffi=* \
1139  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
1140    program_suffix=$ac_optarg ;;
1141
1142  -program-transform-name | --program-transform-name \
1143  | --program-transform-nam | --program-transform-na \
1144  | --program-transform-n | --program-transform- \
1145  | --program-transform | --program-transfor \
1146  | --program-transfo | --program-transf \
1147  | --program-trans | --program-tran \
1148  | --progr-tra | --program-tr | --program-t)
1149    ac_prev=program_transform_name ;;
1150  -program-transform-name=* | --program-transform-name=* \
1151  | --program-transform-nam=* | --program-transform-na=* \
1152  | --program-transform-n=* | --program-transform-=* \
1153  | --program-transform=* | --program-transfor=* \
1154  | --program-transfo=* | --program-transf=* \
1155  | --program-trans=* | --program-tran=* \
1156  | --progr-tra=* | --program-tr=* | --program-t=*)
1157    program_transform_name=$ac_optarg ;;
1158
1159  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
1160    ac_prev=pdfdir ;;
1161  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
1162    pdfdir=$ac_optarg ;;
1163
1164  -psdir | --psdir | --psdi | --psd | --ps)
1165    ac_prev=psdir ;;
1166  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
1167    psdir=$ac_optarg ;;
1168
1169  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1170  | -silent | --silent | --silen | --sile | --sil)
1171    silent=yes ;;
1172
1173  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
1174    ac_prev=sbindir ;;
1175  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
1176  | --sbi=* | --sb=*)
1177    sbindir=$ac_optarg ;;
1178
1179  -sharedstatedir | --sharedstatedir | --sharedstatedi \
1180  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
1181  | --sharedst | --shareds | --shared | --share | --shar \
1182  | --sha | --sh)
1183    ac_prev=sharedstatedir ;;
1184  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
1185  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
1186  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
1187  | --sha=* | --sh=*)
1188    sharedstatedir=$ac_optarg ;;
1189
1190  -site | --site | --sit)
1191    ac_prev=site ;;
1192  -site=* | --site=* | --sit=*)
1193    site=$ac_optarg ;;
1194
1195  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
1196    ac_prev=srcdir ;;
1197  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
1198    srcdir=$ac_optarg ;;
1199
1200  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
1201  | --syscon | --sysco | --sysc | --sys | --sy)
1202    ac_prev=sysconfdir ;;
1203  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
1204  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
1205    sysconfdir=$ac_optarg ;;
1206
1207  -target | --target | --targe | --targ | --tar | --ta | --t)
1208    ac_prev=target_alias ;;
1209  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
1210    target_alias=$ac_optarg ;;
1211
1212  -v | -verbose | --verbose | --verbos | --verbo | --verb)
1213    verbose=yes ;;
1214
1215  -version | --version | --versio | --versi | --vers | -V)
1216    ac_init_version=: ;;
1217
1218  -with-* | --with-*)
1219    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1220    # Reject names that are not valid shell variable names.
1221    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1222      as_fn_error $? "invalid package name: $ac_useropt"
1223    ac_useropt_orig=$ac_useropt
1224    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1225    case $ac_user_opts in
1226      *"
1227"with_$ac_useropt"
1228"*) ;;
1229      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
1230	 ac_unrecognized_sep=', ';;
1231    esac
1232    eval with_$ac_useropt=\$ac_optarg ;;
1233
1234  -without-* | --without-*)
1235    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1236    # Reject names that are not valid shell variable names.
1237    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1238      as_fn_error $? "invalid package name: $ac_useropt"
1239    ac_useropt_orig=$ac_useropt
1240    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1241    case $ac_user_opts in
1242      *"
1243"with_$ac_useropt"
1244"*) ;;
1245      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
1246	 ac_unrecognized_sep=', ';;
1247    esac
1248    eval with_$ac_useropt=no ;;
1249
1250  --x)
1251    # Obsolete; use --with-x.
1252    with_x=yes ;;
1253
1254  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
1255  | --x-incl | --x-inc | --x-in | --x-i)
1256    ac_prev=x_includes ;;
1257  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
1258  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
1259    x_includes=$ac_optarg ;;
1260
1261  -x-libraries | --x-libraries | --x-librarie | --x-librari \
1262  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
1263    ac_prev=x_libraries ;;
1264  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
1265  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
1266    x_libraries=$ac_optarg ;;
1267
1268  -*) as_fn_error $? "unrecognized option: \`$ac_option'
1269Try \`$0 --help' for more information"
1270    ;;
1271
1272  *=*)
1273    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
1274    # Reject names that are not valid shell variable names.
1275    case $ac_envvar in #(
1276      '' | [0-9]* | *[!_$as_cr_alnum]* )
1277      as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
1278    esac
1279    eval $ac_envvar=\$ac_optarg
1280    export $ac_envvar ;;
1281
1282  *)
1283    # FIXME: should be removed in autoconf 3.0.
1284    $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1285    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1286      $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
1287    : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
1288    ;;
1289
1290  esac
1291done
1292
1293if test -n "$ac_prev"; then
1294  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
1295  as_fn_error $? "missing argument to $ac_option"
1296fi
1297
1298if test -n "$ac_unrecognized_opts"; then
1299  case $enable_option_checking in
1300    no) ;;
1301    fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
1302    *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
1303  esac
1304fi
1305
1306# Check all directory arguments for consistency.
1307for ac_var in	exec_prefix prefix bindir sbindir libexecdir datarootdir \
1308		datadir sysconfdir sharedstatedir localstatedir includedir \
1309		oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
1310		libdir localedir mandir
1311do
1312  eval ac_val=\$$ac_var
1313  # Remove trailing slashes.
1314  case $ac_val in
1315    */ )
1316      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
1317      eval $ac_var=\$ac_val;;
1318  esac
1319  # Be sure to have absolute directory names.
1320  case $ac_val in
1321    [\\/$]* | ?:[\\/]* )  continue;;
1322    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
1323  esac
1324  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
1325done
1326
1327# There might be people who depend on the old broken behavior: `$host'
1328# used to hold the argument of --host etc.
1329# FIXME: To remove some day.
1330build=$build_alias
1331host=$host_alias
1332target=$target_alias
1333
1334# FIXME: To remove some day.
1335if test "x$host_alias" != x; then
1336  if test "x$build_alias" = x; then
1337    cross_compiling=maybe
1338  elif test "x$build_alias" != "x$host_alias"; then
1339    cross_compiling=yes
1340  fi
1341fi
1342
1343ac_tool_prefix=
1344test -n "$host_alias" && ac_tool_prefix=$host_alias-
1345
1346test "$silent" = yes && exec 6>/dev/null
1347
1348
1349ac_pwd=`pwd` && test -n "$ac_pwd" &&
1350ac_ls_di=`ls -di .` &&
1351ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
1352  as_fn_error $? "working directory cannot be determined"
1353test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
1354  as_fn_error $? "pwd does not report name of working directory"
1355
1356
1357# Find the source files, if location was not specified.
1358if test -z "$srcdir"; then
1359  ac_srcdir_defaulted=yes
1360  # Try the directory containing this script, then the parent directory.
1361  ac_confdir=`$as_dirname -- "$as_myself" ||
1362$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1363	 X"$as_myself" : 'X\(//\)[^/]' \| \
1364	 X"$as_myself" : 'X\(//\)$' \| \
1365	 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
1366$as_echo X"$as_myself" |
1367    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1368	    s//\1/
1369	    q
1370	  }
1371	  /^X\(\/\/\)[^/].*/{
1372	    s//\1/
1373	    q
1374	  }
1375	  /^X\(\/\/\)$/{
1376	    s//\1/
1377	    q
1378	  }
1379	  /^X\(\/\).*/{
1380	    s//\1/
1381	    q
1382	  }
1383	  s/.*/./; q'`
1384  srcdir=$ac_confdir
1385  if test ! -r "$srcdir/$ac_unique_file"; then
1386    srcdir=..
1387  fi
1388else
1389  ac_srcdir_defaulted=no
1390fi
1391if test ! -r "$srcdir/$ac_unique_file"; then
1392  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
1393  as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
1394fi
1395ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
1396ac_abs_confdir=`(
1397	cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
1398	pwd)`
1399# When building in place, set srcdir=.
1400if test "$ac_abs_confdir" = "$ac_pwd"; then
1401  srcdir=.
1402fi
1403# Remove unnecessary trailing slashes from srcdir.
1404# Double slashes in file names in object file debugging info
1405# mess up M-x gdb in Emacs.
1406case $srcdir in
1407*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
1408esac
1409for ac_var in $ac_precious_vars; do
1410  eval ac_env_${ac_var}_set=\${${ac_var}+set}
1411  eval ac_env_${ac_var}_value=\$${ac_var}
1412  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
1413  eval ac_cv_env_${ac_var}_value=\$${ac_var}
1414done
1415
1416#
1417# Report the --help message.
1418#
1419if test "$ac_init_help" = "long"; then
1420  # Omit some internal or obsolete options to make the list less imposing.
1421  # This message is too long to be a string in the A/UX 3.1 sh.
1422  cat <<_ACEOF
1423\`configure' configures maxima 5.43.2 to adapt to many kinds of systems.
1424
1425Usage: $0 [OPTION]... [VAR=VALUE]...
1426
1427To assign environment variables (e.g., CC, CFLAGS...), specify them as
1428VAR=VALUE.  See below for descriptions of some of the useful variables.
1429
1430Defaults for the options are specified in brackets.
1431
1432Configuration:
1433  -h, --help              display this help and exit
1434      --help=short        display options specific to this package
1435      --help=recursive    display the short help of all the included packages
1436  -V, --version           display version information and exit
1437  -q, --quiet, --silent   do not print \`checking ...' messages
1438      --cache-file=FILE   cache test results in FILE [disabled]
1439  -C, --config-cache      alias for \`--cache-file=config.cache'
1440  -n, --no-create         do not create output files
1441      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
1442
1443Installation directories:
1444  --prefix=PREFIX         install architecture-independent files in PREFIX
1445                          [$ac_default_prefix]
1446  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
1447                          [PREFIX]
1448
1449By default, \`make install' will install all the files in
1450\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
1451an installation prefix other than \`$ac_default_prefix' using \`--prefix',
1452for instance \`--prefix=\$HOME'.
1453
1454For better control, use the options below.
1455
1456Fine tuning of the installation directories:
1457  --bindir=DIR            user executables [EPREFIX/bin]
1458  --sbindir=DIR           system admin executables [EPREFIX/sbin]
1459  --libexecdir=DIR        program executables [EPREFIX/libexec]
1460  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
1461  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
1462  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
1463  --libdir=DIR            object code libraries [EPREFIX/lib]
1464  --includedir=DIR        C header files [PREFIX/include]
1465  --oldincludedir=DIR     C header files for non-gcc [/usr/include]
1466  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
1467  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
1468  --infodir=DIR           info documentation [DATAROOTDIR/info]
1469  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
1470  --mandir=DIR            man documentation [DATAROOTDIR/man]
1471  --docdir=DIR            documentation root [DATAROOTDIR/doc/maxima]
1472  --htmldir=DIR           html documentation [DOCDIR]
1473  --dvidir=DIR            dvi documentation [DOCDIR]
1474  --pdfdir=DIR            pdf documentation [DOCDIR]
1475  --psdir=DIR             ps documentation [DOCDIR]
1476_ACEOF
1477
1478  cat <<\_ACEOF
1479
1480Program names:
1481  --program-prefix=PREFIX            prepend PREFIX to installed program names
1482  --program-suffix=SUFFIX            append SUFFIX to installed program names
1483  --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
1484
1485System types:
1486  --build=BUILD     configure for building on BUILD [guessed]
1487  --host=HOST       cross-compile to build programs to run on HOST [BUILD]
1488_ACEOF
1489fi
1490
1491if test -n "$ac_init_help"; then
1492  case $ac_init_help in
1493     short | recursive ) echo "Configuration of maxima 5.43.2:";;
1494   esac
1495  cat <<\_ACEOF
1496
1497Optional Features:
1498  --disable-option-checking  ignore unrecognized --enable/--with options
1499  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
1500  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
1501  --enable-silent-rules   less verbose build output (undo: "make V=1")
1502  --disable-silent-rules  verbose build output (undo: "make V=0")
1503  --enable-abcl                Use abcl, requires --with-abcl-jar
1504  --enable-clisp               Use clisp
1505  --enable-clisp-exec          Create a maxima executable image using CLISP.
1506                                No check is made if the version of
1507                                CLISP supports executable images
1508  --enable-cmucl               Use CMUCL
1509  --enable-cmucl-exec          Create a maxima executable image using CMUCL.
1510                                No check is made if the version of
1511                                CMUCL supports executable images
1512  --enable-scl                 Use SCL
1513  --enable-sbcl                Use SBCL
1514  --enable-sbcl-exec           Create a maxima executable image using SBCL.
1515                                No check is made if the version of
1516                                SBCL supports executable images
1517  --enable-acl                 Use ACL
1518  --enable-gcl                 Use GCL
1519  --enable-openmcl             Use OpenMCL
1520  --enable-openmcl-exec        Create a maxima executable image using OPENMCL.
1521                                No check is made if the version of
1522                                OPENMCL supports executable images
1523  --enable-ccl                 Use CCL (Clozure Common Lisp)
1524  --enable-ccl-exec            Create a maxima executable image using CCL.
1525                                No check is made if the version of
1526                                CCL supports executable images
1527  --enable-ccl64               Use CCL (Clozure Common Lisp), 64-bit
1528  --enable-ccl64-exec          Create a maxima executable image using CCL.
1529                                No check is made if the version of
1530                                CCL supports executable images
1531  --enable-ecl                 Use ECL
1532  --enable-gettext             Locale support
1533  --enable-lang-de             German language support
1534  --enable-lang-de-utf8        German language support (UTF-8)
1535  --enable-lang-es             Spanish language support
1536  --enable-lang-es-utf8        Spanish language support (UTF-8)
1537  --enable-lang-pt             Portuguese language support
1538  --enable-lang-pt-utf8        Portuguese language support (UTF-8)
1539  --enable-lang-pt_BR          Brazilian Portuguese language support
1540  --enable-lang-pt_BR-utf8     Brazilian Portuguese language support (UTF-8)
1541  --enable-recode              Use recode for charset conversion
1542  --enable-chm                 Build Windows CHM help files
1543  --enable-quiet-build         Make the build quieter
1544  --enable-xmaxima-exe         Build Windows xmaxima.exe for installer
1545  --enable-winkill             Build Windows winkill.exe and winkill_lib.dll for installer
1546  --enable-win64-installer     Build a 64bit installer on Windows
1547  --enable-mathjax             Enable MathJax support for html manual
1548  --enable-gcl-alt-link        Use GCL's alternate linking mechanism
1549
1550Optional Packages:
1551  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
1552  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
1553  --with-lispdir          override the default lisp directory
1554  --with-abcl-jar=<jarfile>    Use <jarfile> as abcl install (default ./abcl.jar)
1555  --with-jre=<jre>             When compiling with abcl: use <jre> as Java interpreter
1556  --with-clisp=<prog>          Use clisp executable <prog> (default clisp)
1557  --with-clisp-runtime=<path>  Use clisp runtime <path> (default
1558	                          *lib-directory*/base/lisp.run on unix,
1559	   		          *lib-directory*\\lisp.exe on windows)
1560  --with-cmucl=<prog>          Use CMUCL executable <prog> (default lisp)
1561  --with-cmucl-runtime=<path>  Use CMUCL runtime <path> (default
1562	                          *cmucl-lib*/../bin/lisp)
1563  --with-scl=<prog>            Use SCL executable <prog> (default scl)
1564  --with-scl-runtime=<path>    Use SCL runtime <path> (default
1565	                          file://library/../bin/lisp)
1566  --with-sbcl=<prog>           Use SBCL executable <prog> (default sbcl)
1567  --with-acl=<prog>            Use ACL executable <prog> (default lisp)
1568  --with-gcl=<prog>            Use GCL executable <prog> (default gcl)
1569  --with-openmcl=<prog>        Use OpenMCL executable <prog> (default openmcl)
1570  --with-ccl=<prog>            Use OpenMCL executable <prog> (default ccl)
1571  --with-ccl64=<prog>          Use ccl64 executable <prog> (default dx86cl64)
1572  --with-ecl=<prog>            Use ECL executable <prog> (default ecl)
1573  --with-hhc=<prog>            Use HTML Help Compiler executable <prog> (default hhc)
1574  --with-default-lisp=<lisp>   Set default lisp implementation to <lisp>
1575  --with-posix-shell=<path>    Use <shell> for maxima script (default /bin/sh)
1576  --with-wish=<prog>           Use <prog> for Tk wish shell (default wish)
1577  --emacs-prefix=<path>        Where to install the emacs modes to
1578
1579Some influential environment variables:
1580  EMACS       the Emacs editor command
1581  EMACSLOADPATH
1582              the Emacs library search path
1583  PYTHON      the Python interpreter
1584
1585Use these variables to override the choices made by `configure' or to help
1586it to find libraries and programs with nonstandard names/locations.
1587
1588Report bugs to the package provider.
1589_ACEOF
1590ac_status=$?
1591fi
1592
1593if test "$ac_init_help" = "recursive"; then
1594  # If there are subdirs, report their specific --help.
1595  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
1596    test -d "$ac_dir" ||
1597      { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
1598      continue
1599    ac_builddir=.
1600
1601case "$ac_dir" in
1602.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1603*)
1604  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1605  # A ".." for each directory in $ac_dir_suffix.
1606  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1607  case $ac_top_builddir_sub in
1608  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1609  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1610  esac ;;
1611esac
1612ac_abs_top_builddir=$ac_pwd
1613ac_abs_builddir=$ac_pwd$ac_dir_suffix
1614# for backward compatibility:
1615ac_top_builddir=$ac_top_build_prefix
1616
1617case $srcdir in
1618  .)  # We are building in place.
1619    ac_srcdir=.
1620    ac_top_srcdir=$ac_top_builddir_sub
1621    ac_abs_top_srcdir=$ac_pwd ;;
1622  [\\/]* | ?:[\\/]* )  # Absolute name.
1623    ac_srcdir=$srcdir$ac_dir_suffix;
1624    ac_top_srcdir=$srcdir
1625    ac_abs_top_srcdir=$srcdir ;;
1626  *) # Relative name.
1627    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1628    ac_top_srcdir=$ac_top_build_prefix$srcdir
1629    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1630esac
1631ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1632
1633    cd "$ac_dir" || { ac_status=$?; continue; }
1634    # Check for guested configure.
1635    if test -f "$ac_srcdir/configure.gnu"; then
1636      echo &&
1637      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
1638    elif test -f "$ac_srcdir/configure"; then
1639      echo &&
1640      $SHELL "$ac_srcdir/configure" --help=recursive
1641    else
1642      $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
1643    fi || ac_status=$?
1644    cd "$ac_pwd" || { ac_status=$?; break; }
1645  done
1646fi
1647
1648test -n "$ac_init_help" && exit $ac_status
1649if $ac_init_version; then
1650  cat <<\_ACEOF
1651maxima configure 5.43.2
1652generated by GNU Autoconf 2.69
1653
1654Copyright (C) 2012 Free Software Foundation, Inc.
1655This configure script is free software; the Free Software Foundation
1656gives unlimited permission to copy, distribute and modify it.
1657_ACEOF
1658  exit
1659fi
1660
1661## ------------------------ ##
1662## Autoconf initialization. ##
1663## ------------------------ ##
1664cat >config.log <<_ACEOF
1665This file contains any messages produced by compilers while
1666running configure, to aid debugging if configure makes a mistake.
1667
1668It was created by maxima $as_me 5.43.2, which was
1669generated by GNU Autoconf 2.69.  Invocation command line was
1670
1671  $ $0 $@
1672
1673_ACEOF
1674exec 5>>config.log
1675{
1676cat <<_ASUNAME
1677## --------- ##
1678## Platform. ##
1679## --------- ##
1680
1681hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
1682uname -m = `(uname -m) 2>/dev/null || echo unknown`
1683uname -r = `(uname -r) 2>/dev/null || echo unknown`
1684uname -s = `(uname -s) 2>/dev/null || echo unknown`
1685uname -v = `(uname -v) 2>/dev/null || echo unknown`
1686
1687/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
1688/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
1689
1690/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
1691/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
1692/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
1693/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
1694/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
1695/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
1696/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
1697
1698_ASUNAME
1699
1700as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1701for as_dir in $PATH
1702do
1703  IFS=$as_save_IFS
1704  test -z "$as_dir" && as_dir=.
1705    $as_echo "PATH: $as_dir"
1706  done
1707IFS=$as_save_IFS
1708
1709} >&5
1710
1711cat >&5 <<_ACEOF
1712
1713
1714## ----------- ##
1715## Core tests. ##
1716## ----------- ##
1717
1718_ACEOF
1719
1720
1721# Keep a trace of the command line.
1722# Strip out --no-create and --no-recursion so they do not pile up.
1723# Strip out --silent because we don't want to record it for future runs.
1724# Also quote any args containing shell meta-characters.
1725# Make two passes to allow for proper duplicate-argument suppression.
1726ac_configure_args=
1727ac_configure_args0=
1728ac_configure_args1=
1729ac_must_keep_next=false
1730for ac_pass in 1 2
1731do
1732  for ac_arg
1733  do
1734    case $ac_arg in
1735    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
1736    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1737    | -silent | --silent | --silen | --sile | --sil)
1738      continue ;;
1739    *\'*)
1740      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1741    esac
1742    case $ac_pass in
1743    1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
1744    2)
1745      as_fn_append ac_configure_args1 " '$ac_arg'"
1746      if test $ac_must_keep_next = true; then
1747	ac_must_keep_next=false # Got value, back to normal.
1748      else
1749	case $ac_arg in
1750	  *=* | --config-cache | -C | -disable-* | --disable-* \
1751	  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
1752	  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
1753	  | -with-* | --with-* | -without-* | --without-* | --x)
1754	    case "$ac_configure_args0 " in
1755	      "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
1756	    esac
1757	    ;;
1758	  -* ) ac_must_keep_next=true ;;
1759	esac
1760      fi
1761      as_fn_append ac_configure_args " '$ac_arg'"
1762      ;;
1763    esac
1764  done
1765done
1766{ ac_configure_args0=; unset ac_configure_args0;}
1767{ ac_configure_args1=; unset ac_configure_args1;}
1768
1769# When interrupted or exit'd, cleanup temporary files, and complete
1770# config.log.  We remove comments because anyway the quotes in there
1771# would cause problems or look ugly.
1772# WARNING: Use '\'' to represent an apostrophe within the trap.
1773# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
1774trap 'exit_status=$?
1775  # Save into config.log some information that might help in debugging.
1776  {
1777    echo
1778
1779    $as_echo "## ---------------- ##
1780## Cache variables. ##
1781## ---------------- ##"
1782    echo
1783    # The following way of writing the cache mishandles newlines in values,
1784(
1785  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
1786    eval ac_val=\$$ac_var
1787    case $ac_val in #(
1788    *${as_nl}*)
1789      case $ac_var in #(
1790      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
1791$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
1792      esac
1793      case $ac_var in #(
1794      _ | IFS | as_nl) ;; #(
1795      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
1796      *) { eval $ac_var=; unset $ac_var;} ;;
1797      esac ;;
1798    esac
1799  done
1800  (set) 2>&1 |
1801    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
1802    *${as_nl}ac_space=\ *)
1803      sed -n \
1804	"s/'\''/'\''\\\\'\'''\''/g;
1805	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
1806      ;; #(
1807    *)
1808      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
1809      ;;
1810    esac |
1811    sort
1812)
1813    echo
1814
1815    $as_echo "## ----------------- ##
1816## Output variables. ##
1817## ----------------- ##"
1818    echo
1819    for ac_var in $ac_subst_vars
1820    do
1821      eval ac_val=\$$ac_var
1822      case $ac_val in
1823      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1824      esac
1825      $as_echo "$ac_var='\''$ac_val'\''"
1826    done | sort
1827    echo
1828
1829    if test -n "$ac_subst_files"; then
1830      $as_echo "## ------------------- ##
1831## File substitutions. ##
1832## ------------------- ##"
1833      echo
1834      for ac_var in $ac_subst_files
1835      do
1836	eval ac_val=\$$ac_var
1837	case $ac_val in
1838	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1839	esac
1840	$as_echo "$ac_var='\''$ac_val'\''"
1841      done | sort
1842      echo
1843    fi
1844
1845    if test -s confdefs.h; then
1846      $as_echo "## ----------- ##
1847## confdefs.h. ##
1848## ----------- ##"
1849      echo
1850      cat confdefs.h
1851      echo
1852    fi
1853    test "$ac_signal" != 0 &&
1854      $as_echo "$as_me: caught signal $ac_signal"
1855    $as_echo "$as_me: exit $exit_status"
1856  } >&5
1857  rm -f core *_core core.conftest.* &&
1858    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
1859    exit $exit_status
1860' 0
1861for ac_signal in 1 2 13 15; do
1862  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
1863done
1864ac_signal=0
1865
1866# confdefs.h avoids OS command line length limits that DEFS can exceed.
1867rm -f -r conftest* confdefs.h
1868
1869$as_echo "/* confdefs.h */" > confdefs.h
1870
1871# Predefined preprocessor variables.
1872
1873cat >>confdefs.h <<_ACEOF
1874#define PACKAGE_NAME "$PACKAGE_NAME"
1875_ACEOF
1876
1877cat >>confdefs.h <<_ACEOF
1878#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
1879_ACEOF
1880
1881cat >>confdefs.h <<_ACEOF
1882#define PACKAGE_VERSION "$PACKAGE_VERSION"
1883_ACEOF
1884
1885cat >>confdefs.h <<_ACEOF
1886#define PACKAGE_STRING "$PACKAGE_STRING"
1887_ACEOF
1888
1889cat >>confdefs.h <<_ACEOF
1890#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
1891_ACEOF
1892
1893cat >>confdefs.h <<_ACEOF
1894#define PACKAGE_URL "$PACKAGE_URL"
1895_ACEOF
1896
1897
1898# Let the site file select an alternate cache file if it wants to.
1899# Prefer an explicitly selected file to automatically selected ones.
1900ac_site_file1=NONE
1901ac_site_file2=NONE
1902if test -n "$CONFIG_SITE"; then
1903  # We do not want a PATH search for config.site.
1904  case $CONFIG_SITE in #((
1905    -*)  ac_site_file1=./$CONFIG_SITE;;
1906    */*) ac_site_file1=$CONFIG_SITE;;
1907    *)   ac_site_file1=./$CONFIG_SITE;;
1908  esac
1909elif test "x$prefix" != xNONE; then
1910  ac_site_file1=$prefix/share/config.site
1911  ac_site_file2=$prefix/etc/config.site
1912else
1913  ac_site_file1=$ac_default_prefix/share/config.site
1914  ac_site_file2=$ac_default_prefix/etc/config.site
1915fi
1916for ac_site_file in "$ac_site_file1" "$ac_site_file2"
1917do
1918  test "x$ac_site_file" = xNONE && continue
1919  if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
1920    { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
1921$as_echo "$as_me: loading site script $ac_site_file" >&6;}
1922    sed 's/^/| /' "$ac_site_file" >&5
1923    . "$ac_site_file" \
1924      || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1925$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1926as_fn_error $? "failed to load site script $ac_site_file
1927See \`config.log' for more details" "$LINENO" 5; }
1928  fi
1929done
1930
1931if test -r "$cache_file"; then
1932  # Some versions of bash will fail to source /dev/null (special files
1933  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.
1934  if test /dev/null != "$cache_file" && test -f "$cache_file"; then
1935    { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
1936$as_echo "$as_me: loading cache $cache_file" >&6;}
1937    case $cache_file in
1938      [\\/]* | ?:[\\/]* ) . "$cache_file";;
1939      *)                      . "./$cache_file";;
1940    esac
1941  fi
1942else
1943  { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
1944$as_echo "$as_me: creating cache $cache_file" >&6;}
1945  >$cache_file
1946fi
1947
1948# Check that the precious variables saved in the cache have kept the same
1949# value.
1950ac_cache_corrupted=false
1951for ac_var in $ac_precious_vars; do
1952  eval ac_old_set=\$ac_cv_env_${ac_var}_set
1953  eval ac_new_set=\$ac_env_${ac_var}_set
1954  eval ac_old_val=\$ac_cv_env_${ac_var}_value
1955  eval ac_new_val=\$ac_env_${ac_var}_value
1956  case $ac_old_set,$ac_new_set in
1957    set,)
1958      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1959$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1960      ac_cache_corrupted=: ;;
1961    ,set)
1962      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
1963$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1964      ac_cache_corrupted=: ;;
1965    ,);;
1966    *)
1967      if test "x$ac_old_val" != "x$ac_new_val"; then
1968	# differences in whitespace do not lead to failure.
1969	ac_old_val_w=`echo x $ac_old_val`
1970	ac_new_val_w=`echo x $ac_new_val`
1971	if test "$ac_old_val_w" != "$ac_new_val_w"; then
1972	  { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
1973$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1974	  ac_cache_corrupted=:
1975	else
1976	  { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
1977$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
1978	  eval $ac_var=\$ac_old_val
1979	fi
1980	{ $as_echo "$as_me:${as_lineno-$LINENO}:   former value:  \`$ac_old_val'" >&5
1981$as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
1982	{ $as_echo "$as_me:${as_lineno-$LINENO}:   current value: \`$ac_new_val'" >&5
1983$as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
1984      fi;;
1985  esac
1986  # Pass precious variables to config.status.
1987  if test "$ac_new_set" = set; then
1988    case $ac_new_val in
1989    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1990    *) ac_arg=$ac_var=$ac_new_val ;;
1991    esac
1992    case " $ac_configure_args " in
1993      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
1994      *) as_fn_append ac_configure_args " '$ac_arg'" ;;
1995    esac
1996  fi
1997done
1998if $ac_cache_corrupted; then
1999  { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2000$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2001  { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
2002$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
2003  as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
2004fi
2005## -------------------- ##
2006## Main body of script. ##
2007## -------------------- ##
2008
2009ac_ext=c
2010ac_cpp='$CPP $CPPFLAGS'
2011ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2012ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2013ac_compiler_gnu=$ac_cv_c_compiler_gnu
2014
2015
2016
2017am__api_version='1.16'
2018
2019ac_aux_dir=
2020for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
2021  if test -f "$ac_dir/install-sh"; then
2022    ac_aux_dir=$ac_dir
2023    ac_install_sh="$ac_aux_dir/install-sh -c"
2024    break
2025  elif test -f "$ac_dir/install.sh"; then
2026    ac_aux_dir=$ac_dir
2027    ac_install_sh="$ac_aux_dir/install.sh -c"
2028    break
2029  elif test -f "$ac_dir/shtool"; then
2030    ac_aux_dir=$ac_dir
2031    ac_install_sh="$ac_aux_dir/shtool install -c"
2032    break
2033  fi
2034done
2035if test -z "$ac_aux_dir"; then
2036  as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
2037fi
2038
2039# These three variables are undocumented and unsupported,
2040# and are intended to be withdrawn in a future Autoconf release.
2041# They can cause serious problems if a builder's source tree is in a directory
2042# whose full name contains unusual characters.
2043ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
2044ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
2045ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
2046
2047
2048# Find a good install program.  We prefer a C program (faster),
2049# so one script is as good as another.  But avoid the broken or
2050# incompatible versions:
2051# SysV /etc/install, /usr/sbin/install
2052# SunOS /usr/etc/install
2053# IRIX /sbin/install
2054# AIX /bin/install
2055# AmigaOS /C/install, which installs bootblocks on floppy discs
2056# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
2057# AFS /usr/afsws/bin/install, which mishandles nonexistent args
2058# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
2059# OS/2's system install, which has a completely different semantic
2060# ./install, which can be erroneously created by make from ./install.sh.
2061# Reject install programs that cannot install multiple files.
2062{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
2063$as_echo_n "checking for a BSD-compatible install... " >&6; }
2064if test -z "$INSTALL"; then
2065if ${ac_cv_path_install+:} false; then :
2066  $as_echo_n "(cached) " >&6
2067else
2068  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2069for as_dir in $PATH
2070do
2071  IFS=$as_save_IFS
2072  test -z "$as_dir" && as_dir=.
2073    # Account for people who put trailing slashes in PATH elements.
2074case $as_dir/ in #((
2075  ./ | .// | /[cC]/* | \
2076  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
2077  ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
2078  /usr/ucb/* ) ;;
2079  *)
2080    # OSF1 and SCO ODT 3.0 have their own names for install.
2081    # Don't use installbsd from OSF since it installs stuff as root
2082    # by default.
2083    for ac_prog in ginstall scoinst install; do
2084      for ac_exec_ext in '' $ac_executable_extensions; do
2085	if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
2086	  if test $ac_prog = install &&
2087	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
2088	    # AIX install.  It has an incompatible calling convention.
2089	    :
2090	  elif test $ac_prog = install &&
2091	    grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
2092	    # program-specific install script used by HP pwplus--don't use.
2093	    :
2094	  else
2095	    rm -rf conftest.one conftest.two conftest.dir
2096	    echo one > conftest.one
2097	    echo two > conftest.two
2098	    mkdir conftest.dir
2099	    if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
2100	      test -s conftest.one && test -s conftest.two &&
2101	      test -s conftest.dir/conftest.one &&
2102	      test -s conftest.dir/conftest.two
2103	    then
2104	      ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
2105	      break 3
2106	    fi
2107	  fi
2108	fi
2109      done
2110    done
2111    ;;
2112esac
2113
2114  done
2115IFS=$as_save_IFS
2116
2117rm -rf conftest.one conftest.two conftest.dir
2118
2119fi
2120  if test "${ac_cv_path_install+set}" = set; then
2121    INSTALL=$ac_cv_path_install
2122  else
2123    # As a last resort, use the slow shell script.  Don't cache a
2124    # value for INSTALL within a source directory, because that will
2125    # break other packages using the cache if that directory is
2126    # removed, or if the value is a relative name.
2127    INSTALL=$ac_install_sh
2128  fi
2129fi
2130{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
2131$as_echo "$INSTALL" >&6; }
2132
2133# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
2134# It thinks the first close brace ends the variable substitution.
2135test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
2136
2137test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
2138
2139test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
2140
2141{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
2142$as_echo_n "checking whether build environment is sane... " >&6; }
2143# Reject unsafe characters in $srcdir or the absolute working directory
2144# name.  Accept space and tab only in the latter.
2145am_lf='
2146'
2147case `pwd` in
2148  *[\\\"\#\$\&\'\`$am_lf]*)
2149    as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
2150esac
2151case $srcdir in
2152  *[\\\"\#\$\&\'\`$am_lf\ \	]*)
2153    as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;;
2154esac
2155
2156# Do 'set' in a subshell so we don't clobber the current shell's
2157# arguments.  Must try -L first in case configure is actually a
2158# symlink; some systems play weird games with the mod time of symlinks
2159# (eg FreeBSD returns the mod time of the symlink's containing
2160# directory).
2161if (
2162   am_has_slept=no
2163   for am_try in 1 2; do
2164     echo "timestamp, slept: $am_has_slept" > conftest.file
2165     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
2166     if test "$*" = "X"; then
2167	# -L didn't work.
2168	set X `ls -t "$srcdir/configure" conftest.file`
2169     fi
2170     if test "$*" != "X $srcdir/configure conftest.file" \
2171	&& test "$*" != "X conftest.file $srcdir/configure"; then
2172
2173	# If neither matched, then we have a broken ls.  This can happen
2174	# if, for instance, CONFIG_SHELL is bash and it inherits a
2175	# broken ls alias from the environment.  This has actually
2176	# happened.  Such a system could not be considered "sane".
2177	as_fn_error $? "ls -t appears to fail.  Make sure there is not a broken
2178  alias in your environment" "$LINENO" 5
2179     fi
2180     if test "$2" = conftest.file || test $am_try -eq 2; then
2181       break
2182     fi
2183     # Just in case.
2184     sleep 1
2185     am_has_slept=yes
2186   done
2187   test "$2" = conftest.file
2188   )
2189then
2190   # Ok.
2191   :
2192else
2193   as_fn_error $? "newly created file is older than distributed files!
2194Check your system clock" "$LINENO" 5
2195fi
2196{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2197$as_echo "yes" >&6; }
2198# If we didn't sleep, we still need to ensure time stamps of config.status and
2199# generated files are strictly newer.
2200am_sleep_pid=
2201if grep 'slept: no' conftest.file >/dev/null 2>&1; then
2202  ( sleep 1 ) &
2203  am_sleep_pid=$!
2204fi
2205
2206rm -f conftest.file
2207
2208test "$program_prefix" != NONE &&
2209  program_transform_name="s&^&$program_prefix&;$program_transform_name"
2210# Use a double $ so make ignores it.
2211test "$program_suffix" != NONE &&
2212  program_transform_name="s&\$&$program_suffix&;$program_transform_name"
2213# Double any \ or $.
2214# By default was `s,x,x', remove it if useless.
2215ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
2216program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
2217
2218# Expand $ac_aux_dir to an absolute path.
2219am_aux_dir=`cd "$ac_aux_dir" && pwd`
2220
2221if test x"${MISSING+set}" != xset; then
2222  case $am_aux_dir in
2223  *\ * | *\	*)
2224    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
2225  *)
2226    MISSING="\${SHELL} $am_aux_dir/missing" ;;
2227  esac
2228fi
2229# Use eval to expand $SHELL
2230if eval "$MISSING --is-lightweight"; then
2231  am_missing_run="$MISSING "
2232else
2233  am_missing_run=
2234  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
2235$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
2236fi
2237
2238if test x"${install_sh+set}" != xset; then
2239  case $am_aux_dir in
2240  *\ * | *\	*)
2241    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
2242  *)
2243    install_sh="\${SHELL} $am_aux_dir/install-sh"
2244  esac
2245fi
2246
2247# Installed binaries are usually stripped using 'strip' when the user
2248# run "make install-strip".  However 'strip' might not be the right
2249# tool to use in cross-compilation environments, therefore Automake
2250# will honor the 'STRIP' environment variable to overrule this program.
2251if test "$cross_compiling" != no; then
2252  if test -n "$ac_tool_prefix"; then
2253  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
2254set dummy ${ac_tool_prefix}strip; ac_word=$2
2255{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2256$as_echo_n "checking for $ac_word... " >&6; }
2257if ${ac_cv_prog_STRIP+:} false; then :
2258  $as_echo_n "(cached) " >&6
2259else
2260  if test -n "$STRIP"; then
2261  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
2262else
2263as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2264for as_dir in $PATH
2265do
2266  IFS=$as_save_IFS
2267  test -z "$as_dir" && as_dir=.
2268    for ac_exec_ext in '' $ac_executable_extensions; do
2269  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2270    ac_cv_prog_STRIP="${ac_tool_prefix}strip"
2271    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2272    break 2
2273  fi
2274done
2275  done
2276IFS=$as_save_IFS
2277
2278fi
2279fi
2280STRIP=$ac_cv_prog_STRIP
2281if test -n "$STRIP"; then
2282  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
2283$as_echo "$STRIP" >&6; }
2284else
2285  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2286$as_echo "no" >&6; }
2287fi
2288
2289
2290fi
2291if test -z "$ac_cv_prog_STRIP"; then
2292  ac_ct_STRIP=$STRIP
2293  # Extract the first word of "strip", so it can be a program name with args.
2294set dummy strip; ac_word=$2
2295{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2296$as_echo_n "checking for $ac_word... " >&6; }
2297if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
2298  $as_echo_n "(cached) " >&6
2299else
2300  if test -n "$ac_ct_STRIP"; then
2301  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
2302else
2303as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2304for as_dir in $PATH
2305do
2306  IFS=$as_save_IFS
2307  test -z "$as_dir" && as_dir=.
2308    for ac_exec_ext in '' $ac_executable_extensions; do
2309  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2310    ac_cv_prog_ac_ct_STRIP="strip"
2311    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2312    break 2
2313  fi
2314done
2315  done
2316IFS=$as_save_IFS
2317
2318fi
2319fi
2320ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
2321if test -n "$ac_ct_STRIP"; then
2322  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
2323$as_echo "$ac_ct_STRIP" >&6; }
2324else
2325  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2326$as_echo "no" >&6; }
2327fi
2328
2329  if test "x$ac_ct_STRIP" = x; then
2330    STRIP=":"
2331  else
2332    case $cross_compiling:$ac_tool_warned in
2333yes:)
2334{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
2335$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
2336ac_tool_warned=yes ;;
2337esac
2338    STRIP=$ac_ct_STRIP
2339  fi
2340else
2341  STRIP="$ac_cv_prog_STRIP"
2342fi
2343
2344fi
2345INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
2346
2347{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
2348$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
2349if test -z "$MKDIR_P"; then
2350  if ${ac_cv_path_mkdir+:} false; then :
2351  $as_echo_n "(cached) " >&6
2352else
2353  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2354for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
2355do
2356  IFS=$as_save_IFS
2357  test -z "$as_dir" && as_dir=.
2358    for ac_prog in mkdir gmkdir; do
2359	 for ac_exec_ext in '' $ac_executable_extensions; do
2360	   as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
2361	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
2362	     'mkdir (GNU coreutils) '* | \
2363	     'mkdir (coreutils) '* | \
2364	     'mkdir (fileutils) '4.1*)
2365	       ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
2366	       break 3;;
2367	   esac
2368	 done
2369       done
2370  done
2371IFS=$as_save_IFS
2372
2373fi
2374
2375  test -d ./--version && rmdir ./--version
2376  if test "${ac_cv_path_mkdir+set}" = set; then
2377    MKDIR_P="$ac_cv_path_mkdir -p"
2378  else
2379    # As a last resort, use the slow shell script.  Don't cache a
2380    # value for MKDIR_P within a source directory, because that will
2381    # break other packages using the cache if that directory is
2382    # removed, or if the value is a relative name.
2383    MKDIR_P="$ac_install_sh -d"
2384  fi
2385fi
2386{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
2387$as_echo "$MKDIR_P" >&6; }
2388
2389for ac_prog in gawk mawk nawk awk
2390do
2391  # Extract the first word of "$ac_prog", so it can be a program name with args.
2392set dummy $ac_prog; ac_word=$2
2393{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2394$as_echo_n "checking for $ac_word... " >&6; }
2395if ${ac_cv_prog_AWK+:} false; then :
2396  $as_echo_n "(cached) " >&6
2397else
2398  if test -n "$AWK"; then
2399  ac_cv_prog_AWK="$AWK" # Let the user override the test.
2400else
2401as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2402for as_dir in $PATH
2403do
2404  IFS=$as_save_IFS
2405  test -z "$as_dir" && as_dir=.
2406    for ac_exec_ext in '' $ac_executable_extensions; do
2407  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2408    ac_cv_prog_AWK="$ac_prog"
2409    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2410    break 2
2411  fi
2412done
2413  done
2414IFS=$as_save_IFS
2415
2416fi
2417fi
2418AWK=$ac_cv_prog_AWK
2419if test -n "$AWK"; then
2420  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
2421$as_echo "$AWK" >&6; }
2422else
2423  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2424$as_echo "no" >&6; }
2425fi
2426
2427
2428  test -n "$AWK" && break
2429done
2430
2431{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
2432$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
2433set x ${MAKE-make}
2434ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
2435if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
2436  $as_echo_n "(cached) " >&6
2437else
2438  cat >conftest.make <<\_ACEOF
2439SHELL = /bin/sh
2440all:
2441	@echo '@@@%%%=$(MAKE)=@@@%%%'
2442_ACEOF
2443# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
2444case `${MAKE-make} -f conftest.make 2>/dev/null` in
2445  *@@@%%%=?*=@@@%%%*)
2446    eval ac_cv_prog_make_${ac_make}_set=yes;;
2447  *)
2448    eval ac_cv_prog_make_${ac_make}_set=no;;
2449esac
2450rm -f conftest.make
2451fi
2452if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
2453  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2454$as_echo "yes" >&6; }
2455  SET_MAKE=
2456else
2457  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2458$as_echo "no" >&6; }
2459  SET_MAKE="MAKE=${MAKE-make}"
2460fi
2461
2462rm -rf .tst 2>/dev/null
2463mkdir .tst 2>/dev/null
2464if test -d .tst; then
2465  am__leading_dot=.
2466else
2467  am__leading_dot=_
2468fi
2469rmdir .tst 2>/dev/null
2470
2471# Check whether --enable-silent-rules was given.
2472if test "${enable_silent_rules+set}" = set; then :
2473  enableval=$enable_silent_rules;
2474fi
2475
2476case $enable_silent_rules in # (((
2477  yes) AM_DEFAULT_VERBOSITY=0;;
2478   no) AM_DEFAULT_VERBOSITY=1;;
2479    *) AM_DEFAULT_VERBOSITY=1;;
2480esac
2481am_make=${MAKE-make}
2482{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
2483$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
2484if ${am_cv_make_support_nested_variables+:} false; then :
2485  $as_echo_n "(cached) " >&6
2486else
2487  if $as_echo 'TRUE=$(BAR$(V))
2488BAR0=false
2489BAR1=true
2490V=1
2491am__doit:
2492	@$(TRUE)
2493.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
2494  am_cv_make_support_nested_variables=yes
2495else
2496  am_cv_make_support_nested_variables=no
2497fi
2498fi
2499{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
2500$as_echo "$am_cv_make_support_nested_variables" >&6; }
2501if test $am_cv_make_support_nested_variables = yes; then
2502    AM_V='$(V)'
2503  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
2504else
2505  AM_V=$AM_DEFAULT_VERBOSITY
2506  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
2507fi
2508AM_BACKSLASH='\'
2509
2510if test "`cd $srcdir && pwd`" != "`pwd`"; then
2511  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
2512  # is not polluted with repeated "-I."
2513  am__isrc=' -I$(srcdir)'
2514  # test to see if srcdir already configured
2515  if test -f $srcdir/config.status; then
2516    as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
2517  fi
2518fi
2519
2520# test whether we have cygpath
2521if test -z "$CYGPATH_W"; then
2522  if (cygpath --version) >/dev/null 2>/dev/null; then
2523    CYGPATH_W='cygpath -w'
2524  else
2525    CYGPATH_W=echo
2526  fi
2527fi
2528
2529
2530# Define the identity of the package.
2531 PACKAGE='maxima'
2532 VERSION='5.43.2'
2533
2534
2535cat >>confdefs.h <<_ACEOF
2536#define PACKAGE "$PACKAGE"
2537_ACEOF
2538
2539
2540cat >>confdefs.h <<_ACEOF
2541#define VERSION "$VERSION"
2542_ACEOF
2543
2544# Some tools Automake needs.
2545
2546ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
2547
2548
2549AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
2550
2551
2552AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
2553
2554
2555AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
2556
2557
2558MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
2559
2560# For better backward compatibility.  To be removed once Automake 1.9.x
2561# dies out for good.  For more background, see:
2562# <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
2563# <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
2564mkdir_p='$(MKDIR_P)'
2565
2566# We need awk for the "check" target (and possibly the TAP driver).  The
2567# system "awk" is bad on some platforms.
2568# Always define AMTAR for backward compatibility.  Yes, it's still used
2569# in the wild :-(  We should find a proper way to deprecate it ...
2570AMTAR='$${TAR-tar}'
2571
2572
2573# We'll loop over all known methods to create a tar archive until one works.
2574_am_tools='gnutar plaintar pax cpio none'
2575
2576# The POSIX 1988 'ustar' format is defined with fixed-size fields.
2577      # There is notably a 21 bits limit for the UID and the GID.  In fact,
2578      # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
2579      # and bug#13588).
2580      am_max_uid=2097151 # 2^21 - 1
2581      am_max_gid=$am_max_uid
2582      # The $UID and $GID variables are not portable, so we need to resort
2583      # to the POSIX-mandated id(1) utility.  Errors in the 'id' calls
2584      # below are definitely unexpected, so allow the users to see them
2585      # (that is, avoid stderr redirection).
2586      am_uid=`id -u || echo unknown`
2587      am_gid=`id -g || echo unknown`
2588      { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether UID '$am_uid' is supported by ustar format" >&5
2589$as_echo_n "checking whether UID '$am_uid' is supported by ustar format... " >&6; }
2590      if test $am_uid -le $am_max_uid; then
2591         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2592$as_echo "yes" >&6; }
2593      else
2594         { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2595$as_echo "no" >&6; }
2596         _am_tools=none
2597      fi
2598      { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether GID '$am_gid' is supported by ustar format" >&5
2599$as_echo_n "checking whether GID '$am_gid' is supported by ustar format... " >&6; }
2600      if test $am_gid -le $am_max_gid; then
2601         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2602$as_echo "yes" >&6; }
2603      else
2604        { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2605$as_echo "no" >&6; }
2606        _am_tools=none
2607      fi
2608
2609  { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to create a ustar tar archive" >&5
2610$as_echo_n "checking how to create a ustar tar archive... " >&6; }
2611
2612  # Go ahead even if we have the value already cached.  We do so because we
2613  # need to set the values for the 'am__tar' and 'am__untar' variables.
2614  _am_tools=${am_cv_prog_tar_ustar-$_am_tools}
2615
2616  for _am_tool in $_am_tools; do
2617    case $_am_tool in
2618    gnutar)
2619      for _am_tar in tar gnutar gtar; do
2620        { echo "$as_me:$LINENO: $_am_tar --version" >&5
2621   ($_am_tar --version) >&5 2>&5
2622   ac_status=$?
2623   echo "$as_me:$LINENO: \$? = $ac_status" >&5
2624   (exit $ac_status); } && break
2625      done
2626      am__tar="$_am_tar --format=ustar -chf - "'"$$tardir"'
2627      am__tar_="$_am_tar --format=ustar -chf - "'"$tardir"'
2628      am__untar="$_am_tar -xf -"
2629      ;;
2630    plaintar)
2631      # Must skip GNU tar: if it does not support --format= it doesn't create
2632      # ustar tarball either.
2633      (tar --version) >/dev/null 2>&1 && continue
2634      am__tar='tar chf - "$$tardir"'
2635      am__tar_='tar chf - "$tardir"'
2636      am__untar='tar xf -'
2637      ;;
2638    pax)
2639      am__tar='pax -L -x ustar -w "$$tardir"'
2640      am__tar_='pax -L -x ustar -w "$tardir"'
2641      am__untar='pax -r'
2642      ;;
2643    cpio)
2644      am__tar='find "$$tardir" -print | cpio -o -H ustar -L'
2645      am__tar_='find "$tardir" -print | cpio -o -H ustar -L'
2646      am__untar='cpio -i -H ustar -d'
2647      ;;
2648    none)
2649      am__tar=false
2650      am__tar_=false
2651      am__untar=false
2652      ;;
2653    esac
2654
2655    # If the value was cached, stop now.  We just wanted to have am__tar
2656    # and am__untar set.
2657    test -n "${am_cv_prog_tar_ustar}" && break
2658
2659    # tar/untar a dummy directory, and stop if the command works.
2660    rm -rf conftest.dir
2661    mkdir conftest.dir
2662    echo GrepMe > conftest.dir/file
2663    { echo "$as_me:$LINENO: tardir=conftest.dir && eval $am__tar_ >conftest.tar" >&5
2664   (tardir=conftest.dir && eval $am__tar_ >conftest.tar) >&5 2>&5
2665   ac_status=$?
2666   echo "$as_me:$LINENO: \$? = $ac_status" >&5
2667   (exit $ac_status); }
2668    rm -rf conftest.dir
2669    if test -s conftest.tar; then
2670      { echo "$as_me:$LINENO: $am__untar <conftest.tar" >&5
2671   ($am__untar <conftest.tar) >&5 2>&5
2672   ac_status=$?
2673   echo "$as_me:$LINENO: \$? = $ac_status" >&5
2674   (exit $ac_status); }
2675      { echo "$as_me:$LINENO: cat conftest.dir/file" >&5
2676   (cat conftest.dir/file) >&5 2>&5
2677   ac_status=$?
2678   echo "$as_me:$LINENO: \$? = $ac_status" >&5
2679   (exit $ac_status); }
2680      grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
2681    fi
2682  done
2683  rm -rf conftest.dir
2684
2685  if ${am_cv_prog_tar_ustar+:} false; then :
2686  $as_echo_n "(cached) " >&6
2687else
2688  am_cv_prog_tar_ustar=$_am_tool
2689fi
2690
2691  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_tar_ustar" >&5
2692$as_echo "$am_cv_prog_tar_ustar" >&6; }
2693
2694
2695
2696
2697
2698
2699# POSIX will say in a future version that running "rm -f" with no argument
2700# is OK; and we want to be able to make that assumption in our Makefile
2701# recipes.  So use an aggressive probe to check that the usage we want is
2702# actually supported "in the wild" to an acceptable degree.
2703# See automake bug#10828.
2704# To make any issue more visible, cause the running configure to be aborted
2705# by default if the 'rm' program in use doesn't match our expectations; the
2706# user can still override this though.
2707if rm -f && rm -fr && rm -rf; then : OK; else
2708  cat >&2 <<'END'
2709Oops!
2710
2711Your 'rm' program seems unable to run without file operands specified
2712on the command line, even when the '-f' option is present.  This is contrary
2713to the behaviour of most rm programs out there, and not conforming with
2714the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
2715
2716Please tell bug-automake@gnu.org about your system, including the value
2717of your $PATH and any error possibly output before this message.  This
2718can help us improve future automake versions.
2719
2720END
2721  if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
2722    echo 'Configuration will proceed anyway, since you have set the' >&2
2723    echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
2724    echo >&2
2725  else
2726    cat >&2 <<'END'
2727Aborting the configuration process, to ensure you take notice of the issue.
2728
2729You can download and install GNU coreutils to get an 'rm' implementation
2730that behaves properly: <https://www.gnu.org/software/coreutils/>.
2731
2732If you want to complete the configuration process using your problematic
2733'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
2734to "yes", and re-run configure.
2735
2736END
2737    as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5
2738  fi
2739fi
2740
2741
2742# On debian-based systems this makes us use the right gcl version out-of-the box.
2743# On other systems it doesn't hurt.
2744export GCL_ANSI=t
2745
2746# This enables running the testbench for "make check" on gcl versions with the old
2747# memory management (Which in January 2018 includes all Versions shipped with debian
2748# and Ubuntu)
2749export GCL_MEM_MULTIPLE=0.1
2750
2751 # If set to t, that means we are running in a shell under Emacs.
2752 # If you have an Emacs named "t", then use the full path.
2753 test x"$EMACS" = xt && EMACS=
2754 for ac_prog in emacs xemacs
2755do
2756  # Extract the first word of "$ac_prog", so it can be a program name with args.
2757set dummy $ac_prog; ac_word=$2
2758{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2759$as_echo_n "checking for $ac_word... " >&6; }
2760if ${ac_cv_prog_EMACS+:} false; then :
2761  $as_echo_n "(cached) " >&6
2762else
2763  if test -n "$EMACS"; then
2764  ac_cv_prog_EMACS="$EMACS" # Let the user override the test.
2765else
2766as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2767for as_dir in $PATH
2768do
2769  IFS=$as_save_IFS
2770  test -z "$as_dir" && as_dir=.
2771    for ac_exec_ext in '' $ac_executable_extensions; do
2772  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2773    ac_cv_prog_EMACS="$ac_prog"
2774    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2775    break 2
2776  fi
2777done
2778  done
2779IFS=$as_save_IFS
2780
2781fi
2782fi
2783EMACS=$ac_cv_prog_EMACS
2784if test -n "$EMACS"; then
2785  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $EMACS" >&5
2786$as_echo "$EMACS" >&6; }
2787else
2788  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2789$as_echo "no" >&6; }
2790fi
2791
2792
2793  test -n "$EMACS" && break
2794done
2795test -n "$EMACS" || EMACS="no"
2796
2797
2798
2799
2800# Check whether --with-lispdir was given.
2801if test "${with_lispdir+set}" = set; then :
2802  withval=$with_lispdir;  lispdir="$withval"
2803   { $as_echo "$as_me:${as_lineno-$LINENO}: checking where .elc files should go" >&5
2804$as_echo_n "checking where .elc files should go... " >&6; }
2805   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lispdir" >&5
2806$as_echo "$lispdir" >&6; }
2807else
2808
2809 { $as_echo "$as_me:${as_lineno-$LINENO}: checking where .elc files should go" >&5
2810$as_echo_n "checking where .elc files should go... " >&6; }
2811if ${am_cv_lispdir+:} false; then :
2812  $as_echo_n "(cached) " >&6
2813else
2814
2815   if test $EMACS != "no"; then
2816     if test x${lispdir+set} != xset; then
2817  # If $EMACS isn't GNU Emacs or XEmacs, this can blow up pretty badly
2818  # Some emacsen will start up in interactive mode, requiring C-x C-c to exit,
2819  #  which is non-obvious for non-emacs users.
2820  # Redirecting /dev/null should help a bit; pity we can't detect "broken"
2821  #  emacsen earlier and avoid running this altogether.
2822  { { $as_echo "$as_me:${as_lineno-$LINENO}: \$EMACS -batch -Q -eval '(while load-path (princ (concat (car load-path) \"\\n\")) (setq load-path (cdr load-path)))' </dev/null >conftest.out"; } >&5
2823  ($EMACS -batch -Q -eval '(while load-path (princ (concat (car load-path) "\n")) (setq load-path (cdr load-path)))' </dev/null >conftest.out) 2>&5
2824  ac_status=$?
2825  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2826  test $ac_status = 0; }
2827	am_cv_lispdir=`sed -n \
2828       -e 's,/$,,' \
2829       -e '/.*\/lib\/x*emacs\/site-lisp$/{s,.*/lib/\(x*emacs/site-lisp\)$,${libdir}/\1,;p;q;}' \
2830       -e '/.*\/share\/x*emacs\/site-lisp$/{s,.*/share/\(x*emacs/site-lisp\),${datarootdir}/\1,;p;q;}' \
2831       conftest.out`
2832       rm conftest.out
2833     fi
2834   fi
2835   test -z "$am_cv_lispdir" && am_cv_lispdir='${datadir}/emacs/site-lisp'
2836
2837fi
2838{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_lispdir" >&5
2839$as_echo "$am_cv_lispdir" >&6; }
2840  lispdir="$am_cv_lispdir"
2841
2842fi
2843
2844
2845
2846
2847# Make sure we can run config.sub.
2848$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
2849  as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
2850
2851{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
2852$as_echo_n "checking build system type... " >&6; }
2853if ${ac_cv_build+:} false; then :
2854  $as_echo_n "(cached) " >&6
2855else
2856  ac_build_alias=$build_alias
2857test "x$ac_build_alias" = x &&
2858  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
2859test "x$ac_build_alias" = x &&
2860  as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
2861ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
2862  as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
2863
2864fi
2865{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
2866$as_echo "$ac_cv_build" >&6; }
2867case $ac_cv_build in
2868*-*-*) ;;
2869*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
2870esac
2871build=$ac_cv_build
2872ac_save_IFS=$IFS; IFS='-'
2873set x $ac_cv_build
2874shift
2875build_cpu=$1
2876build_vendor=$2
2877shift; shift
2878# Remember, the first character of IFS is used to create $*,
2879# except with old shells:
2880build_os=$*
2881IFS=$ac_save_IFS
2882case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
2883
2884
2885{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
2886$as_echo_n "checking host system type... " >&6; }
2887if ${ac_cv_host+:} false; then :
2888  $as_echo_n "(cached) " >&6
2889else
2890  if test "x$host_alias" = x; then
2891  ac_cv_host=$ac_cv_build
2892else
2893  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
2894    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
2895fi
2896
2897fi
2898{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
2899$as_echo "$ac_cv_host" >&6; }
2900case $ac_cv_host in
2901*-*-*) ;;
2902*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
2903esac
2904host=$ac_cv_host
2905ac_save_IFS=$IFS; IFS='-'
2906set x $ac_cv_host
2907shift
2908host_cpu=$1
2909host_vendor=$2
2910shift; shift
2911# Remember, the first character of IFS is used to create $*,
2912# except with old shells:
2913host_os=$*
2914IFS=$ac_save_IFS
2915case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
2916
2917
2918
2919case "$host" in
2920        *mingw*)
2921                win32=true
2922                win64=false
2923                mingw=true
2924                EXEEXT=.exe
2925		CLISPEXT=${EXEEXT}
2926                ;;
2927        *cygwin*)
2928                win32=false
2929                win64=false
2930                mingw=false
2931                EXEEXT=.exe
2932		CLISPEXT=${EXEEXT}
2933                ;;
2934        *)
2935                win32=false
2936                win64=false
2937                mingw=false
2938                EXEEXT=
2939		CLISPEXT=.run
2940esac
2941
2942
2943
2944 if test x$win32 = xtrue; then
2945  WIN32_TRUE=
2946  WIN32_FALSE='#'
2947else
2948  WIN32_TRUE='#'
2949  WIN32_FALSE=
2950fi
2951
2952 if test x$win64 = xtrue; then
2953  WIN64_TRUE=
2954  WIN64_FALSE='#'
2955else
2956  WIN64_TRUE='#'
2957  WIN64_FALSE=
2958fi
2959
2960
2961 if test -n "$EXEEXT"; then
2962  am__EXEEXT_TRUE=
2963  am__EXEEXT_FALSE='#'
2964else
2965  am__EXEEXT_TRUE='#'
2966  am__EXEEXT_FALSE=
2967fi
2968
2969
2970explicit_lisp=false
2971lisps_enabled=""
2972
2973# Check whether --enable-abcl was given.
2974if test "${enable_abcl+set}" = set; then :
2975  enableval=$enable_abcl; case "${enableval}" in
2976       		yes) abcl=true
2977		     lisps_enabled="${lisps_enabled} abcl"
2978                     explicit_lisp=true ;;
2979       		no)  abcl=false ;;
2980		*) as_fn_error $? "bad value ${enableval} for --enable-abcl" "$LINENO" 5 ;;
2981     	esac
2982	explicit_lisp=true
2983else
2984  abcl=false
2985fi
2986
2987ABCL_JAR=`pwd`/"abcl.jar"
2988
2989# Check whether --with-abcl-jar was given.
2990if test "${with_abcl_jar+set}" = set; then :
2991  withval=$with_abcl_jar; abcl=true
2992	lisps_enabled="${lisps_enabled} abcl"
2993	explicit_lisp=true
2994	ABCL_JAR="${withval}"
2995fi
2996
2997
2998
2999# Check whether --with-jre was given.
3000if test "${with_jre+set}" = set; then :
3001  withval=$with_jre; JRE="${withval}"
3002else
3003  JRE="java"
3004fi
3005
3006
3007if test x"${abcl}" = xtrue ; then
3008     if test -e "${ABCL_JAR}" ; then
3009          echo Using abcl found in ${ABCL_JAR}
3010     else
3011        as_fn_error $? "${ABCL_JAR} not found." "$LINENO" 5
3012     fi
3013fi
3014
3015clisp_default_name=clisp
3016# Check whether --enable-clisp was given.
3017if test "${enable_clisp+set}" = set; then :
3018  enableval=$enable_clisp; case "${enableval}" in
3019       		yes) clisp=true
3020		     lisps_enabled="${lisps_enabled} clisp"
3021                     explicit_lisp=true ;;
3022       		no)  clisp=false ;;
3023		*) as_fn_error $? "bad value ${enableval} for --enable-clisp" "$LINENO" 5 ;;
3024     	esac
3025	explicit_lisp=true
3026else
3027  clisp=false
3028fi
3029
3030
3031# Check whether --with-clisp was given.
3032if test "${with_clisp+set}" = set; then :
3033  withval=$with_clisp; clisp=true
3034	lisps_enabled="${lisps_enabled} clisp"
3035	explicit_lisp=true
3036	if test "$withval" = "yes"; then
3037		CLISP_NAME="${clisp_default_name}"
3038	else
3039		CLISP_NAME="$withval"
3040	fi
3041else
3042  CLISP_NAME=${clisp_default_name}
3043fi
3044
3045	CLISP_RUNTIME="lisp${CLISPEXT}"
3046
3047# Check whether --with-clisp-runtime was given.
3048if test "${with_clisp_runtime+set}" = set; then :
3049  withval=$with_clisp_runtime; clisp=true
3050	lisps_enabled="${lisps_enabled} clisp"
3051	CLISP_RUNTIME_PATH="$withval"
3052	CLISP_RUNTIME=`basename ${CLISP_RUNTIME_PATH}`
3053fi
3054
3055# Check whether --enable-clisp-exec was given.
3056if test "${enable_clisp_exec+set}" = set; then :
3057  enableval=$enable_clisp_exec; case "${enableval}" in
3058	    yes) clisp_exec=true
3059                 clisp=true
3060		 lisps_enabled="${lisps_enabled} clisp"
3061                 explicit_lisp=true ;;
3062	    no) clisp_exec=false ;;
3063	    *) as_fn_error $? "bad value ${enableval} for --enable-clisp-exec" "$LINENO" 5 ;;
3064         esac
3065	 CLISP_EXEC=${clisp_exec}
3066else
3067  clisp_exec=false
3068	 CLISP_EXEC=false
3069fi
3070
3071if test x"${clisp}" = xtrue ; then
3072	if test `echo "$CLISP_NAME" | sed 's/\(.\).*/\1/'` = "/" ; then
3073		if test -x "$CLISP_NAME" ; then
3074			clisp_found=true
3075		else
3076			clisp_found=false
3077		fi
3078	else
3079		# Extract the first word of "$CLISP_NAME", so it can be a program name with args.
3080set dummy $CLISP_NAME; ac_word=$2
3081{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3082$as_echo_n "checking for $ac_word... " >&6; }
3083if ${ac_cv_prog_clisp_found+:} false; then :
3084  $as_echo_n "(cached) " >&6
3085else
3086  if test -n "$clisp_found"; then
3087  ac_cv_prog_clisp_found="$clisp_found" # Let the user override the test.
3088else
3089as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3090for as_dir in $PATH
3091do
3092  IFS=$as_save_IFS
3093  test -z "$as_dir" && as_dir=.
3094    for ac_exec_ext in '' $ac_executable_extensions; do
3095  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3096    ac_cv_prog_clisp_found="true"
3097    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3098    break 2
3099  fi
3100done
3101  done
3102IFS=$as_save_IFS
3103
3104  test -z "$ac_cv_prog_clisp_found" && ac_cv_prog_clisp_found="false"
3105fi
3106fi
3107clisp_found=$ac_cv_prog_clisp_found
3108if test -n "$clisp_found"; then
3109  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $clisp_found" >&5
3110$as_echo "$clisp_found" >&6; }
3111else
3112  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3113$as_echo "no" >&6; }
3114fi
3115
3116
3117	fi
3118	if test x"${clisp_found}" = xfalse ; then
3119		{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: clisp executable ${CLISP_NAME} not found in PATH" >&5
3120$as_echo "$as_me: WARNING: clisp executable ${CLISP_NAME} not found in PATH" >&2;}
3121	fi
3122fi
3123
3124
3125# Extract the first word of "git", so it can be a program name with args.
3126set dummy git; ac_word=$2
3127{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3128$as_echo_n "checking for $ac_word... " >&6; }
3129if ${ac_cv_prog_git_found+:} false; then :
3130  $as_echo_n "(cached) " >&6
3131else
3132  if test -n "$git_found"; then
3133  ac_cv_prog_git_found="$git_found" # Let the user override the test.
3134else
3135as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3136for as_dir in $PATH
3137do
3138  IFS=$as_save_IFS
3139  test -z "$as_dir" && as_dir=.
3140    for ac_exec_ext in '' $ac_executable_extensions; do
3141  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3142    ac_cv_prog_git_found="true"
3143    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3144    break 2
3145  fi
3146done
3147  done
3148IFS=$as_save_IFS
3149
3150  test -z "$ac_cv_prog_git_found" && ac_cv_prog_git_found="false"
3151fi
3152fi
3153git_found=$ac_cv_prog_git_found
3154if test -n "$git_found"; then
3155  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $git_found" >&5
3156$as_echo "$git_found" >&6; }
3157else
3158  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3159$as_echo "no" >&6; }
3160fi
3161
3162
3163if test x"${git_found}" = xtrue; then
3164    # Test to see if git describe works (discarding any output).  If
3165    # it works, use it.  Otherwise, keep existing value of VERSION.
3166    # (git describe fails if git is executed in a non-Git directory, e.g.,
3167    # an unpacked tarball. Since the exit codes of git describe are undocumented,
3168    # we cannot distinguish that from a missing annotated tag.
3169    # Play it safe by refusing to change VERSION.)
3170    if git describe > /dev/null 2>&1; then
3171        VERSION="`git describe --dirty`"
3172        # When building RPMs, hyphens in the version are not allowed, so
3173        # replace them with underscores.
3174        VERSION=`echo $VERSION | sed 's;-;_;g'`
3175    fi
3176fi
3177
3178manual_version=`echo $VERSION | sed 's+branch_++; s+_base++; s+_dirty++; s+_+.+g'`
3179
3180
3181cmucl_default_name=lisp
3182CMUCL_RUNTIME=lisp
3183# Check whether --enable-cmucl was given.
3184if test "${enable_cmucl+set}" = set; then :
3185  enableval=$enable_cmucl; case "${enableval}" in
3186       		yes) cmucl=true
3187		     lisps_enabled="${lisps_enabled} cmucl"
3188                     explicit_lisp=true ;;
3189       		no)  cmucl=false ;;
3190		*) as_fn_error $? "bad value ${enableval} for --enable-cmucl" "$LINENO" 5 ;;
3191     	esac
3192	explicit_lisp=true
3193else
3194  cmucl=false
3195fi
3196
3197
3198# Check whether --with-cmucl was given.
3199if test "${with_cmucl+set}" = set; then :
3200  withval=$with_cmucl; cmucl=true
3201	lisps_enabled="${lisps_enabled} cmucl"
3202	explicit_lisp=true
3203	if test "$withval" = "yes"; then
3204		CMUCL_NAME="${cmucl_default_name}"
3205	else
3206		CMUCL_NAME="$withval"
3207	fi
3208else
3209  CMUCL_NAME=${cmucl_default_name}
3210fi
3211
3212
3213# Check whether --with-cmucl-runtime was given.
3214if test "${with_cmucl_runtime+set}" = set; then :
3215  withval=$with_cmucl_runtime; cmucl=true
3216	lisps_enabled="${lisps_enabled} cmucl"
3217	CMUCL_RUNTIME_PATH="$withval"
3218	CMUCL_RUNTIME=`basename ${CMUCL_RUNTIME_PATH}`
3219fi
3220
3221# Check whether --enable-cmucl-exec was given.
3222if test "${enable_cmucl_exec+set}" = set; then :
3223  enableval=$enable_cmucl_exec; case "${enableval}" in
3224	    yes) cmucl_exec=true
3225                 cmucl=true
3226		 lisps_enabled="${lisps_enabled} cmucl"
3227                 explicit_lisp=true ;;
3228	    no) cmucl_exec=false ;;
3229	    *) as_fn_error $? "bad value ${enableval} for --enable-cmucl-exec" "$LINENO" 5 ;;
3230         esac
3231	 CMUCL_EXEC=${cmucl_exec}
3232else
3233  cmucl_exec=false
3234	 CMUCL_EXEC=false
3235fi
3236
3237if test x"${cmucl}" = xtrue ; then
3238	if test `echo "$CMUCL_NAME" | sed 's/\(.\).*/\1/'` = "/" ; then
3239		if test -x "$CMUCL_NAME" ; then
3240			cmucl_found=true
3241		else
3242			cmucl_found=false
3243		fi
3244	else
3245		# Extract the first word of "$CMUCL_NAME", so it can be a program name with args.
3246set dummy $CMUCL_NAME; ac_word=$2
3247{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3248$as_echo_n "checking for $ac_word... " >&6; }
3249if ${ac_cv_prog_cmucl_found+:} false; then :
3250  $as_echo_n "(cached) " >&6
3251else
3252  if test -n "$cmucl_found"; then
3253  ac_cv_prog_cmucl_found="$cmucl_found" # Let the user override the test.
3254else
3255as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3256for as_dir in $PATH
3257do
3258  IFS=$as_save_IFS
3259  test -z "$as_dir" && as_dir=.
3260    for ac_exec_ext in '' $ac_executable_extensions; do
3261  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3262    ac_cv_prog_cmucl_found="true"
3263    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3264    break 2
3265  fi
3266done
3267  done
3268IFS=$as_save_IFS
3269
3270  test -z "$ac_cv_prog_cmucl_found" && ac_cv_prog_cmucl_found="false"
3271fi
3272fi
3273cmucl_found=$ac_cv_prog_cmucl_found
3274if test -n "$cmucl_found"; then
3275  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cmucl_found" >&5
3276$as_echo "$cmucl_found" >&6; }
3277else
3278  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3279$as_echo "no" >&6; }
3280fi
3281
3282
3283	fi
3284	# Extract the first word of "$CMUCL_NAME", so it can be a program name with args.
3285set dummy $CMUCL_NAME; ac_word=$2
3286{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3287$as_echo_n "checking for $ac_word... " >&6; }
3288if ${ac_cv_prog_cmucl_found+:} false; then :
3289  $as_echo_n "(cached) " >&6
3290else
3291  if test -n "$cmucl_found"; then
3292  ac_cv_prog_cmucl_found="$cmucl_found" # Let the user override the test.
3293else
3294as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3295for as_dir in $PATH
3296do
3297  IFS=$as_save_IFS
3298  test -z "$as_dir" && as_dir=.
3299    for ac_exec_ext in '' $ac_executable_extensions; do
3300  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3301    ac_cv_prog_cmucl_found="true"
3302    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3303    break 2
3304  fi
3305done
3306  done
3307IFS=$as_save_IFS
3308
3309  test -z "$ac_cv_prog_cmucl_found" && ac_cv_prog_cmucl_found="false"
3310fi
3311fi
3312cmucl_found=$ac_cv_prog_cmucl_found
3313if test -n "$cmucl_found"; then
3314  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cmucl_found" >&5
3315$as_echo "$cmucl_found" >&6; }
3316else
3317  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3318$as_echo "no" >&6; }
3319fi
3320
3321
3322	if test x"${cmucl_found}" = xfalse ; then
3323		{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cmucl executable ${CMUCL_NAME} not found in PATH" >&5
3324$as_echo "$as_me: WARNING: cmucl executable ${CMUCL_NAME} not found in PATH" >&2;}
3325	fi
3326fi
3327
3328scl_default_name=scl
3329SCL_RUNTIME=lisp
3330# Check whether --enable-scl was given.
3331if test "${enable_scl+set}" = set; then :
3332  enableval=$enable_scl; case "${enableval}" in
3333       		yes) scl=true
3334		     lisps_enabled="${lisps_enabled} scl"
3335                     explicit_lisp=true ;;
3336       		no)  scl=false ;;
3337		*) as_fn_error $? "bad value ${enableval} for --enable-scl" "$LINENO" 5 ;;
3338     	esac
3339	explicit_lisp=true
3340else
3341  scl=false
3342fi
3343
3344
3345# Check whether --with-scl was given.
3346if test "${with_scl+set}" = set; then :
3347  withval=$with_scl; scl=true
3348	lisps_enabled="${lisps_enabled} scl"
3349	explicit_lisp=true
3350	if test "$withval" = "yes"; then
3351		SCL_NAME="${scl_default_name}"
3352	else
3353		SCL_NAME="$withval"
3354	fi
3355else
3356  SCL_NAME=${scl_default_name}
3357fi
3358
3359
3360# Check whether --with-scl-runtime was given.
3361if test "${with_scl_runtime+set}" = set; then :
3362  withval=$with_scl_runtime; scl=true
3363	lisps_enabled="${lisps_enabled} scl"
3364	SCL_RUNTIME_PATH="$withval"
3365	SCL_RUNTIME=`basename ${SCL_RUNTIME_PATH}`
3366fi
3367
3368if test x"${scl}" = xtrue ; then
3369	if test `echo "$SCL_NAME" | sed 's/\(.\).*/\1/'` = "/" ; then
3370		if test -x "$SCL_NAME" ; then
3371			scl_found=true
3372		else
3373			scl_found=false
3374		fi
3375	else
3376		# Extract the first word of "$SCL_NAME", so it can be a program name with args.
3377set dummy $SCL_NAME; ac_word=$2
3378{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3379$as_echo_n "checking for $ac_word... " >&6; }
3380if ${ac_cv_prog_scl_found+:} false; then :
3381  $as_echo_n "(cached) " >&6
3382else
3383  if test -n "$scl_found"; then
3384  ac_cv_prog_scl_found="$scl_found" # Let the user override the test.
3385else
3386as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3387for as_dir in $PATH
3388do
3389  IFS=$as_save_IFS
3390  test -z "$as_dir" && as_dir=.
3391    for ac_exec_ext in '' $ac_executable_extensions; do
3392  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3393    ac_cv_prog_scl_found="true"
3394    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3395    break 2
3396  fi
3397done
3398  done
3399IFS=$as_save_IFS
3400
3401  test -z "$ac_cv_prog_scl_found" && ac_cv_prog_scl_found="false"
3402fi
3403fi
3404scl_found=$ac_cv_prog_scl_found
3405if test -n "$scl_found"; then
3406  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $scl_found" >&5
3407$as_echo "$scl_found" >&6; }
3408else
3409  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3410$as_echo "no" >&6; }
3411fi
3412
3413
3414	fi
3415	# Extract the first word of "$SCL_NAME", so it can be a program name with args.
3416set dummy $SCL_NAME; ac_word=$2
3417{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3418$as_echo_n "checking for $ac_word... " >&6; }
3419if ${ac_cv_prog_scl_found+:} false; then :
3420  $as_echo_n "(cached) " >&6
3421else
3422  if test -n "$scl_found"; then
3423  ac_cv_prog_scl_found="$scl_found" # Let the user override the test.
3424else
3425as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3426for as_dir in $PATH
3427do
3428  IFS=$as_save_IFS
3429  test -z "$as_dir" && as_dir=.
3430    for ac_exec_ext in '' $ac_executable_extensions; do
3431  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3432    ac_cv_prog_scl_found="true"
3433    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3434    break 2
3435  fi
3436done
3437  done
3438IFS=$as_save_IFS
3439
3440  test -z "$ac_cv_prog_scl_found" && ac_cv_prog_scl_found="false"
3441fi
3442fi
3443scl_found=$ac_cv_prog_scl_found
3444if test -n "$scl_found"; then
3445  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $scl_found" >&5
3446$as_echo "$scl_found" >&6; }
3447else
3448  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3449$as_echo "no" >&6; }
3450fi
3451
3452
3453	if test x"${scl_found}" = xfalse ; then
3454		{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: scl executable ${SCL_NAME} not found in PATH" >&5
3455$as_echo "$as_me: WARNING: scl executable ${SCL_NAME} not found in PATH" >&2;}
3456	fi
3457fi
3458
3459sbcl_default_name=sbcl
3460# Check whether --enable-sbcl was given.
3461if test "${enable_sbcl+set}" = set; then :
3462  enableval=$enable_sbcl; case "${enableval}" in
3463       		yes) sbcl=true
3464		     lisps_enabled="${lisps_enabled} sbcl"
3465                     explicit_lisp=true ;;
3466       		no)  sbcl=false ;;
3467		*) as_fn_error $? "bad value ${enableval} for --enable-sbcl" "$LINENO" 5 ;;
3468     	esac
3469	explicit_lisp=true
3470else
3471  sbcl=false
3472fi
3473
3474
3475# Check whether --with-sbcl was given.
3476if test "${with_sbcl+set}" = set; then :
3477  withval=$with_sbcl; sbcl=true
3478	lisps_enabled="${lisps_enabled} sbcl"
3479	explicit_lisp=true
3480	if test "$withval" = "yes"; then
3481		SBCL_NAME="${sbcl_default_name}"
3482	else
3483		SBCL_NAME="$withval"
3484	fi
3485else
3486  SBCL_NAME="${sbcl_default_name}"
3487fi
3488
3489# Check whether --enable-sbcl-exec was given.
3490if test "${enable_sbcl_exec+set}" = set; then :
3491  enableval=$enable_sbcl_exec; case "${enableval}" in
3492	    yes) sbcl_exec=true
3493                 sbcl=true
3494		 lisps_enabled="${lisps_enabled} sbcl"
3495                 explicit_lisp=true ;;
3496	    no) sbcl_exec=false ;;
3497	    *) as_fn_error $? "bad value ${enableval} for --enable-sbcl-exec" "$LINENO" 5 ;;
3498         esac
3499	 SBCL_EXEC=${sbcl_exec}
3500else
3501  sbcl_exec=false
3502	 SBCL_EXEC=false
3503fi
3504
3505if test x"${sbcl}" = xtrue ; then
3506	if test `echo "$SBCL_NAME" | sed 's/\(.\).*/\1/'` = "/" ; then
3507		if test -x "$SBCL_NAME" ; then
3508			sbcl_found=true
3509		else
3510			sbcl_found=false
3511		fi
3512	else
3513		# Extract the first word of ""$SBCL_NAME"", so it can be a program name with args.
3514set dummy "$SBCL_NAME"; ac_word=$2
3515{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3516$as_echo_n "checking for $ac_word... " >&6; }
3517if ${ac_cv_prog_sbcl_found+:} false; then :
3518  $as_echo_n "(cached) " >&6
3519else
3520  if test -n "$sbcl_found"; then
3521  ac_cv_prog_sbcl_found="$sbcl_found" # Let the user override the test.
3522else
3523as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3524for as_dir in $PATH
3525do
3526  IFS=$as_save_IFS
3527  test -z "$as_dir" && as_dir=.
3528    for ac_exec_ext in '' $ac_executable_extensions; do
3529  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3530    ac_cv_prog_sbcl_found="true"
3531    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3532    break 2
3533  fi
3534done
3535  done
3536IFS=$as_save_IFS
3537
3538  test -z "$ac_cv_prog_sbcl_found" && ac_cv_prog_sbcl_found="false"
3539fi
3540fi
3541sbcl_found=$ac_cv_prog_sbcl_found
3542if test -n "$sbcl_found"; then
3543  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $sbcl_found" >&5
3544$as_echo "$sbcl_found" >&6; }
3545else
3546  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3547$as_echo "no" >&6; }
3548fi
3549
3550
3551	fi
3552	# Extract the first word of ""$SBCL_NAME"", so it can be a program name with args.
3553set dummy "$SBCL_NAME"; ac_word=$2
3554{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3555$as_echo_n "checking for $ac_word... " >&6; }
3556if ${ac_cv_prog_sbcl_found+:} false; then :
3557  $as_echo_n "(cached) " >&6
3558else
3559  if test -n "$sbcl_found"; then
3560  ac_cv_prog_sbcl_found="$sbcl_found" # Let the user override the test.
3561else
3562as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3563for as_dir in $PATH
3564do
3565  IFS=$as_save_IFS
3566  test -z "$as_dir" && as_dir=.
3567    for ac_exec_ext in '' $ac_executable_extensions; do
3568  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3569    ac_cv_prog_sbcl_found="true"
3570    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3571    break 2
3572  fi
3573done
3574  done
3575IFS=$as_save_IFS
3576
3577  test -z "$ac_cv_prog_sbcl_found" && ac_cv_prog_sbcl_found="false"
3578fi
3579fi
3580sbcl_found=$ac_cv_prog_sbcl_found
3581if test -n "$sbcl_found"; then
3582  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $sbcl_found" >&5
3583$as_echo "$sbcl_found" >&6; }
3584else
3585  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3586$as_echo "no" >&6; }
3587fi
3588
3589
3590	if test x"${sbcl_found}" = xfalse ; then
3591		{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: sbcl executable \"${SBCL_NAME}\" not found in PATH" >&5
3592$as_echo "$as_me: WARNING: sbcl executable \"${SBCL_NAME}\" not found in PATH" >&2;}
3593	fi
3594fi
3595
3596acl_default_name=lisp
3597# Check whether --enable-acl was given.
3598if test "${enable_acl+set}" = set; then :
3599  enableval=$enable_acl; case "${enableval}" in
3600       		yes) acl=true
3601		     lisps_enabled="${lisps_enabled} acl"
3602                     explicit_lisp=true ;;
3603       		no)  acl=false ;;
3604		*) as_fn_error $? "bad value ${enableval} for --enable-acl" "$LINENO" 5 ;;
3605     	esac
3606	explicit_lisp=true
3607else
3608  acl=false
3609fi
3610
3611
3612# Check whether --with-acl was given.
3613if test "${with_acl+set}" = set; then :
3614  withval=$with_acl; acl=true
3615	lisps_enabled="${lisps_enabled} acl"
3616	explicit_lisp=true
3617	if test "$withval" = "yes"; then
3618		ACL_NAME="${acl_default_name}"
3619	else
3620		ACL_NAME="$withval"
3621	fi
3622else
3623  ACL_NAME=${acl_default_name}
3624fi
3625
3626if test x"${acl}" = xtrue ; then
3627	if test `echo "$ACL_NAME" | sed 's/\(.\).*/\1/'` = "/" ; then
3628		if test -x "$ACL_NAME" ; then
3629			acl_found=true
3630		else
3631			acl_found=false
3632		fi
3633	else
3634		# Extract the first word of "$ACL_NAME", so it can be a program name with args.
3635set dummy $ACL_NAME; ac_word=$2
3636{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3637$as_echo_n "checking for $ac_word... " >&6; }
3638if ${ac_cv_prog_acl_found+:} false; then :
3639  $as_echo_n "(cached) " >&6
3640else
3641  if test -n "$acl_found"; then
3642  ac_cv_prog_acl_found="$acl_found" # Let the user override the test.
3643else
3644as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3645for as_dir in $PATH
3646do
3647  IFS=$as_save_IFS
3648  test -z "$as_dir" && as_dir=.
3649    for ac_exec_ext in '' $ac_executable_extensions; do
3650  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3651    ac_cv_prog_acl_found="true"
3652    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3653    break 2
3654  fi
3655done
3656  done
3657IFS=$as_save_IFS
3658
3659  test -z "$ac_cv_prog_acl_found" && ac_cv_prog_acl_found="false"
3660fi
3661fi
3662acl_found=$ac_cv_prog_acl_found
3663if test -n "$acl_found"; then
3664  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_found" >&5
3665$as_echo "$acl_found" >&6; }
3666else
3667  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3668$as_echo "no" >&6; }
3669fi
3670
3671
3672	fi
3673	# Extract the first word of "$ACL_NAME", so it can be a program name with args.
3674set dummy $ACL_NAME; ac_word=$2
3675{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3676$as_echo_n "checking for $ac_word... " >&6; }
3677if ${ac_cv_prog_acl_found+:} false; then :
3678  $as_echo_n "(cached) " >&6
3679else
3680  if test -n "$acl_found"; then
3681  ac_cv_prog_acl_found="$acl_found" # Let the user override the test.
3682else
3683as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3684for as_dir in $PATH
3685do
3686  IFS=$as_save_IFS
3687  test -z "$as_dir" && as_dir=.
3688    for ac_exec_ext in '' $ac_executable_extensions; do
3689  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3690    ac_cv_prog_acl_found="true"
3691    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3692    break 2
3693  fi
3694done
3695  done
3696IFS=$as_save_IFS
3697
3698  test -z "$ac_cv_prog_acl_found" && ac_cv_prog_acl_found="false"
3699fi
3700fi
3701acl_found=$ac_cv_prog_acl_found
3702if test -n "$acl_found"; then
3703  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_found" >&5
3704$as_echo "$acl_found" >&6; }
3705else
3706  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3707$as_echo "no" >&6; }
3708fi
3709
3710
3711	if test x"${acl_found}" = xfalse ; then
3712		{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: acl executable ${ACL_NAME} not found in PATH" >&5
3713$as_echo "$as_me: WARNING: acl executable ${ACL_NAME} not found in PATH" >&2;}
3714	fi
3715fi
3716
3717gcl_default_name=gcl
3718# Check whether --enable-gcl was given.
3719if test "${enable_gcl+set}" = set; then :
3720  enableval=$enable_gcl; case "${enableval}" in
3721       		yes) gcl=true
3722		     lisps_enabled="${lisps_enabled} gcl"
3723		     explicit_lisp=true;;
3724       		no)  gcl=false ;;
3725		*) as_fn_error $? "bad value ${enableval} for --enable-gcl" "$LINENO" 5 ;;
3726     	esac
3727else
3728  gcl=false
3729fi
3730
3731
3732# Check whether --with-gcl was given.
3733if test "${with_gcl+set}" = set; then :
3734  withval=$with_gcl; gcl=true
3735	lisps_enabled="${lisps_enabled} gcl"
3736	explicit_lisp=true
3737	if test "$withval" = "yes"; then
3738		GCL_NAME="${gcl_default_name}"
3739	else
3740		GCL_NAME="$withval"
3741	fi
3742else
3743  GCL_NAME=${gcl_default_name}
3744fi
3745
3746if test x"${gcl}" = xtrue ; then
3747	if test `echo "$GCL_NAME" | sed 's/\(.\).*/\1/'` = "/" ; then
3748		if test -x "$GCL_NAME" ; then
3749			gcl_found=true
3750		else
3751			gcl_found=false
3752		fi
3753	else
3754		# Extract the first word of "$GCL_NAME", so it can be a program name with args.
3755set dummy $GCL_NAME; ac_word=$2
3756{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3757$as_echo_n "checking for $ac_word... " >&6; }
3758if ${ac_cv_prog_gcl_found+:} false; then :
3759  $as_echo_n "(cached) " >&6
3760else
3761  if test -n "$gcl_found"; then
3762  ac_cv_prog_gcl_found="$gcl_found" # Let the user override the test.
3763else
3764as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3765for as_dir in $PATH
3766do
3767  IFS=$as_save_IFS
3768  test -z "$as_dir" && as_dir=.
3769    for ac_exec_ext in '' $ac_executable_extensions; do
3770  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3771    ac_cv_prog_gcl_found="true"
3772    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3773    break 2
3774  fi
3775done
3776  done
3777IFS=$as_save_IFS
3778
3779  test -z "$ac_cv_prog_gcl_found" && ac_cv_prog_gcl_found="false"
3780fi
3781fi
3782gcl_found=$ac_cv_prog_gcl_found
3783if test -n "$gcl_found"; then
3784  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcl_found" >&5
3785$as_echo "$gcl_found" >&6; }
3786else
3787  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3788$as_echo "no" >&6; }
3789fi
3790
3791
3792	fi
3793	if test x"${gcl_found}" = xfalse ; then
3794		{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: gcl executable ${GCL_NAME} not found in PATH" >&5
3795$as_echo "$as_me: WARNING: gcl executable ${GCL_NAME} not found in PATH" >&2;}
3796	fi
3797fi
3798
3799openmcl_default_name=openmcl
3800# Check whether --enable-openmcl was given.
3801if test "${enable_openmcl+set}" = set; then :
3802  enableval=$enable_openmcl; case "${enableval}" in
3803       		yes) openmcl=true
3804		     lisps_enabled="${lisps_enabled} openmcl"
3805		     explicit_lisp=true;;
3806       		no)  openmcl=false ;;
3807		*) as_fn_error $? "bad value ${enableval} for --enable-openmcl" "$LINENO" 5 ;;
3808     	esac
3809else
3810  openmcl=false
3811fi
3812
3813
3814# Check whether --with-openmcl was given.
3815if test "${with_openmcl+set}" = set; then :
3816  withval=$with_openmcl; openmcl=true
3817	lisps_enabled="${lisps_enabled} openmcl"
3818	explicit_lisp=true
3819	if test "$withval" = "yes"; then
3820		OPENMCL_NAME="${openmcl_default_name}"
3821	else
3822		OPENMCL_NAME="$withval"
3823	fi
3824else
3825  OPENMCL_NAME=${openmcl_default_name}
3826fi
3827
3828# Check whether --enable-openmcl-exec was given.
3829if test "${enable_openmcl_exec+set}" = set; then :
3830  enableval=$enable_openmcl_exec; case "${enableval}" in
3831	    yes) openmcl_exec=true
3832                 openmcl=true
3833		 lisps_enabled="${lisps_enabled} openmcl"
3834		 explicit_lisp=true;;
3835	    no) openmcl_exec=false ;;
3836	    *) as_fn_error $? "bad value ${enableval} for --enable-openmcl-exec" "$LINENO" 5 ;;
3837         esac
3838	 OPENMCL_EXEC=${openmcl_exec}
3839else
3840  openmcl_exec=false
3841	 OPENMCL_EXEC=false
3842fi
3843
3844
3845# Check whether --enable-ccl was given.
3846if test "${enable_ccl+set}" = set; then :
3847  enableval=$enable_ccl; case "${enableval}" in
3848       		yes) openmcl=true
3849		     lisps_enabled="${lisps_enabled} openmcl"
3850		     explicit_lisp=true;;
3851       		no)  openmcl=false ;;
3852		*) as_fn_error $? "bad value ${enableval} for --enable-ccl" "$LINENO" 5 ;;
3853     	esac
3854else
3855  openmcl=false
3856fi
3857
3858
3859# Check whether --with-ccl was given.
3860if test "${with_ccl+set}" = set; then :
3861  withval=$with_ccl; openmcl=true
3862	lisps_enabled="${lisps_enabled} openmcl"
3863	explicit_lisp=true
3864	if test "$withval" = "yes"; then
3865		OPENMCL_NAME="${openmcl_default_name}"
3866	else
3867		OPENMCL_NAME="$withval"
3868	fi
3869else
3870  OPENMCL_NAME=${openmcl_default_name}
3871fi
3872
3873# Check whether --enable-ccl-exec was given.
3874if test "${enable_ccl_exec+set}" = set; then :
3875  enableval=$enable_ccl_exec; case "${enableval}" in
3876	    yes) openmcl_exec=true
3877                 openmcl=true
3878		 lisps_enabled="${lisps_enabled} openmcl"
3879                 explicit_lisp=true;;
3880	    no) openmcl_exec=false ;;
3881	    *) as_fn_error $? "bad value ${enableval} for --enable-ccl-exec" "$LINENO" 5 ;;
3882         esac
3883	 OPENMCL_EXEC=${openmcl_exec}
3884else
3885  openmcl_exec=false
3886	 OPENMCL_EXEC=false
3887fi
3888
3889
3890if test x"${openmcl}" = xtrue ; then
3891	if test `echo "$OPENMCL_NAME" | sed 's/\(.\).*/\1/'` = "/" ; then
3892		if test -x "$OPENMCL_NAME" ; then
3893			openmcl_found=true
3894		else
3895			openmcl_found=false
3896		fi
3897	else
3898		# Extract the first word of "$OPENMCL_NAME", so it can be a program name with args.
3899set dummy $OPENMCL_NAME; ac_word=$2
3900{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3901$as_echo_n "checking for $ac_word... " >&6; }
3902if ${ac_cv_prog_openmcl_found+:} false; then :
3903  $as_echo_n "(cached) " >&6
3904else
3905  if test -n "$openmcl_found"; then
3906  ac_cv_prog_openmcl_found="$openmcl_found" # Let the user override the test.
3907else
3908as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3909for as_dir in $PATH
3910do
3911  IFS=$as_save_IFS
3912  test -z "$as_dir" && as_dir=.
3913    for ac_exec_ext in '' $ac_executable_extensions; do
3914  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3915    ac_cv_prog_openmcl_found="true"
3916    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3917    break 2
3918  fi
3919done
3920  done
3921IFS=$as_save_IFS
3922
3923  test -z "$ac_cv_prog_openmcl_found" && ac_cv_prog_openmcl_found="false"
3924fi
3925fi
3926openmcl_found=$ac_cv_prog_openmcl_found
3927if test -n "$openmcl_found"; then
3928  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $openmcl_found" >&5
3929$as_echo "$openmcl_found" >&6; }
3930else
3931  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3932$as_echo "no" >&6; }
3933fi
3934
3935
3936	fi
3937	if test x"${openmcl_found}" = xfalse ; then
3938		{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: openmcl executable ${OPENMCL_NAME} not found in PATH" >&5
3939$as_echo "$as_me: WARNING: openmcl executable ${OPENMCL_NAME} not found in PATH" >&2;}
3940	fi
3941fi
3942
3943
3944ccl64_default_name=dx86cl64
3945# Check whether --enable-ccl64 was given.
3946if test "${enable_ccl64+set}" = set; then :
3947  enableval=$enable_ccl64; case "${enableval}" in
3948       		yes) ccl64=true
3949		     lisps_enabled="${lisps_enabled} ccl64"
3950		     explicit_lisp=true;;
3951       		no)  ccl64=false ;;
3952		*) as_fn_error $? "bad value ${enableval} for --enable-ccl64" "$LINENO" 5 ;;
3953     	esac
3954else
3955  ccl64=false
3956fi
3957
3958
3959# Check whether --with-ccl64 was given.
3960if test "${with_ccl64+set}" = set; then :
3961  withval=$with_ccl64; ccl64=true
3962	lisps_enabled="${lisps_enabled} ccl64"
3963	explicit_lisp=true
3964	if test "$withval" = "yes"; then
3965		CCL64_NAME="${ccl64_default_name}"
3966	else
3967		CCL64_NAME="$withval"
3968	fi
3969else
3970  CCL64_NAME=${ccl64_default_name}
3971fi
3972
3973# Check whether --enable-ccl64-exec was given.
3974if test "${enable_ccl64_exec+set}" = set; then :
3975  enableval=$enable_ccl64_exec; case "${enableval}" in
3976	    yes) ccl64_exec=true
3977                 ccl64=true
3978		 lisps_enabled="${lisps_enabled} ccl64"
3979                 explicit_lisp=true;;
3980	    no) ccl64_exec=false ;;
3981	    *) as_fn_error $? "bad value ${enableval} for --enable-ccl64-exec" "$LINENO" 5 ;;
3982         esac
3983	 CCL64_EXEC=${ccl64_exec}
3984else
3985  ccl64_exec=false
3986	 CCL64_EXEC=false
3987fi
3988
3989
3990ecl_default_name=ecl
3991# Check whether --enable-ecl was given.
3992if test "${enable_ecl+set}" = set; then :
3993  enableval=$enable_ecl; case "${enableval}" in
3994       		yes) ecl=true
3995		     lisps_enabled="${lisps_enabled} ecl"
3996		     explicit_lisp=true;;
3997       		no)  ecl=false ;;
3998		*) as_fn_error $? "bad value ${enableval} for --enable-ecl" "$LINENO" 5 ;;
3999     	esac
4000else
4001  ecl=false
4002fi
4003
4004
4005# Check whether --with-ecl was given.
4006if test "${with_ecl+set}" = set; then :
4007  withval=$with_ecl; ecl=true
4008	lisps_enabled="${lisps_enabled} ecl"
4009	explicit_lisp=true
4010	if test "$withval" = "yes"; then
4011		ECL_NAME="${ecl_default_name}"
4012	else
4013		ECL_NAME="$withval"
4014	fi
4015else
4016  ECL_NAME=${ecl_default_name}
4017fi
4018
4019if test x"${ecl}" = xtrue ; then
4020	if test `echo "$ECL_NAME" | sed 's/\(.\).*/\1/'` = "/" ; then
4021		if test -x "$ECL_NAME" ; then
4022			ecl_found=true
4023		else
4024			ecl_found=false
4025		fi
4026	else
4027		# Extract the first word of "$ECL_NAME", so it can be a program name with args.
4028set dummy $ECL_NAME; ac_word=$2
4029{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4030$as_echo_n "checking for $ac_word... " >&6; }
4031if ${ac_cv_prog_ecl_found+:} false; then :
4032  $as_echo_n "(cached) " >&6
4033else
4034  if test -n "$ecl_found"; then
4035  ac_cv_prog_ecl_found="$ecl_found" # Let the user override the test.
4036else
4037as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4038for as_dir in $PATH
4039do
4040  IFS=$as_save_IFS
4041  test -z "$as_dir" && as_dir=.
4042    for ac_exec_ext in '' $ac_executable_extensions; do
4043  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4044    ac_cv_prog_ecl_found="true"
4045    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4046    break 2
4047  fi
4048done
4049  done
4050IFS=$as_save_IFS
4051
4052  test -z "$ac_cv_prog_ecl_found" && ac_cv_prog_ecl_found="false"
4053fi
4054fi
4055ecl_found=$ac_cv_prog_ecl_found
4056if test -n "$ecl_found"; then
4057  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ecl_found" >&5
4058$as_echo "$ecl_found" >&6; }
4059else
4060  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4061$as_echo "no" >&6; }
4062fi
4063
4064
4065	fi
4066	if test x"${ecl_found}" = xfalse ; then
4067		{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: ecl executable ${ECL_NAME} not found in PATH" >&5
4068$as_echo "$as_me: WARNING: ecl executable ${ECL_NAME} not found in PATH" >&2;}
4069	fi
4070fi
4071
4072# Check whether --enable-gettext was given.
4073if test "${enable_gettext+set}" = set; then :
4074  enableval=$enable_gettext; case "${enableval}" in
4075	       yes) enable_gettext=true  ;;
4076 	       no)  enable_gettext=false ;;
4077	       *) as_fn_error $? "bad value ${enableval} for --enable-gettext" "$LINENO" 5 ;;
4078	 esac
4079else
4080  enable_gettext=false
4081fi
4082
4083
4084
4085 if test x$enable_gettext = xtrue; then
4086  ENABLE_GETTEXT_TRUE=
4087  ENABLE_GETTEXT_FALSE='#'
4088else
4089  ENABLE_GETTEXT_TRUE='#'
4090  ENABLE_GETTEXT_FALSE=
4091fi
4092
4093
4094# Check whether --enable-lang-de was given.
4095if test "${enable_lang_de+set}" = set; then :
4096  enableval=$enable_lang_de; case "${enableval}" in
4097       		yes) lang_de=true  ;;
4098       		no)  lang_de=false ;;
4099		*) as_fn_error $? "bad value ${enableval} for --enable-lang-de" "$LINENO" 5 ;;
4100     	esac
4101else
4102  lang_de=false
4103fi
4104
4105
4106 if test x$lang_de = xtrue; then
4107  LANG_DE_TRUE=
4108  LANG_DE_FALSE='#'
4109else
4110  LANG_DE_TRUE='#'
4111  LANG_DE_FALSE=
4112fi
4113
4114
4115# Check whether --enable-lang-de-utf8 was given.
4116if test "${enable_lang_de_utf8+set}" = set; then :
4117  enableval=$enable_lang_de_utf8; case "${enableval}" in
4118       		yes) lang_de_utf8=true  ;;
4119       		no)  lang_de_utf8=false ;;
4120		*) as_fn_error $? "bad value ${enableval} for --enable-lang-de-utf8" "$LINENO" 5 ;;
4121     	esac
4122else
4123  lang_de_utf8=false
4124fi
4125
4126
4127 if test x$lang_de_utf8 = xtrue; then
4128  LANG_DE_UTF8_TRUE=
4129  LANG_DE_UTF8_FALSE='#'
4130else
4131  LANG_DE_UTF8_TRUE='#'
4132  LANG_DE_UTF8_FALSE=
4133fi
4134
4135
4136# Check whether --enable-lang-es was given.
4137if test "${enable_lang_es+set}" = set; then :
4138  enableval=$enable_lang_es; case "${enableval}" in
4139       		yes) lang_es=true  ;;
4140       		no)  lang_es=false ;;
4141		*) as_fn_error $? "bad value ${enableval} for --enable-lang-es" "$LINENO" 5 ;;
4142     	esac
4143else
4144  lang_es=false
4145fi
4146
4147
4148
4149 if test x$lang_es = xtrue; then
4150  LANG_ES_TRUE=
4151  LANG_ES_FALSE='#'
4152else
4153  LANG_ES_TRUE='#'
4154  LANG_ES_FALSE=
4155fi
4156
4157
4158# Check whether --enable-lang-es-utf8 was given.
4159if test "${enable_lang_es_utf8+set}" = set; then :
4160  enableval=$enable_lang_es_utf8; case "${enableval}" in
4161       		yes) lang_es_utf8=true  ;;
4162       		no)  lang_es_utf8=false ;;
4163		*) as_fn_error $? "bad value ${enableval} for --enable-lang-es-utf8" "$LINENO" 5 ;;
4164     	esac
4165else
4166  lang_es_utf8=false
4167fi
4168
4169
4170 if test x$lang_es_utf8 = xtrue; then
4171  LANG_ES_UTF8_TRUE=
4172  LANG_ES_UTF8_FALSE='#'
4173else
4174  LANG_ES_UTF8_TRUE='#'
4175  LANG_ES_UTF8_FALSE=
4176fi
4177
4178
4179# Check whether --enable-lang-pt was given.
4180if test "${enable_lang_pt+set}" = set; then :
4181  enableval=$enable_lang_pt; case "${enableval}" in
4182       		yes) lang_pt=true  ;;
4183       		no)  lang_pt=false ;;
4184		*) as_fn_error $? "bad value ${enableval} for --enable-lang-pt" "$LINENO" 5 ;;
4185     	esac
4186else
4187  lang_pt=false
4188fi
4189
4190
4191
4192 if test x$lang_pt = xtrue; then
4193  LANG_PT_TRUE=
4194  LANG_PT_FALSE='#'
4195else
4196  LANG_PT_TRUE='#'
4197  LANG_PT_FALSE=
4198fi
4199
4200
4201# Check whether --enable-lang-pt-utf8 was given.
4202if test "${enable_lang_pt_utf8+set}" = set; then :
4203  enableval=$enable_lang_pt_utf8; case "${enableval}" in
4204       		yes) lang_pt_utf8=true  ;;
4205       		no)  lang_pt_utf8=false ;;
4206		*) as_fn_error $? "bad value ${enableval} for --enable-lang-pt-utf8" "$LINENO" 5 ;;
4207     	esac
4208else
4209  lang_pt_utf8=false
4210fi
4211
4212
4213 if test x$lang_pt_utf8 = xtrue; then
4214  LANG_PT_UTF8_TRUE=
4215  LANG_PT_UTF8_FALSE='#'
4216else
4217  LANG_PT_UTF8_TRUE='#'
4218  LANG_PT_UTF8_FALSE=
4219fi
4220
4221
4222# Check whether --enable-lang-pt_BR was given.
4223if test "${enable_lang_pt_BR+set}" = set; then :
4224  enableval=$enable_lang_pt_BR; case "${enableval}" in
4225       		yes) lang_pt_br=true  ;;
4226       		no)  lang_pt_br=false ;;
4227		*) as_fn_error $? "bad value ${enableval} for --enable-lang-pt_BR" "$LINENO" 5 ;;
4228     	esac
4229else
4230  lang_pt_br=false
4231fi
4232
4233
4234
4235 if test x$lang_pt_br = xtrue; then
4236  LANG_PT_BR_TRUE=
4237  LANG_PT_BR_FALSE='#'
4238else
4239  LANG_PT_BR_TRUE='#'
4240  LANG_PT_BR_FALSE=
4241fi
4242
4243
4244# Check whether --enable-lang-pt_BR-utf8 was given.
4245if test "${enable_lang_pt_BR_utf8+set}" = set; then :
4246  enableval=$enable_lang_pt_BR_utf8; case "${enableval}" in
4247       		yes) lang_pt_br_utf8=true  ;;
4248       		no)  lang_pt_br_utf8=false ;;
4249		*) as_fn_error $? "bad value ${enableval} for --enable-lang-pt_BR-utf8" "$LINENO" 5 ;;
4250     	esac
4251else
4252  lang_pt_br_utf8=false
4253fi
4254
4255
4256 if test x$lang_pt_br_utf8 = xtrue; then
4257  LANG_PT_BR_UTF8_TRUE=
4258  LANG_PT_BR_UTF8_FALSE='#'
4259else
4260  LANG_PT_BR_UTF8_TRUE='#'
4261  LANG_PT_BR_UTF8_FALSE=
4262fi
4263
4264
4265# Check whether --enable-recode was given.
4266if test "${enable_recode+set}" = set; then :
4267  enableval=$enable_recode; case "${enableval}" in
4268       		yes) use_recode=true  ;;
4269       		no)  use_recode=false ;;
4270		*) as_fn_error $? "bad value ${enableval} for --enable-recode" "$LINENO" 5 ;;
4271     	esac
4272else
4273  use_recode=false
4274fi
4275
4276
4277# Extract the first word of "iconv", so it can be a program name with args.
4278set dummy iconv; ac_word=$2
4279{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4280$as_echo_n "checking for $ac_word... " >&6; }
4281if ${ac_cv_prog_iconv_found+:} false; then :
4282  $as_echo_n "(cached) " >&6
4283else
4284  if test -n "$iconv_found"; then
4285  ac_cv_prog_iconv_found="$iconv_found" # Let the user override the test.
4286else
4287as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4288for as_dir in $PATH
4289do
4290  IFS=$as_save_IFS
4291  test -z "$as_dir" && as_dir=.
4292    for ac_exec_ext in '' $ac_executable_extensions; do
4293  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4294    ac_cv_prog_iconv_found="true"
4295    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4296    break 2
4297  fi
4298done
4299  done
4300IFS=$as_save_IFS
4301
4302  test -z "$ac_cv_prog_iconv_found" && ac_cv_prog_iconv_found="false"
4303fi
4304fi
4305iconv_found=$ac_cv_prog_iconv_found
4306if test -n "$iconv_found"; then
4307  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $iconv_found" >&5
4308$as_echo "$iconv_found" >&6; }
4309else
4310  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4311$as_echo "no" >&6; }
4312fi
4313
4314
4315# Extract the first word of "recode", so it can be a program name with args.
4316set dummy recode; ac_word=$2
4317{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4318$as_echo_n "checking for $ac_word... " >&6; }
4319if ${ac_cv_prog_recode_found+:} false; then :
4320  $as_echo_n "(cached) " >&6
4321else
4322  if test -n "$recode_found"; then
4323  ac_cv_prog_recode_found="$recode_found" # Let the user override the test.
4324else
4325as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4326for as_dir in $PATH
4327do
4328  IFS=$as_save_IFS
4329  test -z "$as_dir" && as_dir=.
4330    for ac_exec_ext in '' $ac_executable_extensions; do
4331  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4332    ac_cv_prog_recode_found="true"
4333    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4334    break 2
4335  fi
4336done
4337  done
4338IFS=$as_save_IFS
4339
4340  test -z "$ac_cv_prog_recode_found" && ac_cv_prog_recode_found="false"
4341fi
4342fi
4343recode_found=$ac_cv_prog_recode_found
4344if test -n "$recode_found"; then
4345  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $recode_found" >&5
4346$as_echo "$recode_found" >&6; }
4347else
4348  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4349$as_echo "no" >&6; }
4350fi
4351
4352
4353
4354if test x"${use_recode}" = xtrue ; then
4355    if test x"${recode_found}" = xfalse ; then
4356	as_fn_error $? "No recode found" "$LINENO" 5
4357    fi
4358elif test x"${iconv_found}" = xfalse ; then
4359    use_recode=true
4360else
4361    use_recode=false
4362fi
4363
4364 if test x$use_recode = xtrue; then
4365  USE_RECODE_TRUE=
4366  USE_RECODE_FALSE='#'
4367else
4368  USE_RECODE_TRUE='#'
4369  USE_RECODE_FALSE=
4370fi
4371
4372
4373# Check whether --enable-chm was given.
4374if test "${enable_chm+set}" = set; then :
4375  enableval=$enable_chm; case "${enableval}" in
4376       		yes) chm=true ;;
4377       		no)  chm=false ;;
4378		*) as_fn_error $? "bad value ${enableval} for --enable-chm" "$LINENO" 5 ;;
4379   esac
4380else
4381  chm=false
4382fi
4383
4384 if test x$chm = xtrue; then
4385  CHM_TRUE=
4386  CHM_FALSE='#'
4387else
4388  CHM_TRUE='#'
4389  CHM_FALSE=
4390fi
4391
4392hhc_default_name=hhc$EXEEXT
4393
4394# Check whether --with-hhc was given.
4395if test "${with_hhc+set}" = set; then :
4396  withval=$with_hhc; hhc=true
4397	if test "$withval" = "yes"; then
4398		HHC="${hhc_default_name}"
4399	else
4400		HHC="$withval"
4401	fi
4402else
4403  HHC="${hhc_default_name}"
4404fi
4405
4406
4407# Check that hhc exists, using AC_CHECK_PROG
4408if test x$chm = xtrue; then
4409  if test -x "${HHC}"; then
4410    # HHC was a path to the executable, and it existed, which is
4411    # great! We still say something to the caller, since this is
4412    # probably less confusing.
4413    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hhc" >&5
4414$as_echo_n "checking for hhc... " >&6; }
4415    { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
4416$as_echo "yes" >&6; }
4417  else
4418    # Extract the first word of "${HHC}", so it can be a program name with args.
4419set dummy ${HHC}; ac_word=$2
4420{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4421$as_echo_n "checking for $ac_word... " >&6; }
4422if ${ac_cv_prog_hhc_found+:} false; then :
4423  $as_echo_n "(cached) " >&6
4424else
4425  if test -n "$hhc_found"; then
4426  ac_cv_prog_hhc_found="$hhc_found" # Let the user override the test.
4427else
4428as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4429for as_dir in $PATH
4430do
4431  IFS=$as_save_IFS
4432  test -z "$as_dir" && as_dir=.
4433    for ac_exec_ext in '' $ac_executable_extensions; do
4434  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4435    ac_cv_prog_hhc_found="yes"
4436    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4437    break 2
4438  fi
4439done
4440  done
4441IFS=$as_save_IFS
4442
4443fi
4444fi
4445hhc_found=$ac_cv_prog_hhc_found
4446if test -n "$hhc_found"; then
4447  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hhc_found" >&5
4448$as_echo "$hhc_found" >&6; }
4449else
4450  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4451$as_echo "no" >&6; }
4452fi
4453
4454
4455    if test x"${hhc_found}" != x"yes"; then
4456      as_fn_error $? "HTML Help Compiler executable ${HHC} not found" "$LINENO" 5
4457    fi
4458  fi
4459fi
4460
4461# Check whether --enable-quiet_build was given.
4462if test "${enable_quiet_build+set}" = set; then :
4463  enableval=$enable_quiet_build; case "${enableval}" in
4464     yes) quiet_build=true ;;
4465     no)  quiet_build=false ;;
4466     *) as_fn_error $? "bad value ${enableval} for --enable-quiet-build" "$LINENO" 5 ;;
4467   esac
4468else
4469  quiet_build=false
4470fi
4471
4472 if test x${quiet_build} = xtrue; then
4473  QUIET_BUILD_TRUE=
4474  QUIET_BUILD_FALSE='#'
4475else
4476  QUIET_BUILD_TRUE='#'
4477  QUIET_BUILD_FALSE=
4478fi
4479
4480
4481# Check whether --enable-xmaxima_exe was given.
4482if test "${enable_xmaxima_exe+set}" = set; then :
4483  enableval=$enable_xmaxima_exe; case "${enableval}" in
4484       		yes) xmaxima_exe=true ;;
4485       		no)  xmaxima_exe=false ;;
4486		*) as_fn_error $? "bad value ${enableval} for --enable-xmaxima-exe" "$LINENO" 5 ;;
4487   esac
4488else
4489  xmaxima_exe=false
4490fi
4491
4492 if test x$xmaxima_exe = xtrue; then
4493  XMAXIMA_EXE_TRUE=
4494  XMAXIMA_EXE_FALSE='#'
4495else
4496  XMAXIMA_EXE_TRUE='#'
4497  XMAXIMA_EXE_FALSE=
4498fi
4499
4500
4501# Check whether --enable-winkill_exe was given.
4502if test "${enable_winkill_exe+set}" = set; then :
4503  enableval=$enable_winkill_exe; case "${enableval}" in
4504       		yes) winkill_exe=true ;;
4505       		no)  winkill_exe=false ;;
4506		*) as_fn_error $? "bad value ${enableval} for --enable-winkill-exe" "$LINENO" 5 ;;
4507   esac
4508else
4509  winkill_exe=false
4510fi
4511
4512 if test x$winkill_exe = xtrue; then
4513  WINKILL_EXE_TRUE=
4514  WINKILL_EXE_FALSE='#'
4515else
4516  WINKILL_EXE_TRUE='#'
4517  WINKILL_EXE_FALSE=
4518fi
4519
4520
4521# Check whether --enable-win64-installer was given.
4522if test "${enable_win64_installer+set}" = set; then :
4523  enableval=$enable_win64_installer; case "${enableval}" in
4524                yes) win64_installer=true ;;
4525                no) win64_installer=false ;;
4526                *) as_fn_error $? "bad valu ${enableval} for --enable-win64-installer" "$LINENO" 5 ;;
4527  esac
4528else
4529  win64_installer=false
4530fi
4531
4532 if test x$win64_installer = xtrue; then
4533  WIN64_INSTALLER_TRUE=
4534  WIN64_INSTALLER_FALSE='#'
4535else
4536  WIN64_INSTALLER_TRUE='#'
4537  WIN64_INSTALLER_FALSE=
4538fi
4539
4540
4541
4542# Check whether --enable-mathjax was given.
4543if test "${enable_mathjax+set}" = set; then :
4544  enableval=$enable_mathjax; case "${enableval}" in
4545      yes) mathjax=true
4546           mathjax_enable='@set mathjax true'
4547           mathjax_script='<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>'
4548;;
4549      no)  mathjax=false
4550           mathjax_enable='@clear mathjax'
4551           mathjax_script="";;
4552      *) as_fn_error $? "bad value ${enableval} for --enable-mathjax" "$LINENO" 5 ;;
4553   esac
4554else
4555  mathjax=false
4556fi
4557
4558 if test x$mathjax = xtrue; then
4559  MATHJAX_TRUE=
4560  MATHJAX_FALSE='#'
4561else
4562  MATHJAX_TRUE='#'
4563  MATHJAX_FALSE=
4564fi
4565
4566
4567
4568
4569GCCVER=undefined
4570if test x${xmaxima_exe} = xtrue ; then
4571  GCCVER=`gcc -dumpversion`
4572      TCLKITSH=/c/programs/star/tclkitsh-8.6.3-win32-ix86.exe
4573  TCLKIT_RUNTIME=/c/programs/star/tclkit-8.6.3-win32-ix86.exe
4574  SDXKIT=/c/programs/star/sdx.kit
4575  IMGKIT=/c/programs/star/img.kit
4576fi
4577
4578
4579
4580
4581
4582
4583 if test x${GCCVER} = x3.3.1; then
4584  GCC331_TRUE=
4585  GCC331_FALSE='#'
4586else
4587  GCC331_TRUE='#'
4588  GCC331_FALSE=
4589fi
4590
4591
4592if test x"${explicit_lisp}" = xfalse ; then
4593	  	# Extract the first word of "${clisp_default_name}", so it can be a program name with args.
4594set dummy ${clisp_default_name}; ac_word=$2
4595{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4596$as_echo_n "checking for $ac_word... " >&6; }
4597if ${ac_cv_prog_clisp_found+:} false; then :
4598  $as_echo_n "(cached) " >&6
4599else
4600  if test -n "$clisp_found"; then
4601  ac_cv_prog_clisp_found="$clisp_found" # Let the user override the test.
4602else
4603as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4604for as_dir in $PATH
4605do
4606  IFS=$as_save_IFS
4607  test -z "$as_dir" && as_dir=.
4608    for ac_exec_ext in '' $ac_executable_extensions; do
4609  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4610    ac_cv_prog_clisp_found="true"
4611    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4612    break 2
4613  fi
4614done
4615  done
4616IFS=$as_save_IFS
4617
4618  test -z "$ac_cv_prog_clisp_found" && ac_cv_prog_clisp_found="false"
4619fi
4620fi
4621clisp_found=$ac_cv_prog_clisp_found
4622if test -n "$clisp_found"; then
4623  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $clisp_found" >&5
4624$as_echo "$clisp_found" >&6; }
4625else
4626  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4627$as_echo "no" >&6; }
4628fi
4629
4630
4631	# Extract the first word of "${gcl_default_name}", so it can be a program name with args.
4632set dummy ${gcl_default_name}; ac_word=$2
4633{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4634$as_echo_n "checking for $ac_word... " >&6; }
4635if ${ac_cv_prog_gcl_found+:} false; then :
4636  $as_echo_n "(cached) " >&6
4637else
4638  if test -n "$gcl_found"; then
4639  ac_cv_prog_gcl_found="$gcl_found" # Let the user override the test.
4640else
4641as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4642for as_dir in $PATH
4643do
4644  IFS=$as_save_IFS
4645  test -z "$as_dir" && as_dir=.
4646    for ac_exec_ext in '' $ac_executable_extensions; do
4647  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4648    ac_cv_prog_gcl_found="true"
4649    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4650    break 2
4651  fi
4652done
4653  done
4654IFS=$as_save_IFS
4655
4656  test -z "$ac_cv_prog_gcl_found" && ac_cv_prog_gcl_found="false"
4657fi
4658fi
4659gcl_found=$ac_cv_prog_gcl_found
4660if test -n "$gcl_found"; then
4661  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcl_found" >&5
4662$as_echo "$gcl_found" >&6; }
4663else
4664  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4665$as_echo "no" >&6; }
4666fi
4667
4668
4669	# Extract the first word of "$CMUCL_NAME", so it can be a program name with args.
4670set dummy $CMUCL_NAME; ac_word=$2
4671{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4672$as_echo_n "checking for $ac_word... " >&6; }
4673if ${ac_cv_prog_cmucl_found+:} false; then :
4674  $as_echo_n "(cached) " >&6
4675else
4676  if test -n "$cmucl_found"; then
4677  ac_cv_prog_cmucl_found="$cmucl_found" # Let the user override the test.
4678else
4679as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4680for as_dir in $PATH
4681do
4682  IFS=$as_save_IFS
4683  test -z "$as_dir" && as_dir=.
4684    for ac_exec_ext in '' $ac_executable_extensions; do
4685  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4686    ac_cv_prog_cmucl_found="true"
4687    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4688    break 2
4689  fi
4690done
4691  done
4692IFS=$as_save_IFS
4693
4694  test -z "$ac_cv_prog_cmucl_found" && ac_cv_prog_cmucl_found="false"
4695fi
4696fi
4697cmucl_found=$ac_cv_prog_cmucl_found
4698if test -n "$cmucl_found"; then
4699  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cmucl_found" >&5
4700$as_echo "$cmucl_found" >&6; }
4701else
4702  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4703$as_echo "no" >&6; }
4704fi
4705
4706
4707	# Extract the first word of "$SCL_NAME", so it can be a program name with args.
4708set dummy $SCL_NAME; ac_word=$2
4709{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4710$as_echo_n "checking for $ac_word... " >&6; }
4711if ${ac_cv_prog_scl_found+:} false; then :
4712  $as_echo_n "(cached) " >&6
4713else
4714  if test -n "$scl_found"; then
4715  ac_cv_prog_scl_found="$scl_found" # Let the user override the test.
4716else
4717as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4718for as_dir in $PATH
4719do
4720  IFS=$as_save_IFS
4721  test -z "$as_dir" && as_dir=.
4722    for ac_exec_ext in '' $ac_executable_extensions; do
4723  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4724    ac_cv_prog_scl_found="true"
4725    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4726    break 2
4727  fi
4728done
4729  done
4730IFS=$as_save_IFS
4731
4732  test -z "$ac_cv_prog_scl_found" && ac_cv_prog_scl_found="false"
4733fi
4734fi
4735scl_found=$ac_cv_prog_scl_found
4736if test -n "$scl_found"; then
4737  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $scl_found" >&5
4738$as_echo "$scl_found" >&6; }
4739else
4740  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4741$as_echo "no" >&6; }
4742fi
4743
4744
4745	# Extract the first word of "$SBCL_NAME", so it can be a program name with args.
4746set dummy $SBCL_NAME; ac_word=$2
4747{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4748$as_echo_n "checking for $ac_word... " >&6; }
4749if ${ac_cv_prog_sbcl_found+:} false; then :
4750  $as_echo_n "(cached) " >&6
4751else
4752  if test -n "$sbcl_found"; then
4753  ac_cv_prog_sbcl_found="$sbcl_found" # Let the user override the test.
4754else
4755as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4756for as_dir in $PATH
4757do
4758  IFS=$as_save_IFS
4759  test -z "$as_dir" && as_dir=.
4760    for ac_exec_ext in '' $ac_executable_extensions; do
4761  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4762    ac_cv_prog_sbcl_found="true"
4763    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4764    break 2
4765  fi
4766done
4767  done
4768IFS=$as_save_IFS
4769
4770  test -z "$ac_cv_prog_sbcl_found" && ac_cv_prog_sbcl_found="false"
4771fi
4772fi
4773sbcl_found=$ac_cv_prog_sbcl_found
4774if test -n "$sbcl_found"; then
4775  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $sbcl_found" >&5
4776$as_echo "$sbcl_found" >&6; }
4777else
4778  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4779$as_echo "no" >&6; }
4780fi
4781
4782
4783	# Extract the first word of "$ACL_NAME", so it can be a program name with args.
4784set dummy $ACL_NAME; ac_word=$2
4785{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4786$as_echo_n "checking for $ac_word... " >&6; }
4787if ${ac_cv_prog_acl_found+:} false; then :
4788  $as_echo_n "(cached) " >&6
4789else
4790  if test -n "$acl_found"; then
4791  ac_cv_prog_acl_found="$acl_found" # Let the user override the test.
4792else
4793as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4794for as_dir in $PATH
4795do
4796  IFS=$as_save_IFS
4797  test -z "$as_dir" && as_dir=.
4798    for ac_exec_ext in '' $ac_executable_extensions; do
4799  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4800    ac_cv_prog_acl_found="true"
4801    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4802    break 2
4803  fi
4804done
4805  done
4806IFS=$as_save_IFS
4807
4808  test -z "$ac_cv_prog_acl_found" && ac_cv_prog_acl_found="false"
4809fi
4810fi
4811acl_found=$ac_cv_prog_acl_found
4812if test -n "$acl_found"; then
4813  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_found" >&5
4814$as_echo "$acl_found" >&6; }
4815else
4816  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4817$as_echo "no" >&6; }
4818fi
4819
4820
4821	# Extract the first word of "$OPENMCL_NAME", so it can be a program name with args.
4822set dummy $OPENMCL_NAME; ac_word=$2
4823{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4824$as_echo_n "checking for $ac_word... " >&6; }
4825if ${ac_cv_prog_openmcl_found+:} false; then :
4826  $as_echo_n "(cached) " >&6
4827else
4828  if test -n "$openmcl_found"; then
4829  ac_cv_prog_openmcl_found="$openmcl_found" # Let the user override the test.
4830else
4831as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4832for as_dir in $PATH
4833do
4834  IFS=$as_save_IFS
4835  test -z "$as_dir" && as_dir=.
4836    for ac_exec_ext in '' $ac_executable_extensions; do
4837  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4838    ac_cv_prog_openmcl_found="true"
4839    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4840    break 2
4841  fi
4842done
4843  done
4844IFS=$as_save_IFS
4845
4846  test -z "$ac_cv_prog_openmcl_found" && ac_cv_prog_openmcl_found="false"
4847fi
4848fi
4849openmcl_found=$ac_cv_prog_openmcl_found
4850if test -n "$openmcl_found"; then
4851  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $openmcl_found" >&5
4852$as_echo "$openmcl_found" >&6; }
4853else
4854  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4855$as_echo "no" >&6; }
4856fi
4857
4858
4859	# Extract the first word of "$CCL64_NAME", so it can be a program name with args.
4860set dummy $CCL64_NAME; ac_word=$2
4861{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4862$as_echo_n "checking for $ac_word... " >&6; }
4863if ${ac_cv_prog_ccl64_found+:} false; then :
4864  $as_echo_n "(cached) " >&6
4865else
4866  if test -n "$ccl64_found"; then
4867  ac_cv_prog_ccl64_found="$ccl64_found" # Let the user override the test.
4868else
4869as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4870for as_dir in $PATH
4871do
4872  IFS=$as_save_IFS
4873  test -z "$as_dir" && as_dir=.
4874    for ac_exec_ext in '' $ac_executable_extensions; do
4875  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4876    ac_cv_prog_ccl64_found="true"
4877    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4878    break 2
4879  fi
4880done
4881  done
4882IFS=$as_save_IFS
4883
4884  test -z "$ac_cv_prog_ccl64_found" && ac_cv_prog_ccl64_found="false"
4885fi
4886fi
4887ccl64_found=$ac_cv_prog_ccl64_found
4888if test -n "$ccl64_found"; then
4889  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ccl64_found" >&5
4890$as_echo "$ccl64_found" >&6; }
4891else
4892  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4893$as_echo "no" >&6; }
4894fi
4895
4896
4897	# Extract the first word of "$ECL_NAME", so it can be a program name with args.
4898set dummy $ECL_NAME; ac_word=$2
4899{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4900$as_echo_n "checking for $ac_word... " >&6; }
4901if ${ac_cv_prog_ecl_found+:} false; then :
4902  $as_echo_n "(cached) " >&6
4903else
4904  if test -n "$ecl_found"; then
4905  ac_cv_prog_ecl_found="$ecl_found" # Let the user override the test.
4906else
4907as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4908for as_dir in $PATH
4909do
4910  IFS=$as_save_IFS
4911  test -z "$as_dir" && as_dir=.
4912    for ac_exec_ext in '' $ac_executable_extensions; do
4913  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4914    ac_cv_prog_ecl_found="true"
4915    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4916    break 2
4917  fi
4918done
4919  done
4920IFS=$as_save_IFS
4921
4922  test -z "$ac_cv_prog_ecl_found" && ac_cv_prog_ecl_found="false"
4923fi
4924fi
4925ecl_found=$ac_cv_prog_ecl_found
4926if test -n "$ecl_found"; then
4927  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ecl_found" >&5
4928$as_echo "$ecl_found" >&6; }
4929else
4930  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4931$as_echo "no" >&6; }
4932fi
4933
4934
4935
4936  	if test x"${clisp_found}" = xtrue ; then
4937  		clisp=true
4938		lisps_enabled="${lisps_enabled} clisp"
4939  	elif test x"${gcl_found}" = xtrue ; then
4940		gcl=true
4941		lisps_enabled="${lisps_enabled} gcl"
4942	elif test x"${cmucl_found}" = xtrue ; then
4943		cmucl=true
4944		lisps_enabled="${lisps_enabled} cmucl"
4945	elif test x"${scl_found}" = xtrue ; then
4946		scl=true
4947		lisps_enabled="${lisps_enabled} scl"
4948	elif test x"${sbcl_found}" = xtrue ; then
4949	   	sbcl=true
4950		lisps_enabled="${lisps_enabled} sbcl"
4951	elif test x"${acl_found}" = xtrue ; then
4952		acl=true
4953		lisps_enabled="${lisps_enabled} acl"
4954	elif test x"${ecl_found}" = xtrue ; then
4955		ecl=true
4956		lisps_enabled="${lisps_enabled} ecl"
4957	else
4958		as_fn_error $? "No lisp implementation specified and none of the default executables ${clisp_default_name}(clisp),${gcl_default_name}(GCL),${cmucl_default_name}(CMUCL),${scl_default_name}(SCL),${sbcl_default_name}(SBCL),${acl_default_name}(ACL),${openmcl_default_name}(OpenMCL),${ecl_default_name}(ECL) were found in PATH" "$LINENO" 5
4959	fi
4960fi
4961
4962 if test x$abcl = xtrue; then
4963  ABCL_TRUE=
4964  ABCL_FALSE='#'
4965else
4966  ABCL_TRUE='#'
4967  ABCL_FALSE=
4968fi
4969
4970 if test x$clisp = xtrue; then
4971  CLISP_TRUE=
4972  CLISP_FALSE='#'
4973else
4974  CLISP_TRUE='#'
4975  CLISP_FALSE=
4976fi
4977
4978 if test x$clisp_exec = xtrue; then
4979  CLISP_EXEC_TRUE=
4980  CLISP_EXEC_FALSE='#'
4981else
4982  CLISP_EXEC_TRUE='#'
4983  CLISP_EXEC_FALSE=
4984fi
4985
4986 if test x$gcl = xtrue; then
4987  GCL_TRUE=
4988  GCL_FALSE='#'
4989else
4990  GCL_TRUE='#'
4991  GCL_FALSE=
4992fi
4993
4994 if test x$cmucl = xtrue; then
4995  CMUCL_TRUE=
4996  CMUCL_FALSE='#'
4997else
4998  CMUCL_TRUE='#'
4999  CMUCL_FALSE=
5000fi
5001
5002 if test x${cmucl_exec} = xtrue; then
5003  CMUCL_EXEC_TRUE=
5004  CMUCL_EXEC_FALSE='#'
5005else
5006  CMUCL_EXEC_TRUE='#'
5007  CMUCL_EXEC_FALSE=
5008fi
5009
5010 if test x$scl = xtrue; then
5011  SCL_TRUE=
5012  SCL_FALSE='#'
5013else
5014  SCL_TRUE='#'
5015  SCL_FALSE=
5016fi
5017
5018 if test x$sbcl = xtrue; then
5019  SBCL_TRUE=
5020  SBCL_FALSE='#'
5021else
5022  SBCL_TRUE='#'
5023  SBCL_FALSE=
5024fi
5025
5026 if test x$sbcl_exec = xtrue; then
5027  SBCL_EXEC_TRUE=
5028  SBCL_EXEC_FALSE='#'
5029else
5030  SBCL_EXEC_TRUE='#'
5031  SBCL_EXEC_FALSE=
5032fi
5033
5034 if test x$acl = xtrue; then
5035  ACL_TRUE=
5036  ACL_FALSE='#'
5037else
5038  ACL_TRUE='#'
5039  ACL_FALSE=
5040fi
5041
5042 if test x$openmcl = xtrue; then
5043  OPENMCL_TRUE=
5044  OPENMCL_FALSE='#'
5045else
5046  OPENMCL_TRUE='#'
5047  OPENMCL_FALSE=
5048fi
5049
5050 if test x${openmcl_exec} = xtrue; then
5051  OPENMCL_EXEC_TRUE=
5052  OPENMCL_EXEC_FALSE='#'
5053else
5054  OPENMCL_EXEC_TRUE='#'
5055  OPENMCL_EXEC_FALSE=
5056fi
5057
5058 if test x$ecl = xtrue; then
5059  ECL_TRUE=
5060  ECL_FALSE='#'
5061else
5062  ECL_TRUE='#'
5063  ECL_FALSE=
5064fi
5065
5066 if test x$ccl64 = xtrue; then
5067  CCL64_TRUE=
5068  CCL64_FALSE='#'
5069else
5070  CCL64_TRUE='#'
5071  CCL64_FALSE=
5072fi
5073
5074 if test x${ccl64_exec} = xtrue; then
5075  CCL64_EXEC_TRUE=
5076  CCL64_EXEC_FALSE='#'
5077else
5078  CCL64_EXEC_TRUE='#'
5079  CCL64_EXEC_FALSE=
5080fi
5081
5082
5083if test x"${clisp}" = xtrue; then
5084    if test x"${CLISP_RUNTIME_PATH}" = x"" ; then
5085        if test x"${mingw}" = xtrue ; then
5086            CLISP_RUNTIME_PATH=`${CLISP_NAME} -norc -q -x "(format nil \"~a${CLISP_RUNTIME}\" (namestring *lib-directory*))"|sed 's/\"\\(.*\\)\"/\\1/'`
5087        else
5088            CLISP_RUNTIME_PATH=`${CLISP_NAME} -norc -q -x "(format nil \"~abase/${CLISP_RUNTIME}\" (namestring *lib-directory*))"|sed 's/\"\\(.*\\)\"/\\1/'`
5089        fi
5090    fi
5091    if test -x ${CLISP_RUNTIME_PATH} ; then
5092        echo "clisp runtime is \"${CLISP_RUNTIME_PATH}\""
5093    else
5094        as_fn_error $? "clisp runtime \"${CLISP_RUNTIME_PATH}\" is not an executable" "$LINENO" 5
5095    fi
5096    CLISP_RUNTIME=`basename ${CLISP_RUNTIME_PATH}`
5097fi
5098
5099if test x"${cmucl}" = xtrue; then
5100    if test x"${CMUCL_RUNTIME_PATH}" = x"" ; then
5101        CMUCL_RUNTIME_PATH=`${CMUCL_NAME} -noinit -nositeinit -quiet -batch -eval '#-cmu18 (progn (setf (search-list "cmuclbin:") (append (lisp::parse-unix-search-path lisp::*cmucl-lib*) (mapcar (function (lambda (p) (concatenate (quote string) p "../bin/"))) (lisp::parse-unix-search-path lisp::*cmucl-lib*))))(enumerate-search-list (s "cmuclbin:lisp") (when (probe-file s) (format t "~A~%" s) (quit)))) #+cmu18 (format t "~a/../bin/lisp~%" common-lisp::*cmucl-lib*)(quit)'`
5102    fi
5103    if test -x "${CMUCL_RUNTIME_PATH}" ; then
5104        echo "cmucl runtime is \"${CMUCL_RUNTIME_PATH}\""
5105    else
5106	cmucl_path=`type -p "${CMUCL_NAME}"`
5107	if test x"`grep -c '#!.*bin.*sh.*' ${cmucl_path}`" = x"0" ; then
5108	   	CMUCL_RUNTIME_PATH="${cmucl_path}"
5109	else
5110		as_fn_error $? "Unable to determine CMUCL runtime path.
5111The best guess for CMUCL runtime, \"${CMUCL_RUNTIME_PATH}\", is not
5112an executable. Use the argument
5113   --with-cmucl-runtime=<path>
5114to set the actual CMUCL executable. If the CMUCL lisp command is a shell
5115script the CMUCL executable is the program exec'd by that shell script." "$LINENO" 5
5116	fi
5117    fi
5118    CMUCL_RUNTIME=`basename ${CMUCL_RUNTIME_PATH}`
5119
5120   result=`"${CMUCL_RUNTIME_PATH}" -quiet -eval '(format t "MAXIMA_CMUCL_TEST_SUCCESS%")(quit)'`
5121   retval=$?
5122   if test ! x"${retval}" = x"0" ; then
5123      as_fn_error $? "unable to run cmucl runtime = \"${CMUCL_RUNTIME_PATH}\".
5124Please specify the full path of the cmucl runtime using the
5125    --with-cmucl-runtime=<path>
5126flag." "$LINENO" 5
5127   fi
5128   count=`echo "${result}" | grep -c "MAXIMA_CMUCL_TEST_SUCCESS"`
5129   if test ! "${count}" = "1" ; then
5130      as_fn_error $? "an error occured while checking cmucl runtime" "$LINENO" 5
5131   fi
5132fi
5133
5134if test x"${scl}" = xtrue; then
5135    if test x"${SCL_RUNTIME_PATH}" = x"" ; then
5136        SCL_RUNTIME_PATH=`${SCL_NAME} -noinit -nositeinit -quiet -batch -eval '(progn (enumerate-pathname-translations (pathname "file://library/../bin/lisp") (when (probe-file pathname) (format t "~A~%" (unix-namestring pathname)))) (quit))'`
5137    fi
5138    if test -x "${SCL_RUNTIME_PATH}" ; then
5139        echo "scl runtime is \"${SCL_RUNTIME_PATH}\""
5140    else
5141	scl_path=`type -p "${SCL_NAME}"`
5142	if test x"`grep -c '#!.*bin.*sh.*' ${scl_path}`" = x"0" ; then
5143	   	SCL_RUNTIME_PATH="${scl_path}"
5144	else
5145		as_fn_error $? "Unable to determine SCL runtime path.
5146The best guess for SCL runtime, \"${SCL_RUNTIME_PATH}\", is not
5147an executable. Use the argument
5148   --with-scl-runtime=<path>
5149to set the actual SCL executable. If the SCL lisp command is a shell
5150script the SCL executable is the program exec'd by that shell script." "$LINENO" 5
5151	fi
5152    fi
5153    SCL_RUNTIME=`basename ${SCL_RUNTIME_PATH}`
5154fi
5155
5156if test x"${gcl}" = xtrue; then
5157   result=`"${GCL_NAME}" -batch -eval '#+ansi-cl (format t "MAXIMA_GCL_ANSI_TEST_SUCCESS~%") #-ansi-cl (format t "MAXIMA_GCL_ANSI_TEST_FAILURE~%")' -eval '(si::bye)'`
5158   retval=$?
5159   if test ! x"${retval}" = x"0" ; then
5160      as_fn_error $? "unable to run gcl executable \"${GCL_NAME}\"." "$LINENO" 5
5161   fi
5162   count=`echo "${result}" | grep -c "MAXIMA_GCL_ANSI_TEST_SUCCESS"`
5163   if test ! "${count}" = "1" ; then
5164      as_fn_error $? "The gcl executable \"${GCL_NAME}\" was not compiled with
5165the --enable-ansi flag, which is required for Maxima.
5166The gcl ANSI-CL check returned
5167\"${result}\"." "$LINENO" 5
5168   fi
5169fi
5170
5171# Check whether --enable-gcl-alt-link was given.
5172if test "${enable_gcl_alt_link+set}" = set; then :
5173  enableval=$enable_gcl_alt_link; case "${enableval}" in
5174       		yes) gcl_alt_link=true ;;
5175       		no)  gcl_alt_link=false ;;
5176		*) as_fn_error $? "bad value ${enableval} for --enable-gcl-alt-link" "$LINENO" 5 ;;
5177     	esac
5178else
5179  gcl_alt_link=false
5180fi
5181
5182
5183 if test x$gcl_alt_link = xtrue; then
5184  GCL_ALT_LINK_TRUE=
5185  GCL_ALT_LINK_FALSE='#'
5186else
5187  GCL_ALT_LINK_TRUE='#'
5188  GCL_ALT_LINK_FALSE=
5189fi
5190
5191
5192
5193# Check whether --with-default-lisp was given.
5194if test "${with_default_lisp+set}" = set; then :
5195  withval=$with_default_lisp; case "${withval}" in
5196       		clisp)
5197			if test x"${clisp}" = xtrue ; then
5198				DEFAULTLISP=clisp
5199			else
5200				as_fn_error $? "clisp not enabled" "$LINENO" 5
5201			fi
5202			;;
5203		cmucl)
5204			if test x"${cmucl}" = xtrue ; then
5205				DEFAULTLISP=cmucl
5206			else
5207				as_fn_error $? "cmucl not enabled" "$LINENO" 5
5208			fi
5209			;;
5210		scl)
5211			if test x"${scl}" = xtrue ; then
5212				DEFAULTLISP=scl
5213			else
5214				as_fn_error $? "scl not enabled" "$LINENO" 5
5215			fi
5216			;;
5217		sbcl)
5218			if test x"${sbcl}" = xtrue ; then
5219				DEFAULTLISP=sbcl
5220			else
5221				as_fn_error $? "sbcl not enabled" "$LINENO" 5
5222			fi
5223			;;
5224		gcl)
5225			if test x"${gcl}" = xtrue ; then
5226				DEFAULTLISP=gcl
5227			else
5228				as_fn_error $? "gcl not enabled" "$LINENO" 5
5229			fi
5230			;;
5231		acl)
5232			if test x"${acl}" = xtrue ; then
5233				DEFAULTLISP=acl
5234			else
5235				as_fn_error $? "acl not enabled" "$LINENO" 5
5236			fi
5237			;;
5238		openmcl)
5239			if test x"${openmcl}" = xtrue ; then
5240				DEFAULTLISP=openmcl
5241			else
5242				as_fn_error $? "openmcl not enabled" "$LINENO" 5
5243			fi
5244			;;
5245		ecl)
5246			if test x"${ecl}" = xtrue ; then
5247				DEFAULTLISP=ecl
5248			else
5249				as_fn_error $? "ecl not enabled" "$LINENO" 5
5250			fi
5251			;;
5252		ccl64)
5253			if test x"${ccl64}" = xtrue ; then
5254				DEFAULTLISP=ccl64
5255			else
5256				as_fn_error $? "ccl64 not enabled" "$LINENO" 5
5257			fi
5258			;;
5259		abcl)
5260			if test x"${abcl}" = xtrue ; then
5261				DEFAULTLISP=abcl
5262			else
5263				as_fn_error $? "abcl not enabled" "$LINENO" 5
5264			fi
5265			;;
5266		*)
5267			as_fn_error $? "Unknown argument ${DEFAULTLISP} to --with-default-lisp" "$LINENO" 5
5268			;;
5269     	esac
5270else
5271  if test x"${sbcl}" = xtrue ; then
5272		DEFAULTLISP=sbcl
5273	elif test x"${cmucl}" = xtrue ; then
5274		DEFAULTLISP=cmucl
5275	elif test x"${scl}" = xtrue ; then
5276		DEFAULTLISP=scl
5277	elif test x"${clisp}" = xtrue ; then
5278	   	DEFAULTLISP=clisp
5279	elif test x"${gcl}" = xtrue ; then
5280	   	DEFAULTLISP=gcl
5281	elif test x"${acl}" = xtrue ; then
5282		DEFAULTLISP=acl
5283	elif test x"${openmcl}" = xtrue ; then
5284		DEFAULTLISP=openmcl
5285	elif test x"${ecl}" = xtrue ; then
5286		DEFAULTLISP=ecl
5287	elif test x"${ccl64}" = xtrue ; then
5288		DEFAULTLISP=ccl64
5289	elif test x"${abcl}" = xtrue ; then
5290		DEFAULTLISP=abcl
5291	else
5292		as_fn_error $? "Internal error. No lisp enabled. Please contact maintainer." "$LINENO" 5
5293	fi
5294fi
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320# Check whether --with-posix-shell was given.
5321if test "${with_posix_shell+set}" = set; then :
5322  withval=$with_posix_shell; posix_shell_list="${withval}"
5323else
5324  posix_shell_list="/bin/sh /bin/bash /usr/bin/bash /usr/local/bin/bash"
5325fi
5326
5327
5328
5329# Check whether --with-wish was given.
5330if test "${with_wish+set}" = set; then :
5331  withval=$with_wish; WISH="${withval}"
5332else
5333  WISH="wish"
5334fi
5335
5336
5337
5338
5339{ $as_echo "$as_me:${as_lineno-$LINENO}: checking POSIX shell to see that it contains getopts" >&5
5340$as_echo_n "checking POSIX shell to see that it contains getopts... " >&6; }
5341cat <<EOF > conftest-posix-shell.sh
5342getopts "ab:" opt
5343result="\$?"
5344echo "result is \$result"
5345exit "\$result"
5346EOF
5347POSIX_SHELL=""
5348for shell in $posix_shell_list
5349do
5350	if test -z "$POSIX_SHELL" ; then
5351		echo "trying $shell"
5352		$shell conftest-posix-shell.sh -a > /dev/null 2>&1
5353		if test "$?" = "0" ; then
5354			POSIX_SHELL="$shell"
5355		fi
5356	fi
5357done
5358rm -f conftest-posix-shell.sh
5359if test -n "$POSIX_SHELL" ; then
5360	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: POSIX shell is $POSIX_SHELL" >&5
5361$as_echo "POSIX shell is $POSIX_SHELL" >&6; }
5362else
5363	{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Could not find a shell that supports getopts.
5364The maxima wrapper script will be unusable. The shell may be specified
5365with --with-posix-shell=</path/to/shell>" >&5
5366$as_echo "$as_me: WARNING: Could not find a shell that supports getopts.
5367The maxima wrapper script will be unusable. The shell may be specified
5368with --with-posix-shell=</path/to/shell>" >&2;}
5369fi
5370
5371
5372if test x"${prefix}" = xNONE ; then
5373	tmp_prefix="/usr/local"
5374else
5375	tmp_prefix="${prefix}"
5376fi
5377if test x"${exec_prefix}" = xNONE ; then
5378	tmp_exec_prefix="${tmp_prefix}"
5379else
5380	tmp_exec_prefix="${exec_prefix}"
5381fi
5382expanded_top_srcdir="$(cd "$top_srcdir" 1>/dev/null 2>/dev/null; pwd)"
5383expanded_exec_prefix="${tmp_exec_prefix}"
5384expanded_libdir="$(eval "exec_prefix=\"${tmp_exec_prefix}\";echo ${libdir}")"
5385expanded_libexecdir="$(eval "exec_prefix=\"${tmp_exec_prefix}\";echo ${libexecdir}")"
5386expanded_datadir="$(eval "prefix=\"${tmp_prefix}\";datarootdir=\"${datarootdir}\";echo ${datadir}")"
5387expanded_infodir="$(eval "prefix=\"${tmp_prefix}\";datarootdir=\"${datarootdir}\";echo ${infodir}")"
5388
5389
5390
5391#default_sharedirs=`find share -type d | sort | egrep -v 'share$|CVS|/fortran' | sed 's;share/\(.*\);        "\1" \\\\;' | sed '$s;\\\\;;'`
5392default_sharedirs=`cd $srcdir;find share -type d | sort | egrep -v 'share$|CVS|/fortran' | sed 's;share/\(.*\);"\1";' | tr '\n' ' '`
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404default_layout_autotools="true"
5405
5406
5407
5408
5409
5410# Check whether --with-emacs-prefix was given.
5411if test "${with_emacs_prefix+set}" = set; then :
5412  withval=$with_emacs_prefix; EMACSDIR="$withval"
5413else
5414  EMACSDIR="${datarootdir}/emacs/site-lisp"
5415fi
5416
5417
5418
5419lisp_only_build="nil"
5420
5421if test x"$srcdir" = x"." ; then
5422   DISTCLEAN_EXTRA_SRC_FILES=""
5423else
5424   DISTCLEAN_EXTRA_SRC_FILES=share_subdirs.lisp
5425fi
5426
5427
5428
5429{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
5430$as_echo_n "checking for grep that handles long lines and -e... " >&6; }
5431if ${ac_cv_path_GREP+:} false; then :
5432  $as_echo_n "(cached) " >&6
5433else
5434  if test -z "$GREP"; then
5435  ac_path_GREP_found=false
5436  # Loop through the user's path and test for each of PROGNAME-LIST
5437  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5438for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
5439do
5440  IFS=$as_save_IFS
5441  test -z "$as_dir" && as_dir=.
5442    for ac_prog in grep ggrep; do
5443    for ac_exec_ext in '' $ac_executable_extensions; do
5444      ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
5445      as_fn_executable_p "$ac_path_GREP" || continue
5446# Check for GNU ac_path_GREP and select it if it is found.
5447  # Check for GNU $ac_path_GREP
5448case `"$ac_path_GREP" --version 2>&1` in
5449*GNU*)
5450  ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
5451*)
5452  ac_count=0
5453  $as_echo_n 0123456789 >"conftest.in"
5454  while :
5455  do
5456    cat "conftest.in" "conftest.in" >"conftest.tmp"
5457    mv "conftest.tmp" "conftest.in"
5458    cp "conftest.in" "conftest.nl"
5459    $as_echo 'GREP' >> "conftest.nl"
5460    "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
5461    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
5462    as_fn_arith $ac_count + 1 && ac_count=$as_val
5463    if test $ac_count -gt ${ac_path_GREP_max-0}; then
5464      # Best one so far, save it but keep looking for a better one
5465      ac_cv_path_GREP="$ac_path_GREP"
5466      ac_path_GREP_max=$ac_count
5467    fi
5468    # 10*(2^10) chars as input seems more than enough
5469    test $ac_count -gt 10 && break
5470  done
5471  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
5472esac
5473
5474      $ac_path_GREP_found && break 3
5475    done
5476  done
5477  done
5478IFS=$as_save_IFS
5479  if test -z "$ac_cv_path_GREP"; then
5480    as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
5481  fi
5482else
5483  ac_cv_path_GREP=$GREP
5484fi
5485
5486fi
5487{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5
5488$as_echo "$ac_cv_path_GREP" >&6; }
5489 GREP="$ac_cv_path_GREP"
5490
5491
5492{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
5493$as_echo_n "checking for egrep... " >&6; }
5494if ${ac_cv_path_EGREP+:} false; then :
5495  $as_echo_n "(cached) " >&6
5496else
5497  if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
5498   then ac_cv_path_EGREP="$GREP -E"
5499   else
5500     if test -z "$EGREP"; then
5501  ac_path_EGREP_found=false
5502  # Loop through the user's path and test for each of PROGNAME-LIST
5503  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5504for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
5505do
5506  IFS=$as_save_IFS
5507  test -z "$as_dir" && as_dir=.
5508    for ac_prog in egrep; do
5509    for ac_exec_ext in '' $ac_executable_extensions; do
5510      ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
5511      as_fn_executable_p "$ac_path_EGREP" || continue
5512# Check for GNU ac_path_EGREP and select it if it is found.
5513  # Check for GNU $ac_path_EGREP
5514case `"$ac_path_EGREP" --version 2>&1` in
5515*GNU*)
5516  ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
5517*)
5518  ac_count=0
5519  $as_echo_n 0123456789 >"conftest.in"
5520  while :
5521  do
5522    cat "conftest.in" "conftest.in" >"conftest.tmp"
5523    mv "conftest.tmp" "conftest.in"
5524    cp "conftest.in" "conftest.nl"
5525    $as_echo 'EGREP' >> "conftest.nl"
5526    "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
5527    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
5528    as_fn_arith $ac_count + 1 && ac_count=$as_val
5529    if test $ac_count -gt ${ac_path_EGREP_max-0}; then
5530      # Best one so far, save it but keep looking for a better one
5531      ac_cv_path_EGREP="$ac_path_EGREP"
5532      ac_path_EGREP_max=$ac_count
5533    fi
5534    # 10*(2^10) chars as input seems more than enough
5535    test $ac_count -gt 10 && break
5536  done
5537  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
5538esac
5539
5540      $ac_path_EGREP_found && break 3
5541    done
5542  done
5543  done
5544IFS=$as_save_IFS
5545  if test -z "$ac_cv_path_EGREP"; then
5546    as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
5547  fi
5548else
5549  ac_cv_path_EGREP=$EGREP
5550fi
5551
5552   fi
5553fi
5554{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5
5555$as_echo "$ac_cv_path_EGREP" >&6; }
5556 EGREP="$ac_cv_path_EGREP"
5557
5558
5559
5560# Extract the first word of "cat", so it can be a program name with args.
5561set dummy cat; ac_word=$2
5562{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5563$as_echo_n "checking for $ac_word... " >&6; }
5564if ${ac_cv_path_CAT+:} false; then :
5565  $as_echo_n "(cached) " >&6
5566else
5567  case $CAT in
5568  [\\/]* | ?:[\\/]*)
5569  ac_cv_path_CAT="$CAT" # Let the user override the test with a path.
5570  ;;
5571  *)
5572  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5573for as_dir in $PATH
5574do
5575  IFS=$as_save_IFS
5576  test -z "$as_dir" && as_dir=.
5577    for ac_exec_ext in '' $ac_executable_extensions; do
5578  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5579    ac_cv_path_CAT="$as_dir/$ac_word$ac_exec_ext"
5580    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5581    break 2
5582  fi
5583done
5584  done
5585IFS=$as_save_IFS
5586
5587  ;;
5588esac
5589fi
5590CAT=$ac_cv_path_CAT
5591if test -n "$CAT"; then
5592  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CAT" >&5
5593$as_echo "$CAT" >&6; }
5594else
5595  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
5596$as_echo "no" >&6; }
5597fi
5598
5599
5600{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5
5601$as_echo_n "checking for a sed that does not truncate output... " >&6; }
5602if ${ac_cv_path_SED+:} false; then :
5603  $as_echo_n "(cached) " >&6
5604else
5605            ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/
5606     for ac_i in 1 2 3 4 5 6 7; do
5607       ac_script="$ac_script$as_nl$ac_script"
5608     done
5609     echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed
5610     { ac_script=; unset ac_script;}
5611     if test -z "$SED"; then
5612  ac_path_SED_found=false
5613  # Loop through the user's path and test for each of PROGNAME-LIST
5614  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5615for as_dir in $PATH
5616do
5617  IFS=$as_save_IFS
5618  test -z "$as_dir" && as_dir=.
5619    for ac_prog in sed gsed; do
5620    for ac_exec_ext in '' $ac_executable_extensions; do
5621      ac_path_SED="$as_dir/$ac_prog$ac_exec_ext"
5622      as_fn_executable_p "$ac_path_SED" || continue
5623# Check for GNU ac_path_SED and select it if it is found.
5624  # Check for GNU $ac_path_SED
5625case `"$ac_path_SED" --version 2>&1` in
5626*GNU*)
5627  ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;;
5628*)
5629  ac_count=0
5630  $as_echo_n 0123456789 >"conftest.in"
5631  while :
5632  do
5633    cat "conftest.in" "conftest.in" >"conftest.tmp"
5634    mv "conftest.tmp" "conftest.in"
5635    cp "conftest.in" "conftest.nl"
5636    $as_echo '' >> "conftest.nl"
5637    "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break
5638    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
5639    as_fn_arith $ac_count + 1 && ac_count=$as_val
5640    if test $ac_count -gt ${ac_path_SED_max-0}; then
5641      # Best one so far, save it but keep looking for a better one
5642      ac_cv_path_SED="$ac_path_SED"
5643      ac_path_SED_max=$ac_count
5644    fi
5645    # 10*(2^10) chars as input seems more than enough
5646    test $ac_count -gt 10 && break
5647  done
5648  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
5649esac
5650
5651      $ac_path_SED_found && break 3
5652    done
5653  done
5654  done
5655IFS=$as_save_IFS
5656  if test -z "$ac_cv_path_SED"; then
5657    as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5
5658  fi
5659else
5660  ac_cv_path_SED=$SED
5661fi
5662
5663fi
5664{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5
5665$as_echo "$ac_cv_path_SED" >&6; }
5666 SED="$ac_cv_path_SED"
5667  rm -f conftest.sed
5668
5669for ac_prog in gawk mawk nawk awk
5670do
5671  # Extract the first word of "$ac_prog", so it can be a program name with args.
5672set dummy $ac_prog; ac_word=$2
5673{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5674$as_echo_n "checking for $ac_word... " >&6; }
5675if ${ac_cv_prog_AWK+:} false; then :
5676  $as_echo_n "(cached) " >&6
5677else
5678  if test -n "$AWK"; then
5679  ac_cv_prog_AWK="$AWK" # Let the user override the test.
5680else
5681as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5682for as_dir in $PATH
5683do
5684  IFS=$as_save_IFS
5685  test -z "$as_dir" && as_dir=.
5686    for ac_exec_ext in '' $ac_executable_extensions; do
5687  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5688    ac_cv_prog_AWK="$ac_prog"
5689    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5690    break 2
5691  fi
5692done
5693  done
5694IFS=$as_save_IFS
5695
5696fi
5697fi
5698AWK=$ac_cv_prog_AWK
5699if test -n "$AWK"; then
5700  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
5701$as_echo "$AWK" >&6; }
5702else
5703  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
5704$as_echo "no" >&6; }
5705fi
5706
5707
5708  test -n "$AWK" && break
5709done
5710
5711
5712
5713
5714
5715
5716
5717        # Find any Python interpreter.
5718    if test -z "$PYTHON"; then
5719      for ac_prog in python python2 python3  python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3  python3.2 python3.1 python3.0  python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1  python2.0
5720do
5721  # Extract the first word of "$ac_prog", so it can be a program name with args.
5722set dummy $ac_prog; ac_word=$2
5723{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5724$as_echo_n "checking for $ac_word... " >&6; }
5725if ${ac_cv_path_PYTHON+:} false; then :
5726  $as_echo_n "(cached) " >&6
5727else
5728  case $PYTHON in
5729  [\\/]* | ?:[\\/]*)
5730  ac_cv_path_PYTHON="$PYTHON" # Let the user override the test with a path.
5731  ;;
5732  *)
5733  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5734for as_dir in $PATH
5735do
5736  IFS=$as_save_IFS
5737  test -z "$as_dir" && as_dir=.
5738    for ac_exec_ext in '' $ac_executable_extensions; do
5739  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5740    ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext"
5741    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5742    break 2
5743  fi
5744done
5745  done
5746IFS=$as_save_IFS
5747
5748  ;;
5749esac
5750fi
5751PYTHON=$ac_cv_path_PYTHON
5752if test -n "$PYTHON"; then
5753  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5
5754$as_echo "$PYTHON" >&6; }
5755else
5756  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
5757$as_echo "no" >&6; }
5758fi
5759
5760
5761  test -n "$PYTHON" && break
5762done
5763test -n "$PYTHON" || PYTHON=":"
5764
5765    fi
5766    am_display_PYTHON=python
5767
5768
5769  if test "$PYTHON" = :; then
5770      as_fn_error $? "no suitable Python interpreter found" "$LINENO" 5
5771  else
5772
5773
5774  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON version" >&5
5775$as_echo_n "checking for $am_display_PYTHON version... " >&6; }
5776if ${am_cv_python_version+:} false; then :
5777  $as_echo_n "(cached) " >&6
5778else
5779  am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[:3])"`
5780fi
5781{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_version" >&5
5782$as_echo "$am_cv_python_version" >&6; }
5783  PYTHON_VERSION=$am_cv_python_version
5784
5785
5786
5787  PYTHON_PREFIX='${prefix}'
5788
5789  PYTHON_EXEC_PREFIX='${exec_prefix}'
5790
5791
5792
5793  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON platform" >&5
5794$as_echo_n "checking for $am_display_PYTHON platform... " >&6; }
5795if ${am_cv_python_platform+:} false; then :
5796  $as_echo_n "(cached) " >&6
5797else
5798  am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`
5799fi
5800{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_platform" >&5
5801$as_echo "$am_cv_python_platform" >&6; }
5802  PYTHON_PLATFORM=$am_cv_python_platform
5803
5804
5805  # Just factor out some code duplication.
5806  am_python_setup_sysconfig="\
5807import sys
5808# Prefer sysconfig over distutils.sysconfig, for better compatibility
5809# with python 3.x.  See automake bug#10227.
5810try:
5811    import sysconfig
5812except ImportError:
5813    can_use_sysconfig = 0
5814else:
5815    can_use_sysconfig = 1
5816# Can't use sysconfig in CPython 2.7, since it's broken in virtualenvs:
5817# <https://github.com/pypa/virtualenv/issues/118>
5818try:
5819    from platform import python_implementation
5820    if python_implementation() == 'CPython' and sys.version[:3] == '2.7':
5821        can_use_sysconfig = 0
5822except ImportError:
5823    pass"
5824
5825
5826            { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON script directory" >&5
5827$as_echo_n "checking for $am_display_PYTHON script directory... " >&6; }
5828if ${am_cv_python_pythondir+:} false; then :
5829  $as_echo_n "(cached) " >&6
5830else
5831  if test "x$prefix" = xNONE
5832     then
5833       am_py_prefix=$ac_default_prefix
5834     else
5835       am_py_prefix=$prefix
5836     fi
5837     am_cv_python_pythondir=`$PYTHON -c "
5838$am_python_setup_sysconfig
5839if can_use_sysconfig:
5840    sitedir = sysconfig.get_path('purelib', vars={'base':'$am_py_prefix'})
5841else:
5842    from distutils import sysconfig
5843    sitedir = sysconfig.get_python_lib(0, 0, prefix='$am_py_prefix')
5844sys.stdout.write(sitedir)"`
5845     case $am_cv_python_pythondir in
5846     $am_py_prefix*)
5847       am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'`
5848       am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"`
5849       ;;
5850     *)
5851       case $am_py_prefix in
5852         /usr|/System*) ;;
5853         *)
5854	  am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages
5855	  ;;
5856       esac
5857       ;;
5858     esac
5859
5860fi
5861{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pythondir" >&5
5862$as_echo "$am_cv_python_pythondir" >&6; }
5863  pythondir=$am_cv_python_pythondir
5864
5865
5866
5867  pkgpythondir=\${pythondir}/$PACKAGE
5868
5869
5870        { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON extension module directory" >&5
5871$as_echo_n "checking for $am_display_PYTHON extension module directory... " >&6; }
5872if ${am_cv_python_pyexecdir+:} false; then :
5873  $as_echo_n "(cached) " >&6
5874else
5875  if test "x$exec_prefix" = xNONE
5876     then
5877       am_py_exec_prefix=$am_py_prefix
5878     else
5879       am_py_exec_prefix=$exec_prefix
5880     fi
5881     am_cv_python_pyexecdir=`$PYTHON -c "
5882$am_python_setup_sysconfig
5883if can_use_sysconfig:
5884    sitedir = sysconfig.get_path('platlib', vars={'platbase':'$am_py_prefix'})
5885else:
5886    from distutils import sysconfig
5887    sitedir = sysconfig.get_python_lib(1, 0, prefix='$am_py_prefix')
5888sys.stdout.write(sitedir)"`
5889     case $am_cv_python_pyexecdir in
5890     $am_py_exec_prefix*)
5891       am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'`
5892       am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"`
5893       ;;
5894     *)
5895       case $am_py_exec_prefix in
5896         /usr|/System*) ;;
5897         *)
5898	   am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages
5899	   ;;
5900       esac
5901       ;;
5902     esac
5903
5904fi
5905{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pyexecdir" >&5
5906$as_echo "$am_cv_python_pyexecdir" >&6; }
5907  pyexecdir=$am_cv_python_pyexecdir
5908
5909
5910
5911  pkgpyexecdir=\${pyexecdir}/$PACKAGE
5912
5913
5914
5915  fi
5916
5917
5918
5919
5920# Configure these files and make them executable
5921ac_config_files="$ac_config_files maxima-local"
5922
5923ac_config_files="$ac_config_files src/startmaxima_abcl.sh"
5924
5925ac_config_files="$ac_config_files xmaxima-local"
5926
5927ac_config_files="$ac_config_files tests/test.sh"
5928
5929ac_config_files="$ac_config_files doc/info/build_html.sh"
5930
5931
5932# Convert maxima.bat to DOS line ending
5933# sed-3.02 in old mingw distribution doesn't support -i or \r
5934# dos2unix may not be present, but perl is required elsewhere
5935# perl -i interferes with binmode so need to use a temporary file
5936ac_config_files="$ac_config_files src/maxima.bat"
5937
5938ac_config_files="$ac_config_files src/maxima"
5939
5940
5941ac_config_files="$ac_config_files Makefile maxima.spec maxima.iss admin/Makefile src/Makefile src/rmaxima src/autoconf-variables.lisp src/share-subdirs_autogenerated.lisp lisp-utils/Makefile tests/Makefile doc/Makefile crosscompile-windows/Makefile doc/emaxima/Makefile doc/info/Makefile doc/info/include-maxima.texi desktopintegration/Makefile doc/info/texi2html.init doc/info/figures/Makefile doc/info/de/Makefile doc/info/de.utf8/Makefile doc/info/es/Makefile doc/info/es.utf8/Makefile doc/info/pt/Makefile doc/info/pt.utf8/Makefile doc/info/pt/include-maxima.texi doc/info/pt_BR/Makefile doc/info/pt_BR.utf8/Makefile doc/intromax/Makefile doc/man/Makefile doc/man/maxima.1 doc/man/ru/maxima.1 doc/share/Makefile interfaces/Makefile interfaces/emacs/Makefile interfaces/emacs/emaxima/Makefile interfaces/emacs/imaxima/Makefile interfaces/emacs/misc/Makefile interfaces/xmaxima/Makefile interfaces/xmaxima/autoconf-variables.tcl interfaces/xmaxima/Tkmaxima/Header.tcl interfaces/xmaxima/doc/Makefile interfaces/xmaxima/doc/figures/Makefile interfaces/xmaxima/msgs/Makefile interfaces/xmaxima/win32/Makefile plotting/mgnuplot share/Makefile demo/Makefile plotting/Makefile locale/Makefile share/contrib/Makefile share/contrib/integration/Makefile share/contrib/maxima-odesolve/Makefile share/draw/Makefile share/logic/Makefile doc/info/es/include-maxima.texi src/lisp"
5942
5943cat >confcache <<\_ACEOF
5944# This file is a shell script that caches the results of configure
5945# tests run on this system so they can be shared between configure
5946# scripts and configure runs, see configure's option --config-cache.
5947# It is not useful on other systems.  If it contains results you don't
5948# want to keep, you may remove or edit it.
5949#
5950# config.status only pays attention to the cache file if you give it
5951# the --recheck option to rerun configure.
5952#
5953# `ac_cv_env_foo' variables (set or unset) will be overridden when
5954# loading this file, other *unset* `ac_cv_foo' will be assigned the
5955# following values.
5956
5957_ACEOF
5958
5959# The following way of writing the cache mishandles newlines in values,
5960# but we know of no workaround that is simple, portable, and efficient.
5961# So, we kill variables containing newlines.
5962# Ultrix sh set writes to stderr and can't be redirected directly,
5963# and sets the high bit in the cache file unless we assign to the vars.
5964(
5965  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
5966    eval ac_val=\$$ac_var
5967    case $ac_val in #(
5968    *${as_nl}*)
5969      case $ac_var in #(
5970      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
5971$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
5972      esac
5973      case $ac_var in #(
5974      _ | IFS | as_nl) ;; #(
5975      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
5976      *) { eval $ac_var=; unset $ac_var;} ;;
5977      esac ;;
5978    esac
5979  done
5980
5981  (set) 2>&1 |
5982    case $as_nl`(ac_space=' '; set) 2>&1` in #(
5983    *${as_nl}ac_space=\ *)
5984      # `set' does not quote correctly, so add quotes: double-quote
5985      # substitution turns \\\\ into \\, and sed turns \\ into \.
5986      sed -n \
5987	"s/'/'\\\\''/g;
5988	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
5989      ;; #(
5990    *)
5991      # `set' quotes correctly as required by POSIX, so do not add quotes.
5992      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
5993      ;;
5994    esac |
5995    sort
5996) |
5997  sed '
5998     /^ac_cv_env_/b end
5999     t clear
6000     :clear
6001     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
6002     t end
6003     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
6004     :end' >>confcache
6005if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
6006  if test -w "$cache_file"; then
6007    if test "x$cache_file" != "x/dev/null"; then
6008      { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
6009$as_echo "$as_me: updating cache $cache_file" >&6;}
6010      if test ! -f "$cache_file" || test -h "$cache_file"; then
6011	cat confcache >"$cache_file"
6012      else
6013        case $cache_file in #(
6014        */* | ?:*)
6015	  mv -f confcache "$cache_file"$$ &&
6016	  mv -f "$cache_file"$$ "$cache_file" ;; #(
6017        *)
6018	  mv -f confcache "$cache_file" ;;
6019	esac
6020      fi
6021    fi
6022  else
6023    { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
6024$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
6025  fi
6026fi
6027rm -f confcache
6028
6029test "x$prefix" = xNONE && prefix=$ac_default_prefix
6030# Let make expand exec_prefix.
6031test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
6032
6033# Transform confdefs.h into DEFS.
6034# Protect against shell expansion while executing Makefile rules.
6035# Protect against Makefile macro expansion.
6036#
6037# If the first sed substitution is executed (which looks for macros that
6038# take arguments), then branch to the quote section.  Otherwise,
6039# look for a macro that doesn't take arguments.
6040ac_script='
6041:mline
6042/\\$/{
6043 N
6044 s,\\\n,,
6045 b mline
6046}
6047t clear
6048:clear
6049s/^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 (][^	 (]*([^)]*)\)[	 ]*\(.*\)/-D\1=\2/g
6050t quote
6051s/^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 ][^	 ]*\)[	 ]*\(.*\)/-D\1=\2/g
6052t quote
6053b any
6054:quote
6055s/[	 `~#$^&*(){}\\|;'\''"<>?]/\\&/g
6056s/\[/\\&/g
6057s/\]/\\&/g
6058s/\$/$$/g
6059H
6060:any
6061${
6062	g
6063	s/^\n//
6064	s/\n/ /g
6065	p
6066}
6067'
6068DEFS=`sed -n "$ac_script" confdefs.h`
6069
6070
6071ac_libobjs=
6072ac_ltlibobjs=
6073U=
6074for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
6075  # 1. Remove the extension, and $U if already installed.
6076  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
6077  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
6078  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
6079  #    will be set to the directory where LIBOBJS objects are built.
6080  as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
6081  as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
6082done
6083LIBOBJS=$ac_libobjs
6084
6085LTLIBOBJS=$ac_ltlibobjs
6086
6087
6088{ $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5
6089$as_echo_n "checking that generated files are newer than configure... " >&6; }
6090   if test -n "$am_sleep_pid"; then
6091     # Hide warnings about reused PIDs.
6092     wait $am_sleep_pid 2>/dev/null
6093   fi
6094   { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5
6095$as_echo "done" >&6; }
6096
6097if test -z "${WIN32_TRUE}" && test -z "${WIN32_FALSE}"; then
6098  as_fn_error $? "conditional \"WIN32\" was never defined.
6099Usually this means the macro was only invoked conditionally." "$LINENO" 5
6100fi
6101if test -z "${WIN64_TRUE}" && test -z "${WIN64_FALSE}"; then
6102  as_fn_error $? "conditional \"WIN64\" was never defined.
6103Usually this means the macro was only invoked conditionally." "$LINENO" 5
6104fi
6105if test -z "${am__EXEEXT_TRUE}" && test -z "${am__EXEEXT_FALSE}"; then
6106  as_fn_error $? "conditional \"am__EXEEXT\" was never defined.
6107Usually this means the macro was only invoked conditionally." "$LINENO" 5
6108fi
6109if test -z "${ENABLE_GETTEXT_TRUE}" && test -z "${ENABLE_GETTEXT_FALSE}"; then
6110  as_fn_error $? "conditional \"ENABLE_GETTEXT\" was never defined.
6111Usually this means the macro was only invoked conditionally." "$LINENO" 5
6112fi
6113if test -z "${LANG_DE_TRUE}" && test -z "${LANG_DE_FALSE}"; then
6114  as_fn_error $? "conditional \"LANG_DE\" was never defined.
6115Usually this means the macro was only invoked conditionally." "$LINENO" 5
6116fi
6117if test -z "${LANG_DE_UTF8_TRUE}" && test -z "${LANG_DE_UTF8_FALSE}"; then
6118  as_fn_error $? "conditional \"LANG_DE_UTF8\" was never defined.
6119Usually this means the macro was only invoked conditionally." "$LINENO" 5
6120fi
6121if test -z "${LANG_ES_TRUE}" && test -z "${LANG_ES_FALSE}"; then
6122  as_fn_error $? "conditional \"LANG_ES\" was never defined.
6123Usually this means the macro was only invoked conditionally." "$LINENO" 5
6124fi
6125if test -z "${LANG_ES_UTF8_TRUE}" && test -z "${LANG_ES_UTF8_FALSE}"; then
6126  as_fn_error $? "conditional \"LANG_ES_UTF8\" was never defined.
6127Usually this means the macro was only invoked conditionally." "$LINENO" 5
6128fi
6129if test -z "${LANG_PT_TRUE}" && test -z "${LANG_PT_FALSE}"; then
6130  as_fn_error $? "conditional \"LANG_PT\" was never defined.
6131Usually this means the macro was only invoked conditionally." "$LINENO" 5
6132fi
6133if test -z "${LANG_PT_UTF8_TRUE}" && test -z "${LANG_PT_UTF8_FALSE}"; then
6134  as_fn_error $? "conditional \"LANG_PT_UTF8\" was never defined.
6135Usually this means the macro was only invoked conditionally." "$LINENO" 5
6136fi
6137if test -z "${LANG_PT_BR_TRUE}" && test -z "${LANG_PT_BR_FALSE}"; then
6138  as_fn_error $? "conditional \"LANG_PT_BR\" was never defined.
6139Usually this means the macro was only invoked conditionally." "$LINENO" 5
6140fi
6141if test -z "${LANG_PT_BR_UTF8_TRUE}" && test -z "${LANG_PT_BR_UTF8_FALSE}"; then
6142  as_fn_error $? "conditional \"LANG_PT_BR_UTF8\" was never defined.
6143Usually this means the macro was only invoked conditionally." "$LINENO" 5
6144fi
6145if test -z "${USE_RECODE_TRUE}" && test -z "${USE_RECODE_FALSE}"; then
6146  as_fn_error $? "conditional \"USE_RECODE\" was never defined.
6147Usually this means the macro was only invoked conditionally." "$LINENO" 5
6148fi
6149if test -z "${CHM_TRUE}" && test -z "${CHM_FALSE}"; then
6150  as_fn_error $? "conditional \"CHM\" was never defined.
6151Usually this means the macro was only invoked conditionally." "$LINENO" 5
6152fi
6153if test -z "${QUIET_BUILD_TRUE}" && test -z "${QUIET_BUILD_FALSE}"; then
6154  as_fn_error $? "conditional \"QUIET_BUILD\" was never defined.
6155Usually this means the macro was only invoked conditionally." "$LINENO" 5
6156fi
6157if test -z "${XMAXIMA_EXE_TRUE}" && test -z "${XMAXIMA_EXE_FALSE}"; then
6158  as_fn_error $? "conditional \"XMAXIMA_EXE\" was never defined.
6159Usually this means the macro was only invoked conditionally." "$LINENO" 5
6160fi
6161if test -z "${WINKILL_EXE_TRUE}" && test -z "${WINKILL_EXE_FALSE}"; then
6162  as_fn_error $? "conditional \"WINKILL_EXE\" was never defined.
6163Usually this means the macro was only invoked conditionally." "$LINENO" 5
6164fi
6165if test -z "${WIN64_INSTALLER_TRUE}" && test -z "${WIN64_INSTALLER_FALSE}"; then
6166  as_fn_error $? "conditional \"WIN64_INSTALLER\" was never defined.
6167Usually this means the macro was only invoked conditionally." "$LINENO" 5
6168fi
6169if test -z "${MATHJAX_TRUE}" && test -z "${MATHJAX_FALSE}"; then
6170  as_fn_error $? "conditional \"MATHJAX\" was never defined.
6171Usually this means the macro was only invoked conditionally." "$LINENO" 5
6172fi
6173if test -z "${GCC331_TRUE}" && test -z "${GCC331_FALSE}"; then
6174  as_fn_error $? "conditional \"GCC331\" was never defined.
6175Usually this means the macro was only invoked conditionally." "$LINENO" 5
6176fi
6177if test -z "${ABCL_TRUE}" && test -z "${ABCL_FALSE}"; then
6178  as_fn_error $? "conditional \"ABCL\" was never defined.
6179Usually this means the macro was only invoked conditionally." "$LINENO" 5
6180fi
6181if test -z "${CLISP_TRUE}" && test -z "${CLISP_FALSE}"; then
6182  as_fn_error $? "conditional \"CLISP\" was never defined.
6183Usually this means the macro was only invoked conditionally." "$LINENO" 5
6184fi
6185if test -z "${CLISP_EXEC_TRUE}" && test -z "${CLISP_EXEC_FALSE}"; then
6186  as_fn_error $? "conditional \"CLISP_EXEC\" was never defined.
6187Usually this means the macro was only invoked conditionally." "$LINENO" 5
6188fi
6189if test -z "${GCL_TRUE}" && test -z "${GCL_FALSE}"; then
6190  as_fn_error $? "conditional \"GCL\" was never defined.
6191Usually this means the macro was only invoked conditionally." "$LINENO" 5
6192fi
6193if test -z "${CMUCL_TRUE}" && test -z "${CMUCL_FALSE}"; then
6194  as_fn_error $? "conditional \"CMUCL\" was never defined.
6195Usually this means the macro was only invoked conditionally." "$LINENO" 5
6196fi
6197if test -z "${CMUCL_EXEC_TRUE}" && test -z "${CMUCL_EXEC_FALSE}"; then
6198  as_fn_error $? "conditional \"CMUCL_EXEC\" was never defined.
6199Usually this means the macro was only invoked conditionally." "$LINENO" 5
6200fi
6201if test -z "${SCL_TRUE}" && test -z "${SCL_FALSE}"; then
6202  as_fn_error $? "conditional \"SCL\" was never defined.
6203Usually this means the macro was only invoked conditionally." "$LINENO" 5
6204fi
6205if test -z "${SBCL_TRUE}" && test -z "${SBCL_FALSE}"; then
6206  as_fn_error $? "conditional \"SBCL\" was never defined.
6207Usually this means the macro was only invoked conditionally." "$LINENO" 5
6208fi
6209if test -z "${SBCL_EXEC_TRUE}" && test -z "${SBCL_EXEC_FALSE}"; then
6210  as_fn_error $? "conditional \"SBCL_EXEC\" was never defined.
6211Usually this means the macro was only invoked conditionally." "$LINENO" 5
6212fi
6213if test -z "${ACL_TRUE}" && test -z "${ACL_FALSE}"; then
6214  as_fn_error $? "conditional \"ACL\" was never defined.
6215Usually this means the macro was only invoked conditionally." "$LINENO" 5
6216fi
6217if test -z "${OPENMCL_TRUE}" && test -z "${OPENMCL_FALSE}"; then
6218  as_fn_error $? "conditional \"OPENMCL\" was never defined.
6219Usually this means the macro was only invoked conditionally." "$LINENO" 5
6220fi
6221if test -z "${OPENMCL_EXEC_TRUE}" && test -z "${OPENMCL_EXEC_FALSE}"; then
6222  as_fn_error $? "conditional \"OPENMCL_EXEC\" was never defined.
6223Usually this means the macro was only invoked conditionally." "$LINENO" 5
6224fi
6225if test -z "${ECL_TRUE}" && test -z "${ECL_FALSE}"; then
6226  as_fn_error $? "conditional \"ECL\" was never defined.
6227Usually this means the macro was only invoked conditionally." "$LINENO" 5
6228fi
6229if test -z "${CCL64_TRUE}" && test -z "${CCL64_FALSE}"; then
6230  as_fn_error $? "conditional \"CCL64\" was never defined.
6231Usually this means the macro was only invoked conditionally." "$LINENO" 5
6232fi
6233if test -z "${CCL64_EXEC_TRUE}" && test -z "${CCL64_EXEC_FALSE}"; then
6234  as_fn_error $? "conditional \"CCL64_EXEC\" was never defined.
6235Usually this means the macro was only invoked conditionally." "$LINENO" 5
6236fi
6237if test -z "${GCL_ALT_LINK_TRUE}" && test -z "${GCL_ALT_LINK_FALSE}"; then
6238  as_fn_error $? "conditional \"GCL_ALT_LINK\" was never defined.
6239Usually this means the macro was only invoked conditionally." "$LINENO" 5
6240fi
6241
6242: "${CONFIG_STATUS=./config.status}"
6243ac_write_fail=0
6244ac_clean_files_save=$ac_clean_files
6245ac_clean_files="$ac_clean_files $CONFIG_STATUS"
6246{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
6247$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
6248as_write_fail=0
6249cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
6250#! $SHELL
6251# Generated by $as_me.
6252# Run this file to recreate the current configuration.
6253# Compiler output produced by configure, useful for debugging
6254# configure, is in config.log if it exists.
6255
6256debug=false
6257ac_cs_recheck=false
6258ac_cs_silent=false
6259
6260SHELL=\${CONFIG_SHELL-$SHELL}
6261export SHELL
6262_ASEOF
6263cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
6264## -------------------- ##
6265## M4sh Initialization. ##
6266## -------------------- ##
6267
6268# Be more Bourne compatible
6269DUALCASE=1; export DUALCASE # for MKS sh
6270if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
6271  emulate sh
6272  NULLCMD=:
6273  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
6274  # is contrary to our usage.  Disable this feature.
6275  alias -g '${1+"$@"}'='"$@"'
6276  setopt NO_GLOB_SUBST
6277else
6278  case `(set -o) 2>/dev/null` in #(
6279  *posix*) :
6280    set -o posix ;; #(
6281  *) :
6282     ;;
6283esac
6284fi
6285
6286
6287as_nl='
6288'
6289export as_nl
6290# Printing a long string crashes Solaris 7 /usr/bin/printf.
6291as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
6292as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
6293as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
6294# Prefer a ksh shell builtin over an external printf program on Solaris,
6295# but without wasting forks for bash or zsh.
6296if test -z "$BASH_VERSION$ZSH_VERSION" \
6297    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
6298  as_echo='print -r --'
6299  as_echo_n='print -rn --'
6300elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
6301  as_echo='printf %s\n'
6302  as_echo_n='printf %s'
6303else
6304  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
6305    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
6306    as_echo_n='/usr/ucb/echo -n'
6307  else
6308    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
6309    as_echo_n_body='eval
6310      arg=$1;
6311      case $arg in #(
6312      *"$as_nl"*)
6313	expr "X$arg" : "X\\(.*\\)$as_nl";
6314	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
6315      esac;
6316      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
6317    '
6318    export as_echo_n_body
6319    as_echo_n='sh -c $as_echo_n_body as_echo'
6320  fi
6321  export as_echo_body
6322  as_echo='sh -c $as_echo_body as_echo'
6323fi
6324
6325# The user is always right.
6326if test "${PATH_SEPARATOR+set}" != set; then
6327  PATH_SEPARATOR=:
6328  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
6329    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
6330      PATH_SEPARATOR=';'
6331  }
6332fi
6333
6334
6335# IFS
6336# We need space, tab and new line, in precisely that order.  Quoting is
6337# there to prevent editors from complaining about space-tab.
6338# (If _AS_PATH_WALK were called with IFS unset, it would disable word
6339# splitting by setting IFS to empty value.)
6340IFS=" ""	$as_nl"
6341
6342# Find who we are.  Look in the path if we contain no directory separator.
6343as_myself=
6344case $0 in #((
6345  *[\\/]* ) as_myself=$0 ;;
6346  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6347for as_dir in $PATH
6348do
6349  IFS=$as_save_IFS
6350  test -z "$as_dir" && as_dir=.
6351    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
6352  done
6353IFS=$as_save_IFS
6354
6355     ;;
6356esac
6357# We did not find ourselves, most probably we were run as `sh COMMAND'
6358# in which case we are not to be found in the path.
6359if test "x$as_myself" = x; then
6360  as_myself=$0
6361fi
6362if test ! -f "$as_myself"; then
6363  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
6364  exit 1
6365fi
6366
6367# Unset variables that we do not need and which cause bugs (e.g. in
6368# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
6369# suppresses any "Segmentation fault" message there.  '((' could
6370# trigger a bug in pdksh 5.2.14.
6371for as_var in BASH_ENV ENV MAIL MAILPATH
6372do eval test x\${$as_var+set} = xset \
6373  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
6374done
6375PS1='$ '
6376PS2='> '
6377PS4='+ '
6378
6379# NLS nuisances.
6380LC_ALL=C
6381export LC_ALL
6382LANGUAGE=C
6383export LANGUAGE
6384
6385# CDPATH.
6386(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
6387
6388
6389# as_fn_error STATUS ERROR [LINENO LOG_FD]
6390# ----------------------------------------
6391# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
6392# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
6393# script with STATUS, using 1 if that was 0.
6394as_fn_error ()
6395{
6396  as_status=$1; test $as_status -eq 0 && as_status=1
6397  if test "$4"; then
6398    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
6399    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
6400  fi
6401  $as_echo "$as_me: error: $2" >&2
6402  as_fn_exit $as_status
6403} # as_fn_error
6404
6405
6406# as_fn_set_status STATUS
6407# -----------------------
6408# Set $? to STATUS, without forking.
6409as_fn_set_status ()
6410{
6411  return $1
6412} # as_fn_set_status
6413
6414# as_fn_exit STATUS
6415# -----------------
6416# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
6417as_fn_exit ()
6418{
6419  set +e
6420  as_fn_set_status $1
6421  exit $1
6422} # as_fn_exit
6423
6424# as_fn_unset VAR
6425# ---------------
6426# Portably unset VAR.
6427as_fn_unset ()
6428{
6429  { eval $1=; unset $1;}
6430}
6431as_unset=as_fn_unset
6432# as_fn_append VAR VALUE
6433# ----------------------
6434# Append the text in VALUE to the end of the definition contained in VAR. Take
6435# advantage of any shell optimizations that allow amortized linear growth over
6436# repeated appends, instead of the typical quadratic growth present in naive
6437# implementations.
6438if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
6439  eval 'as_fn_append ()
6440  {
6441    eval $1+=\$2
6442  }'
6443else
6444  as_fn_append ()
6445  {
6446    eval $1=\$$1\$2
6447  }
6448fi # as_fn_append
6449
6450# as_fn_arith ARG...
6451# ------------------
6452# Perform arithmetic evaluation on the ARGs, and store the result in the
6453# global $as_val. Take advantage of shells that can avoid forks. The arguments
6454# must be portable across $(()) and expr.
6455if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
6456  eval 'as_fn_arith ()
6457  {
6458    as_val=$(( $* ))
6459  }'
6460else
6461  as_fn_arith ()
6462  {
6463    as_val=`expr "$@" || test $? -eq 1`
6464  }
6465fi # as_fn_arith
6466
6467
6468if expr a : '\(a\)' >/dev/null 2>&1 &&
6469   test "X`expr 00001 : '.*\(...\)'`" = X001; then
6470  as_expr=expr
6471else
6472  as_expr=false
6473fi
6474
6475if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
6476  as_basename=basename
6477else
6478  as_basename=false
6479fi
6480
6481if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
6482  as_dirname=dirname
6483else
6484  as_dirname=false
6485fi
6486
6487as_me=`$as_basename -- "$0" ||
6488$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
6489	 X"$0" : 'X\(//\)$' \| \
6490	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
6491$as_echo X/"$0" |
6492    sed '/^.*\/\([^/][^/]*\)\/*$/{
6493	    s//\1/
6494	    q
6495	  }
6496	  /^X\/\(\/\/\)$/{
6497	    s//\1/
6498	    q
6499	  }
6500	  /^X\/\(\/\).*/{
6501	    s//\1/
6502	    q
6503	  }
6504	  s/.*/./; q'`
6505
6506# Avoid depending upon Character Ranges.
6507as_cr_letters='abcdefghijklmnopqrstuvwxyz'
6508as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
6509as_cr_Letters=$as_cr_letters$as_cr_LETTERS
6510as_cr_digits='0123456789'
6511as_cr_alnum=$as_cr_Letters$as_cr_digits
6512
6513ECHO_C= ECHO_N= ECHO_T=
6514case `echo -n x` in #(((((
6515-n*)
6516  case `echo 'xy\c'` in
6517  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
6518  xy)  ECHO_C='\c';;
6519  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
6520       ECHO_T='	';;
6521  esac;;
6522*)
6523  ECHO_N='-n';;
6524esac
6525
6526rm -f conf$$ conf$$.exe conf$$.file
6527if test -d conf$$.dir; then
6528  rm -f conf$$.dir/conf$$.file
6529else
6530  rm -f conf$$.dir
6531  mkdir conf$$.dir 2>/dev/null
6532fi
6533if (echo >conf$$.file) 2>/dev/null; then
6534  if ln -s conf$$.file conf$$ 2>/dev/null; then
6535    as_ln_s='ln -s'
6536    # ... but there are two gotchas:
6537    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
6538    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
6539    # In both cases, we have to default to `cp -pR'.
6540    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
6541      as_ln_s='cp -pR'
6542  elif ln conf$$.file conf$$ 2>/dev/null; then
6543    as_ln_s=ln
6544  else
6545    as_ln_s='cp -pR'
6546  fi
6547else
6548  as_ln_s='cp -pR'
6549fi
6550rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
6551rmdir conf$$.dir 2>/dev/null
6552
6553
6554# as_fn_mkdir_p
6555# -------------
6556# Create "$as_dir" as a directory, including parents if necessary.
6557as_fn_mkdir_p ()
6558{
6559
6560  case $as_dir in #(
6561  -*) as_dir=./$as_dir;;
6562  esac
6563  test -d "$as_dir" || eval $as_mkdir_p || {
6564    as_dirs=
6565    while :; do
6566      case $as_dir in #(
6567      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
6568      *) as_qdir=$as_dir;;
6569      esac
6570      as_dirs="'$as_qdir' $as_dirs"
6571      as_dir=`$as_dirname -- "$as_dir" ||
6572$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
6573	 X"$as_dir" : 'X\(//\)[^/]' \| \
6574	 X"$as_dir" : 'X\(//\)$' \| \
6575	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
6576$as_echo X"$as_dir" |
6577    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
6578	    s//\1/
6579	    q
6580	  }
6581	  /^X\(\/\/\)[^/].*/{
6582	    s//\1/
6583	    q
6584	  }
6585	  /^X\(\/\/\)$/{
6586	    s//\1/
6587	    q
6588	  }
6589	  /^X\(\/\).*/{
6590	    s//\1/
6591	    q
6592	  }
6593	  s/.*/./; q'`
6594      test -d "$as_dir" && break
6595    done
6596    test -z "$as_dirs" || eval "mkdir $as_dirs"
6597  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
6598
6599
6600} # as_fn_mkdir_p
6601if mkdir -p . 2>/dev/null; then
6602  as_mkdir_p='mkdir -p "$as_dir"'
6603else
6604  test -d ./-p && rmdir ./-p
6605  as_mkdir_p=false
6606fi
6607
6608
6609# as_fn_executable_p FILE
6610# -----------------------
6611# Test if FILE is an executable regular file.
6612as_fn_executable_p ()
6613{
6614  test -f "$1" && test -x "$1"
6615} # as_fn_executable_p
6616as_test_x='test -x'
6617as_executable_p=as_fn_executable_p
6618
6619# Sed expression to map a string onto a valid CPP name.
6620as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
6621
6622# Sed expression to map a string onto a valid variable name.
6623as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
6624
6625
6626exec 6>&1
6627## ----------------------------------- ##
6628## Main body of $CONFIG_STATUS script. ##
6629## ----------------------------------- ##
6630_ASEOF
6631test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
6632
6633cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
6634# Save the log message, to keep $0 and so on meaningful, and to
6635# report actual input values of CONFIG_FILES etc. instead of their
6636# values after options handling.
6637ac_log="
6638This file was extended by maxima $as_me 5.43.2, which was
6639generated by GNU Autoconf 2.69.  Invocation command line was
6640
6641  CONFIG_FILES    = $CONFIG_FILES
6642  CONFIG_HEADERS  = $CONFIG_HEADERS
6643  CONFIG_LINKS    = $CONFIG_LINKS
6644  CONFIG_COMMANDS = $CONFIG_COMMANDS
6645  $ $0 $@
6646
6647on `(hostname || uname -n) 2>/dev/null | sed 1q`
6648"
6649
6650_ACEOF
6651
6652case $ac_config_files in *"
6653"*) set x $ac_config_files; shift; ac_config_files=$*;;
6654esac
6655
6656
6657
6658cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
6659# Files that config.status was made for.
6660config_files="$ac_config_files"
6661
6662_ACEOF
6663
6664cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
6665ac_cs_usage="\
6666\`$as_me' instantiates files and other configuration actions
6667from templates according to the current configuration.  Unless the files
6668and actions are specified as TAGs, all are instantiated by default.
6669
6670Usage: $0 [OPTION]... [TAG]...
6671
6672  -h, --help       print this help, then exit
6673  -V, --version    print version number and configuration settings, then exit
6674      --config     print configuration, then exit
6675  -q, --quiet, --silent
6676                   do not print progress messages
6677  -d, --debug      don't remove temporary files
6678      --recheck    update $as_me by reconfiguring in the same conditions
6679      --file=FILE[:TEMPLATE]
6680                   instantiate the configuration file FILE
6681
6682Configuration files:
6683$config_files
6684
6685Report bugs to the package provider."
6686
6687_ACEOF
6688cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
6689ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
6690ac_cs_version="\\
6691maxima config.status 5.43.2
6692configured by $0, generated by GNU Autoconf 2.69,
6693  with options \\"\$ac_cs_config\\"
6694
6695Copyright (C) 2012 Free Software Foundation, Inc.
6696This config.status script is free software; the Free Software Foundation
6697gives unlimited permission to copy, distribute and modify it."
6698
6699ac_pwd='$ac_pwd'
6700srcdir='$srcdir'
6701INSTALL='$INSTALL'
6702MKDIR_P='$MKDIR_P'
6703AWK='$AWK'
6704test -n "\$AWK" || AWK=awk
6705_ACEOF
6706
6707cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
6708# The default lists apply if the user does not specify any file.
6709ac_need_defaults=:
6710while test $# != 0
6711do
6712  case $1 in
6713  --*=?*)
6714    ac_option=`expr "X$1" : 'X\([^=]*\)='`
6715    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
6716    ac_shift=:
6717    ;;
6718  --*=)
6719    ac_option=`expr "X$1" : 'X\([^=]*\)='`
6720    ac_optarg=
6721    ac_shift=:
6722    ;;
6723  *)
6724    ac_option=$1
6725    ac_optarg=$2
6726    ac_shift=shift
6727    ;;
6728  esac
6729
6730  case $ac_option in
6731  # Handling of the options.
6732  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
6733    ac_cs_recheck=: ;;
6734  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
6735    $as_echo "$ac_cs_version"; exit ;;
6736  --config | --confi | --conf | --con | --co | --c )
6737    $as_echo "$ac_cs_config"; exit ;;
6738  --debug | --debu | --deb | --de | --d | -d )
6739    debug=: ;;
6740  --file | --fil | --fi | --f )
6741    $ac_shift
6742    case $ac_optarg in
6743    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
6744    '') as_fn_error $? "missing file argument" ;;
6745    esac
6746    as_fn_append CONFIG_FILES " '$ac_optarg'"
6747    ac_need_defaults=false;;
6748  --he | --h |  --help | --hel | -h )
6749    $as_echo "$ac_cs_usage"; exit ;;
6750  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
6751  | -silent | --silent | --silen | --sile | --sil | --si | --s)
6752    ac_cs_silent=: ;;
6753
6754  # This is an error.
6755  -*) as_fn_error $? "unrecognized option: \`$1'
6756Try \`$0 --help' for more information." ;;
6757
6758  *) as_fn_append ac_config_targets " $1"
6759     ac_need_defaults=false ;;
6760
6761  esac
6762  shift
6763done
6764
6765ac_configure_extra_args=
6766
6767if $ac_cs_silent; then
6768  exec 6>/dev/null
6769  ac_configure_extra_args="$ac_configure_extra_args --silent"
6770fi
6771
6772_ACEOF
6773cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
6774if \$ac_cs_recheck; then
6775  set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
6776  shift
6777  \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
6778  CONFIG_SHELL='$SHELL'
6779  export CONFIG_SHELL
6780  exec "\$@"
6781fi
6782
6783_ACEOF
6784cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
6785exec 5>>config.log
6786{
6787  echo
6788  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
6789## Running $as_me. ##
6790_ASBOX
6791  $as_echo "$ac_log"
6792} >&5
6793
6794_ACEOF
6795cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
6796_ACEOF
6797
6798cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
6799
6800# Handling of arguments.
6801for ac_config_target in $ac_config_targets
6802do
6803  case $ac_config_target in
6804    "maxima-local") CONFIG_FILES="$CONFIG_FILES maxima-local" ;;
6805    "src/startmaxima_abcl.sh") CONFIG_FILES="$CONFIG_FILES src/startmaxima_abcl.sh" ;;
6806    "xmaxima-local") CONFIG_FILES="$CONFIG_FILES xmaxima-local" ;;
6807    "tests/test.sh") CONFIG_FILES="$CONFIG_FILES tests/test.sh" ;;
6808    "doc/info/build_html.sh") CONFIG_FILES="$CONFIG_FILES doc/info/build_html.sh" ;;
6809    "src/maxima.bat") CONFIG_FILES="$CONFIG_FILES src/maxima.bat" ;;
6810    "src/maxima") CONFIG_FILES="$CONFIG_FILES src/maxima" ;;
6811    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
6812    "maxima.spec") CONFIG_FILES="$CONFIG_FILES maxima.spec" ;;
6813    "maxima.iss") CONFIG_FILES="$CONFIG_FILES maxima.iss" ;;
6814    "admin/Makefile") CONFIG_FILES="$CONFIG_FILES admin/Makefile" ;;
6815    "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
6816    "src/rmaxima") CONFIG_FILES="$CONFIG_FILES src/rmaxima" ;;
6817    "src/autoconf-variables.lisp") CONFIG_FILES="$CONFIG_FILES src/autoconf-variables.lisp" ;;
6818    "src/share-subdirs_autogenerated.lisp") CONFIG_FILES="$CONFIG_FILES src/share-subdirs_autogenerated.lisp" ;;
6819    "lisp-utils/Makefile") CONFIG_FILES="$CONFIG_FILES lisp-utils/Makefile" ;;
6820    "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
6821    "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
6822    "crosscompile-windows/Makefile") CONFIG_FILES="$CONFIG_FILES crosscompile-windows/Makefile" ;;
6823    "doc/emaxima/Makefile") CONFIG_FILES="$CONFIG_FILES doc/emaxima/Makefile" ;;
6824    "doc/info/Makefile") CONFIG_FILES="$CONFIG_FILES doc/info/Makefile" ;;
6825    "doc/info/include-maxima.texi") CONFIG_FILES="$CONFIG_FILES doc/info/include-maxima.texi" ;;
6826    "desktopintegration/Makefile") CONFIG_FILES="$CONFIG_FILES desktopintegration/Makefile" ;;
6827    "doc/info/texi2html.init") CONFIG_FILES="$CONFIG_FILES doc/info/texi2html.init" ;;
6828    "doc/info/figures/Makefile") CONFIG_FILES="$CONFIG_FILES doc/info/figures/Makefile" ;;
6829    "doc/info/de/Makefile") CONFIG_FILES="$CONFIG_FILES doc/info/de/Makefile" ;;
6830    "doc/info/de.utf8/Makefile") CONFIG_FILES="$CONFIG_FILES doc/info/de.utf8/Makefile" ;;
6831    "doc/info/es/Makefile") CONFIG_FILES="$CONFIG_FILES doc/info/es/Makefile" ;;
6832    "doc/info/es.utf8/Makefile") CONFIG_FILES="$CONFIG_FILES doc/info/es.utf8/Makefile" ;;
6833    "doc/info/pt/Makefile") CONFIG_FILES="$CONFIG_FILES doc/info/pt/Makefile" ;;
6834    "doc/info/pt.utf8/Makefile") CONFIG_FILES="$CONFIG_FILES doc/info/pt.utf8/Makefile" ;;
6835    "doc/info/pt/include-maxima.texi") CONFIG_FILES="$CONFIG_FILES doc/info/pt/include-maxima.texi" ;;
6836    "doc/info/pt_BR/Makefile") CONFIG_FILES="$CONFIG_FILES doc/info/pt_BR/Makefile" ;;
6837    "doc/info/pt_BR.utf8/Makefile") CONFIG_FILES="$CONFIG_FILES doc/info/pt_BR.utf8/Makefile" ;;
6838    "doc/intromax/Makefile") CONFIG_FILES="$CONFIG_FILES doc/intromax/Makefile" ;;
6839    "doc/man/Makefile") CONFIG_FILES="$CONFIG_FILES doc/man/Makefile" ;;
6840    "doc/man/maxima.1") CONFIG_FILES="$CONFIG_FILES doc/man/maxima.1" ;;
6841    "doc/man/ru/maxima.1") CONFIG_FILES="$CONFIG_FILES doc/man/ru/maxima.1" ;;
6842    "doc/share/Makefile") CONFIG_FILES="$CONFIG_FILES doc/share/Makefile" ;;
6843    "interfaces/Makefile") CONFIG_FILES="$CONFIG_FILES interfaces/Makefile" ;;
6844    "interfaces/emacs/Makefile") CONFIG_FILES="$CONFIG_FILES interfaces/emacs/Makefile" ;;
6845    "interfaces/emacs/emaxima/Makefile") CONFIG_FILES="$CONFIG_FILES interfaces/emacs/emaxima/Makefile" ;;
6846    "interfaces/emacs/imaxima/Makefile") CONFIG_FILES="$CONFIG_FILES interfaces/emacs/imaxima/Makefile" ;;
6847    "interfaces/emacs/misc/Makefile") CONFIG_FILES="$CONFIG_FILES interfaces/emacs/misc/Makefile" ;;
6848    "interfaces/xmaxima/Makefile") CONFIG_FILES="$CONFIG_FILES interfaces/xmaxima/Makefile" ;;
6849    "interfaces/xmaxima/autoconf-variables.tcl") CONFIG_FILES="$CONFIG_FILES interfaces/xmaxima/autoconf-variables.tcl" ;;
6850    "interfaces/xmaxima/Tkmaxima/Header.tcl") CONFIG_FILES="$CONFIG_FILES interfaces/xmaxima/Tkmaxima/Header.tcl" ;;
6851    "interfaces/xmaxima/doc/Makefile") CONFIG_FILES="$CONFIG_FILES interfaces/xmaxima/doc/Makefile" ;;
6852    "interfaces/xmaxima/doc/figures/Makefile") CONFIG_FILES="$CONFIG_FILES interfaces/xmaxima/doc/figures/Makefile" ;;
6853    "interfaces/xmaxima/msgs/Makefile") CONFIG_FILES="$CONFIG_FILES interfaces/xmaxima/msgs/Makefile" ;;
6854    "interfaces/xmaxima/win32/Makefile") CONFIG_FILES="$CONFIG_FILES interfaces/xmaxima/win32/Makefile" ;;
6855    "plotting/mgnuplot") CONFIG_FILES="$CONFIG_FILES plotting/mgnuplot" ;;
6856    "share/Makefile") CONFIG_FILES="$CONFIG_FILES share/Makefile" ;;
6857    "demo/Makefile") CONFIG_FILES="$CONFIG_FILES demo/Makefile" ;;
6858    "plotting/Makefile") CONFIG_FILES="$CONFIG_FILES plotting/Makefile" ;;
6859    "locale/Makefile") CONFIG_FILES="$CONFIG_FILES locale/Makefile" ;;
6860    "share/contrib/Makefile") CONFIG_FILES="$CONFIG_FILES share/contrib/Makefile" ;;
6861    "share/contrib/integration/Makefile") CONFIG_FILES="$CONFIG_FILES share/contrib/integration/Makefile" ;;
6862    "share/contrib/maxima-odesolve/Makefile") CONFIG_FILES="$CONFIG_FILES share/contrib/maxima-odesolve/Makefile" ;;
6863    "share/draw/Makefile") CONFIG_FILES="$CONFIG_FILES share/draw/Makefile" ;;
6864    "share/logic/Makefile") CONFIG_FILES="$CONFIG_FILES share/logic/Makefile" ;;
6865    "doc/info/es/include-maxima.texi") CONFIG_FILES="$CONFIG_FILES doc/info/es/include-maxima.texi" ;;
6866    "src/lisp") CONFIG_FILES="$CONFIG_FILES src/lisp" ;;
6867
6868  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
6869  esac
6870done
6871
6872
6873# If the user did not use the arguments to specify the items to instantiate,
6874# then the envvar interface is used.  Set only those that are not.
6875# We use the long form for the default assignment because of an extremely
6876# bizarre bug on SunOS 4.1.3.
6877if $ac_need_defaults; then
6878  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
6879fi
6880
6881# Have a temporary directory for convenience.  Make it in the build tree
6882# simply because there is no reason against having it here, and in addition,
6883# creating and moving files from /tmp can sometimes cause problems.
6884# Hook for its removal unless debugging.
6885# Note that there is a small window in which the directory will not be cleaned:
6886# after its creation but before its name has been assigned to `$tmp'.
6887$debug ||
6888{
6889  tmp= ac_tmp=
6890  trap 'exit_status=$?
6891  : "${ac_tmp:=$tmp}"
6892  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
6893' 0
6894  trap 'as_fn_exit 1' 1 2 13 15
6895}
6896# Create a (secure) tmp directory for tmp files.
6897
6898{
6899  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
6900  test -d "$tmp"
6901}  ||
6902{
6903  tmp=./conf$$-$RANDOM
6904  (umask 077 && mkdir "$tmp")
6905} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
6906ac_tmp=$tmp
6907
6908# Set up the scripts for CONFIG_FILES section.
6909# No need to generate them if there are no CONFIG_FILES.
6910# This happens for instance with `./config.status config.h'.
6911if test -n "$CONFIG_FILES"; then
6912
6913
6914ac_cr=`echo X | tr X '\015'`
6915# On cygwin, bash can eat \r inside `` if the user requested igncr.
6916# But we know of no other shell where ac_cr would be empty at this
6917# point, so we can use a bashism as a fallback.
6918if test "x$ac_cr" = x; then
6919  eval ac_cr=\$\'\\r\'
6920fi
6921ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
6922if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
6923  ac_cs_awk_cr='\\r'
6924else
6925  ac_cs_awk_cr=$ac_cr
6926fi
6927
6928echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
6929_ACEOF
6930
6931
6932{
6933  echo "cat >conf$$subs.awk <<_ACEOF" &&
6934  echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
6935  echo "_ACEOF"
6936} >conf$$subs.sh ||
6937  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
6938ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
6939ac_delim='%!_!# '
6940for ac_last_try in false false false false false :; do
6941  . ./conf$$subs.sh ||
6942    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
6943
6944  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
6945  if test $ac_delim_n = $ac_delim_num; then
6946    break
6947  elif $ac_last_try; then
6948    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
6949  else
6950    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
6951  fi
6952done
6953rm -f conf$$subs.sh
6954
6955cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
6956cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
6957_ACEOF
6958sed -n '
6959h
6960s/^/S["/; s/!.*/"]=/
6961p
6962g
6963s/^[^!]*!//
6964:repl
6965t repl
6966s/'"$ac_delim"'$//
6967t delim
6968:nl
6969h
6970s/\(.\{148\}\)..*/\1/
6971t more1
6972s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
6973p
6974n
6975b repl
6976:more1
6977s/["\\]/\\&/g; s/^/"/; s/$/"\\/
6978p
6979g
6980s/.\{148\}//
6981t nl
6982:delim
6983h
6984s/\(.\{148\}\)..*/\1/
6985t more2
6986s/["\\]/\\&/g; s/^/"/; s/$/"/
6987p
6988b
6989:more2
6990s/["\\]/\\&/g; s/^/"/; s/$/"\\/
6991p
6992g
6993s/.\{148\}//
6994t delim
6995' <conf$$subs.awk | sed '
6996/^[^""]/{
6997  N
6998  s/\n//
6999}
7000' >>$CONFIG_STATUS || ac_write_fail=1
7001rm -f conf$$subs.awk
7002cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
7003_ACAWK
7004cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
7005  for (key in S) S_is_set[key] = 1
7006  FS = ""
7007
7008}
7009{
7010  line = $ 0
7011  nfields = split(line, field, "@")
7012  substed = 0
7013  len = length(field[1])
7014  for (i = 2; i < nfields; i++) {
7015    key = field[i]
7016    keylen = length(key)
7017    if (S_is_set[key]) {
7018      value = S[key]
7019      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
7020      len += length(value) + length(field[++i])
7021      substed = 1
7022    } else
7023      len += 1 + keylen
7024  }
7025
7026  print line
7027}
7028
7029_ACAWK
7030_ACEOF
7031cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
7032if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
7033  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
7034else
7035  cat
7036fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
7037  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
7038_ACEOF
7039
7040# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
7041# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
7042# trailing colons and then remove the whole line if VPATH becomes empty
7043# (actually we leave an empty line to preserve line numbers).
7044if test "x$srcdir" = x.; then
7045  ac_vpsub='/^[	 ]*VPATH[	 ]*=[	 ]*/{
7046h
7047s///
7048s/^/:/
7049s/[	 ]*$/:/
7050s/:\$(srcdir):/:/g
7051s/:\${srcdir}:/:/g
7052s/:@srcdir@:/:/g
7053s/^:*//
7054s/:*$//
7055x
7056s/\(=[	 ]*\).*/\1/
7057G
7058s/\n//
7059s/^[^=]*=[	 ]*$//
7060}'
7061fi
7062
7063cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
7064fi # test -n "$CONFIG_FILES"
7065
7066
7067eval set X "  :F $CONFIG_FILES      "
7068shift
7069for ac_tag
7070do
7071  case $ac_tag in
7072  :[FHLC]) ac_mode=$ac_tag; continue;;
7073  esac
7074  case $ac_mode$ac_tag in
7075  :[FHL]*:*);;
7076  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
7077  :[FH]-) ac_tag=-:-;;
7078  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
7079  esac
7080  ac_save_IFS=$IFS
7081  IFS=:
7082  set x $ac_tag
7083  IFS=$ac_save_IFS
7084  shift
7085  ac_file=$1
7086  shift
7087
7088  case $ac_mode in
7089  :L) ac_source=$1;;
7090  :[FH])
7091    ac_file_inputs=
7092    for ac_f
7093    do
7094      case $ac_f in
7095      -) ac_f="$ac_tmp/stdin";;
7096      *) # Look for the file first in the build tree, then in the source tree
7097	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
7098	 # because $ac_f cannot contain `:'.
7099	 test -f "$ac_f" ||
7100	   case $ac_f in
7101	   [\\/$]*) false;;
7102	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
7103	   esac ||
7104	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
7105      esac
7106      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
7107      as_fn_append ac_file_inputs " '$ac_f'"
7108    done
7109
7110    # Let's still pretend it is `configure' which instantiates (i.e., don't
7111    # use $as_me), people would be surprised to read:
7112    #    /* config.h.  Generated by config.status.  */
7113    configure_input='Generated from '`
7114	  $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
7115	`' by configure.'
7116    if test x"$ac_file" != x-; then
7117      configure_input="$ac_file.  $configure_input"
7118      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
7119$as_echo "$as_me: creating $ac_file" >&6;}
7120    fi
7121    # Neutralize special characters interpreted by sed in replacement strings.
7122    case $configure_input in #(
7123    *\&* | *\|* | *\\* )
7124       ac_sed_conf_input=`$as_echo "$configure_input" |
7125       sed 's/[\\\\&|]/\\\\&/g'`;; #(
7126    *) ac_sed_conf_input=$configure_input;;
7127    esac
7128
7129    case $ac_tag in
7130    *:-:* | *:-) cat >"$ac_tmp/stdin" \
7131      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
7132    esac
7133    ;;
7134  esac
7135
7136  ac_dir=`$as_dirname -- "$ac_file" ||
7137$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
7138	 X"$ac_file" : 'X\(//\)[^/]' \| \
7139	 X"$ac_file" : 'X\(//\)$' \| \
7140	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
7141$as_echo X"$ac_file" |
7142    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
7143	    s//\1/
7144	    q
7145	  }
7146	  /^X\(\/\/\)[^/].*/{
7147	    s//\1/
7148	    q
7149	  }
7150	  /^X\(\/\/\)$/{
7151	    s//\1/
7152	    q
7153	  }
7154	  /^X\(\/\).*/{
7155	    s//\1/
7156	    q
7157	  }
7158	  s/.*/./; q'`
7159  as_dir="$ac_dir"; as_fn_mkdir_p
7160  ac_builddir=.
7161
7162case "$ac_dir" in
7163.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
7164*)
7165  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
7166  # A ".." for each directory in $ac_dir_suffix.
7167  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
7168  case $ac_top_builddir_sub in
7169  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
7170  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
7171  esac ;;
7172esac
7173ac_abs_top_builddir=$ac_pwd
7174ac_abs_builddir=$ac_pwd$ac_dir_suffix
7175# for backward compatibility:
7176ac_top_builddir=$ac_top_build_prefix
7177
7178case $srcdir in
7179  .)  # We are building in place.
7180    ac_srcdir=.
7181    ac_top_srcdir=$ac_top_builddir_sub
7182    ac_abs_top_srcdir=$ac_pwd ;;
7183  [\\/]* | ?:[\\/]* )  # Absolute name.
7184    ac_srcdir=$srcdir$ac_dir_suffix;
7185    ac_top_srcdir=$srcdir
7186    ac_abs_top_srcdir=$srcdir ;;
7187  *) # Relative name.
7188    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
7189    ac_top_srcdir=$ac_top_build_prefix$srcdir
7190    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
7191esac
7192ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
7193
7194
7195  case $ac_mode in
7196  :F)
7197  #
7198  # CONFIG_FILE
7199  #
7200
7201  case $INSTALL in
7202  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
7203  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
7204  esac
7205  ac_MKDIR_P=$MKDIR_P
7206  case $MKDIR_P in
7207  [\\/$]* | ?:[\\/]* ) ;;
7208  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
7209  esac
7210_ACEOF
7211
7212cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
7213# If the template does not know about datarootdir, expand it.
7214# FIXME: This hack should be removed a few years after 2.60.
7215ac_datarootdir_hack=; ac_datarootdir_seen=
7216ac_sed_dataroot='
7217/datarootdir/ {
7218  p
7219  q
7220}
7221/@datadir@/p
7222/@docdir@/p
7223/@infodir@/p
7224/@localedir@/p
7225/@mandir@/p'
7226case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
7227*datarootdir*) ac_datarootdir_seen=yes;;
7228*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
7229  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
7230$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
7231_ACEOF
7232cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
7233  ac_datarootdir_hack='
7234  s&@datadir@&$datadir&g
7235  s&@docdir@&$docdir&g
7236  s&@infodir@&$infodir&g
7237  s&@localedir@&$localedir&g
7238  s&@mandir@&$mandir&g
7239  s&\\\${datarootdir}&$datarootdir&g' ;;
7240esac
7241_ACEOF
7242
7243# Neutralize VPATH when `$srcdir' = `.'.
7244# Shell code in configure.ac might set extrasub.
7245# FIXME: do we really want to maintain this feature?
7246cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
7247ac_sed_extra="$ac_vpsub
7248$extrasub
7249_ACEOF
7250cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
7251:t
7252/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
7253s|@configure_input@|$ac_sed_conf_input|;t t
7254s&@top_builddir@&$ac_top_builddir_sub&;t t
7255s&@top_build_prefix@&$ac_top_build_prefix&;t t
7256s&@srcdir@&$ac_srcdir&;t t
7257s&@abs_srcdir@&$ac_abs_srcdir&;t t
7258s&@top_srcdir@&$ac_top_srcdir&;t t
7259s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
7260s&@builddir@&$ac_builddir&;t t
7261s&@abs_builddir@&$ac_abs_builddir&;t t
7262s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
7263s&@INSTALL@&$ac_INSTALL&;t t
7264s&@MKDIR_P@&$ac_MKDIR_P&;t t
7265$ac_datarootdir_hack
7266"
7267eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
7268  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
7269
7270test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
7271  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
7272  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
7273      "$ac_tmp/out"`; test -z "$ac_out"; } &&
7274  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
7275which seems to be undefined.  Please make sure it is defined" >&5
7276$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
7277which seems to be undefined.  Please make sure it is defined" >&2;}
7278
7279  rm -f "$ac_tmp/stdin"
7280  case $ac_file in
7281  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
7282  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
7283  esac \
7284  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
7285 ;;
7286
7287
7288
7289  esac
7290
7291
7292  case $ac_file$ac_mode in
7293    "maxima-local":F) chmod +x maxima-local ;;
7294    "src/startmaxima_abcl.sh":F) chmod +x src/startmaxima_abcl.sh ;;
7295    "xmaxima-local":F) chmod +x xmaxima-local ;;
7296    "tests/test.sh":F) chmod +x tests/test.sh ;;
7297    "doc/info/build_html.sh":F) chmod +x doc/info/build_html.sh ;;
7298    "src/maxima.bat":F) (perl -ne 'BEGIN{binmode(STDOUT,":crlf")};' -e 'print' < src/maxima.bat > src/maxima.bat.tmp; mv src/maxima.bat.tmp src/maxima.bat) ;;
7299    "src/maxima":F) chmod +x src/maxima ;;
7300
7301  esac
7302done # for ac_tag
7303
7304
7305as_fn_exit 0
7306_ACEOF
7307ac_clean_files=$ac_clean_files_save
7308
7309test $ac_write_fail = 0 ||
7310  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
7311
7312
7313# configure is writing to config.log, and then calls config.status.
7314# config.status does its own redirection, appending to config.log.
7315# Unfortunately, on DOS this fails, as config.log is still kept open
7316# by configure, so config.status won't be able to write to it; its
7317# output is simply discarded.  So we exec the FD to /dev/null,
7318# effectively closing config.log, so it can be properly (re)opened and
7319# appended to by config.status.  When coming back to configure, we
7320# need to make the FD available again.
7321if test "$no_create" != yes; then
7322  ac_cs_success=:
7323  ac_config_status_args=
7324  test "$silent" = yes &&
7325    ac_config_status_args="$ac_config_status_args --quiet"
7326  exec 5>/dev/null
7327  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
7328  exec 5>>config.log
7329  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
7330  # would make configure fail if this is the last instruction.
7331  $ac_cs_success || as_fn_exit 1
7332fi
7333if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
7334  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
7335$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
7336fi
7337
7338
7339# The default of 4096 is sometimes too little for the test suite.
7340if test x"${sbcl}" = xtrue ; then
7341   { $as_echo "$as_me:${as_lineno-$LINENO}: checking Testing if sbcl complains if we try to enlarge the thread-local storage" >&5
7342$as_echo_n "checking Testing if sbcl complains if we try to enlarge the thread-local storage... " >&6; }
7343   echo "(quit)" | ${SBCL_NAME} --tls-limit 8192 > /dev/null 2>&1
7344   if test "$?" = "0" ; then
7345	SBCL_EXTRA_ARGS="--tls-limit 8192"
7346	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Yes" >&5
7347$as_echo "Yes" >&6; }
7348   else
7349	SBCL_EXTRA_ARGS=""
7350	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: No" >&5
7351$as_echo "No" >&6; }
7352   fi
7353fi
7354
7355
7356if test x"${clisp}" = xtrue ; then
7357   	echo
7358	{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \"CLISP 2.49 is known to sporadically produce garbled data if the front-end is fast enough to acknowledge a data packet while a next data packet is still being prepared.\"" >&5
7359$as_echo "$as_me: WARNING: \"CLISP 2.49 is known to sporadically produce garbled data if the front-end is fast enough to acknowledge a data packet while a next data packet is still being prepared.\"" >&2;}
7360fi
7361echo
7362echo "Summary:"
7363if test x"${clisp}" = xtrue ; then
7364	echo "Compiling an maxima image that uses \"${CLISP_NAME}\"",
7365	echo "clisp runtime is \"${CLISP_RUNTIME_PATH}\""
7366	if test x"${clisp_exec}" = xtrue ; then
7367		echo "clisp executable image enabled for maxima."
7368	else
7369		echo Use "--enable-clisp-exec to build a standalone executable instead."
7370	fi
7371fi
7372if test x"${cmucl}" = xtrue ; then
7373	echo "Compiling an maxima image that uses \"${CMUCL_NAME}\""
7374	echo "cmucl runtime is \"${CMUCL_RUNTIME_PATH}\""
7375	if test x"${cmucl_exec}" = xtrue; then
7376		echo "CMUCL executable image enabled for maxima."
7377	else
7378		echo Use "--enable-cmucl-exec to build a standalone executable instead."
7379	fi
7380fi
7381if test x"${scl}" = xtrue ; then
7382	echo "SCL enabled, that uses \"${SCL_NAME}\""
7383	echo "SCL runtime is \"${SCL_RUNTIME_PATH}\""
7384fi
7385if test x"${sbcl}" = xtrue ; then
7386   	echo "Compiling an maxima image that uses \"${SBCL_NAME}\""
7387	if test x"${sbcl_exec}" = xtrue ; then
7388	   	echo "sbcl executable image enabled for maxima."
7389	else
7390		echo Use "--enable-sbcl-exec to build a standalone executable instead."
7391	fi
7392fi
7393if test x"${gcl}" = xtrue ; then
7394	echo "Compiling an maxima image that uses \"${GCL_NAME}\""
7395	if test x"${gcl_alt_link}" = xtrue ; then
7396		echo "    GCL alternative linking method enabled."
7397	fi
7398fi
7399if test x"${acl}" = xtrue ; then
7400	echo "ACL enabled. Executable name: \"${ACL_NAME}\""
7401fi
7402if test x"${openmcl}" = xtrue ; then
7403	echo "Compiling an maxima image that uses \"${OPENMCL_NAME}\""
7404	if test x"${openmcl_exec}" = xtrue ; then
7405		echo "OpenMCL executable image enabled for maxima."
7406	else
7407		echo Use "--enable-openmcl-exec to build a standalone executable instead."
7408	fi
7409fi
7410if test x"${ccl64}" = xtrue ; then
7411	echo "Compiling an maxima image that uses \"${CCL64_NAME}\""
7412	if test x"${ccl64_exec}" = xtrue ; then
7413	   	echo "CCL64 executable image enabled for maxima."
7414	else
7415	   	echo Use "--enable-ccl64-exec to build a standalone executable instead."
7416	fi
7417fi
7418
7419if test x"${ecl}" = xtrue ; then
7420	if test x"$srcdir" = x"." ; then
7421		echo "Compiling maxima using \"${ECL_NAME}\""
7422	else
7423		echo "ECL enabled. Executable name: \"${ECL_NAME}\""
7424		as_fn_error $? "For ECL out-of-tree builds aren't supported. See src/maxima.system for details." "$LINENO" 5
7425	fi
7426fi
7427
7428if test x"${abcl}" = xtrue ; then
7429	if test x"$srcdir" = x"." ; then
7430		echo "Compiling maxima using \"${ABCL_JAR}\""
7431	else
7432		echo "ABCL enabled. ABCL jarfile: \"${ABCL_JAR}\""
7433		as_fn_error $? "For ABCL out-of-tree builds aren't supported. See src/maxima.system for details." "$LINENO" 5
7434	fi
7435fi
7436
7437echo "default lisp: $DEFAULTLISP"
7438echo "wish executable name: \"${WISH}\""
7439
7440if test x"${chm}" = xtrue ; then
7441  echo "CHM help files enabled"
7442  echo "  HHC: \"${HHC}\""
7443fi
7444if test x"${xmaxima_exe}" = xtrue ; then
7445   echo "Windows xmaxima.exe enabled"
7446   echo "  GCC version GCCVER: ${GCCVER}"
7447   echo "  TCLKITSH: ${TCLKITSH}"
7448   if ! test -f "${TCLKITSH}" ; then
7449     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** TCLKITSH ${TCLKITSH} not found" >&5
7450$as_echo "$as_me: WARNING: *** TCLKITSH ${TCLKITSH} not found" >&2;}
7451     xmaxima_exe_prerequisite=notfound
7452   fi
7453   echo "  TCLKIT_RUNTIME: ${TCLKIT_RUNTIME}"
7454   if ! test -f "${TCLKIT_RUNTIME}" ; then
7455     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** TCLKIT_RUNTIME ${TCLKIT_RUNTIME} not found" >&5
7456$as_echo "$as_me: WARNING: *** TCLKIT_RUNTIME ${TCLKIT_RUNTIME} not found" >&2;}
7457     xmaxima_exe_prerequisite=notfound
7458   fi
7459   echo "  SDXKIT: ${SDXKIT}"
7460   if ! test -f "${SDXKIT}" ; then
7461     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** SDXKIT ${SDXKIT} not found" >&5
7462$as_echo "$as_me: WARNING: *** SDXKIT ${SDXKIT} not found" >&2;}
7463     xmaxima_exe_prerequisite=notfound
7464   fi
7465   echo "  IMGKIT: ${IMGKIT}"
7466   if ! test -f "${IMGKIT}" ; then
7467     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** IMGKIT ${IMGKIT} not found" >&5
7468$as_echo "$as_me: WARNING: *** IMGKIT ${IMGKIT} not found" >&2;}
7469     xmaxima_exe_prerequisite=notfound
7470   fi
7471   if test x${xmaxima_exe_prerequisite} = xnotfound ; then
7472     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: A prerequisite for xmaxima.exe not found.  The missing components can be defined on the make command line." >&5
7473$as_echo "$as_me: WARNING: A prerequisite for xmaxima.exe not found.  The missing components can be defined on the make command line." >&2;}
7474   fi
7475fi
7476