/[dejagnu]/dejagnu/example/calc/configure
ViewVC logotype

Diff of /dejagnu/example/calc/configure

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by rsavoye, Fri Apr 26 03:32:40 2002 UTC revision 1.4 by rsavoye, Sat Aug 31 05:46:16 2002 UTC
# Line 1  Line 1 
1  #! /bin/sh  #! /bin/sh
2  # Guess values for system-dependent variables and create Makefiles.  # Guess values for system-dependent variables and create Makefiles.
3  # Generated by Autoconf 2.52.  # Generated by GNU Autoconf 2.53.
4  #  #
5  # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001  # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
6  # Free Software Foundation, Inc.  # Free Software Foundation, Inc.
7  # This configure script is free software; the Free Software Foundation  # This configure script is free software; the Free Software Foundation
8  # gives unlimited permission to copy, distribute and modify it.  # gives unlimited permission to copy, distribute and modify it.
9    
10  # Avoid depending upon Character Ranges.  if expr a : '\(a\)' >/dev/null 2>&1; then
11  as_cr_letters='abcdefghijklmnopqrstuvwxyz'    as_expr=expr
12  as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'  else
13  as_cr_Letters=$as_cr_letters$as_cr_LETTERS    as_expr=false
14  as_cr_digits='0123456789'  fi
 as_cr_alnum=$as_cr_Letters$as_cr_digits  
15    
 # Sed expression to map a string onto a valid variable name.  
 as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g"  
16    
17  # Sed expression to map a string onto a valid CPP name.  ## --------------------- ##
18  as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g"  ## M4sh Initialization.  ##
19    ## --------------------- ##
20    
21  # Be Bourne compatible  # Be Bourne compatible
22  if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then  if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
# Line 28  elif test -n "${BASH_VERSION+set}" && (s Line 26  elif test -n "${BASH_VERSION+set}" && (s
26    set -o posix    set -o posix
27  fi  fi
28    
29    # NLS nuisances.
30    # Support unset when possible.
31    if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
32      as_unset=unset
33    else
34      as_unset=false
35    fi
36    
37    (set +x; test -n "`(LANG=C; export LANG) 2>&1`") &&
38        { $as_unset LANG || test "${LANG+set}" != set; } ||
39          { LANG=C; export LANG; }
40    (set +x; test -n "`(LC_ALL=C; export LC_ALL) 2>&1`") &&
41        { $as_unset LC_ALL || test "${LC_ALL+set}" != set; } ||
42          { LC_ALL=C; export LC_ALL; }
43    (set +x; test -n "`(LC_TIME=C; export LC_TIME) 2>&1`") &&
44        { $as_unset LC_TIME || test "${LC_TIME+set}" != set; } ||
45          { LC_TIME=C; export LC_TIME; }
46    (set +x; test -n "`(LC_CTYPE=C; export LC_CTYPE) 2>&1`") &&
47        { $as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set; } ||
48          { LC_CTYPE=C; export LC_CTYPE; }
49    (set +x; test -n "`(LANGUAGE=C; export LANGUAGE) 2>&1`") &&
50        { $as_unset LANGUAGE || test "${LANGUAGE+set}" != set; } ||
51          { LANGUAGE=C; export LANGUAGE; }
52    (set +x; test -n "`(LC_COLLATE=C; export LC_COLLATE) 2>&1`") &&
53        { $as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set; } ||
54          { LC_COLLATE=C; export LC_COLLATE; }
55    (set +x; test -n "`(LC_NUMERIC=C; export LC_NUMERIC) 2>&1`") &&
56        { $as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set; } ||
57          { LC_NUMERIC=C; export LC_NUMERIC; }
58    (set +x; test -n "`(LC_MESSAGES=C; export LC_MESSAGES) 2>&1`") &&
59        { $as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set; } ||
60          { LC_MESSAGES=C; export LC_MESSAGES; }
61    
62    
63  # Name of the executable.  # Name of the executable.
64  as_me=`echo "$0" |sed 's,.*[\\/],,'`  as_me=`(basename "$0") 2>/dev/null ||
65    $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
66             X"$0" : 'X\(//\)$' \| \
67             X"$0" : 'X\(/\)$' \| \
68             .     : '\(.\)' 2>/dev/null ||
69    echo X/"$0" |
70        sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
71              /^X\/\(\/\/\)$/{ s//\1/; q; }
72              /^X\/\(\/\).*/{ s//\1/; q; }
73              s/.*/./; q'`
74    
75    # PATH needs CR, and LINENO needs CR and PATH.
76    # Avoid depending upon Character Ranges.
77    as_cr_letters='abcdefghijklmnopqrstuvwxyz'
78    as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
79    as_cr_Letters=$as_cr_letters$as_cr_LETTERS
80    as_cr_digits='0123456789'
81    as_cr_alnum=$as_cr_Letters$as_cr_digits
82    
83    # The user is always right.
84    if test "${PATH_SEPARATOR+set}" != set; then
85      echo "#! /bin/sh" >conftest.sh
86      echo  "exit 0"   >>conftest.sh
87      chmod +x conftest.sh
88      if (PATH=".;."; conftest.sh) >/dev/null 2>&1; then
89        PATH_SEPARATOR=';'
90      else
91        PATH_SEPARATOR=:
92      fi
93      rm -f conftest.sh
94    fi
95    
96    
97      as_lineno_1=$LINENO
98      as_lineno_2=$LINENO
99      as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
100      test "x$as_lineno_1" != "x$as_lineno_2" &&
101      test "x$as_lineno_3"  = "x$as_lineno_2"  || {
102      # Find who we are.  Look in the path if we contain no path at all
103      # relative or not.
104      case $0 in
105        *[\\/]* ) as_myself=$0 ;;
106        *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
107    for as_dir in $PATH
108    do
109      IFS=$as_save_IFS
110      test -z "$as_dir" && as_dir=.
111      test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
112    done
113    
114           ;;
115      esac
116      # We did not find ourselves, most probably we were run as `sh COMMAND'
117      # in which case we are not to be found in the path.
118      if test "x$as_myself" = x; then
119        as_myself=$0
120      fi
121      if test ! -f "$as_myself"; then
122        { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
123       { (exit 1); exit 1; }; }
124      fi
125      case $CONFIG_SHELL in
126      '')
127        as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
128    for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
129    do
130      IFS=$as_save_IFS
131      test -z "$as_dir" && as_dir=.
132      for as_base in sh bash ksh sh5; do
133             case $as_dir in
134             /*)
135               if ("$as_dir/$as_base" -c '
136      as_lineno_1=$LINENO
137      as_lineno_2=$LINENO
138      as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
139      test "x$as_lineno_1" != "x$as_lineno_2" &&
140      test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
141                 CONFIG_SHELL=$as_dir/$as_base
142                 export CONFIG_SHELL
143                 exec "$CONFIG_SHELL" "$0" ${1+"$@"}
144               fi;;
145             esac
146           done
147    done
148    ;;
149      esac
150    
151      # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
152      # uniformly replaced by the line number.  The first 'sed' inserts a
153      # line-number line before each line; the second 'sed' does the real
154      # work.  The second script uses 'N' to pair each line-number line
155      # with the numbered line, and appends trailing '-' during
156      # substitution so that $LINENO is not a special case at line end.
157      # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
158      # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
159      sed '=' <$as_myself |
160        sed '
161          N
162          s,$,-,
163          : loop
164          s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
165          t loop
166          s,-$,,
167          s,^['$as_cr_digits']*\n,,
168        ' >$as_me.lineno &&
169      chmod +x $as_me.lineno ||
170        { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
171       { (exit 1); exit 1; }; }
172    
173      # Don't try to exec as it changes $[0], causing all sort of problems
174      # (the dirname of $[0] is not the place where we might find the
175      # original and so on.  Autoconf is especially sensible to this).
176      . ./$as_me.lineno
177      # Exit status is that of the last command.
178      exit
179    }
180    
181    
182    case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
183      *c*,-n*) ECHO_N= ECHO_C='
184    ' ECHO_T='      ' ;;
185      *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
186      *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
187    esac
188    
189  if expr a : '\(a\)' >/dev/null 2>&1; then  if expr a : '\(a\)' >/dev/null 2>&1; then
190    as_expr=expr    as_expr=expr
# Line 57  rm -f conf$$ conf$$.exe conf$$.file Line 212  rm -f conf$$ conf$$.exe conf$$.file
212    
213  as_executable_p="test -f"  as_executable_p="test -f"
214    
215  # Support unset when possible.  # Sed expression to map a string onto a valid CPP name.
216  if (FOO=FOO; unset FOO) >/dev/null 2>&1; then  as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g"
217    as_unset=unset  
218  else  # Sed expression to map a string onto a valid variable name.
219    as_unset=false  as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g"
 fi  
220    
 # NLS nuisances.  
 $as_unset LANG || test "${LANG+set}" != set || { LANG=C; export LANG; }  
 $as_unset LC_ALL || test "${LC_ALL+set}" != set || { LC_ALL=C; export LC_ALL; }  
 $as_unset LC_TIME || test "${LC_TIME+set}" != set || { LC_TIME=C; export LC_TIME; }  
 $as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set || { LC_CTYPE=C; export LC_CTYPE; }  
 $as_unset LANGUAGE || test "${LANGUAGE+set}" != set || { LANGUAGE=C; export LANGUAGE; }  
 $as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set || { LC_COLLATE=C; export LC_COLLATE; }  
 $as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set || { LC_NUMERIC=C; export LC_NUMERIC; }  
 $as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set || { LC_MESSAGES=C; export LC_MESSAGES; }  
221    
222  # IFS  # IFS
223  # We need space, tab and new line, in precisely that order.  # We need space, tab and new line, in precisely that order.
# Line 81  as_nl=' Line 226  as_nl='
226  IFS="   $as_nl"  IFS="   $as_nl"
227    
228  # CDPATH.  # CDPATH.
229  $as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=:; export CDPATH; }  $as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=$PATH_SEPARATOR; export CDPATH; }
230    
231    
232  # Name of the host.  # Name of the host.
233  # hostname on some systems (SVR3.2, Linux) returns a bogus exit status,  # hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
# Line 96  exec 6>&1 Line 242  exec 6>&1
242  ac_default_prefix=/usr/local  ac_default_prefix=/usr/local
243  cross_compiling=no  cross_compiling=no
244  subdirs=  subdirs=
245  MFLAGS= MAKEFLAGS=  MFLAGS=
246    MAKEFLAGS=
247  SHELL=${CONFIG_SHELL-/bin/sh}  SHELL=${CONFIG_SHELL-/bin/sh}
248    
249  # Maximum number of lines to put in a shell here document.  # Maximum number of lines to put in a shell here document.
# Line 104  SHELL=${CONFIG_SHELL-/bin/sh} Line 251  SHELL=${CONFIG_SHELL-/bin/sh}
251  # only ac_max_sed_lines should be used.  # only ac_max_sed_lines should be used.
252  : ${ac_max_here_lines=38}  : ${ac_max_here_lines=38}
253    
254    # Identity of this package.
255    PACKAGE_NAME=
256    PACKAGE_TARNAME=
257    PACKAGE_VERSION=
258    PACKAGE_STRING=
259    PACKAGE_BUGREPORT=
260    
261  ac_unique_file="calc.c"  ac_unique_file="calc.c"
262    # Factoring default headers for most tests.
263    ac_includes_default="\
264    #include <stdio.h>
265    #if HAVE_SYS_TYPES_H
266    # include <sys/types.h>
267    #endif
268    #if HAVE_SYS_STAT_H
269    # include <sys/stat.h>
270    #endif
271    #if STDC_HEADERS
272    # include <stdlib.h>
273    # include <stddef.h>
274    #else
275    # if HAVE_STDLIB_H
276    #  include <stdlib.h>
277    # endif
278    #endif
279    #if HAVE_STRING_H
280    # if !STDC_HEADERS && HAVE_MEMORY_H
281    #  include <memory.h>
282    # endif
283    # include <string.h>
284    #endif
285    #if HAVE_STRINGS_H
286    # include <strings.h>
287    #endif
288    #if HAVE_INTTYPES_H
289    # include <inttypes.h>
290    #else
291    # if HAVE_STDINT_H
292    #  include <stdint.h>
293    # endif
294    #endif
295    #if HAVE_UNISTD_H
296    # include <unistd.h>
297    #endif"
298    
299    
300  # Initialize some variables set by options.  # Initialize some variables set by options.
301  ac_init_help=  ac_init_help=
# Line 144  oldincludedir='/usr/include' Line 335  oldincludedir='/usr/include'
335  infodir='${prefix}/info'  infodir='${prefix}/info'
336  mandir='${prefix}/man'  mandir='${prefix}/man'
337    
 # Identity of this package.  
 PACKAGE_NAME=  
 PACKAGE_TARNAME=  
 PACKAGE_VERSION=  
 PACKAGE_STRING=  
 PACKAGE_BUGREPORT=  
   
338  ac_prev=  ac_prev=
339  for ac_option  for ac_option
340  do  do
# Line 283  do Line 467  do
467      with_fp=no ;;      with_fp=no ;;
468    
469    -no-create | --no-create | --no-creat | --no-crea | --no-cre \    -no-create | --no-create | --no-creat | --no-crea | --no-cre \
470    | --no-cr | --no-c)    | --no-cr | --no-c | -n)
471      no_create=yes ;;      no_create=yes ;;
472    
473    -no-recursion | --no-recursion | --no-recursio | --no-recursi \    -no-recursion | --no-recursion | --no-recursio | --no-recursi \
# Line 462  do Line 646  do
646    eval ac_val=$`echo $ac_var`    eval ac_val=$`echo $ac_var`
647    case $ac_val in    case $ac_val in
648      [\\/$]* | ?:[\\/]* | NONE | '' ) ;;      [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
649      *)  { echo "$as_me: error: expected an absolute path for --$ac_var: $ac_val" >&2      *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
650     { (exit 1); exit 1; }; };;     { (exit 1); exit 1; }; };;
651    esac    esac
652  done  done
# Line 474  do Line 658  do
658    eval ac_val=$`echo $ac_var`    eval ac_val=$`echo $ac_var`
659    case $ac_val in    case $ac_val in
660      [\\/$]* | ?:[\\/]* ) ;;      [\\/$]* | ?:[\\/]* ) ;;
661      *)  { echo "$as_me: error: expected an absolute path for --$ac_var: $ac_val" >&2      *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
662     { (exit 1); exit 1; }; };;     { (exit 1); exit 1; }; };;
663    esac    esac
664  done  done
665    
666  # There might be people who depend on the old broken behavior: `$host'  # There might be people who depend on the old broken behavior: `$host'
667  # used to hold the argument of --host etc.  # used to hold the argument of --host etc.
668    # FIXME: To remove some day.
669  build=$build_alias  build=$build_alias
670  host=$host_alias  host=$host_alias
671  target=$target_alias  target=$target_alias
672    
673  # FIXME: should be removed in autoconf 3.0.  # FIXME: To remove some day.
674  if test "x$host_alias" != x; then  if test "x$host_alias" != x; then
675    if test "x$build_alias" = x; then    if test "x$build_alias" = x; then
676      cross_compiling=maybe      cross_compiling=maybe
# Line 501  test -n "$host_alias" && ac_tool_prefix= Line 686  test -n "$host_alias" && ac_tool_prefix=
686    
687  test "$silent" = yes && exec 6>/dev/null  test "$silent" = yes && exec 6>/dev/null
688    
689    
690  # Find the source files, if location was not specified.  # Find the source files, if location was not specified.
691  if test -z "$srcdir"; then  if test -z "$srcdir"; then
692    ac_srcdir_defaulted=yes    ac_srcdir_defaulted=yes
693    # Try the directory containing this script, then its parent.    # Try the directory containing this script, then its parent.
694    ac_prog=$0    ac_confdir=`(dirname "$0") 2>/dev/null ||
695    ac_confdir=`echo "$ac_prog" | sed 's%[\\/][^\\/][^\\/]*$%%'`  $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
696    test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.           X"$0" : 'X\(//\)[^/]' \| \
697             X"$0" : 'X\(//\)$' \| \
698             X"$0" : 'X\(/\)' \| \
699             .     : '\(.\)' 2>/dev/null ||
700    echo X"$0" |
701        sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
702              /^X\(\/\/\)[^/].*/{ s//\1/; q; }
703              /^X\(\/\/\)$/{ s//\1/; q; }
704              /^X\(\/\).*/{ s//\1/; q; }
705              s/.*/./; q'`
706    srcdir=$ac_confdir    srcdir=$ac_confdir
707    if test ! -r $srcdir/$ac_unique_file; then    if test ! -r $srcdir/$ac_unique_file; then
708      srcdir=..      srcdir=..
# Line 517  else Line 712  else
712  fi  fi
713  if test ! -r $srcdir/$ac_unique_file; then  if test ! -r $srcdir/$ac_unique_file; then
714    if test "$ac_srcdir_defaulted" = yes; then    if test "$ac_srcdir_defaulted" = yes; then
715      { echo "$as_me: error: cannot find sources in $ac_confdir or .." >&2      { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
716     { (exit 1); exit 1; }; }     { (exit 1); exit 1; }; }
717    else    else
718      { echo "$as_me: error: cannot find sources in $srcdir" >&2      { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
719     { (exit 1); exit 1; }; }     { (exit 1); exit 1; }; }
720    fi    fi
721  fi  fi
# Line 564  ac_cv_env_CPP_value=$CPP Line 759  ac_cv_env_CPP_value=$CPP
759  if test "$ac_init_help" = "long"; then  if test "$ac_init_help" = "long"; then
760    # Omit some internal or obsolete options to make the list less imposing.    # Omit some internal or obsolete options to make the list less imposing.
761    # This message is too long to be a string in the A/UX 3.1 sh.    # This message is too long to be a string in the A/UX 3.1 sh.
762    cat <<EOF    cat <<_ACEOF
763  \`configure' configures this package to adapt to many kinds of systems.  \`configure' configures this package to adapt to many kinds of systems.
764    
765  Usage: $0 [OPTION]... [VAR=VALUE]...  Usage: $0 [OPTION]... [VAR=VALUE]...
# Line 585  Configuration: Line 780  Configuration:
780    -n, --no-create         do not create output files    -n, --no-create         do not create output files
781        --srcdir=DIR        find the sources in DIR [configure dir or \`..']        --srcdir=DIR        find the sources in DIR [configure dir or \`..']
782    
783  EOF  _ACEOF
784    
785    cat <<EOF    cat <<_ACEOF
786  Installation directories:  Installation directories:
787    --prefix=PREFIX         install architecture-independent files in PREFIX    --prefix=PREFIX         install architecture-independent files in PREFIX
788                            [$ac_default_prefix]                            [$ac_default_prefix]
# Line 614  Fine tuning of the installation director Line 809  Fine tuning of the installation director
809    --oldincludedir=DIR    C header files for non-gcc [/usr/include]    --oldincludedir=DIR    C header files for non-gcc [/usr/include]
810    --infodir=DIR          info documentation [PREFIX/info]    --infodir=DIR          info documentation [PREFIX/info]
811    --mandir=DIR           man documentation [PREFIX/man]    --mandir=DIR           man documentation [PREFIX/man]
812  EOF  _ACEOF
813    
814    cat <<\EOF    cat <<\_ACEOF
815    
816  Program names:  Program names:
817    --program-prefix=PREFIX            prepend PREFIX to installed program names    --program-prefix=PREFIX            prepend PREFIX to installed program names
818    --program-suffix=SUFFIX            append SUFFIX to installed program names    --program-suffix=SUFFIX            append SUFFIX to installed program names
819    --program-transform-name=PROGRAM   run sed PROGRAM on installed program names    --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
820  EOF  _ACEOF
821  fi  fi
822    
823  if test -n "$ac_init_help"; then  if test -n "$ac_init_help"; then
824    
825    cat <<\EOF    cat <<\_ACEOF
826    
827  Optional Features:  Optional Features:
828    --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)    --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
# Line 649  Some influential environment variables: Line 844  Some influential environment variables:
844  Use these variables to override the choices made by `configure' or to help  Use these variables to override the choices made by `configure' or to help
845  it to find libraries and programs with nonstandard names/locations.  it to find libraries and programs with nonstandard names/locations.
846    
847  EOF  _ACEOF
848  fi  fi
849    
850  if test "$ac_init_help" = "recursive"; then  if test "$ac_init_help" = "recursive"; then
851    # If there are subdirs, report their specific --help.    # If there are subdirs, report their specific --help.
852    ac_popdir=`pwd`    ac_popdir=`pwd`
853    for ac_subdir in : $ac_subdirs_all; do test "x$ac_subdir" = x: && continue    for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
854      cd $ac_subdir      test -d $ac_dir || continue
855      # A "../" for each directory in /$ac_subdir.      ac_builddir=.
856      ac_dots=`echo $ac_subdir |  
857               sed 's,^\./,,;s,[^/]$,&/,;s,[^/]*/,../,g'`  if test "$ac_dir" != .; then
858      ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
859      case $srcdir in    # A "../" for each directory in $ac_dir_suffix.
860      .) # No --srcdir option.  We are building in place.    ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
861        ac_sub_srcdir=$srcdir ;;  else
862      [\\/]* | ?:[\\/]* ) # Absolute path.    ac_dir_suffix= ac_top_builddir=
863        ac_sub_srcdir=$srcdir/$ac_subdir ;;  fi
864      *) # Relative path.  
865        ac_sub_srcdir=$ac_dots$srcdir/$ac_subdir ;;  case $srcdir in
866      esac    .)  # No --srcdir option.  We are building in place.
867        ac_srcdir=.
868        if test -z "$ac_top_builddir"; then
869           ac_top_srcdir=.
870        else
871           ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
872        fi ;;
873      [\\/]* | ?:[\\/]* )  # Absolute path.
874        ac_srcdir=$srcdir$ac_dir_suffix;
875        ac_top_srcdir=$srcdir ;;
876      *) # Relative path.
877        ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
878        ac_top_srcdir=$ac_top_builddir$srcdir ;;
879    esac
880    # Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
881    # absolute.
882    ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
883    ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
884    ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
885    ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
886    
887        cd $ac_dir
888      # Check for guested configure; otherwise get Cygnus style configure.      # Check for guested configure; otherwise get Cygnus style configure.
889      if test -f $ac_sub_srcdir/configure.gnu; then      if test -f $ac_srcdir/configure.gnu; then
890        echo        echo
891        $SHELL $ac_sub_srcdir/configure.gnu  --help=recursive        $SHELL $ac_srcdir/configure.gnu  --help=recursive
892      elif test -f $ac_sub_srcdir/configure; then      elif test -f $ac_srcdir/configure; then
893        echo        echo
894        $SHELL $ac_sub_srcdir/configure  --help=recursive        $SHELL $ac_srcdir/configure  --help=recursive
895      elif test -f $ac_sub_srcdir/configure.ac ||      elif test -f $ac_srcdir/configure.ac ||
896             test -f $ac_sub_srcdir/configure.in; then             test -f $ac_srcdir/configure.in; then
897        echo        echo
898        $ac_configure --help        $ac_configure --help
899      else      else
900        echo "$as_me: WARNING: no configuration information is in $ac_subdir" >&2        echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
901      fi      fi
902      cd $ac_popdir      cd $ac_popdir
903    done    done
# Line 690  fi Line 905  fi
905    
906  test -n "$ac_init_help" && exit 0  test -n "$ac_init_help" && exit 0
907  if $ac_init_version; then  if $ac_init_version; then
908    cat <<\EOF    cat <<\_ACEOF
909    
910  Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001  Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
911  Free Software Foundation, Inc.  Free Software Foundation, Inc.
912  This configure script is free software; the Free Software Foundation  This configure script is free software; the Free Software Foundation
913  gives unlimited permission to copy, distribute and modify it.  gives unlimited permission to copy, distribute and modify it.
914  EOF  _ACEOF
915    exit 0    exit 0
916  fi  fi
917  exec 5>config.log  exec 5>config.log
918  cat >&5 <<EOF  cat >&5 <<_ACEOF
919  This file contains any messages produced by compilers while  This file contains any messages produced by compilers while
920  running configure, to aid debugging if configure makes a mistake.  running configure, to aid debugging if configure makes a mistake.
921    
922  It was created by $as_me, which was  It was created by $as_me, which was
923  generated by GNU Autoconf 2.52.  Invocation command line was  generated by GNU Autoconf 2.53.  Invocation command line was
924    
925    $ $0 $@    $ $0 $@
926    
927  EOF  _ACEOF
928  {  {
929  cat <<_ASUNAME  cat <<_ASUNAME
930  ## ---------- ##  ## --------- ##
931  ## Platform.  ##  ## Platform. ##
932  ## ---------- ##  ## --------- ##
933    
934  hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`  hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
935  uname -m = `(uname -m) 2>/dev/null || echo unknown`  uname -m = `(uname -m) 2>/dev/null || echo unknown`
# Line 733  hostinfo               = `(hostinfo) 2>/ Line 948  hostinfo               = `(hostinfo) 2>/
948  /usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`  /usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
949  /bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`  /bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
950    
 PATH = $PATH  
   
951  _ASUNAME  _ASUNAME
952    
953    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
954    for as_dir in $PATH
955    do
956      IFS=$as_save_IFS
957      test -z "$as_dir" && as_dir=.
958      echo "PATH: $as_dir"
959    done
960    
961  } >&5  } >&5
962    
963  cat >&5 <<EOF  cat >&5 <<_ACEOF
964  ## ------------ ##  
965  ## Core tests.  ##  
966  ## ------------ ##  ## ----------- ##
967    ## Core tests. ##
968    ## ----------- ##
969    
970    _ACEOF
971    
 EOF  
972    
973  # Keep a trace of the command line.  # Keep a trace of the command line.
974  # Strip out --no-create and --no-recursion so they do not pile up.  # Strip out --no-create and --no-recursion so they do not pile up.
# Line 754  for ac_arg Line 979  for ac_arg
979  do  do
980    case $ac_arg in    case $ac_arg in
981    -no-create | --no-create | --no-creat | --no-crea | --no-cre \    -no-create | --no-create | --no-creat | --no-crea | --no-cre \
982    | --no-cr | --no-c) ;;    | --no-cr | --no-c | -n ) continue ;;
983    -no-recursion | --no-recursion | --no-recursio | --no-recursi \    -no-recursion | --no-recursion | --no-recursio | --no-recursi \
984    | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;    | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
985        continue ;;
986    *" "*|*"      "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)    *" "*|*"      "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
987      ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"`      ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
988      ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"    esac
989      ac_sep=" " ;;    case " $ac_configure_args " in
990    *) ac_configure_args="$ac_configure_args$ac_sep$ac_arg"      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
991       ac_sep=" " ;;      *) ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
992           ac_sep=" " ;;
993    esac    esac
994    # Get rid of the leading space.    # Get rid of the leading space.
995  done  done
# Line 770  done Line 997  done
997  # When interrupted or exit'd, cleanup temporary files, and complete  # When interrupted or exit'd, cleanup temporary files, and complete
998  # config.log.  We remove comments because anyway the quotes in there  # config.log.  We remove comments because anyway the quotes in there
999  # would cause problems or look ugly.  # would cause problems or look ugly.
1000    # WARNING: Be sure not to use single quotes in there, as some shells,
1001    # such as our DU 5.0 friend, will then `close' the trap.
1002  trap 'exit_status=$?  trap 'exit_status=$?
1003    # Save into config.log some information that might help in debugging.    # Save into config.log some information that might help in debugging.
1004    echo >&5    {
1005    echo "## ----------------- ##" >&5      echo
1006    echo "## Cache variables.  ##" >&5      cat <<\_ASBOX
1007    echo "## ----------------- ##" >&5  ## ---------------- ##
1008    echo >&5  ## Cache variables. ##
1009    # The following way of writing the cache mishandles newlines in values,  ## ---------------- ##
1010    _ASBOX
1011        echo
1012        # The following way of writing the cache mishandles newlines in values,
1013  {  {
1014    (set) 2>&1 |    (set) 2>&1 |
1015      case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in      case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
# Line 791  trap 'exit_status=$? Line 1023  trap 'exit_status=$?
1023          "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"          "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
1024        ;;        ;;
1025      esac;      esac;
1026  } >&5  }
1027    sed "/^$/d" confdefs.h >conftest.log      echo
1028    if test -s conftest.log; then      if test -s confdefs.h; then
1029      echo >&5        cat <<\_ASBOX
1030      echo "## ------------ ##" >&5  ## ----------- ##
1031      echo "## confdefs.h.  ##" >&5  ## confdefs.h. ##
1032      echo "## ------------ ##" >&5  ## ----------- ##
1033      echo >&5  _ASBOX
1034      cat conftest.log >&5        echo
1035    fi        sed "/^$/d" confdefs.h
1036    (echo; echo) >&5        echo
1037    test "$ac_signal" != 0 &&      fi
1038      echo "$as_me: caught signal $ac_signal" >&5      test "$ac_signal" != 0 &&
1039    echo "$as_me: exit $exit_status" >&5        echo "$as_me: caught signal $ac_signal"
1040    rm -rf conftest* confdefs* core core.* *.core conf$$* $ac_clean_files &&      echo "$as_me: exit $exit_status"
1041      } >&5
1042      rm -f core core.* *.core &&
1043      rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
1044      exit $exit_status      exit $exit_status
1045       ' 0       ' 0
1046  for ac_signal in 1 2 13 15; do  for ac_signal in 1 2 13 15; do
# Line 818  rm -rf conftest* confdefs.h Line 1053  rm -rf conftest* confdefs.h
1053  # AIX cpp loses on an empty file, so make sure it contains at least a newline.  # AIX cpp loses on an empty file, so make sure it contains at least a newline.
1054  echo >confdefs.h  echo >confdefs.h
1055    
1056    # Predefined preprocessor variables.
1057    
1058    cat >>confdefs.h <<_ACEOF
1059    #define PACKAGE_NAME "$PACKAGE_NAME"
1060    _ACEOF
1061    
1062    
1063    cat >>confdefs.h <<_ACEOF
1064    #define PACKAGE_TARNAME "$PACKAGE_TARNAME"
1065    _ACEOF
1066    
1067    
1068    cat >>confdefs.h <<_ACEOF
1069    #define PACKAGE_VERSION "$PACKAGE_VERSION"
1070    _ACEOF
1071    
1072    
1073    cat >>confdefs.h <<_ACEOF
1074    #define PACKAGE_STRING "$PACKAGE_STRING"
1075    _ACEOF
1076    
1077    
1078    cat >>confdefs.h <<_ACEOF
1079    #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
1080    _ACEOF
1081    
1082    
1083  # Let the site file select an alternate cache file if it wants to.  # Let the site file select an alternate cache file if it wants to.
1084  # Prefer explicitly selected file to automatically selected ones.  # Prefer explicitly selected file to automatically selected ones.
1085  if test -z "$CONFIG_SITE"; then  if test -z "$CONFIG_SITE"; then
# Line 829  if test -z "$CONFIG_SITE"; then Line 1091  if test -z "$CONFIG_SITE"; then
1091  fi  fi
1092  for ac_site_file in $CONFIG_SITE; do  for ac_site_file in $CONFIG_SITE; do
1093    if test -r "$ac_site_file"; then    if test -r "$ac_site_file"; then
1094      { echo "$as_me:832: loading site script $ac_site_file" >&5      { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
1095  echo "$as_me: loading site script $ac_site_file" >&6;}  echo "$as_me: loading site script $ac_site_file" >&6;}
1096      cat "$ac_site_file" >&5      sed 's/^/| /' "$ac_site_file" >&5
1097      . "$ac_site_file"      . "$ac_site_file"
1098    fi    fi
1099  done  done
# Line 840  if test -r "$cache_file"; then Line 1102  if test -r "$cache_file"; then
1102    # Some versions of bash will fail to source /dev/null (special    # Some versions of bash will fail to source /dev/null (special
1103    # files actually), so we avoid doing that.    # files actually), so we avoid doing that.
1104    if test -f "$cache_file"; then    if test -f "$cache_file"; then
1105      { echo "$as_me:843: loading cache $cache_file" >&5      { echo "$as_me:$LINENO: loading cache $cache_file" >&5
1106  echo "$as_me: loading cache $cache_file" >&6;}  echo "$as_me: loading cache $cache_file" >&6;}
1107      case $cache_file in      case $cache_file in
1108        [\\/]* | ?:[\\/]* ) . $cache_file;;        [\\/]* | ?:[\\/]* ) . $cache_file;;
# Line 848  echo "$as_me: loading cache $cache_file" Line 1110  echo "$as_me: loading cache $cache_file"
1110      esac      esac
1111    fi    fi
1112  else  else
1113    { echo "$as_me:851: creating cache $cache_file" >&5    { echo "$as_me:$LINENO: creating cache $cache_file" >&5
1114  echo "$as_me: creating cache $cache_file" >&6;}  echo "$as_me: creating cache $cache_file" >&6;}
1115    >$cache_file    >$cache_file
1116  fi  fi
# Line 864  for ac_var in `(set) 2>&1 | Line 1126  for ac_var in `(set) 2>&1 |
1126    eval ac_new_val="\$ac_env_${ac_var}_value"    eval ac_new_val="\$ac_env_${ac_var}_value"
1127    case $ac_old_set,$ac_new_set in    case $ac_old_set,$ac_new_set in
1128      set,)      set,)
1129        { echo "$as_me:867: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5        { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1130  echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}  echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1131        ac_cache_corrupted=: ;;        ac_cache_corrupted=: ;;
1132      ,set)      ,set)
1133        { echo "$as_me:871: error: \`$ac_var' was not set in the previous run" >&5        { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
1134  echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}  echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1135        ac_cache_corrupted=: ;;        ac_cache_corrupted=: ;;
1136      ,);;      ,);;
1137      *)      *)
1138        if test "x$ac_old_val" != "x$ac_new_val"; then        if test "x$ac_old_val" != "x$ac_new_val"; then
1139          { echo "$as_me:877: error: \`$ac_var' has changed since the previous run:" >&5          { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
1140  echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}  echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1141          { echo "$as_me:879:   former value:  $ac_old_val" >&5          { echo "$as_me:$LINENO:   former value:  $ac_old_val" >&5
1142  echo "$as_me:   former value:  $ac_old_val" >&2;}  echo "$as_me:   former value:  $ac_old_val" >&2;}
1143          { echo "$as_me:881:   current value: $ac_new_val" >&5          { echo "$as_me:$LINENO:   current value: $ac_new_val" >&5
1144  echo "$as_me:   current value: $ac_new_val" >&2;}  echo "$as_me:   current value: $ac_new_val" >&2;}
1145          ac_cache_corrupted=:          ac_cache_corrupted=:
1146        fi;;        fi;;
1147    esac    esac
1148    # Pass precious variables to config.status.  It doesn't matter if    # Pass precious variables to config.status.
   # we pass some twice (in addition to the command line arguments).  
1149    if test "$ac_new_set" = set; then    if test "$ac_new_set" = set; then
1150      case $ac_new_val in      case $ac_new_val in
1151      *" "*|*"    "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)      *" "*|*"    "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
1152        ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"`        ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1153        ac_configure_args="$ac_configure_args '$ac_arg'"      *) ac_arg=$ac_var=$ac_new_val ;;
1154        ;;      esac
1155      *) ac_configure_args="$ac_configure_args $ac_var=$ac_new_val"      case " $ac_configure_args " in
1156         ;;        *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
1157          *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
1158      esac      esac
1159    fi    fi
1160  done  done
1161  if $ac_cache_corrupted; then  if $ac_cache_corrupted; then
1162    { echo "$as_me:900: error: changes in the environment can compromise the build" >&5    { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
1163  echo "$as_me: error: changes in the environment can compromise the build" >&2;}  echo "$as_me: error: changes in the environment can compromise the build" >&2;}
1164    { { echo "$as_me:902: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5    { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
1165  echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}  echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
1166     { (exit 1); exit 1; }; }     { (exit 1); exit 1; }; }
1167  fi  fi
# Line 910  ac_compile='$CC -c $CFLAGS $CPPFLAGS con Line 1172  ac_compile='$CC -c $CFLAGS $CPPFLAGS con
1172  ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'  ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1173  ac_compiler_gnu=$ac_cv_c_compiler_gnu  ac_compiler_gnu=$ac_cv_c_compiler_gnu
1174    
 case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in  
   *c*,-n*) ECHO_N= ECHO_C='  
 ' ECHO_T='      ' ;;  
   *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;  
   *)      ECHO_N= ECHO_C='\c' ECHO_T= ;;  
 esac  
 echo "#! $SHELL" >conftest.sh  
 echo  "exit 0"   >>conftest.sh  
 chmod +x conftest.sh  
 if { (echo "$as_me:922: PATH=\".;.\"; conftest.sh") >&5  
   (PATH=".;."; conftest.sh) 2>&5  
   ac_status=$?  
   echo "$as_me:925: \$? = $ac_status" >&5  
   (exit $ac_status); }; then  
   ac_path_separator=';'  
 else  
   ac_path_separator=:  
 fi  
 PATH_SEPARATOR="$ac_path_separator"  
 rm -f conftest.sh  
1175    
                                                     ac_config_headers="$ac_config_headers calc.h"  
1176    
1177    
1178    
1179    
1180    
1181    
1182    
1183    
1184    
1185    
1186    
1187    
1188    
1189    
1190    
1191    
1192    # Add the stamp file to the list of files AC keeps track of,
1193    # along with our hook.
1194    ac_config_headers="$ac_config_headers calc.h"
1195    
1196    
1197    
1198    am__api_version="1.6"
1199  ac_aux_dir=  ac_aux_dir=
1200  for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do  for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
1201    if test -f $ac_dir/install-sh; then    if test -f $ac_dir/install-sh; then
# Line 950  for ac_dir in $srcdir $srcdir/.. $srcdir Line 1213  for ac_dir in $srcdir $srcdir/.. $srcdir
1213    fi    fi
1214  done  done
1215  if test -z "$ac_aux_dir"; then  if test -z "$ac_aux_dir"; then
1216    { { echo "$as_me:953: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5    { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
1217  echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}  echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
1218     { (exit 1); exit 1; }; }     { (exit 1); exit 1; }; }
1219  fi  fi
# Line 970  ac_configure="$SHELL $ac_aux_dir/configu Line 1233  ac_configure="$SHELL $ac_aux_dir/configu
1233  # AFS /usr/afsws/bin/install, which mishandles nonexistent args  # AFS /usr/afsws/bin/install, which mishandles nonexistent args
1234  # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"  # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
1235  # ./install, which can be erroneously created by make from ./install.sh.  # ./install, which can be erroneously created by make from ./install.sh.
1236  echo "$as_me:973: checking for a BSD compatible install" >&5  echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
1237  echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6  echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
1238  if test -z "$INSTALL"; then  if test -z "$INSTALL"; then
1239  if test "${ac_cv_path_install+set}" = set; then  if test "${ac_cv_path_install+set}" = set; then
1240    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
1241  else  else
1242      ac_save_IFS=$IFS; IFS=$ac_path_separator    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1243    for ac_dir in $PATH; do  for as_dir in $PATH
1244      IFS=$ac_save_IFS  do
1245      # Account for people who put trailing slashes in PATH elements.    IFS=$as_save_IFS
1246      case $ac_dir/ in    test -z "$as_dir" && as_dir=.
1247      / | ./ | .// | /cC/* \    # Account for people who put trailing slashes in PATH elements.
1248      | /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* \  case $as_dir/ in
1249      | /usr/ucb/* ) ;;    ./ | .// | /cC/* | \
1250      *)    /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
1251        # OSF1 and SCO ODT 3.0 have their own names for install.    /usr/ucb/* ) ;;
1252        # Don't use installbsd from OSF since it installs stuff as root    *)
1253        # by default.      # OSF1 and SCO ODT 3.0 have their own names for install.
1254        for ac_prog in ginstall scoinst install; do      # Don't use installbsd from OSF since it installs stuff as root
1255          if $as_executable_p "$ac_dir/$ac_prog"; then      # by default.
1256            if test $ac_prog = install &&      for ac_prog in ginstall scoinst install; do
1257              grep dspmsg "$ac_dir/$ac_prog" >/dev/null 2>&1; then        for ac_exec_ext in '' $ac_executable_extensions; do
1258              # AIX install.  It has an incompatible calling convention.          if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
1259              :            if test $ac_prog = install &&
1260            elif test $ac_prog = install &&              grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
1261              grep pwplus "$ac_dir/$ac_prog" >/dev/null 2>&1; then              # AIX install.  It has an incompatible calling convention.
1262              # program-specific install script used by HP pwplus--don't use.              :
1263              :            elif test $ac_prog = install &&
1264            else              grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
1265              ac_cv_path_install="$ac_dir/$ac_prog -c"              # program-specific install script used by HP pwplus--don't use.
1266              break 2              :
1267            fi            else
1268          fi              ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
1269                break 3
1270              fi
1271            fi
1272        done        done
1273        ;;      done
1274      esac      ;;
1275    done  esac
1276    done
1277    
1278    
1279  fi  fi
1280    if test "${ac_cv_path_install+set}" = set; then    if test "${ac_cv_path_install+set}" = set; then
# Line 1019  fi Line 1287  fi
1287      INSTALL=$ac_install_sh      INSTALL=$ac_install_sh
1288    fi    fi
1289  fi  fi
1290  echo "$as_me:1022: result: $INSTALL" >&5  echo "$as_me:$LINENO: result: $INSTALL" >&5
1291  echo "${ECHO_T}$INSTALL" >&6  echo "${ECHO_T}$INSTALL" >&6
1292    
1293  # Use test -z because SunOS4 sh mishandles braces in ${var-val}.  # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
# Line 1030  test -z "$INSTALL_SCRIPT" && INSTALL_SCR Line 1298  test -z "$INSTALL_SCRIPT" && INSTALL_SCR
1298    
1299  test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'  test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
1300    
1301  echo "$as_me:1033: checking whether build environment is sane" >&5  echo "$as_me:$LINENO: checking whether build environment is sane" >&5
1302  echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6  echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6
1303  # Just in case  # Just in case
1304  sleep 1  sleep 1
# Line 1054  if ( Line 1322  if (
1322        # if, for instance, CONFIG_SHELL is bash and it inherits a        # if, for instance, CONFIG_SHELL is bash and it inherits a
1323        # broken ls alias from the environment.  This has actually        # broken ls alias from the environment.  This has actually
1324        # happened.  Such a system could not be considered "sane".        # happened.  Such a system could not be considered "sane".
1325        { { echo "$as_me:1057: error: ls -t appears to fail.  Make sure there is not a broken        { { echo "$as_me:$LINENO: error: ls -t appears to fail.  Make sure there is not a broken
1326  alias in your environment" >&5  alias in your environment" >&5
1327  echo "$as_me: error: ls -t appears to fail.  Make sure there is not a broken  echo "$as_me: error: ls -t appears to fail.  Make sure there is not a broken
1328  alias in your environment" >&2;}  alias in your environment" >&2;}
# Line 1067  then Line 1335  then
1335     # Ok.     # Ok.
1336     :     :
1337  else  else
1338     { { echo "$as_me:1070: error: newly created file is older than distributed files!     { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
1339  Check your system clock" >&5  Check your system clock" >&5
1340  echo "$as_me: error: newly created file is older than distributed files!  echo "$as_me: error: newly created file is older than distributed files!
1341  Check your system clock" >&2;}  Check your system clock" >&2;}
1342     { (exit 1); exit 1; }; }     { (exit 1); exit 1; }; }
1343  fi  fi
1344  echo "$as_me:1076: result: yes" >&5  echo "$as_me:$LINENO: result: yes" >&5
1345  echo "${ECHO_T}yes" >&6  echo "${ECHO_T}yes" >&6
1346  test "$program_prefix" != NONE &&  test "$program_prefix" != NONE &&
1347    program_transform_name="s,^,$program_prefix,;$program_transform_name"    program_transform_name="s,^,$program_prefix,;$program_transform_name"
# Line 1088  _ACEOF Line 1356  _ACEOF
1356  program_transform_name=`echo $program_transform_name | sed -f conftest.sed`  program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
1357  rm conftest.sed  rm conftest.sed
1358    
1359    
1360  # expand $ac_aux_dir to an absolute path  # expand $ac_aux_dir to an absolute path
1361  am_aux_dir=`CDPATH=:; cd $ac_aux_dir && pwd`  am_aux_dir=`cd $ac_aux_dir && pwd`
1362    
1363  test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"  test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
1364  # Use eval to expand $SHELL  # Use eval to expand $SHELL
# Line 1097  if eval "$MISSING --run true"; then Line 1366  if eval "$MISSING --run true"; then
1366    am_missing_run="$MISSING --run "    am_missing_run="$MISSING --run "
1367  else  else
1368    am_missing_run=    am_missing_run=
1369    am_backtick='`'    { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
1370    { echo "$as_me:1101: WARNING: ${am_backtick}missing' script is too old or missing" >&5  echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
 echo "$as_me: WARNING: ${am_backtick}missing' script is too old or missing" >&2;}  
1371  fi  fi
1372    
1373  for ac_prog in mawk gawk nawk awk  for ac_prog in gawk mawk nawk awk
1374  do  do
1375    # Extract the first word of "$ac_prog", so it can be a program name with args.    # Extract the first word of "$ac_prog", so it can be a program name with args.
1376  set dummy $ac_prog; ac_word=$2  set dummy $ac_prog; ac_word=$2
1377  echo "$as_me:1109: checking for $ac_word" >&5  echo "$as_me:$LINENO: checking for $ac_word" >&5
1378  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1379  if test "${ac_cv_prog_AWK+set}" = set; then  if test "${ac_cv_prog_AWK+set}" = set; then
1380    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
# Line 1114  else Line 1382  else
1382    if test -n "$AWK"; then    if test -n "$AWK"; then
1383    ac_cv_prog_AWK="$AWK" # Let the user override the test.    ac_cv_prog_AWK="$AWK" # Let the user override the test.
1384  else  else
1385    ac_save_IFS=$IFS; IFS=$ac_path_separator  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1386  ac_dummy="$PATH"  for as_dir in $PATH
1387  for ac_dir in $ac_dummy; do  do
1388    IFS=$ac_save_IFS    IFS=$as_save_IFS
1389    test -z "$ac_dir" && ac_dir=.    test -z "$as_dir" && as_dir=.
1390    $as_executable_p "$ac_dir/$ac_word" || continue    for ac_exec_ext in '' $ac_executable_extensions; do
1391  ac_cv_prog_AWK="$ac_prog"    if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1392  echo "$as_me:1124: found $ac_dir/$ac_word" >&5      ac_cv_prog_AWK="$ac_prog"
1393  break      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1394        break 2
1395      fi
1396    done
1397  done  done
1398    
1399  fi  fi
1400  fi  fi
1401  AWK=$ac_cv_prog_AWK  AWK=$ac_cv_prog_AWK
1402  if test -n "$AWK"; then  if test -n "$AWK"; then
1403    echo "$as_me:1132: result: $AWK" >&5    echo "$as_me:$LINENO: result: $AWK" >&5
1404  echo "${ECHO_T}$AWK" >&6  echo "${ECHO_T}$AWK" >&6
1405  else  else
1406    echo "$as_me:1135: result: no" >&5    echo "$as_me:$LINENO: result: no" >&5
1407  echo "${ECHO_T}no" >&6  echo "${ECHO_T}no" >&6
1408  fi  fi
1409    
1410    test -n "$AWK" && break    test -n "$AWK" && break
1411  done  done
1412    
1413  echo "$as_me:1142: checking whether ${MAKE-make} sets \${MAKE}" >&5  echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \${MAKE}" >&5
1414  echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6  echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6
1415  set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`  set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
1416  if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then  if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
1417    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
1418  else  else
1419    cat >conftest.make <<\EOF    cat >conftest.make <<\_ACEOF
1420  all:  all:
1421          @echo 'ac_maketemp="${MAKE}"'          @echo 'ac_maketemp="${MAKE}"'
1422  EOF  _ACEOF
1423  # GNU make sometimes prints "make[1]: Entering...", which would confuse us.  # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
1424  eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`  eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
1425  if test -n "$ac_maketemp"; then  if test -n "$ac_maketemp"; then
# Line 1159  fi Line 1430  fi
1430  rm -f conftest.make  rm -f conftest.make
1431  fi  fi
1432  if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then  if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
1433    echo "$as_me:1162: result: yes" >&5    echo "$as_me:$LINENO: result: yes" >&5
1434  echo "${ECHO_T}yes" >&6  echo "${ECHO_T}yes" >&6
1435    SET_MAKE=    SET_MAKE=
1436  else  else
1437    echo "$as_me:1166: result: no" >&5    echo "$as_me:$LINENO: result: no" >&5
1438  echo "${ECHO_T}no" >&6  echo "${ECHO_T}no" >&6
1439    SET_MAKE="MAKE=${MAKE-make}"    SET_MAKE="MAKE=${MAKE-make}"
1440  fi  fi
1441    
1442  # Check whether --enable-dependency-tracking or --disable-dependency-tracking was given.   # test to see if srcdir already configured
1443  if test "${enable_dependency_tracking+set}" = set; then  if test "`cd $srcdir && pwd`" != "`pwd`" &&
   enableval="$enable_dependency_tracking"  
   
 fi;  
 if test "x$enable_dependency_tracking" != xno; then  
   am_depcomp="$ac_aux_dir/depcomp"  
   AMDEPBACKSLASH='\'  
 fi  
   
 if test "x$enable_dependency_tracking" != xno; then  
   AMDEP_TRUE=  
   AMDEP_FALSE='#'  
 else  
   AMDEP_TRUE='#'  
   AMDEP_FALSE=  
 fi  
   
 rm -f .deps 2>/dev/null  
 mkdir .deps 2>/dev/null  
 if test -d .deps; then  
   DEPDIR=.deps  
 else  
   # MS-DOS does not allow filenames that begin with a dot.  
   DEPDIR=_deps  
 fi  
 rmdir .deps 2>/dev/null  
   
 # test to see if srcdir already configured  
 if test "`CDPATH=:; cd $srcdir && pwd`" != "`pwd`" &&  
1444     test -f $srcdir/config.status; then     test -f $srcdir/config.status; then
1445    { { echo "$as_me:1202: error: source directory already configured; run \"make distclean\" there first" >&5    { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
1446  echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}  echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
1447     { (exit 1); exit 1; }; }     { (exit 1); exit 1; }; }
1448  fi  fi
1449    
1450  # Define the identity of the package.  # Define the identity of the package.
1451  PACKAGE=calc   PACKAGE=calc
1452  VERSION=1.1   VERSION=1.1
1453    
 cat >>confdefs.h <<EOF  
 #define PACKAGE "$PACKAGE"  
 EOF  
1454    
1455  cat >>confdefs.h <<EOF  cat >>confdefs.h <<_ACEOF
1456  #define VERSION "$VERSION"  #define PACKAGE "$PACKAGE"
1457  EOF  _ACEOF
1458    
 # Autoconf 2.50 wants to disallow AM_ names.  We explicitly allow  
 # the ones we care about.  
1459    
1460  # Autoconf 2.50 always computes EXEEXT.  However we need to be  cat >>confdefs.h <<_ACEOF
1461  # compatible with 2.13, for now.  So we always define EXEEXT, but we  #define VERSION "$VERSION"
1462  # don't compute it.  _ACEOF
   
 # Similar for OBJEXT -- only we only use OBJEXT if the user actually  
 # requests that it be used.  This is a bit dumb.  
 : ${OBJEXT=o}  
1463    
1464  # Some tools Automake needs.  # Some tools Automake needs.
1465    
1466  ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal"}  ACLOCAL=${ACLOCAL-"${am_missing_run}"aclocal-${am__api_version}""}
1467    
1468    
1469  AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}  AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
1470    
1471  AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake"}  
1472    AUTOMAKE=${AUTOMAKE-"${am_missing_run}"automake-${am__api_version}""}
1473    
1474    
1475  AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}  AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
1476    
1477    
1478  MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}  MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
1479    
1480    
1481  AMTAR=${AMTAR-"${am_missing_run}tar"}  AMTAR=${AMTAR-"${am_missing_run}tar"}
1482    
1483  install_sh=${install_sh-"$am_aux_dir/install-sh"}  install_sh=${install_sh-"$am_aux_dir/install-sh"}
1484    
1485    # Installed binaries are usually stripped using `strip' when the user
1486    # run `make install-strip'.  However `strip' might not be the right
1487    # tool to use in cross-compilation environments, therefore Automake
1488    # will honor the `STRIP' environment variable to overrule this program.
1489    if test "$cross_compiling" != no; then
1490      if test -n "$ac_tool_prefix"; then
1491      # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
1492    set dummy ${ac_tool_prefix}strip; ac_word=$2
1493    echo "$as_me:$LINENO: checking for $ac_word" >&5
1494    echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1495    if test "${ac_cv_prog_STRIP+set}" = set; then
1496      echo $ECHO_N "(cached) $ECHO_C" >&6
1497    else
1498      if test -n "$STRIP"; then
1499      ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
1500    else
1501    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1502    for as_dir in $PATH
1503    do
1504      IFS=$as_save_IFS
1505      test -z "$as_dir" && as_dir=.
1506      for ac_exec_ext in '' $ac_executable_extensions; do
1507      if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1508        ac_cv_prog_STRIP="${ac_tool_prefix}strip"
1509        echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1510        break 2
1511      fi
1512    done
1513    done
1514    
1515    fi
1516    fi
1517    STRIP=$ac_cv_prog_STRIP
1518    if test -n "$STRIP"; then
1519      echo "$as_me:$LINENO: result: $STRIP" >&5
1520    echo "${ECHO_T}$STRIP" >&6
1521    else
1522      echo "$as_me:$LINENO: result: no" >&5
1523    echo "${ECHO_T}no" >&6
1524    fi
1525    
1526    fi
1527    if test -z "$ac_cv_prog_STRIP"; then
1528      ac_ct_STRIP=$STRIP
1529      # Extract the first word of "strip", so it can be a program name with args.
1530    set dummy strip; ac_word=$2
1531    echo "$as_me:$LINENO: checking for $ac_word" >&5
1532    echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1533    if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
1534      echo $ECHO_N "(cached) $ECHO_C" >&6
1535    else
1536      if test -n "$ac_ct_STRIP"; then
1537      ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
1538    else
1539    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1540    for as_dir in $PATH
1541    do
1542      IFS=$as_save_IFS
1543      test -z "$as_dir" && as_dir=.
1544      for ac_exec_ext in '' $ac_executable_extensions; do
1545      if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1546        ac_cv_prog_ac_ct_STRIP="strip"
1547        echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1548        break 2
1549      fi
1550    done
1551    done
1552    
1553      test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
1554    fi
1555    fi
1556    ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
1557    if test -n "$ac_ct_STRIP"; then
1558      echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
1559    echo "${ECHO_T}$ac_ct_STRIP" >&6
1560    else
1561      echo "$as_me:$LINENO: result: no" >&5
1562    echo "${ECHO_T}no" >&6
1563    fi
1564    
1565      STRIP=$ac_ct_STRIP
1566    else
1567      STRIP="$ac_cv_prog_STRIP"
1568    fi
1569    
1570    fi
1571  INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"  INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
1572    
1573  # We need awk for the "check" target.  The system "awk" is bad on  # We need awk for the "check" target.  The system "awk" is bad on
1574  # some platforms.  # some platforms.
1575    
1576    
1577    
1578    
1579  ac_ext=c  ac_ext=c
1580  ac_cpp='$CPP $CPPFLAGS'  ac_cpp='$CPP $CPPFLAGS'
1581  ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'  ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
# Line 1256  ac_compiler_gnu=$ac_cv_c_compiler_gnu Line 1584  ac_compiler_gnu=$ac_cv_c_compiler_gnu
1584  if test -n "$ac_tool_prefix"; then  if test -n "$ac_tool_prefix"; then
1585    # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.    # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
1586  set dummy ${ac_tool_prefix}gcc; ac_word=$2  set dummy ${ac_tool_prefix}gcc; ac_word=$2
1587  echo "$as_me:1259: checking for $ac_word" >&5  echo "$as_me:$LINENO: checking for $ac_word" >&5
1588  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1589  if test "${ac_cv_prog_CC+set}" = set; then  if test "${ac_cv_prog_CC+set}" = set; then
1590    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
# Line 1264  else Line 1592  else
1592    if test -n "$CC"; then    if test -n "$CC"; then
1593    ac_cv_prog_CC="$CC" # Let the user override the test.    ac_cv_prog_CC="$CC" # Let the user override the test.
1594  else  else
1595    ac_save_IFS=$IFS; IFS=$ac_path_separator  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1596  ac_dummy="$PATH"  for as_dir in $PATH
1597  for ac_dir in $ac_dummy; do  do
1598    IFS=$ac_save_IFS    IFS=$as_save_IFS
1599    test -z "$ac_dir" && ac_dir=.    test -z "$as_dir" && as_dir=.
1600    $as_executable_p "$ac_dir/$ac_word" || continue    for ac_exec_ext in '' $ac_executable_extensions; do
1601  ac_cv_prog_CC="${ac_tool_prefix}gcc"    if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1602  echo "$as_me:1274: found $ac_dir/$ac_word" >&5      ac_cv_prog_CC="${ac_tool_prefix}gcc"
1603  break      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1604        break 2
1605      fi
1606    done
1607  done  done
1608    
1609  fi  fi
1610  fi  fi
1611  CC=$ac_cv_prog_CC  CC=$ac_cv_prog_CC
1612  if test -n "$CC"; then  if test -n "$CC"; then
1613    echo "$as_me:1282: result: $CC" >&5    echo "$as_me:$LINENO: result: $CC" >&5
1614  echo "${ECHO_T}$CC" >&6  echo "${ECHO_T}$CC" >&6
1615  else  else
1616    echo "$as_me:1285: result: no" >&5    echo "$as_me:$LINENO: result: no" >&5
1617  echo "${ECHO_T}no" >&6  echo "${ECHO_T}no" >&6
1618  fi  fi
1619    
# Line 1291  if test -z "$ac_cv_prog_CC"; then Line 1622  if test -z "$ac_cv_prog_CC"; then
1622    ac_ct_CC=$CC    ac_ct_CC=$CC
1623    # Extract the first word of "gcc", so it can be a program name with args.    # Extract the first word of "gcc", so it can be a program name with args.
1624  set dummy gcc; ac_word=$2  set dummy gcc; ac_word=$2
1625  echo "$as_me:1294: checking for $ac_word" >&5  echo "$as_me:$LINENO: checking for $ac_word" >&5
1626  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1627  if test "${ac_cv_prog_ac_ct_CC+set}" = set; then  if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
1628    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
# Line 1299  else Line 1630  else
1630    if test -n "$ac_ct_CC"; then    if test -n "$ac_ct_CC"; then
1631    ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.    ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
1632  else  else
1633    ac_save_IFS=$IFS; IFS=$ac_path_separator  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1634  ac_dummy="$PATH"  for as_dir in $PATH
1635  for ac_dir in $ac_dummy; do  do
1636    IFS=$ac_save_IFS    IFS=$as_save_IFS
1637    test -z "$ac_dir" && ac_dir=.    test -z "$as_dir" && as_dir=.
1638    $as_executable_p "$ac_dir/$ac_word" || continue    for ac_exec_ext in '' $ac_executable_extensions; do
1639  ac_cv_prog_ac_ct_CC="gcc"    if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1640  echo "$as_me:1309: found $ac_dir/$ac_word" >&5      ac_cv_prog_ac_ct_CC="gcc"
1641  break      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1642        break 2
1643      fi
1644    done
1645  done  done
1646    
1647  fi  fi
1648  fi  fi
1649  ac_ct_CC=$ac_cv_prog_ac_ct_CC  ac_ct_CC=$ac_cv_prog_ac_ct_CC
1650  if test -n "$ac_ct_CC"; then  if test -n "$ac_ct_CC"; then
1651    echo "$as_me:1317: result: $ac_ct_CC" >&5    echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
1652  echo "${ECHO_T}$ac_ct_CC" >&6  echo "${ECHO_T}$ac_ct_CC" >&6
1653  else  else
1654    echo "$as_me:1320: result: no" >&5    echo "$as_me:$LINENO: result: no" >&5
1655  echo "${ECHO_T}no" >&6  echo "${ECHO_T}no" >&6
1656  fi  fi
1657    
# Line 1330  if test -z "$CC"; then Line 1664  if test -z "$CC"; then
1664    if test -n "$ac_tool_prefix"; then    if test -n "$ac_tool_prefix"; then
1665    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
1666  set dummy ${ac_tool_prefix}cc; ac_word=$2  set dummy ${ac_tool_prefix}cc; ac_word=$2
1667  echo "$as_me:1333: checking for $ac_word" >&5  echo "$as_me:$LINENO: checking for $ac_word" >&5
1668  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1669  if test "${ac_cv_prog_CC+set}" = set; then  if test "${ac_cv_prog_CC+set}" = set; then
1670    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
# Line 1338  else Line 1672  else
1672    if test -n "$CC"; then    if test -n "$CC"; then
1673    ac_cv_prog_CC="$CC" # Let the user override the test.    ac_cv_prog_CC="$CC" # Let the user override the test.
1674  else  else
1675    ac_save_IFS=$IFS; IFS=$ac_path_separator  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1676  ac_dummy="$PATH"  for as_dir in $PATH
1677  for ac_dir in $ac_dummy; do  do
1678    IFS=$ac_save_IFS    IFS=$as_save_IFS
1679    test -z "$ac_dir" && ac_dir=.    test -z "$as_dir" && as_dir=.
1680    $as_executable_p "$ac_dir/$ac_word" || continue    for ac_exec_ext in '' $ac_executable_extensions; do
1681  ac_cv_prog_CC="${ac_tool_prefix}cc"    if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1682  echo "$as_me:1348: found $ac_dir/$ac_word" >&5      ac_cv_prog_CC="${ac_tool_prefix}cc"
1683  break      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1684        break 2
1685      fi
1686    done
1687  done  done
1688    
1689  fi  fi
1690  fi  fi
1691  CC=$ac_cv_prog_CC  CC=$ac_cv_prog_CC
1692  if test -n "$CC"; then  if test -n "$CC"; then
1693    echo "$as_me:1356: result: $CC" >&5    echo "$as_me:$LINENO: result: $CC" >&5
1694  echo "${ECHO_T}$CC" >&6  echo "${ECHO_T}$CC" >&6
1695  else  else
1696    echo "$as_me:1359: result: no" >&5    echo "$as_me:$LINENO: result: no" >&5
1697  echo "${ECHO_T}no" >&6  echo "${ECHO_T}no" >&6
1698  fi  fi
1699    
# Line 1365  if test -z "$ac_cv_prog_CC"; then Line 1702  if test -z "$ac_cv_prog_CC"; then
1702    ac_ct_CC=$CC    ac_ct_CC=$CC
1703    # Extract the first word of "cc", so it can be a program name with args.    # Extract the first word of "cc", so it can be a program name with args.
1704  set dummy cc; ac_word=$2  set dummy cc; ac_word=$2
1705  echo "$as_me:1368: checking for $ac_word" >&5  echo "$as_me:$LINENO: checking for $ac_word" >&5
1706  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1707  if test "${ac_cv_prog_ac_ct_CC+set}" = set; then  if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
1708    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
# Line 1373  else Line 1710  else
1710    if test -n "$ac_ct_CC"; then    if test -n "$ac_ct_CC"; then
1711    ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.    ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
1712  else  else
1713    ac_save_IFS=$IFS; IFS=$ac_path_separator  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1714  ac_dummy="$PATH"  for as_dir in $PATH
1715  for ac_dir in $ac_dummy; do  do
1716    IFS=$ac_save_IFS    IFS=$as_save_IFS
1717    test -z "$ac_dir" && ac_dir=.    test -z "$as_dir" && as_dir=.
1718    $as_executable_p "$ac_dir/$ac_word" || continue    for ac_exec_ext in '' $ac_executable_extensions; do
1719  ac_cv_prog_ac_ct_CC="cc"    if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1720  echo "$as_me:1383: found $ac_dir/$ac_word" >&5      ac_cv_prog_ac_ct_CC="cc"
1721  break      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1722        break 2
1723      fi
1724    done
1725  done  done
1726    
1727  fi  fi
1728  fi  fi
1729  ac_ct_CC=$ac_cv_prog_ac_ct_CC  ac_ct_CC=$ac_cv_prog_ac_ct_CC
1730  if test -n "$ac_ct_CC"; then  if test -n "$ac_ct_CC"; then
1731    echo "$as_me:1391: result: $ac_ct_CC" >&5    echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
1732  echo "${ECHO_T}$ac_ct_CC" >&6  echo "${ECHO_T}$ac_ct_CC" >&6
1733  else  else
1734    echo "$as_me:1394: result: no" >&5    echo "$as_me:$LINENO: result: no" >&5
1735  echo "${ECHO_T}no" >&6  echo "${ECHO_T}no" >&6
1736  fi  fi
1737    
# Line 1404  fi Line 1744  fi
1744  if test -z "$CC"; then  if test -z "$CC"; then
1745    # Extract the first word of "cc", so it can be a program name with args.    # Extract the first word of "cc", so it can be a program name with args.
1746  set dummy cc; ac_word=$2  set dummy cc; ac_word=$2
1747  echo "$as_me:1407: checking for $ac_word" >&5  echo "$as_me:$LINENO: checking for $ac_word" >&5
1748  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1749  if test "${ac_cv_prog_CC+set}" = set; then  if test "${ac_cv_prog_CC+set}" = set; then
1750    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
# Line 1413  else Line 1753  else
1753    ac_cv_prog_CC="$CC" # Let the user override the test.    ac_cv_prog_CC="$CC" # Let the user override the test.
1754  else  else
1755    ac_prog_rejected=no    ac_prog_rejected=no
1756    ac_save_IFS=$IFS; IFS=$ac_path_separator  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1757  ac_dummy="$PATH"  for as_dir in $PATH
1758  for ac_dir in $ac_dummy; do  do
1759    IFS=$ac_save_IFS    IFS=$as_save_IFS
1760    test -z "$ac_dir" && ac_dir=.    test -z "$as_dir" && as_dir=.
1761    $as_executable_p "$ac_dir/$ac_word" || continue    for ac_exec_ext in '' $ac_executable_extensions; do
1762  if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then    if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1763    ac_prog_rejected=yes      if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
1764    continue         ac_prog_rejected=yes
1765  fi         continue
1766  ac_cv_prog_CC="cc"       fi
1767  echo "$as_me:1427: found $ac_dir/$ac_word" >&5      ac_cv_prog_CC="cc"
1768  break      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1769        break 2
1770      fi
1771    done
1772  done  done
1773    
1774  if test $ac_prog_rejected = yes; then  if test $ac_prog_rejected = yes; then
# Line 1437  if test $ac_prog_rejected = yes; then Line 1780  if test $ac_prog_rejected = yes; then
1780      # However, it has the same basename, so the bogon will be chosen      # However, it has the same basename, so the bogon will be chosen
1781      # first if we set CC to just the basename; use the full file name.      # first if we set CC to just the basename; use the full file name.
1782      shift      shift
1783      set dummy "$ac_dir/$ac_word" ${1+"$@"}      set dummy "$as_dir/$ac_word" ${1+"$@"}
1784      shift      shift
1785      ac_cv_prog_CC="$@"      ac_cv_prog_CC="$@"
1786    fi    fi
# Line 1446  fi Line 1789  fi
1789  fi  fi
1790  CC=$ac_cv_prog_CC  CC=$ac_cv_prog_CC
1791  if test -n "$CC"; then  if test -n "$CC"; then
1792    echo "$as_me:1449: result: $CC" >&5    echo "$as_me:$LINENO: result: $CC" >&5
1793  echo "${ECHO_T}$CC" >&6  echo "${ECHO_T}$CC" >&6
1794  else  else
1795    echo "$as_me:1452: result: no" >&5    echo "$as_me:$LINENO: result: no" >&5
1796  echo "${ECHO_T}no" >&6  echo "${ECHO_T}no" >&6
1797  fi  fi
1798    
# Line 1460  if test -z "$CC"; then Line 1803  if test -z "$CC"; then
1803    do    do
1804      # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.      # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
1805  set dummy $ac_tool_prefix$ac_prog; ac_word=$2  set dummy $ac_tool_prefix$ac_prog; ac_word=$2
1806  echo "$as_me:1463: checking for $ac_word" >&5  echo "$as_me:$LINENO: checking for $ac_word" >&5
1807  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1808  if test "${ac_cv_prog_CC+set}" = set; then  if test "${ac_cv_prog_CC+set}" = set; then
1809    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
# Line 1468  else Line 1811  else
1811    if test -n "$CC"; then    if test -n "$CC"; then
1812    ac_cv_prog_CC="$CC" # Let the user override the test.    ac_cv_prog_CC="$CC" # Let the user override the test.
1813  else  else
1814    ac_save_IFS=$IFS; IFS=$ac_path_separator  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1815  ac_dummy="$PATH"  for as_dir in $PATH
1816  for ac_dir in $ac_dummy; do  do
1817    IFS=$ac_save_IFS    IFS=$as_save_IFS
1818    test -z "$ac_dir" && ac_dir=.    test -z "$as_dir" && as_dir=.
1819    $as_executable_p "$ac_dir/$ac_word" || continue    for ac_exec_ext in '' $ac_executable_extensions; do
1820  ac_cv_prog_CC="$ac_tool_prefix$ac_prog"    if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1821  echo "$as_me:1478: found $ac_dir/$ac_word" >&5      ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
1822  break      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1823        break 2
1824      fi
1825    done
1826  done  done
1827    
1828  fi  fi
1829  fi  fi
1830  CC=$ac_cv_prog_CC  CC=$ac_cv_prog_CC
1831  if test -n "$CC"; then  if test -n "$CC"; then
1832    echo "$as_me:1486: result: $CC" >&5    echo "$as_me:$LINENO: result: $CC" >&5
1833  echo "${ECHO_T}$CC" >&6  echo "${ECHO_T}$CC" >&6
1834  else  else
1835    echo "$as_me:1489: result: no" >&5    echo "$as_me:$LINENO: result: no" >&5
1836  echo "${ECHO_T}no" >&6  echo "${ECHO_T}no" >&6
1837  fi  fi
1838    
# Line 1499  if test -z "$CC"; then Line 1845  if test -z "$CC"; then
1845  do  do
1846    # Extract the first word of "$ac_prog", so it can be a program name with args.    # Extract the first word of "$ac_prog", so it can be a program name with args.
1847  set dummy $ac_prog; ac_word=$2  set dummy $ac_prog; ac_word=$2
1848  echo "$as_me:1502: checking for $ac_word" >&5  echo "$as_me:$LINENO: checking for $ac_word" >&5
1849  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1850  if test "${ac_cv_prog_ac_ct_CC+set}" = set; then  if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
1851    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
# Line 1507  else Line 1853  else
1853    if test -n "$ac_ct_CC"; then    if test -n "$ac_ct_CC"; then
1854    ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.    ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
1855  else  else
1856    ac_save_IFS=$IFS; IFS=$ac_path_separator  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1857  ac_dummy="$PATH"  for as_dir in $PATH
1858  for ac_dir in $ac_dummy; do  do
1859    IFS=$ac_save_IFS    IFS=$as_save_IFS
1860    test -z "$ac_dir" && ac_dir=.    test -z "$as_dir" && as_dir=.
1861    $as_executable_p "$ac_dir/$ac_word" || continue    for ac_exec_ext in '' $ac_executable_extensions; do
1862  ac_cv_prog_ac_ct_CC="$ac_prog"    if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1863  echo "$as_me:1517: found $ac_dir/$ac_word" >&5      ac_cv_prog_ac_ct_CC="$ac_prog"
1864  break      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1865        break 2
1866      fi
1867    done
1868  done  done
1869    
1870  fi  fi
1871  fi  fi
1872  ac_ct_CC=$ac_cv_prog_ac_ct_CC  ac_ct_CC=$ac_cv_prog_ac_ct_CC
1873  if test -n "$ac_ct_CC"; then  if test -n "$ac_ct_CC"; then
1874    echo "$as_me:1525: result: $ac_ct_CC" >&5    echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
1875  echo "${ECHO_T}$ac_ct_CC" >&6  echo "${ECHO_T}$ac_ct_CC" >&6
1876  else  else
1877    echo "$as_me:1528: result: no" >&5    echo "$as_me:$LINENO: result: no" >&5
1878  echo "${ECHO_T}no" >&6  echo "${ECHO_T}no" >&6
1879  fi  fi
1880    
# Line 1537  fi Line 1886  fi
1886    
1887  fi  fi
1888    
1889  test -z "$CC" && { { echo "$as_me:1540: error: no acceptable cc found in \$PATH" >&5  
1890  echo "$as_me: error: no acceptable cc found in \$PATH" >&2;}  test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH" >&5
1891    echo "$as_me: error: no acceptable C compiler found in \$PATH" >&2;}
1892     { (exit 1); exit 1; }; }     { (exit 1); exit 1; }; }
1893    
1894  # Provide some information about the compiler.  # Provide some information about the compiler.
1895  echo "$as_me:1545:" \  echo "$as_me:$LINENO:" \
1896       "checking for C compiler version" >&5       "checking for C compiler version" >&5
1897  ac_compiler=`set X $ac_compile; echo $2`  ac_compiler=`set X $ac_compile; echo $2`
1898  { (eval echo "$as_me:1548: \"$ac_compiler --version </dev/null >&5\"") >&5  { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
1899    (eval $ac_compiler --version </dev/null >&5) 2>&5    (eval $ac_compiler --version </dev/null >&5) 2>&5
1900    ac_status=$?    ac_status=$?
1901    echo "$as_me:1551: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
1902    (exit $ac_status); }    (exit $ac_status); }
1903  { (eval echo "$as_me:1553: \"$ac_compiler -v </dev/null >&5\"") >&5  { (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
1904    (eval $ac_compiler -v </dev/null >&5) 2>&5    (eval $ac_compiler -v </dev/null >&5) 2>&5
1905    ac_status=$?    ac_status=$?
1906    echo "$as_me:1556: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
1907    (exit $ac_status); }    (exit $ac_status); }
1908  { (eval echo "$as_me:1558: \"$ac_compiler -V </dev/null >&5\"") >&5  { (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
1909    (eval $ac_compiler -V </dev/null >&5) 2>&5    (eval $ac_compiler -V </dev/null >&5) 2>&5
1910    ac_status=$?    ac_status=$?
1911    echo "$as_me:1561: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
1912    (exit $ac_status); }    (exit $ac_status); }
1913    
1914  cat >conftest.$ac_ext <<_ACEOF  cat >conftest.$ac_ext <<_ACEOF
1915  #line 1565 "configure"  #line $LINENO "configure"
1916  #include "confdefs.h"  #include "confdefs.h"
1917    
1918    #ifdef F77_DUMMY_MAIN
1919    #  ifdef __cplusplus
1920         extern "C"
1921    #  endif
1922       int F77_DUMMY_MAIN() { return 1; }
1923    #endif
1924  int  int
1925  main ()  main ()
1926  {  {
# Line 1578  ac_clean_files="$ac_clean_files a.out a. Line 1934  ac_clean_files="$ac_clean_files a.out a.
1934  # Try to create an executable without -o first, disregard a.out.  # Try to create an executable without -o first, disregard a.out.
1935  # It will help us diagnose broken compilers, and finding out an intuition  # It will help us diagnose broken compilers, and finding out an intuition
1936  # of exeext.  # of exeext.
1937  echo "$as_me:1581: checking for C compiler default output" >&5  echo "$as_me:$LINENO: checking for C compiler default output" >&5
1938  echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6  echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6
1939  ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`  ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
1940  if { (eval echo "$as_me:1584: \"$ac_link_default\"") >&5  if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
1941    (eval $ac_link_default) 2>&5    (eval $ac_link_default) 2>&5
1942    ac_status=$?    ac_status=$?
1943    echo "$as_me:1587: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
1944    (exit $ac_status); }; then    (exit $ac_status); }; then
1945    # Find the output, starting from the most likely.  This scheme is    # Find the output, starting from the most likely.  This scheme is
1946  # not robust to junk in `.', hence go to wildcards (a.*) only as a last  # not robust to junk in `.', hence go to wildcards (a.*) only as a last
1947  # resort.  # resort.
1948  for ac_file in `ls a.exe conftest.exe 2>/dev/null;  
1949    # Be careful to initialize this variable, since it used to be cached.
1950    # Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
1951    ac_cv_exeext=
1952    for ac_file in `ls a_out.exe a.exe conftest.exe 2>/dev/null;
1953                  ls a.out conftest 2>/dev/null;                  ls a.out conftest 2>/dev/null;
1954                  ls a.* conftest.* 2>/dev/null`; do                  ls a.* conftest.* 2>/dev/null`; do
1955    case $ac_file in    case $ac_file in
1956      *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;;      *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb | *.xSYM ) ;;
1957      a.out ) # We found the default executable, but exeext='' is most      a.out ) # We found the default executable, but exeext='' is most
1958              # certainly right.              # certainly right.
1959              break;;              break;;
# Line 1607  done Line 1967  done
1967  else  else
1968    echo "$as_me: failed program was:" >&5    echo "$as_me: failed program was:" >&5
1969  cat conftest.$ac_ext >&5  cat conftest.$ac_ext >&5
1970  { { echo "$as_me:1610: error: C compiler cannot create executables" >&5  { { echo "$as_me:$LINENO: error: C compiler cannot create executables" >&5
1971  echo "$as_me: error: C compiler cannot create executables" >&2;}  echo "$as_me: error: C compiler cannot create executables" >&2;}
1972     { (exit 77); exit 77; }; }     { (exit 77); exit 77; }; }
1973  fi  fi
1974    
1975  ac_exeext=$ac_cv_exeext  ac_exeext=$ac_cv_exeext
1976  echo "$as_me:1616: result: $ac_file" >&5  echo "$as_me:$LINENO: result: $ac_file" >&5
1977  echo "${ECHO_T}$ac_file" >&6  echo "${ECHO_T}$ac_file" >&6
1978    
1979  # Check the compiler produces executables we can run.  If not, either  # Check the compiler produces executables we can run.  If not, either
1980  # the compiler is broken, or we cross compile.  # the compiler is broken, or we cross compile.
1981  echo "$as_me:1621: checking whether the C compiler works" >&5  echo "$as_me:$LINENO: checking whether the C compiler works" >&5
1982  echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6  echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
1983  # FIXME: These cross compiler hacks should be removed for Autoconf 3.0  # FIXME: These cross compiler hacks should be removed for Autoconf 3.0
1984  # If not cross compiling, check that we can run a simple program.  # If not cross compiling, check that we can run a simple program.
1985  if test "$cross_compiling" != yes; then  if test "$cross_compiling" != yes; then
1986    if { ac_try='./$ac_file'    if { ac_try='./$ac_file'
1987    { (eval echo "$as_me:1627: \"$ac_try\"") >&5    { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1988    (eval $ac_try) 2>&5    (eval $ac_try) 2>&5
1989    ac_status=$?    ac_status=$?
1990    echo "$as_me:1630: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
1991    (exit $ac_status); }; }; then    (exit $ac_status); }; }; then
1992      cross_compiling=no      cross_compiling=no
1993    else    else
1994      if test "$cross_compiling" = maybe; then      if test "$cross_compiling" = maybe; then
1995          cross_compiling=yes          cross_compiling=yes
1996      else      else
1997          { { echo "$as_me:1637: error: cannot run C compiled programs.          { { echo "$as_me:$LINENO: error: cannot run C compiled programs.
1998  If you meant to cross compile, use \`--host'." >&5  If you meant to cross compile, use \`--host'." >&5
1999  echo "$as_me: error: cannot run C compiled programs.  echo "$as_me: error: cannot run C compiled programs.
2000  If you meant to cross compile, use \`--host'." >&2;}  If you meant to cross compile, use \`--host'." >&2;}
# Line 1642  If you meant to cross compile, use \`--h Line 2002  If you meant to cross compile, use \`--h
2002      fi      fi
2003    fi    fi
2004  fi  fi
2005  echo "$as_me:1645: result: yes" >&5  echo "$as_me:$LINENO: result: yes" >&5
2006  echo "${ECHO_T}yes" >&6  echo "${ECHO_T}yes" >&6
2007    
2008  rm -f a.out a.exe conftest$ac_cv_exeext  rm -f a.out a.exe conftest$ac_cv_exeext
2009  ac_clean_files=$ac_clean_files_save  ac_clean_files=$ac_clean_files_save
2010  # Check the compiler produces executables we can run.  If not, either  # Check the compiler produces executables we can run.  If not, either
2011  # the compiler is broken, or we cross compile.  # the compiler is broken, or we cross compile.
2012  echo "$as_me:1652: checking whether we are cross compiling" >&5  echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
2013  echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6  echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
2014  echo "$as_me:1654: result: $cross_compiling" >&5  echo "$as_me:$LINENO: result: $cross_compiling" >&5
2015  echo "${ECHO_T}$cross_compiling" >&6  echo "${ECHO_T}$cross_compiling" >&6
2016    
2017  echo "$as_me:1657: checking for executable suffix" >&5  echo "$as_me:$LINENO: checking for suffix of executables" >&5
2018  echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6  echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
2019  if { (eval echo "$as_me:1659: \"$ac_link\"") >&5  if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2020    (eval $ac_link) 2>&5    (eval $ac_link) 2>&5
2021    ac_status=$?    ac_status=$?
2022    echo "$as_me:1662: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
2023    (exit $ac_status); }; then    (exit $ac_status); }; then
2024    # If both `conftest.exe' and `conftest' are `present' (well, observable)    # If both `conftest.exe' and `conftest' are `present' (well, observable)
2025  # catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will  # catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
# Line 1675  for ac_file in `(ls conftest.exe; ls con Line 2035  for ac_file in `(ls conftest.exe; ls con
2035    esac    esac
2036  done  done
2037  else  else
2038    { { echo "$as_me:1678: error: cannot compute EXEEXT: cannot compile and link" >&5    { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link" >&5
2039  echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;}  echo "$as_me: error: cannot compute suffix of executables: cannot compile and link" >&2;}
2040     { (exit 1); exit 1; }; }     { (exit 1); exit 1; }; }
2041  fi  fi
2042    
2043  rm -f conftest$ac_cv_exeext  rm -f conftest$ac_cv_exeext
2044  echo "$as_me:1684: result: $ac_cv_exeext" >&5  echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
2045  echo "${ECHO_T}$ac_cv_exeext" >&6  echo "${ECHO_T}$ac_cv_exeext" >&6
2046    
2047  rm -f conftest.$ac_ext  rm -f conftest.$ac_ext
2048  EXEEXT=$ac_cv_exeext  EXEEXT=$ac_cv_exeext
2049  ac_exeext=$EXEEXT  ac_exeext=$EXEEXT
2050  echo "$as_me:1690: checking for object suffix" >&5  echo "$as_me:$LINENO: checking for suffix of object files" >&5
2051  echo $ECHO_N "checking for object suffix... $ECHO_C" >&6  echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6
2052  if test "${ac_cv_objext+set}" = set; then  if test "${ac_cv_objext+set}" = set; then
2053    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
2054  else  else
2055    cat >conftest.$ac_ext <<_ACEOF    cat >conftest.$ac_ext <<_ACEOF
2056  #line 1696 "configure"  #line $LINENO "configure"
2057  #include "confdefs.h"  #include "confdefs.h"
2058    
2059    #ifdef F77_DUMMY_MAIN
2060    #  ifdef __cplusplus
2061         extern "C"
2062    #  endif
2063       int F77_DUMMY_MAIN() { return 1; }
2064    #endif
2065  int  int
2066  main ()  main ()
2067  {  {
# Line 1705  main () Line 2071  main ()
2071  }  }
2072  _ACEOF  _ACEOF
2073  rm -f conftest.o conftest.obj  rm -f conftest.o conftest.obj
2074  if { (eval echo "$as_me:1708: \"$ac_compile\"") >&5  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2075    (eval $ac_compile) 2>&5    (eval $ac_compile) 2>&5
2076    ac_status=$?    ac_status=$?
2077    echo "$as_me:1711: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
2078    (exit $ac_status); }; then    (exit $ac_status); }; then
2079    for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do    for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
2080    case $ac_file in    case $ac_file in
# Line 1720  done Line 2086  done
2086  else  else
2087    echo "$as_me: failed program was:" >&5    echo "$as_me: failed program was:" >&5
2088  cat conftest.$ac_ext >&5  cat conftest.$ac_ext >&5
2089  { { echo "$as_me:1723: error: cannot compute OBJEXT: cannot compile" >&5  { { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile" >&5
2090  echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;}  echo "$as_me: error: cannot compute suffix of object files: cannot compile" >&2;}
2091     { (exit 1); exit 1; }; }     { (exit 1); exit 1; }; }
2092  fi  fi
2093    
2094  rm -f conftest.$ac_cv_objext conftest.$ac_ext  rm -f conftest.$ac_cv_objext conftest.$ac_ext
2095  fi  fi
2096  echo "$as_me:1730: result: $ac_cv_objext" >&5  echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
2097  echo "${ECHO_T}$ac_cv_objext" >&6  echo "${ECHO_T}$ac_cv_objext" >&6
2098  OBJEXT=$ac_cv_objext  OBJEXT=$ac_cv_objext
2099  ac_objext=$OBJEXT  ac_objext=$OBJEXT
2100  echo "$as_me:1734: checking whether we are using the GNU C compiler" >&5  echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
2101  echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6  echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
2102  if test "${ac_cv_c_compiler_gnu+set}" = set; then  if test "${ac_cv_c_compiler_gnu+set}" = set; then
2103    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
2104  else  else
2105    cat >conftest.$ac_ext <<_ACEOF    cat >conftest.$ac_ext <<_ACEOF
2106  #line 1740 "configure"  #line $LINENO "configure"
2107  #include "confdefs.h"  #include "confdefs.h"
2108    
2109    #ifdef F77_DUMMY_MAIN
2110    #  ifdef __cplusplus
2111         extern "C"
2112    #  endif
2113       int F77_DUMMY_MAIN() { return 1; }
2114    #endif
2115  int  int
2116  main ()  main ()
2117  {  {
# Line 1752  main () Line 2124  main ()
2124  }  }
2125  _ACEOF  _ACEOF
2126  rm -f conftest.$ac_objext  rm -f conftest.$ac_objext
2127  if { (eval echo "$as_me:1755: \"$ac_compile\"") >&5  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2128    (eval $ac_compile) 2>&5    (eval $ac_compile) 2>&5
2129    ac_status=$?    ac_status=$?
2130    echo "$as_me:1758: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
2131    (exit $ac_status); } &&    (exit $ac_status); } &&
2132           { ac_try='test -s conftest.$ac_objext'           { ac_try='test -s conftest.$ac_objext'
2133    { (eval echo "$as_me:1761: \"$ac_try\"") >&5    { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2134    (eval $ac_try) 2>&5    (eval $ac_try) 2>&5
2135    ac_status=$?    ac_status=$?
2136    echo "$as_me:1764: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
2137    (exit $ac_status); }; }; then    (exit $ac_status); }; }; then
2138    ac_compiler_gnu=yes    ac_compiler_gnu=yes
2139  else  else
# Line 1773  rm -f conftest.$ac_objext conftest.$ac_e Line 2145  rm -f conftest.$ac_objext conftest.$ac_e
2145  ac_cv_c_compiler_gnu=$ac_compiler_gnu  ac_cv_c_compiler_gnu=$ac_compiler_gnu
2146    
2147  fi  fi
2148  echo "$as_me:1776: result: $ac_cv_c_compiler_gnu" >&5  echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
2149  echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6  echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
2150  GCC=`test $ac_compiler_gnu = yes && echo yes`  GCC=`test $ac_compiler_gnu = yes && echo yes`
2151  ac_test_CFLAGS=${CFLAGS+set}  ac_test_CFLAGS=${CFLAGS+set}
2152  ac_save_CFLAGS=$CFLAGS  ac_save_CFLAGS=$CFLAGS
2153  CFLAGS="-g"  CFLAGS="-g"
2154  echo "$as_me:1782: checking whether $CC accepts -g" >&5  echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
2155  echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6  echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
2156  if test "${ac_cv_prog_cc_g+set}" = set; then  if test "${ac_cv_prog_cc_g+set}" = set; then
2157    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
2158  else  else
2159    cat >conftest.$ac_ext <<_ACEOF    cat >conftest.$ac_ext <<_ACEOF
2160  #line 1788 "configure"  #line $LINENO "configure"
2161  #include "confdefs.h"  #include "confdefs.h"
2162    
2163    #ifdef F77_DUMMY_MAIN
2164    #  ifdef __cplusplus
2165         extern "C"
2166    #  endif
2167       int F77_DUMMY_MAIN() { return 1; }
2168    #endif
2169  int  int
2170  main ()  main ()
2171  {  {
# Line 1797  main () Line 2175  main ()
2175  }  }
2176  _ACEOF  _ACEOF
2177  rm -f conftest.$ac_objext  rm -f conftest.$ac_objext
2178  if { (eval echo "$as_me:1800: \"$ac_compile\"") >&5  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2179    (eval $ac_compile) 2>&5    (eval $ac_compile) 2>&5
2180    ac_status=$?    ac_status=$?
2181    echo "$as_me:1803: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
2182    (exit $ac_status); } &&    (exit $ac_status); } &&
2183           { ac_try='test -s conftest.$ac_objext'           { ac_try='test -s conftest.$ac_objext'
2184    { (eval echo "$as_me:1806: \"$ac_try\"") >&5    { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2185    (eval $ac_try) 2>&5    (eval $ac_try) 2>&5
2186    ac_status=$?    ac_status=$?
2187    echo "$as_me:1809: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
2188    (exit $ac_status); }; }; then    (exit $ac_status); }; }; then
2189    ac_cv_prog_cc_g=yes    ac_cv_prog_cc_g=yes
2190  else  else
# Line 1816  ac_cv_prog_cc_g=no Line 2194  ac_cv_prog_cc_g=no
2194  fi  fi
2195  rm -f conftest.$ac_objext conftest.$ac_ext  rm -f conftest.$ac_objext conftest.$ac_ext
2196  fi  fi
2197  echo "$as_me:1819: result: $ac_cv_prog_cc_g" >&5  echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
2198  echo "${ECHO_T}$ac_cv_prog_cc_g" >&6  echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
2199  if test "$ac_test_CFLAGS" = set; then  if test "$ac_test_CFLAGS" = set; then
2200    CFLAGS=$ac_save_CFLAGS    CFLAGS=$ac_save_CFLAGS
# Line 1843  cat >conftest.$ac_ext <<_ACEOF Line 2221  cat >conftest.$ac_ext <<_ACEOF
2221  #endif  #endif
2222  _ACEOF  _ACEOF
2223  rm -f conftest.$ac_objext  rm -f conftest.$ac_objext
2224  if { (eval echo "$as_me:1846: \"$ac_compile\"") >&5  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2225    (eval $ac_compile) 2>&5    (eval $ac_compile) 2>&5
2226    ac_status=$?    ac_status=$?
2227    echo "$as_me:1849: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
2228    (exit $ac_status); } &&    (exit $ac_status); } &&
2229           { ac_try='test -s conftest.$ac_objext'           { ac_try='test -s conftest.$ac_objext'
2230    { (eval echo "$as_me:1852: \"$ac_try\"") >&5    { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2231    (eval $ac_try) 2>&5    (eval $ac_try) 2>&5
2232    ac_status=$?    ac_status=$?
2233    echo "$as_me:1855: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
2234    (exit $ac_status); }; }; then    (exit $ac_status); }; }; then
2235    for ac_declaration in \    for ac_declaration in \
2236     ''\     ''\
# Line 1864  if { (eval echo "$as_me:1846: \"$ac_comp Line 2242  if { (eval echo "$as_me:1846: \"$ac_comp
2242     'void exit (int);'     'void exit (int);'
2243  do  do
2244    cat >conftest.$ac_ext <<_ACEOF    cat >conftest.$ac_ext <<_ACEOF
2245  #line 1867 "configure"  #line $LINENO "configure"
2246  #include "confdefs.h"  #include "confdefs.h"
2247  #include <stdlib.h>  #include <stdlib.h>
2248  $ac_declaration  $ac_declaration
2249    #ifdef F77_DUMMY_MAIN
2250    #  ifdef __cplusplus
2251         extern "C"
2252    #  endif
2253       int F77_DUMMY_MAIN() { return 1; }
2254    #endif
2255  int  int
2256  main ()  main ()
2257  {  {
# Line 1877  exit (42); Line 2261  exit (42);
2261  }  }
2262  _ACEOF  _ACEOF
2263  rm -f conftest.$ac_objext  rm -f conftest.$ac_objext
2264  if { (eval echo "$as_me:1880: \"$ac_compile\"") >&5  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2265    (eval $ac_compile) 2>&5    (eval $ac_compile) 2>&5
2266    ac_status=$?    ac_status=$?
2267    echo "$as_me:1883: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
2268    (exit $ac_status); } &&    (exit $ac_status); } &&
2269           { ac_try='test -s conftest.$ac_objext'           { ac_try='test -s conftest.$ac_objext'
2270    { (eval echo "$as_me:1886: \"$ac_try\"") >&5    { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2271    (eval $ac_try) 2>&5    (eval $ac_try) 2>&5
2272    ac_status=$?    ac_status=$?
2273    echo "$as_me:1889: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
2274    (exit $ac_status); }; }; then    (exit $ac_status); }; }; then
2275    :    :
2276  else  else
# Line 1896  continue Line 2280  continue
2280  fi  fi
2281  rm -f conftest.$ac_objext conftest.$ac_ext  rm -f conftest.$ac_objext conftest.$ac_ext
2282    cat >conftest.$ac_ext <<_ACEOF    cat >conftest.$ac_ext <<_ACEOF
2283  #line 1899 "configure"  #line $LINENO "configure"
2284  #include "confdefs.h"  #include "confdefs.h"
2285  $ac_declaration  $ac_declaration
2286    #ifdef F77_DUMMY_MAIN
2287    #  ifdef __cplusplus
2288         extern "C"
2289    #  endif
2290       int F77_DUMMY_MAIN() { return 1; }
2291    #endif
2292  int  int
2293  main ()  main ()
2294  {  {
# Line 1908  exit (42); Line 2298  exit (42);
2298  }  }
2299  _ACEOF  _ACEOF
2300  rm -f conftest.$ac_objext  rm -f conftest.$ac_objext
2301  if { (eval echo "$as_me:1911: \"$ac_compile\"") >&5  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2302    (eval $ac_compile) 2>&5    (eval $ac_compile) 2>&5
2303    ac_status=$?    ac_status=$?
2304    echo "$as_me:1914: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
2305    (exit $ac_status); } &&    (exit $ac_status); } &&
2306           { ac_try='test -s conftest.$ac_objext'           { ac_try='test -s conftest.$ac_objext'
2307    { (eval echo "$as_me:1917: \"$ac_try\"") >&5    { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2308    (eval $ac_try) 2>&5    (eval $ac_try) 2>&5
2309    ac_status=$?    ac_status=$?
2310    echo "$as_me:1920: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
2311    (exit $ac_status); }; }; then    (exit $ac_status); }; }; then
2312    break    break
2313  else  else
# Line 1943  ac_cpp='$CPP $CPPFLAGS' Line 2333  ac_cpp='$CPP $CPPFLAGS'
2333  ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'  ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2334  ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'  ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2335  ac_compiler_gnu=$ac_cv_c_compiler_gnu  ac_compiler_gnu=$ac_cv_c_compiler_gnu
2336    rm -f .deps 2>/dev/null
2337    mkdir .deps 2>/dev/null
2338    if test -d .deps; then
2339      DEPDIR=.deps
2340    else
2341      # MS-DOS does not allow filenames that begin with a dot.
2342      DEPDIR=_deps
2343    fi
2344    rmdir .deps 2>/dev/null
2345    
2346    
2347    ac_config_commands="$ac_config_commands depfiles"
2348    
 ac_config_commands="$ac_config_commands default-1"  
2349    
2350  am_make=${MAKE-make}  am_make=${MAKE-make}
2351  cat > confinc << 'END'  cat > confinc << 'END'
# Line 1952  doit: Line 2353  doit:
2353          @echo done          @echo done
2354  END  END
2355  # If we don't find an include directive, just comment out the code.  # If we don't find an include directive, just comment out the code.
2356  echo "$as_me:1955: checking for style of include used by $am_make" >&5  echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
2357  echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6  echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6
2358  am__include='#'  am__include="#"
2359  am__quote=  am__quote=
2360  _am_result=none  _am_result=none
2361  # First try GNU make style include.  # First try GNU make style include.
# Line 1974  if test "$am__include" = "#"; then Line 2375  if test "$am__include" = "#"; then
2375     echo '.include "confinc"' > confmf     echo '.include "confinc"' > confmf
2376     if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then     if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
2377        am__include=.include        am__include=.include
2378        am__quote='"'        am__quote="\""
2379        _am_result=BSD        _am_result=BSD
2380     fi     fi
2381  fi  fi
2382    
2383  echo "$as_me:1982: result: $_am_result" >&5  
2384    echo "$as_me:$LINENO: result: $_am_result" >&5
2385  echo "${ECHO_T}$_am_result" >&6  echo "${ECHO_T}$_am_result" >&6
2386  rm -f confinc confmf  rm -f confinc confmf
2387    
2388    # Check whether --enable-dependency-tracking or --disable-dependency-tracking was given.
2389    if test "${enable_dependency_tracking+set}" = set; then
2390      enableval="$enable_dependency_tracking"
2391    
2392    fi;
2393    if test "x$enable_dependency_tracking" != xno; then
2394      am_depcomp="$ac_aux_dir/depcomp"
2395      AMDEPBACKSLASH='\'
2396    fi
2397    
2398    
2399    if test "x$enable_dependency_tracking" != xno; then
2400      AMDEP_TRUE=
2401      AMDEP_FALSE='#'
2402    else
2403      AMDEP_TRUE='#'
2404      AMDEP_FALSE=
2405    fi
2406    
2407    
2408    
2409    
2410  depcc="$CC"   am_compiler_list=  depcc="$CC"   am_compiler_list=
2411    
2412  echo "$as_me:1988: checking dependency style of $depcc" >&5  echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
2413  echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6  echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6
2414  if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then  if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
2415    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
# Line 2047  else Line 2471  else
2471  fi  fi
2472    
2473  fi  fi
2474  echo "$as_me:2050: result: $am_cv_CC_dependencies_compiler_type" >&5  echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
2475  echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6  echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6
2476  CCDEPMODE="depmode=$am_cv_CC_dependencies_compiler_type"  CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
2477    
2478    
2479  # Find a good install program.  We prefer a C program (faster),  # Find a good install program.  We prefer a C program (faster),
2480  # so one script is as good as another.  But avoid the broken or  # so one script is as good as another.  But avoid the broken or
# Line 2063  CCDEPMODE="depmode=$am_cv_CC_dependencie Line 2488  CCDEPMODE="depmode=$am_cv_CC_dependencie
2488  # AFS /usr/afsws/bin/install, which mishandles nonexistent args  # AFS /usr/afsws/bin/install, which mishandles nonexistent args
2489  # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"  # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
2490  # ./install, which can be erroneously created by make from ./install.sh.  # ./install, which can be erroneously created by make from ./install.sh.
2491  echo "$as_me:2066: checking for a BSD compatible install" >&5  echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
2492  echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6  echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
2493  if test -z "$INSTALL"; then  if test -z "$INSTALL"; then
2494  if test "${ac_cv_path_install+set}" = set; then  if test "${ac_cv_path_install+set}" = set; then
2495    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
2496  else  else
2497      ac_save_IFS=$IFS; IFS=$ac_path_separator    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2498    for ac_dir in $PATH; do  for as_dir in $PATH
2499      IFS=$ac_save_IFS  do
2500      # Account for people who put trailing slashes in PATH elements.    IFS=$as_save_IFS
2501      case $ac_dir/ in    test -z "$as_dir" && as_dir=.
2502      / | ./ | .// | /cC/* \    # Account for people who put trailing slashes in PATH elements.
2503      | /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* \  case $as_dir/ in
2504      | /usr/ucb/* ) ;;    ./ | .// | /cC/* | \
2505      *)    /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
2506        # OSF1 and SCO ODT 3.0 have their own names for install.    /usr/ucb/* ) ;;
2507        # Don't use installbsd from OSF since it installs stuff as root    *)
2508        # by default.      # OSF1 and SCO ODT 3.0 have their own names for install.
2509        for ac_prog in ginstall scoinst install; do      # Don't use installbsd from OSF since it installs stuff as root
2510          if $as_executable_p "$ac_dir/$ac_prog"; then      # by default.
2511            if test $ac_prog = install &&      for ac_prog in ginstall scoinst install; do
2512              grep dspmsg "$ac_dir/$ac_prog" >/dev/null 2>&1; then        for ac_exec_ext in '' $ac_executable_extensions; do
2513              # AIX install.  It has an incompatible calling convention.          if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
2514              :            if test $ac_prog = install &&
2515            elif test $ac_prog = install &&              grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
2516              grep pwplus "$ac_dir/$ac_prog" >/dev/null 2>&1; then              # AIX install.  It has an incompatible calling convention.
2517              # program-specific install script used by HP pwplus--don't use.              :
2518              :            elif test $ac_prog = install &&
2519            else              grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
2520              ac_cv_path_install="$ac_dir/$ac_prog -c"              # program-specific install script used by HP pwplus--don't use.
2521              break 2              :
2522            fi            else
2523          fi              ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
2524                break 3
2525              fi
2526            fi
2527        done        done
2528        ;;      done
2529      esac      ;;
2530    done  esac
2531    done
2532    
2533    
2534  fi  fi
2535    if test "${ac_cv_path_install+set}" = set; then    if test "${ac_cv_path_install+set}" = set; then
# Line 2112  fi Line 2542  fi
2542      INSTALL=$ac_install_sh      INSTALL=$ac_install_sh
2543    fi    fi
2544  fi  fi
2545  echo "$as_me:2115: result: $INSTALL" >&5  echo "$as_me:$LINENO: result: $INSTALL" >&5
2546  echo "${ECHO_T}$INSTALL" >&6  echo "${ECHO_T}$INSTALL" >&6
2547    
2548  # Use test -z because SunOS4 sh mishandles braces in ${var-val}.  # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
# Line 2132  ac_cpp='$CPP $CPPFLAGS' Line 2562  ac_cpp='$CPP $CPPFLAGS'
2562  ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'  ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2563  ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'  ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2564  ac_compiler_gnu=$ac_cv_c_compiler_gnu  ac_compiler_gnu=$ac_cv_c_compiler_gnu
2565  echo "$as_me:2135: checking how to run the C preprocessor" >&5  echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
2566  echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6  echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
2567  # On Suns, sometimes $CPP names a directory.  # On Suns, sometimes $CPP names a directory.
2568  if test -n "$CPP" && test -d "$CPP"; then  if test -n "$CPP" && test -d "$CPP"; then
# Line 2153  do Line 2583  do
2583    # On the NeXT, cc -E runs the code through the compiler's parser,    # On the NeXT, cc -E runs the code through the compiler's parser,
2584    # not just through cpp. "Syntax error" is here to catch this case.    # not just through cpp. "Syntax error" is here to catch this case.
2585    cat >conftest.$ac_ext <<_ACEOF    cat >conftest.$ac_ext <<_ACEOF
2586  #line 2156 "configure"  #line $LINENO "configure"
2587  #include "confdefs.h"  #include "confdefs.h"
2588  #include <assert.h>  #include <assert.h>
2589                       Syntax error                       Syntax error
2590  _ACEOF  _ACEOF
2591  if { (eval echo "$as_me:2161: \"$ac_cpp conftest.$ac_ext\"") >&5  if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
2592    (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1    (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2593    ac_status=$?    ac_status=$?
2594    egrep -v '^ *\+' conftest.er1 >conftest.err    egrep -v '^ *\+' conftest.er1 >conftest.err
2595    rm -f conftest.er1    rm -f conftest.er1
2596    cat conftest.err >&5    cat conftest.err >&5
2597    echo "$as_me:2167: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
2598    (exit $ac_status); } >/dev/null; then    (exit $ac_status); } >/dev/null; then
2599    if test -s conftest.err; then    if test -s conftest.err; then
2600      ac_cpp_err=$ac_c_preproc_warn_flag      ac_cpp_err=$ac_c_preproc_warn_flag
# Line 2187  rm -f conftest.err conftest.$ac_ext Line 2617  rm -f conftest.err conftest.$ac_ext
2617    # OK, works on sane cases.  Now check whether non-existent headers    # OK, works on sane cases.  Now check whether non-existent headers
2618    # can be detected and how.    # can be detected and how.
2619    cat >conftest.$ac_ext <<_ACEOF    cat >conftest.$ac_ext <<_ACEOF
2620  #line 2190 "configure"  #line $LINENO "configure"
2621  #include "confdefs.h"  #include "confdefs.h"
2622  #include <ac_nonexistent.h>  #include <ac_nonexistent.h>
2623  _ACEOF  _ACEOF
2624  if { (eval echo "$as_me:2194: \"$ac_cpp conftest.$ac_ext\"") >&5  if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
2625    (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1    (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2626    ac_status=$?    ac_status=$?
2627    egrep -v '^ *\+' conftest.er1 >conftest.err    egrep -v '^ *\+' conftest.er1 >conftest.err
2628    rm -f conftest.er1    rm -f conftest.er1
2629    cat conftest.err >&5    cat conftest.err >&5
2630    echo "$as_me:2200: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
2631    (exit $ac_status); } >/dev/null; then    (exit $ac_status); } >/dev/null; then
2632    if test -s conftest.err; then    if test -s conftest.err; then
2633      ac_cpp_err=$ac_c_preproc_warn_flag      ac_cpp_err=$ac_c_preproc_warn_flag
# Line 2234  fi Line 2664  fi
2664  else  else
2665    ac_cv_prog_CPP=$CPP    ac_cv_prog_CPP=$CPP
2666  fi  fi
2667  echo "$as_me:2237: result: $CPP" >&5  echo "$as_me:$LINENO: result: $CPP" >&5
2668  echo "${ECHO_T}$CPP" >&6  echo "${ECHO_T}$CPP" >&6
2669  ac_preproc_ok=false  ac_preproc_ok=false
2670  for ac_c_preproc_warn_flag in '' yes  for ac_c_preproc_warn_flag in '' yes
# Line 2244  do Line 2674  do
2674    # On the NeXT, cc -E runs the code through the compiler's parser,    # On the NeXT, cc -E runs the code through the compiler's parser,
2675    # not just through cpp. "Syntax error" is here to catch this case.    # not just through cpp. "Syntax error" is here to catch this case.
2676    cat >conftest.$ac_ext <<_ACEOF    cat >conftest.$ac_ext <<_ACEOF
2677  #line 2247 "configure"  #line $LINENO "configure"
2678  #include "confdefs.h"  #include "confdefs.h"
2679  #include <assert.h>  #include <assert.h>
2680                       Syntax error                       Syntax error
2681  _ACEOF  _ACEOF
2682  if { (eval echo "$as_me:2252: \"$ac_cpp conftest.$ac_ext\"") >&5  if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
2683    (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1    (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2684    ac_status=$?    ac_status=$?
2685    egrep -v '^ *\+' conftest.er1 >conftest.err    egrep -v '^ *\+' conftest.er1 >conftest.err
2686    rm -f conftest.er1    rm -f conftest.er1
2687    cat conftest.err >&5    cat conftest.err >&5
2688    echo "$as_me:2258: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
2689    (exit $ac_status); } >/dev/null; then    (exit $ac_status); } >/dev/null; then
2690    if test -s conftest.err; then    if test -s conftest.err; then
2691      ac_cpp_err=$ac_c_preproc_warn_flag      ac_cpp_err=$ac_c_preproc_warn_flag
# Line 2278  rm -f conftest.err conftest.$ac_ext Line 2708  rm -f conftest.err conftest.$ac_ext
2708    # OK, works on sane cases.  Now check whether non-existent headers    # OK, works on sane cases.  Now check whether non-existent headers
2709    # can be detected and how.    # can be detected and how.
2710    cat >conftest.$ac_ext <<_ACEOF    cat >conftest.$ac_ext <<_ACEOF
2711  #line 2281 "configure"  #line $LINENO "configure"
2712  #include "confdefs.h"  #include "confdefs.h"
2713  #include <ac_nonexistent.h>  #include <ac_nonexistent.h>
2714  _ACEOF  _ACEOF
2715  if { (eval echo "$as_me:2285: \"$ac_cpp conftest.$ac_ext\"") >&5  if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
2716    (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1    (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2717    ac_status=$?    ac_status=$?
2718    egrep -v '^ *\+' conftest.er1 >conftest.err    egrep -v '^ *\+' conftest.er1 >conftest.err
2719    rm -f conftest.er1    rm -f conftest.er1
2720    cat conftest.err >&5    cat conftest.err >&5
2721    echo "$as_me:2291: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
2722    (exit $ac_status); } >/dev/null; then    (exit $ac_status); } >/dev/null; then
2723    if test -s conftest.err; then    if test -s conftest.err; then
2724      ac_cpp_err=$ac_c_preproc_warn_flag      ac_cpp_err=$ac_c_preproc_warn_flag
# Line 2316  rm -f conftest.err conftest.$ac_ext Line 2746  rm -f conftest.err conftest.$ac_ext
2746  if $ac_preproc_ok; then  if $ac_preproc_ok; then
2747    :    :
2748  else  else
2749    { { echo "$as_me:2319: error: C preprocessor \"$CPP\" fails sanity check" >&5    { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check" >&5
2750  echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}  echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}
2751     { (exit 1); exit 1; }; }     { (exit 1); exit 1; }; }
2752  fi  fi
# Line 2327  ac_compile='$CC -c $CFLAGS $CPPFLAGS con Line 2757  ac_compile='$CC -c $CFLAGS $CPPFLAGS con
2757  ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'  ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2758  ac_compiler_gnu=$ac_cv_c_compiler_gnu  ac_compiler_gnu=$ac_cv_c_compiler_gnu
2759    
2760  for ac_header in stdlib.h  
2761    echo "$as_me:$LINENO: checking for ANSI C header files" >&5
2762    echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
2763    if test "${ac_cv_header_stdc+set}" = set; then
2764      echo $ECHO_N "(cached) $ECHO_C" >&6
2765    else
2766      cat >conftest.$ac_ext <<_ACEOF
2767    #line $LINENO "configure"
2768    #include "confdefs.h"
2769    #include <stdlib.h>
2770    #include <stdarg.h>
2771    #include <string.h>
2772    #include <float.h>
2773    
2774    _ACEOF
2775    if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
2776      (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2777      ac_status=$?
2778      egrep -v '^ *\+' conftest.er1 >conftest.err
2779      rm -f conftest.er1
2780      cat conftest.err >&5
2781      echo "$as_me:$LINENO: \$? = $ac_status" >&5
2782      (exit $ac_status); } >/dev/null; then
2783      if test -s conftest.err; then
2784        ac_cpp_err=$ac_c_preproc_warn_flag
2785      else
2786        ac_cpp_err=
2787      fi
2788    else
2789      ac_cpp_err=yes
2790    fi
2791    if test -z "$ac_cpp_err"; then
2792      ac_cv_header_stdc=yes
2793    else
2794      echo "$as_me: failed program was:" >&5
2795      cat conftest.$ac_ext >&5
2796      ac_cv_header_stdc=no
2797    fi
2798    rm -f conftest.err conftest.$ac_ext
2799    
2800    if test $ac_cv_header_stdc = yes; then
2801      # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
2802      cat >conftest.$ac_ext <<_ACEOF
2803    #line $LINENO "configure"
2804    #include "confdefs.h"
2805    #include <string.h>
2806    
2807    _ACEOF
2808    if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
2809      egrep "memchr" >/dev/null 2>&1; then
2810      :
2811    else
2812      ac_cv_header_stdc=no
2813    fi
2814    rm -f conftest*
2815    
2816    fi
2817    
2818    if test $ac_cv_header_stdc = yes; then
2819      # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
2820      cat >conftest.$ac_ext <<_ACEOF
2821    #line $LINENO "configure"
2822    #include "confdefs.h"
2823    #include <stdlib.h>
2824    
2825    _ACEOF
2826    if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
2827      egrep "free" >/dev/null 2>&1; then
2828      :
2829    else
2830      ac_cv_header_stdc=no
2831    fi
2832    rm -f conftest*
2833    
2834    fi
2835    
2836    if test $ac_cv_header_stdc = yes; then
2837      # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
2838      if test "$cross_compiling" = yes; then
2839      :
2840    else
2841      cat >conftest.$ac_ext <<_ACEOF
2842    #line $LINENO "configure"
2843    #include "confdefs.h"
2844    #include <ctype.h>
2845    #if ((' ' & 0x0FF) == 0x020)
2846    # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
2847    # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
2848    #else
2849    # define ISLOWER(c) (('a' <= (c) && (c) <= 'i') \
2850                         || ('j' <= (c) && (c) <= 'r') \
2851                         || ('s' <= (c) && (c) <= 'z'))
2852    # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
2853    #endif
2854    
2855    #define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
2856    int
2857    main ()
2858    {
2859      int i;
2860      for (i = 0; i < 256; i++)
2861        if (XOR (islower (i), ISLOWER (i))
2862            || toupper (i) != TOUPPER (i))
2863          exit(2);
2864      exit (0);
2865    }
2866    _ACEOF
2867    rm -f conftest$ac_exeext
2868    if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2869      (eval $ac_link) 2>&5
2870      ac_status=$?
2871      echo "$as_me:$LINENO: \$? = $ac_status" >&5
2872      (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
2873      { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2874      (eval $ac_try) 2>&5
2875      ac_status=$?
2876      echo "$as_me:$LINENO: \$? = $ac_status" >&5
2877      (exit $ac_status); }; }; then
2878      :
2879    else
2880      echo "$as_me: program exited with status $ac_status" >&5
2881    echo "$as_me: failed program was:" >&5
2882    cat conftest.$ac_ext >&5
2883    ( exit $ac_status )
2884    ac_cv_header_stdc=no
2885    fi
2886    rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
2887    fi
2888    fi
2889    fi
2890    echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
2891    echo "${ECHO_T}$ac_cv_header_stdc" >&6
2892    if test $ac_cv_header_stdc = yes; then
2893    
2894    cat >>confdefs.h <<\_ACEOF
2895    #define STDC_HEADERS 1
2896    _ACEOF
2897    
2898    fi
2899    
2900    # On IRIX 5.3, sys/types and inttypes.h are conflicting.
2901    
2902    
2903    
2904    
2905    
2906    
2907    
2908    
2909    
2910    for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
2911                      inttypes.h stdint.h unistd.h
2912  do  do
2913  as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`  as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
2914  echo "$as_me:2333: checking for $ac_header" >&5  echo "$as_me:$LINENO: checking for $ac_header" >&5
2915  echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6  echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2916  if eval "test \"\${$as_ac_Header+set}\" = set"; then  if eval "test \"\${$as_ac_Header+set}\" = set"; then
2917    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
2918  else  else
2919    cat >conftest.$ac_ext <<_ACEOF    cat >conftest.$ac_ext <<_ACEOF
2920  #line 2339 "configure"  #line $LINENO "configure"
2921  #include "confdefs.h"  #include "confdefs.h"
2922    $ac_includes_default
2923    
2924  #include <$ac_header>  #include <$ac_header>
2925  _ACEOF  _ACEOF
2926  if { (eval echo "$as_me:2343: \"$ac_cpp conftest.$ac_ext\"") >&5  rm -f conftest.$ac_objext
2927    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2928      (eval $ac_compile) 2>&5
2929      ac_status=$?
2930      echo "$as_me:$LINENO: \$? = $ac_status" >&5
2931      (exit $ac_status); } &&
2932             { ac_try='test -s conftest.$ac_objext'
2933      { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2934      (eval $ac_try) 2>&5
2935      ac_status=$?
2936      echo "$as_me:$LINENO: \$? = $ac_status" >&5
2937      (exit $ac_status); }; }; then
2938      eval "$as_ac_Header=yes"
2939    else
2940      echo "$as_me: failed program was:" >&5
2941    cat conftest.$ac_ext >&5
2942    eval "$as_ac_Header=no"
2943    fi
2944    rm -f conftest.$ac_objext conftest.$ac_ext
2945    fi
2946    echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
2947    echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
2948    if test `eval echo '${'$as_ac_Header'}'` = yes; then
2949      cat >>confdefs.h <<_ACEOF
2950    #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
2951    _ACEOF
2952    
2953    fi
2954    
2955    done
2956    
2957    
2958    
2959    for ac_header in stdlib.h
2960    do
2961    as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
2962    if eval "test \"\${$as_ac_Header+set}\" = set"; then
2963      echo "$as_me:$LINENO: checking for $ac_header" >&5
2964    echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2965    if eval "test \"\${$as_ac_Header+set}\" = set"; then
2966      echo $ECHO_N "(cached) $ECHO_C" >&6
2967    fi
2968    echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
2969    echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
2970    else
2971      # Is the header compilable?
2972    echo "$as_me:$LINENO: checking $ac_header usability" >&5
2973    echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
2974    cat >conftest.$ac_ext <<_ACEOF
2975    #line $LINENO "configure"
2976    #include "confdefs.h"
2977    $ac_includes_default
2978    #include <$ac_header>
2979    _ACEOF
2980    rm -f conftest.$ac_objext
2981    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2982      (eval $ac_compile) 2>&5
2983      ac_status=$?
2984      echo "$as_me:$LINENO: \$? = $ac_status" >&5
2985      (exit $ac_status); } &&
2986             { ac_try='test -s conftest.$ac_objext'
2987      { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2988      (eval $ac_try) 2>&5
2989      ac_status=$?
2990      echo "$as_me:$LINENO: \$? = $ac_status" >&5
2991      (exit $ac_status); }; }; then
2992      ac_header_compiler=yes
2993    else
2994      echo "$as_me: failed program was:" >&5
2995    cat conftest.$ac_ext >&5
2996    ac_header_compiler=no
2997    fi
2998    rm -f conftest.$ac_objext conftest.$ac_ext
2999    echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
3000    echo "${ECHO_T}$ac_header_compiler" >&6
3001    
3002    # Is the header present?
3003    echo "$as_me:$LINENO: checking $ac_header presence" >&5
3004    echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
3005    cat >conftest.$ac_ext <<_ACEOF
3006    #line $LINENO "configure"
3007    #include "confdefs.h"
3008    #include <$ac_header>
3009    _ACEOF
3010    if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
3011    (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1    (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
3012    ac_status=$?    ac_status=$?
3013    egrep -v '^ *\+' conftest.er1 >conftest.err    egrep -v '^ *\+' conftest.er1 >conftest.err
3014    rm -f conftest.er1    rm -f conftest.er1
3015    cat conftest.err >&5    cat conftest.err >&5
3016    echo "$as_me:2349: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
3017    (exit $ac_status); } >/dev/null; then    (exit $ac_status); } >/dev/null; then
3018    if test -s conftest.err; then    if test -s conftest.err; then
3019      ac_cpp_err=$ac_c_preproc_warn_flag      ac_cpp_err=$ac_c_preproc_warn_flag
# Line 2357  else Line 3024  else
3024    ac_cpp_err=yes    ac_cpp_err=yes
3025  fi  fi
3026  if test -z "$ac_cpp_err"; then  if test -z "$ac_cpp_err"; then
3027    eval "$as_ac_Header=yes"    ac_header_preproc=yes
3028  else  else
3029    echo "$as_me: failed program was:" >&5    echo "$as_me: failed program was:" >&5
3030    cat conftest.$ac_ext >&5    cat conftest.$ac_ext >&5
3031    eval "$as_ac_Header=no"    ac_header_preproc=no
3032  fi  fi
3033  rm -f conftest.err conftest.$ac_ext  rm -f conftest.err conftest.$ac_ext
3034    echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
3035    echo "${ECHO_T}$ac_header_preproc" >&6
3036    
3037    # So?  What about this header?
3038    case $ac_header_compiler:$ac_header_preproc in
3039      yes:no )
3040        { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
3041    echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
3042        { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
3043    echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
3044      no:yes )
3045        { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
3046    echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
3047        { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
3048    echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
3049        { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
3050    echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
3051    esac
3052    echo "$as_me:$LINENO: checking for $ac_header" >&5
3053    echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
3054    if eval "test \"\${$as_ac_Header+set}\" = set"; then
3055      echo $ECHO_N "(cached) $ECHO_C" >&6
3056    else
3057      eval "$as_ac_Header=$ac_header_preproc"
3058  fi  fi
3059  echo "$as_me:2368: result: `eval echo '${'$as_ac_Header'}'`" >&5  echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
3060  echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6  echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
3061    
3062    fi
3063  if test `eval echo '${'$as_ac_Header'}'` = yes; then  if test `eval echo '${'$as_ac_Header'}'` = yes; then
3064    cat >>confdefs.h <<EOF    cat >>confdefs.h <<_ACEOF
3065  #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1  #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
3066  EOF  _ACEOF
3067    
3068  fi  fi
3069    
3070  done  done
3071    
3072    
3073  #  #
3074  # Look for various functions  # Look for various functions
3075  #  #
3076  echo "$as_me:2381: checking for strcmp" >&5  echo "$as_me:$LINENO: checking for strcmp" >&5
3077  echo $ECHO_N "checking for strcmp... $ECHO_C" >&6  echo $ECHO_N "checking for strcmp... $ECHO_C" >&6
3078  if test "${ac_cv_func_strcmp+set}" = set; then  if test "${ac_cv_func_strcmp+set}" = set; then
3079    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
3080  else  else
3081    cat >conftest.$ac_ext <<_ACEOF    cat >conftest.$ac_ext <<_ACEOF
3082  #line 2387 "configure"  #line $LINENO "configure"
3083  #include "confdefs.h"  #include "confdefs.h"
3084  /* System header to define __stub macros and hopefully few prototypes,  /* System header to define __stub macros and hopefully few prototypes,
3085      which can conflict with char strcmp (); below.  */      which can conflict with char strcmp (); below.  */
# Line 2398  extern "C" Line 3093  extern "C"
3093  char strcmp ();  char strcmp ();
3094  char (*f) ();  char (*f) ();
3095    
3096    #ifdef F77_DUMMY_MAIN
3097    #  ifdef __cplusplus
3098         extern "C"
3099    #  endif
3100       int F77_DUMMY_MAIN() { return 1; }
3101    #endif
3102  int  int
3103  main ()  main ()
3104  {  {
# Line 2415  f = strcmp; Line 3116  f = strcmp;
3116  }  }
3117  _ACEOF  _ACEOF
3118  rm -f conftest.$ac_objext conftest$ac_exeext  rm -f conftest.$ac_objext conftest$ac_exeext
3119  if { (eval echo "$as_me:2418: \"$ac_link\"") >&5  if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3120    (eval $ac_link) 2>&5    (eval $ac_link) 2>&5
3121    ac_status=$?    ac_status=$?
3122    echo "$as_me:2421: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
3123    (exit $ac_status); } &&    (exit $ac_status); } &&
3124           { ac_try='test -s conftest$ac_exeext'           { ac_try='test -s conftest$ac_exeext'
3125    { (eval echo "$as_me:2424: \"$ac_try\"") >&5    { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3126    (eval $ac_try) 2>&5    (eval $ac_try) 2>&5
3127    ac_status=$?    ac_status=$?
3128    echo "$as_me:2427: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
3129    (exit $ac_status); }; }; then    (exit $ac_status); }; }; then
3130    ac_cv_func_strcmp=yes    ac_cv_func_strcmp=yes
3131  else  else
# Line 2434  ac_cv_func_strcmp=no Line 3135  ac_cv_func_strcmp=no
3135  fi  fi
3136  rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext  rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3137  fi  fi
3138  echo "$as_me:2437: result: $ac_cv_func_strcmp" >&5  echo "$as_me:$LINENO: result: $ac_cv_func_strcmp" >&5
3139  echo "${ECHO_T}$ac_cv_func_strcmp" >&6  echo "${ECHO_T}$ac_cv_func_strcmp" >&6
3140    
3141  echo "$as_me:2440: checking whether to enable maintainer-specific portions of Makefiles" >&5  
3142    echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5
3143  echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6  echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6
3144      # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.      # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
3145  if test "${enable_maintainer_mode+set}" = set; then  if test "${enable_maintainer_mode+set}" = set; then
# Line 2446  if test "${enable_maintainer_mode+set}" Line 3148  if test "${enable_maintainer_mode+set}"
3148  else  else
3149    USE_MAINTAINER_MODE=no    USE_MAINTAINER_MODE=no
3150  fi;  fi;
3151    echo "$as_me:2449: result: $USE_MAINTAINER_MODE" >&5    echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
3152  echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6  echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6
3153    
3154    
3155  if test $USE_MAINTAINER_MODE = yes; then  if test $USE_MAINTAINER_MODE = yes; then
3156    MAINTAINER_MODE_TRUE=    MAINTAINER_MODE_TRUE=
3157    MAINTAINER_MODE_FALSE='#'    MAINTAINER_MODE_FALSE='#'
# Line 2456  else Line 3159  else
3159    MAINTAINER_MODE_TRUE='#'    MAINTAINER_MODE_TRUE='#'
3160    MAINTAINER_MODE_FALSE=    MAINTAINER_MODE_FALSE=
3161  fi  fi
3162    
3163    MAINT=$MAINTAINER_MODE_TRUE    MAINT=$MAINTAINER_MODE_TRUE
3164    
3165    
3166    
3167  #  #
3168  # Output Makefile with substitutions  # Output Makefile with substitutions
3169    
# Line 2538  fi Line 3244  fi
3244    
3245  DEFS=-DHAVE_CONFIG_H  DEFS=-DHAVE_CONFIG_H
3246    
3247    if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
3248      { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
3249    Usually this means the macro was only invoked conditionally." >&5
3250    echo "$as_me: error: conditional \"AMDEP\" was never defined.
3251    Usually this means the macro was only invoked conditionally." >&2;}
3252       { (exit 1); exit 1; }; }
3253    fi
3254    if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
3255      { { echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined.
3256    Usually this means the macro was only invoked conditionally." >&5
3257    echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined.
3258    Usually this means the macro was only invoked conditionally." >&2;}
3259       { (exit 1); exit 1; }; }
3260    fi
3261    
3262  : ${CONFIG_STATUS=./config.status}  : ${CONFIG_STATUS=./config.status}
3263  ac_clean_files_save=$ac_clean_files  ac_clean_files_save=$ac_clean_files
3264  ac_clean_files="$ac_clean_files $CONFIG_STATUS"  ac_clean_files="$ac_clean_files $CONFIG_STATUS"
3265  { echo "$as_me:2544: creating $CONFIG_STATUS" >&5  { echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
3266  echo "$as_me: creating $CONFIG_STATUS" >&6;}  echo "$as_me: creating $CONFIG_STATUS" >&6;}
3267  cat >$CONFIG_STATUS <<_ACEOF  cat >$CONFIG_STATUS <<_ACEOF
3268  #! $SHELL  #! $SHELL
3269  # Generated automatically by configure.  # Generated by $as_me.
3270  # Run this file to recreate the current configuration.  # Run this file to recreate the current configuration.
3271  # Compiler output produced by configure, useful for debugging  # Compiler output produced by configure, useful for debugging
3272  # configure, is in config.log if it exists.  # configure, is in config.log if it exists.
3273    
3274  debug=false  debug=false
3275  SHELL=\${CONFIG_SHELL-$SHELL}  SHELL=\${CONFIG_SHELL-$SHELL}
 ac_cs_invocation="\$0 \$@"  
   
3276  _ACEOF  _ACEOF
3277    
3278  cat >>$CONFIG_STATUS <<\_ACEOF  cat >>$CONFIG_STATUS <<\_ACEOF
3279    
3280    ## --------------------- ##
3281    ## M4sh Initialization.  ##
3282    ## --------------------- ##
3283    
3284  # Be Bourne compatible  # Be Bourne compatible
3285  if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then  if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
3286    emulate sh    emulate sh
# Line 2565  elif test -n "${BASH_VERSION+set}" && (s Line 3289  elif test -n "${BASH_VERSION+set}" && (s
3289    set -o posix    set -o posix
3290  fi  fi
3291    
3292    # NLS nuisances.
3293    # Support unset when possible.
3294    if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
3295      as_unset=unset
3296    else
3297      as_unset=false
3298    fi
3299    
3300    (set +x; test -n "`(LANG=C; export LANG) 2>&1`") &&
3301        { $as_unset LANG || test "${LANG+set}" != set; } ||
3302          { LANG=C; export LANG; }
3303    (set +x; test -n "`(LC_ALL=C; export LC_ALL) 2>&1`") &&
3304        { $as_unset LC_ALL || test "${LC_ALL+set}" != set; } ||
3305          { LC_ALL=C; export LC_ALL; }
3306    (set +x; test -n "`(LC_TIME=C; export LC_TIME) 2>&1`") &&
3307        { $as_unset LC_TIME || test "${LC_TIME+set}" != set; } ||
3308          { LC_TIME=C; export LC_TIME; }
3309    (set +x; test -n "`(LC_CTYPE=C; export LC_CTYPE) 2>&1`") &&
3310        { $as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set; } ||
3311          { LC_CTYPE=C; export LC_CTYPE; }
3312    (set +x; test -n "`(LANGUAGE=C; export LANGUAGE) 2>&1`") &&
3313        { $as_unset LANGUAGE || test "${LANGUAGE+set}" != set; } ||
3314          { LANGUAGE=C; export LANGUAGE; }
3315    (set +x; test -n "`(LC_COLLATE=C; export LC_COLLATE) 2>&1`") &&
3316        { $as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set; } ||
3317          { LC_COLLATE=C; export LC_COLLATE; }
3318    (set +x; test -n "`(LC_NUMERIC=C; export LC_NUMERIC) 2>&1`") &&
3319        { $as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set; } ||
3320          { LC_NUMERIC=C; export LC_NUMERIC; }
3321    (set +x; test -n "`(LC_MESSAGES=C; export LC_MESSAGES) 2>&1`") &&
3322        { $as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set; } ||
3323          { LC_MESSAGES=C; export LC_MESSAGES; }
3324    
3325    
3326  # Name of the executable.  # Name of the executable.
3327  as_me=`echo "$0" |sed 's,.*[\\/],,'`  as_me=`(basename "$0") 2>/dev/null ||
3328    $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
3329             X"$0" : 'X\(//\)$' \| \
3330             X"$0" : 'X\(/\)$' \| \
3331             .     : '\(.\)' 2>/dev/null ||
3332    echo X/"$0" |
3333        sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
3334              /^X\/\(\/\/\)$/{ s//\1/; q; }
3335              /^X\/\(\/\).*/{ s//\1/; q; }
3336              s/.*/./; q'`
3337    
3338    # PATH needs CR, and LINENO needs CR and PATH.
3339    # Avoid depending upon Character Ranges.
3340    as_cr_letters='abcdefghijklmnopqrstuvwxyz'
3341    as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
3342    as_cr_Letters=$as_cr_letters$as_cr_LETTERS
3343    as_cr_digits='0123456789'
3344    as_cr_alnum=$as_cr_Letters$as_cr_digits
3345    
3346    # The user is always right.
3347    if test "${PATH_SEPARATOR+set}" != set; then
3348      echo "#! /bin/sh" >conftest.sh
3349      echo  "exit 0"   >>conftest.sh
3350      chmod +x conftest.sh
3351      if (PATH=".;."; conftest.sh) >/dev/null 2>&1; then
3352        PATH_SEPARATOR=';'
3353      else
3354        PATH_SEPARATOR=:
3355      fi
3356      rm -f conftest.sh
3357    fi
3358    
3359    
3360      as_lineno_1=$LINENO
3361      as_lineno_2=$LINENO
3362      as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
3363      test "x$as_lineno_1" != "x$as_lineno_2" &&
3364      test "x$as_lineno_3"  = "x$as_lineno_2"  || {
3365      # Find who we are.  Look in the path if we contain no path at all
3366      # relative or not.
3367      case $0 in
3368        *[\\/]* ) as_myself=$0 ;;
3369        *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3370    for as_dir in $PATH
3371    do
3372      IFS=$as_save_IFS
3373      test -z "$as_dir" && as_dir=.
3374      test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
3375    done
3376    
3377           ;;
3378      esac
3379      # We did not find ourselves, most probably we were run as `sh COMMAND'
3380      # in which case we are not to be found in the path.
3381      if test "x$as_myself" = x; then
3382        as_myself=$0
3383      fi
3384      if test ! -f "$as_myself"; then
3385        { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
3386    echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
3387       { (exit 1); exit 1; }; }
3388      fi
3389      case $CONFIG_SHELL in
3390      '')
3391        as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3392    for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
3393    do
3394      IFS=$as_save_IFS
3395      test -z "$as_dir" && as_dir=.
3396      for as_base in sh bash ksh sh5; do
3397             case $as_dir in
3398             /*)
3399               if ("$as_dir/$as_base" -c '
3400      as_lineno_1=$LINENO
3401      as_lineno_2=$LINENO
3402      as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
3403      test "x$as_lineno_1" != "x$as_lineno_2" &&
3404      test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
3405                 CONFIG_SHELL=$as_dir/$as_base
3406                 export CONFIG_SHELL
3407                 exec "$CONFIG_SHELL" "$0" ${1+"$@"}
3408               fi;;
3409             esac
3410           done
3411    done
3412    ;;
3413      esac
3414    
3415      # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
3416      # uniformly replaced by the line number.  The first 'sed' inserts a
3417      # line-number line before each line; the second 'sed' does the real
3418      # work.  The second script uses 'N' to pair each line-number line
3419      # with the numbered line, and appends trailing '-' during
3420      # substitution so that $LINENO is not a special case at line end.
3421      # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
3422      # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
3423      sed '=' <$as_myself |
3424        sed '
3425          N
3426          s,$,-,
3427          : loop
3428          s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
3429          t loop
3430          s,-$,,
3431          s,^['$as_cr_digits']*\n,,
3432        ' >$as_me.lineno &&
3433      chmod +x $as_me.lineno ||
3434        { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
3435    echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
3436       { (exit 1); exit 1; }; }
3437    
3438      # Don't try to exec as it changes $[0], causing all sort of problems
3439      # (the dirname of $[0] is not the place where we might find the
3440      # original and so on.  Autoconf is especially sensible to this).
3441      . ./$as_me.lineno
3442      # Exit status is that of the last command.
3443      exit
3444    }
3445    
3446    
3447    case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
3448      *c*,-n*) ECHO_N= ECHO_C='
3449    ' ECHO_T='      ' ;;
3450      *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
3451      *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
3452    esac
3453    
3454  if expr a : '\(a\)' >/dev/null 2>&1; then  if expr a : '\(a\)' >/dev/null 2>&1; then
3455    as_expr=expr    as_expr=expr
# Line 2594  rm -f conf$$ conf$$.exe conf$$.file Line 3477  rm -f conf$$ conf$$.exe conf$$.file
3477    
3478  as_executable_p="test -f"  as_executable_p="test -f"
3479    
3480  # Support unset when possible.  # Sed expression to map a string onto a valid CPP name.
3481  if (FOO=FOO; unset FOO) >/dev/null 2>&1; then  as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g"
3482    as_unset=unset  
3483  else  # Sed expression to map a string onto a valid variable name.
3484    as_unset=false  as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g"
 fi  
3485    
 # NLS nuisances.  
 $as_unset LANG || test "${LANG+set}" != set || { LANG=C; export LANG; }  
 $as_unset LC_ALL || test "${LC_ALL+set}" != set || { LC_ALL=C; export LC_ALL; }  
 $as_unset LC_TIME || test "${LC_TIME+set}" != set || { LC_TIME=C; export LC_TIME; }  
 $as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set || { LC_CTYPE=C; export LC_CTYPE; }  
 $as_unset LANGUAGE || test "${LANGUAGE+set}" != set || { LANGUAGE=C; export LANGUAGE; }  
 $as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set || { LC_COLLATE=C; export LC_COLLATE; }  
 $as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set || { LC_NUMERIC=C; export LC_NUMERIC; }  
 $as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set || { LC_MESSAGES=C; export LC_MESSAGES; }  
3486    
3487  # IFS  # IFS
3488  # We need space, tab and new line, in precisely that order.  # We need space, tab and new line, in precisely that order.
# Line 2618  as_nl=' Line 3491  as_nl='
3491  IFS="   $as_nl"  IFS="   $as_nl"
3492    
3493  # CDPATH.  # CDPATH.
3494  $as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=:; export CDPATH; }  $as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=$PATH_SEPARATOR; export CDPATH; }
3495    
3496  exec 6>&1  exec 6>&1
3497    
3498    # Open the log real soon, to keep \$[0] and so on meaningful, and to
3499    # report actual input values of CONFIG_FILES etc. instead of their
3500    # values after options handling.  Logging --version etc. is OK.
3501    exec 5>>config.log
3502    {
3503      echo
3504      sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
3505    ## Running $as_me. ##
3506    _ASBOX
3507    } >&5
3508    cat >&5 <<_CSEOF
3509    
3510    This file was extended by $as_me, which was
3511    generated by GNU Autoconf 2.53.  Invocation command line was
3512    
3513      CONFIG_FILES    = $CONFIG_FILES
3514      CONFIG_HEADERS  = $CONFIG_HEADERS
3515      CONFIG_LINKS    = $CONFIG_LINKS
3516      CONFIG_COMMANDS = $CONFIG_COMMANDS
3517      $ $0 $@
3518    
3519    _CSEOF
3520    echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
3521    echo >&5
3522  _ACEOF  _ACEOF
3523    
3524  # Files that config.status was made for.  # Files that config.status was made for.
# Line 2641  if test -n "$ac_config_commands"; then Line 3538  if test -n "$ac_config_commands"; then
3538    echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS    echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
3539  fi  fi
3540    
3541  cat >>$CONFIG_STATUS <<\EOF  cat >>$CONFIG_STATUS <<\_ACEOF
3542    
3543  ac_cs_usage="\  ac_cs_usage="\
3544  \`$as_me' instantiates files from templates according to the  \`$as_me' instantiates files from templates according to the
# Line 2668  Configuration commands: Line 3565  Configuration commands:
3565  $config_commands  $config_commands
3566    
3567  Report bugs to <bug-autoconf@gnu.org>."  Report bugs to <bug-autoconf@gnu.org>."
3568  EOF  _ACEOF
3569    
3570  cat >>$CONFIG_STATUS <<EOF  cat >>$CONFIG_STATUS <<_ACEOF
3571  ac_cs_version="\\  ac_cs_version="\\
3572  config.status  config.status
3573  configured by $0, generated by GNU Autoconf 2.52,  configured by $0, generated by GNU Autoconf 2.53,
3574    with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"    with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
3575    
3576  Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001  Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
# Line 2682  This config.status script is free softwa Line 3579  This config.status script is free softwa
3579  gives unlimited permission to copy, distribute and modify it."  gives unlimited permission to copy, distribute and modify it."
3580  srcdir=$srcdir  srcdir=$srcdir
3581  INSTALL="$INSTALL"  INSTALL="$INSTALL"
3582  EOF  _ACEOF
3583    
3584  cat >>$CONFIG_STATUS <<\EOF  cat >>$CONFIG_STATUS <<\_ACEOF
3585  # If no file are specified by the user, then we need to provide default  # If no file are specified by the user, then we need to provide default
3586  # value.  By we need to know if files were specified by the user.  # value.  By we need to know if files were specified by the user.
3587  ac_need_defaults=:  ac_need_defaults=:
# Line 2706  do Line 3603  do
3603    
3604    case $1 in    case $1 in
3605    # Handling of the options.    # Handling of the options.
3606  EOF  _ACEOF
3607  cat >>$CONFIG_STATUS <<EOF  cat >>$CONFIG_STATUS <<_ACEOF
3608    -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)    -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
3609      echo "running $SHELL $0 " $ac_configure_args " --no-create --no-recursion"      echo "running $SHELL $0 " $ac_configure_args " --no-create --no-recursion"
3610      exec $SHELL $0 $ac_configure_args --no-create --no-recursion ;;      exec $SHELL $0 $ac_configure_args --no-create --no-recursion ;;
3611  EOF  _ACEOF
3612  cat >>$CONFIG_STATUS <<\EOF  cat >>$CONFIG_STATUS <<\_ACEOF
3613    --version | --vers* | -V )    --version | --vers* | -V )
3614      echo "$ac_cs_version"; exit 0 ;;      echo "$ac_cs_version"; exit 0 ;;
3615    --he | --h)    --he | --h)
3616      # Conflict between --help and --header      # Conflict between --help and --header
3617      { { echo "$as_me:2720: error: ambiguous option: $1      { { echo "$as_me:$LINENO: error: ambiguous option: $1
3618  Try \`$0 --help' for more information." >&5  Try \`$0 --help' for more information." >&5
3619  echo "$as_me: error: ambiguous option: $1  echo "$as_me: error: ambiguous option: $1
3620  Try \`$0 --help' for more information." >&2;}  Try \`$0 --help' for more information." >&2;}
# Line 2736  Try \`$0 --help' for more information." Line 3633  Try \`$0 --help' for more information."
3633      ac_need_defaults=false;;      ac_need_defaults=false;;
3634    
3635    # This is an error.    # This is an error.
3636    -*) { { echo "$as_me:2739: error: unrecognized option: $1    -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
3637  Try \`$0 --help' for more information." >&5  Try \`$0 --help' for more information." >&5
3638  echo "$as_me: error: unrecognized option: $1  echo "$as_me: error: unrecognized option: $1
3639  Try \`$0 --help' for more information." >&2;}  Try \`$0 --help' for more information." >&2;}
# Line 2748  Try \`$0 --help' for more information." Line 3645  Try \`$0 --help' for more information."
3645    shift    shift
3646  done  done
3647    
 exec 5>>config.log  
 cat >&5 << _ACEOF  
   
 ## ----------------------- ##  
 ## Running config.status.  ##  
 ## ----------------------- ##  
   
 This file was extended by $as_me 2.52, executed with  
   CONFIG_FILES    = $CONFIG_FILES  
   CONFIG_HEADERS  = $CONFIG_HEADERS  
   CONFIG_LINKS    = $CONFIG_LINKS  
   CONFIG_COMMANDS = $CONFIG_COMMANDS  
   > $ac_cs_invocation  
 on `(hostname || uname -n) 2>/dev/null | sed 1q`  
   
3648  _ACEOF  _ACEOF
 EOF  
3649    
3650  cat >>$CONFIG_STATUS <<EOF  cat >>$CONFIG_STATUS <<_ACEOF
3651  #  #
3652  # INIT-COMMANDS section.  # INIT-COMMANDS section.
3653  #  #
3654    
3655  AMDEP_TRUE="$AMDEP_TRUE"  AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
3656  ac_aux_dir="$ac_aux_dir"  
3657    _ACEOF
3658    
3659    
 EOF  
3660    
3661  cat >>$CONFIG_STATUS <<\EOF  cat >>$CONFIG_STATUS <<\_ACEOF
3662  for ac_config_target in $ac_config_targets  for ac_config_target in $ac_config_targets
3663  do  do
3664    case "$ac_config_target" in    case "$ac_config_target" in
3665    # Handling of arguments.    # Handling of arguments.
3666    "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;    "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
3667    "default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;    "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
3668    "calc.h" ) CONFIG_HEADERS="$CONFIG_HEADERS calc.h" ;;    "calc.h" ) CONFIG_HEADERS="$CONFIG_HEADERS calc.h" ;;
3669    *) { { echo "$as_me:2787: error: invalid argument: $ac_config_target" >&5    *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
3670  echo "$as_me: error: invalid argument: $ac_config_target" >&2;}  echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
3671     { (exit 1); exit 1; }; };;     { (exit 1); exit 1; }; };;
3672    esac    esac
# Line 2822  $debug || Line 3704  $debug ||
3704     { (exit 1); exit 1; }     { (exit 1); exit 1; }
3705  }  }
3706    
3707  EOF  _ACEOF
3708    
3709  cat >>$CONFIG_STATUS <<EOF  cat >>$CONFIG_STATUS <<_ACEOF
3710    
3711  #  #
3712  # CONFIG_FILES section.  # CONFIG_FILES section.
# Line 2837  if test -n "\$CONFIG_FILES"; then Line 3719  if test -n "\$CONFIG_FILES"; then
3719    sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;    sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
3720     s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF     s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
3721  s,@SHELL@,$SHELL,;t t  s,@SHELL@,$SHELL,;t t
3722    s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
3723    s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t
3724    s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
3725    s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
3726    s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t
3727    s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
3728  s,@exec_prefix@,$exec_prefix,;t t  s,@exec_prefix@,$exec_prefix,;t t
3729  s,@prefix@,$prefix,;t t  s,@prefix@,$prefix,;t t
3730  s,@program_transform_name@,$program_transform_name,;t t  s,@program_transform_name@,$program_transform_name,;t t
# Line 2852  s,@includedir@,$includedir,;t t Line 3740  s,@includedir@,$includedir,;t t
3740  s,@oldincludedir@,$oldincludedir,;t t  s,@oldincludedir@,$oldincludedir,;t t
3741  s,@infodir@,$infodir,;t t  s,@infodir@,$infodir,;t t
3742  s,@mandir@,$mandir,;t t  s,@mandir@,$mandir,;t t
 s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t  
 s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t  
 s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t  
 s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t  
 s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t  
3743  s,@build_alias@,$build_alias,;t t  s,@build_alias@,$build_alias,;t t
3744  s,@host_alias@,$host_alias,;t t  s,@host_alias@,$host_alias,;t t
3745  s,@target_alias@,$target_alias,;t t  s,@target_alias@,$target_alias,;t t
3746    s,@DEFS@,$DEFS,;t t
3747  s,@ECHO_C@,$ECHO_C,;t t  s,@ECHO_C@,$ECHO_C,;t t
3748  s,@ECHO_N@,$ECHO_N,;t t  s,@ECHO_N@,$ECHO_N,;t t
3749  s,@ECHO_T@,$ECHO_T,;t t  s,@ECHO_T@,$ECHO_T,;t t
 s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t  
 s,@DEFS@,$DEFS,;t t  
3750  s,@LIBS@,$LIBS,;t t  s,@LIBS@,$LIBS,;t t
3751  s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t  s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
3752  s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t  s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
3753  s,@INSTALL_DATA@,$INSTALL_DATA,;t t  s,@INSTALL_DATA@,$INSTALL_DATA,;t t
3754  s,@PACKAGE@,$PACKAGE,;t t  s,@PACKAGE@,$PACKAGE,;t t
3755  s,@VERSION@,$VERSION,;t t  s,@VERSION@,$VERSION,;t t
 s,@EXEEXT@,$EXEEXT,;t t  
 s,@OBJEXT@,$OBJEXT,;t t  
3756  s,@ACLOCAL@,$ACLOCAL,;t t  s,@ACLOCAL@,$ACLOCAL,;t t
3757  s,@AUTOCONF@,$AUTOCONF,;t t  s,@AUTOCONF@,$AUTOCONF,;t t
3758  s,@AUTOMAKE@,$AUTOMAKE,;t t  s,@AUTOMAKE@,$AUTOMAKE,;t t
# Line 2880  s,@AUTOHEADER@,$AUTOHEADER,;t t Line 3760  s,@AUTOHEADER@,$AUTOHEADER,;t t
3760  s,@MAKEINFO@,$MAKEINFO,;t t  s,@MAKEINFO@,$MAKEINFO,;t t
3761  s,@AMTAR@,$AMTAR,;t t  s,@AMTAR@,$AMTAR,;t t
3762  s,@install_sh@,$install_sh,;t t  s,@install_sh@,$install_sh,;t t
3763    s,@STRIP@,$STRIP,;t t
3764    s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t
3765  s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t  s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t
3766  s,@AWK@,$AWK,;t t  s,@AWK@,$AWK,;t t
3767  s,@SET_MAKE@,$SET_MAKE,;t t  s,@SET_MAKE@,$SET_MAKE,;t t
 s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t  
 s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t  
 s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t  
 s,@DEPDIR@,$DEPDIR,;t t  
3768  s,@CC@,$CC,;t t  s,@CC@,$CC,;t t
3769  s,@CFLAGS@,$CFLAGS,;t t  s,@CFLAGS@,$CFLAGS,;t t
3770  s,@LDFLAGS@,$LDFLAGS,;t t  s,@LDFLAGS@,$LDFLAGS,;t t
3771  s,@CPPFLAGS@,$CPPFLAGS,;t t  s,@CPPFLAGS@,$CPPFLAGS,;t t
3772  s,@ac_ct_CC@,$ac_ct_CC,;t t  s,@ac_ct_CC@,$ac_ct_CC,;t t
3773    s,@EXEEXT@,$EXEEXT,;t t
3774    s,@OBJEXT@,$OBJEXT,;t t
3775    s,@DEPDIR@,$DEPDIR,;t t
3776  s,@am__include@,$am__include,;t t  s,@am__include@,$am__include,;t t
3777  s,@am__quote@,$am__quote,;t t  s,@am__quote@,$am__quote,;t t
3778    s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t
3779    s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t
3780    s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t
3781  s,@CCDEPMODE@,$CCDEPMODE,;t t  s,@CCDEPMODE@,$CCDEPMODE,;t t
3782  s,@CPP@,$CPP,;t t  s,@CPP@,$CPP,;t t
3783  s,@MAINTAINER_MODE_TRUE@,$MAINTAINER_MODE_TRUE,;t t  s,@MAINTAINER_MODE_TRUE@,$MAINTAINER_MODE_TRUE,;t t
# Line 2901  s,@MAINTAINER_MODE_FALSE@,$MAINTAINER_MO Line 3785  s,@MAINTAINER_MODE_FALSE@,$MAINTAINER_MO
3785  s,@MAINT@,$MAINT,;t t  s,@MAINT@,$MAINT,;t t
3786  CEOF  CEOF
3787    
3788  EOF  _ACEOF
3789    
3790    cat >>$CONFIG_STATUS <<\EOF    cat >>$CONFIG_STATUS <<\_ACEOF
3791    # Split the substitutions into bite-sized pieces for seds with    # Split the substitutions into bite-sized pieces for seds with
3792    # small command number limits, like on Digital OSF/1 and HP-UX.    # small command number limits, like on Digital OSF/1 and HP-UX.
3793    ac_max_sed_lines=48    ac_max_sed_lines=48
# Line 2942  EOF Line 3826  EOF
3826    fi    fi
3827  fi # test -n "$CONFIG_FILES"  fi # test -n "$CONFIG_FILES"
3828    
3829  EOF  _ACEOF
3830  cat >>$CONFIG_STATUS <<\EOF  cat >>$CONFIG_STATUS <<\_ACEOF
3831  for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue  for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
3832    # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".    # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
3833    case $ac_file in    case $ac_file in
# Line 2957  for ac_file in : $CONFIG_FILES; do test Line 3841  for ac_file in : $CONFIG_FILES; do test
3841    esac    esac
3842    
3843    # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.    # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
3844    ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \    ac_dir=`(dirname "$ac_file") 2>/dev/null ||
3845    $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
3846           X"$ac_file" : 'X\(//\)[^/]' \| \           X"$ac_file" : 'X\(//\)[^/]' \| \
3847           X"$ac_file" : 'X\(//\)$' \| \           X"$ac_file" : 'X\(//\)$' \| \
3848           X"$ac_file" : 'X\(/\)' \| \           X"$ac_file" : 'X\(/\)' \| \
# Line 2968  echo X"$ac_file" | Line 3853  echo X"$ac_file" |
3853            /^X\(\/\/\)$/{ s//\1/; q; }            /^X\(\/\/\)$/{ s//\1/; q; }
3854            /^X\(\/\).*/{ s//\1/; q; }            /^X\(\/\).*/{ s//\1/; q; }
3855            s/.*/./; q'`            s/.*/./; q'`
3856    if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then    { case "$ac_dir" in
     { case "$ac_dir" in  
3857    [\\/]* | ?:[\\/]* ) as_incr_dir=;;    [\\/]* | ?:[\\/]* ) as_incr_dir=;;
3858    *)                      as_incr_dir=.;;    *)                      as_incr_dir=.;;
3859  esac  esac
# Line 2980  for as_mkdir_dir in `IFS='/\\'; set X $a Line 3864  for as_mkdir_dir in `IFS='/\\'; set X $a
3864      ?:) as_incr_dir=$as_mkdir_dir ;;      ?:) as_incr_dir=$as_mkdir_dir ;;
3865      *)      *)
3866        as_incr_dir=$as_incr_dir/$as_mkdir_dir        as_incr_dir=$as_incr_dir/$as_mkdir_dir
3867        test -d "$as_incr_dir" || mkdir "$as_incr_dir"        test -d "$as_incr_dir" ||
3868            mkdir "$as_incr_dir" ||
3869            { { echo "$as_me:$LINENO: error: cannot create \"$ac_dir\"" >&5
3870    echo "$as_me: error: cannot create \"$ac_dir\"" >&2;}
3871       { (exit 1); exit 1; }; }
3872      ;;      ;;
3873    esac    esac
3874  done; }  done; }
3875    
3876      ac_dir_suffix="/`echo $ac_dir|sed 's,^\./,,'`"    ac_builddir=.
     # A "../" for each directory in $ac_dir_suffix.  
     ac_dots=`echo "$ac_dir_suffix" | sed 's,/[^/]*,../,g'`  
   else  
     ac_dir_suffix= ac_dots=  
   fi  
3877    
3878    case $srcdir in  if test "$ac_dir" != .; then
3879    .)  ac_srcdir=.    ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
3880        if test -z "$ac_dots"; then    # A "../" for each directory in $ac_dir_suffix.
3881           ac_top_srcdir=.    ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
3882        else  else
3883           ac_top_srcdir=`echo $ac_dots | sed 's,/$,,'`    ac_dir_suffix= ac_top_builddir=
3884        fi ;;  fi
3885    [\\/]* | ?:[\\/]* )  
3886        ac_srcdir=$srcdir$ac_dir_suffix;  case $srcdir in
3887        ac_top_srcdir=$srcdir ;;    .)  # No --srcdir option.  We are building in place.
3888        ac_srcdir=.
3889        if test -z "$ac_top_builddir"; then
3890           ac_top_srcdir=.
3891        else
3892           ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
3893        fi ;;
3894      [\\/]* | ?:[\\/]* )  # Absolute path.
3895        ac_srcdir=$srcdir$ac_dir_suffix;
3896        ac_top_srcdir=$srcdir ;;
3897    *) # Relative path.    *) # Relative path.
3898      ac_srcdir=$ac_dots$srcdir$ac_dir_suffix      ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
3899      ac_top_srcdir=$ac_dots$srcdir ;;      ac_top_srcdir=$ac_top_builddir$srcdir ;;
3900    esac  esac
3901    # Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
3902    # absolute.
3903    ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
3904    ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
3905    ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
3906    ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
3907    
3908    
3909    case $INSTALL in    case $INSTALL in
3910    [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;    [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
3911    *) ac_INSTALL=$ac_dots$INSTALL ;;    *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
3912    esac    esac
3913    
3914    if test x"$ac_file" != x-; then    if test x"$ac_file" != x-; then
3915      { echo "$as_me:3016: creating $ac_file" >&5      { echo "$as_me:$LINENO: creating $ac_file" >&5
3916  echo "$as_me: creating $ac_file" >&6;}  echo "$as_me: creating $ac_file" >&6;}
3917      rm -f "$ac_file"      rm -f "$ac_file"
3918    fi    fi
3919    # Let's still pretend it is `configure' which instantiates (i.e., don't    # Let's still pretend it is `configure' which instantiates (i.e., don't
3920    # use $as_me), people would be surprised to read:    # use $as_me), people would be surprised to read:
3921    #    /* config.h.  Generated automatically by config.status.  */    #    /* config.h.  Generated by config.status.  */
3922    configure_input="Generated automatically from `echo $ac_file_in |    if test x"$ac_file" = x-; then
3923                                                   sed 's,.*/,,'` by configure."      configure_input=
3924      else
3925        configure_input="$ac_file.  "
3926      fi
3927      configure_input=$configure_input"Generated from `echo $ac_file_in |
3928                                         sed 's,.*/,,'` by configure."
3929    
3930    # First look for the input files in the build tree, otherwise in the    # First look for the input files in the build tree, otherwise in the
3931    # src tree.    # src tree.
# Line 3031  echo "$as_me: creating $ac_file" >&6;} Line 3935  echo "$as_me: creating $ac_file" >&6;}
3935        -) echo $tmp/stdin ;;        -) echo $tmp/stdin ;;
3936        [\\/$]*)        [\\/$]*)
3937           # Absolute (can't be DOS-style, as IFS=:)           # Absolute (can't be DOS-style, as IFS=:)
3938           test -f "$f" || { { echo "$as_me:3034: error: cannot find input file: $f" >&5           test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
3939  echo "$as_me: error: cannot find input file: $f" >&2;}  echo "$as_me: error: cannot find input file: $f" >&2;}
3940     { (exit 1); exit 1; }; }     { (exit 1); exit 1; }; }
3941           echo $f;;           echo $f;;
# Line 3044  echo "$as_me: error: cannot find input f Line 3948  echo "$as_me: error: cannot find input f
3948             echo $srcdir/$f             echo $srcdir/$f
3949           else           else
3950             # /dev/null tree             # /dev/null tree
3951             { { echo "$as_me:3047: error: cannot find input file: $f" >&5             { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
3952  echo "$as_me: error: cannot find input file: $f" >&2;}  echo "$as_me: error: cannot find input file: $f" >&2;}
3953     { (exit 1); exit 1; }; }     { (exit 1); exit 1; }; }
3954           fi;;           fi;;
3955        esac        esac
3956      done` || { (exit 1); exit 1; }      done` || { (exit 1); exit 1; }
3957  EOF  _ACEOF
3958  cat >>$CONFIG_STATUS <<EOF  cat >>$CONFIG_STATUS <<_ACEOF
3959    sed "$ac_vpsub    sed "$ac_vpsub
3960  $extrasub  $extrasub
3961  EOF  _ACEOF
3962  cat >>$CONFIG_STATUS <<\EOF  cat >>$CONFIG_STATUS <<\_ACEOF
3963  :t  :t
3964  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
3965  s,@configure_input@,$configure_input,;t t  s,@configure_input@,$configure_input,;t t
3966  s,@srcdir@,$ac_srcdir,;t t  s,@srcdir@,$ac_srcdir,;t t
3967    s,@abs_srcdir@,$ac_abs_srcdir,;t t
3968  s,@top_srcdir@,$ac_top_srcdir,;t t  s,@top_srcdir@,$ac_top_srcdir,;t t
3969    s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t
3970    s,@builddir@,$ac_builddir,;t t
3971    s,@abs_builddir@,$ac_abs_builddir,;t t
3972    s,@top_builddir@,$ac_top_builddir,;t t
3973    s,@abs_top_builddir@,$ac_abs_top_builddir,;t t
3974  s,@INSTALL@,$ac_INSTALL,;t t  s,@INSTALL@,$ac_INSTALL,;t t
3975  " $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out  " $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
3976    rm -f $tmp/stdin    rm -f $tmp/stdin
# Line 3072  s,@INSTALL@,$ac_INSTALL,;t t Line 3982  s,@INSTALL@,$ac_INSTALL,;t t
3982    fi    fi
3983    
3984  done  done
3985  EOF  _ACEOF
3986  cat >>$CONFIG_STATUS <<\EOF  cat >>$CONFIG_STATUS <<\_ACEOF
3987    
3988  #  #
3989  # CONFIG_HEADER section.  # CONFIG_HEADER section.
# Line 3105  for ac_file in : $CONFIG_HEADERS; do tes Line 4015  for ac_file in : $CONFIG_HEADERS; do tes
4015    * )   ac_file_in=$ac_file.in ;;    * )   ac_file_in=$ac_file.in ;;
4016    esac    esac
4017    
4018    test x"$ac_file" != x- && { echo "$as_me:3108: creating $ac_file" >&5    test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
4019  echo "$as_me: creating $ac_file" >&6;}  echo "$as_me: creating $ac_file" >&6;}
4020    
4021    # First look for the input files in the build tree, otherwise in the    # First look for the input files in the build tree, otherwise in the
# Line 3116  echo "$as_me: creating $ac_file" >&6;} Line 4026  echo "$as_me: creating $ac_file" >&6;}
4026        -) echo $tmp/stdin ;;        -) echo $tmp/stdin ;;
4027        [\\/$]*)        [\\/$]*)
4028           # Absolute (can't be DOS-style, as IFS=:)           # Absolute (can't be DOS-style, as IFS=:)
4029           test -f "$f" || { { echo "$as_me:3119: error: cannot find input file: $f" >&5           test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
4030  echo "$as_me: error: cannot find input file: $f" >&2;}  echo "$as_me: error: cannot find input file: $f" >&2;}
4031     { (exit 1); exit 1; }; }     { (exit 1); exit 1; }; }
4032           echo $f;;           echo $f;;
# Line 3129  echo "$as_me: error: cannot find input f Line 4039  echo "$as_me: error: cannot find input f
4039             echo $srcdir/$f             echo $srcdir/$f
4040           else           else
4041             # /dev/null tree             # /dev/null tree
4042             { { echo "$as_me:3132: error: cannot find input file: $f" >&5             { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
4043  echo "$as_me: error: cannot find input file: $f" >&2;}  echo "$as_me: error: cannot find input file: $f" >&2;}
4044     { (exit 1); exit 1; }; }     { (exit 1); exit 1; }; }
4045           fi;;           fi;;
# Line 3138  echo "$as_me: error: cannot find input f Line 4048  echo "$as_me: error: cannot find input f
4048    # Remove the trailing spaces.    # Remove the trailing spaces.
4049    sed 's/[      ]*$//' $ac_file_inputs >$tmp/in    sed 's/[      ]*$//' $ac_file_inputs >$tmp/in
4050    
4051  EOF  _ACEOF
4052    
4053  # Transform confdefs.h into two sed scripts, `conftest.defines' and  # Transform confdefs.h into two sed scripts, `conftest.defines' and
4054  # `conftest.undefs', that substitutes the proper values into  # `conftest.undefs', that substitutes the proper values into
# Line 3154  rm -f conftest.defines conftest.undefs Line 4064  rm -f conftest.defines conftest.undefs
4064  # `end' is used to avoid that the second main sed command (meant for  # `end' is used to avoid that the second main sed command (meant for
4065  # 0-ary CPP macros) applies to n-ary macro definitions.  # 0-ary CPP macros) applies to n-ary macro definitions.
4066  # See the Autoconf documentation for `clear'.  # See the Autoconf documentation for `clear'.
4067  cat >confdef2sed.sed <<\EOF  cat >confdef2sed.sed <<\_ACEOF
4068  s/[\\&,]/\\&/g  s/[\\&,]/\\&/g
4069  s,[\\$`],\\&,g  s,[\\$`],\\&,g
4070  t clear  t clear
4071  : clear  : clear
4072  s,^[    ]*#[    ]*define[       ][      ]*\(\([^        (][^    (]*\)([^)]*)\)[         ]*\(.*\)$,${ac_dA}\2${ac_dB}\1${ac_dC}\3${ac_dD},gp  s,^[    ]*#[    ]*define[       ][      ]*\([^  (][^    (]*\)\(([^)]*)\)[       ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp
4073  t end  t end
4074  s,^[    ]*#[    ]*define[       ][      ]*\([^  ][^     ]*\)[   ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp  s,^[    ]*#[    ]*define[       ][      ]*\([^  ][^     ]*\)[   ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
4075  : end  : end
4076  EOF  _ACEOF
4077  # If some macros were called several times there might be several times  # If some macros were called several times there might be several times
4078  # the same #defines, which is useless.  Nevertheless, we may not want to  # the same #defines, which is useless.  Nevertheless, we may not want to
4079  # sort them, since we want the *last* AC-DEFINE to be honored.  # sort them, since we want the *last* AC-DEFINE to be honored.
# Line 3174  rm -f confdef2sed.sed Line 4084  rm -f confdef2sed.sed
4084  # This sed command replaces #undef with comments.  This is necessary, for  # This sed command replaces #undef with comments.  This is necessary, for
4085  # example, in the case of _POSIX_SOURCE, which is predefined and required  # example, in the case of _POSIX_SOURCE, which is predefined and required
4086  # on some systems where configure will not decide to define it.  # on some systems where configure will not decide to define it.
4087  cat >>conftest.undefs <<\EOF  cat >>conftest.undefs <<\_ACEOF
4088  s,^[    ]*#[    ]*undef[        ][      ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,  s,^[    ]*#[    ]*undef[        ][      ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
4089  EOF  _ACEOF
4090    
4091  # Break up conftest.defines because some shells have a limit on the size  # Break up conftest.defines because some shells have a limit on the size
4092  # of here documents, and old seds have small limits too (100 cmds).  # of here documents, and old seds have small limits too (100 cmds).
# Line 3233  do Line 4143  do
4143  done  done
4144  rm -f conftest.undefs  rm -f conftest.undefs
4145    
4146  cat >>$CONFIG_STATUS <<\EOF  cat >>$CONFIG_STATUS <<\_ACEOF
4147    # Let's still pretend it is `configure' which instantiates (i.e., don't    # Let's still pretend it is `configure' which instantiates (i.e., don't
4148    # use $as_me), people would be surprised to read:    # use $as_me), people would be surprised to read:
4149    #    /* config.h.  Generated automatically by config.status.  */    #    /* config.h.  Generated by config.status.  */
4150    if test x"$ac_file" = x-; then    if test x"$ac_file" = x-; then
4151      echo "/* Generated automatically by configure.  */" >$tmp/config.h      echo "/* Generated by configure.  */" >$tmp/config.h
4152    else    else
4153      echo "/* $ac_file.  Generated automatically by configure.  */" >$tmp/config.h      echo "/* $ac_file.  Generated by configure.  */" >$tmp/config.h
4154    fi    fi
4155    cat $tmp/in >>$tmp/config.h    cat $tmp/in >>$tmp/config.h
4156    rm -f $tmp/in    rm -f $tmp/in
4157    if test x"$ac_file" != x-; then    if test x"$ac_file" != x-; then
4158      if cmp -s $ac_file $tmp/config.h 2>/dev/null; then      if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
4159        { echo "$as_me:3249: $ac_file is unchanged" >&5        { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
4160  echo "$as_me: $ac_file is unchanged" >&6;}  echo "$as_me: $ac_file is unchanged" >&6;}
4161      else      else
4162        ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \        ac_dir=`(dirname "$ac_file") 2>/dev/null ||
4163    $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
4164           X"$ac_file" : 'X\(//\)[^/]' \| \           X"$ac_file" : 'X\(//\)[^/]' \| \
4165           X"$ac_file" : 'X\(//\)$' \| \           X"$ac_file" : 'X\(//\)$' \| \
4166           X"$ac_file" : 'X\(/\)' \| \           X"$ac_file" : 'X\(/\)' \| \
# Line 3260  echo X"$ac_file" | Line 4171  echo X"$ac_file" |
4171            /^X\(\/\/\)$/{ s//\1/; q; }            /^X\(\/\/\)$/{ s//\1/; q; }
4172            /^X\(\/\).*/{ s//\1/; q; }            /^X\(\/\).*/{ s//\1/; q; }
4173            s/.*/./; q'`            s/.*/./; q'`
4174        if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then        { case "$ac_dir" in
         { case "$ac_dir" in  
4175    [\\/]* | ?:[\\/]* ) as_incr_dir=;;    [\\/]* | ?:[\\/]* ) as_incr_dir=;;
4176    *)                      as_incr_dir=.;;    *)                      as_incr_dir=.;;
4177  esac  esac
# Line 3272  for as_mkdir_dir in `IFS='/\\'; set X $a Line 4182  for as_mkdir_dir in `IFS='/\\'; set X $a
4182      ?:) as_incr_dir=$as_mkdir_dir ;;      ?:) as_incr_dir=$as_mkdir_dir ;;
4183      *)      *)
4184        as_incr_dir=$as_incr_dir/$as_mkdir_dir        as_incr_dir=$as_incr_dir/$as_mkdir_dir
4185        test -d "$as_incr_dir" || mkdir "$as_incr_dir"        test -d "$as_incr_dir" ||
4186            mkdir "$as_incr_dir" ||
4187            { { echo "$as_me:$LINENO: error: cannot create \"$ac_dir\"" >&5
4188    echo "$as_me: error: cannot create \"$ac_dir\"" >&2;}
4189       { (exit 1); exit 1; }; }
4190      ;;      ;;
4191    esac    esac
4192  done; }  done; }
4193    
       fi  
4194        rm -f $ac_file        rm -f $ac_file
4195        mv $tmp/config.h $ac_file        mv $tmp/config.h $ac_file
4196      fi      fi
# Line 3288  done; } Line 4201  done; }
4201    # Run the commands associated with the file.    # Run the commands associated with the file.
4202    case $ac_file in    case $ac_file in
4203      calc.h ) # update the timestamp      calc.h ) # update the timestamp
4204  echo timestamp >"./stamp-h1"  echo 'timestamp for calc.h' >"./stamp-h1"
4205   ;;   ;;
4206    esac    esac
4207  done  done
4208  EOF  _ACEOF
4209  cat >>$CONFIG_STATUS <<\EOF  cat >>$CONFIG_STATUS <<\_ACEOF
4210    
4211  #  #
4212  # CONFIG_COMMANDS section.  # CONFIG_COMMANDS section.
# Line 3301  cat >>$CONFIG_STATUS <<\EOF Line 4214  cat >>$CONFIG_STATUS <<\EOF
4214  for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue  for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
4215    ac_dest=`echo "$ac_file" | sed 's,:.*,,'`    ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
4216    ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`    ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
4217      ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
4218    $as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
4219             X"$ac_dest" : 'X\(//\)[^/]' \| \
4220             X"$ac_dest" : 'X\(//\)$' \| \
4221             X"$ac_dest" : 'X\(/\)' \| \
4222             .     : '\(.\)' 2>/dev/null ||
4223    echo X"$ac_dest" |
4224        sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
4225              /^X\(\/\/\)[^/].*/{ s//\1/; q; }
4226              /^X\(\/\/\)$/{ s//\1/; q; }
4227              /^X\(\/\).*/{ s//\1/; q; }
4228              s/.*/./; q'`
4229      ac_builddir=.
4230    
4231    if test "$ac_dir" != .; then
4232      ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
4233      # A "../" for each directory in $ac_dir_suffix.
4234      ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
4235    else
4236      ac_dir_suffix= ac_top_builddir=
4237    fi
4238    
4239    case $srcdir in
4240      .)  # No --srcdir option.  We are building in place.
4241        ac_srcdir=.
4242        if test -z "$ac_top_builddir"; then
4243           ac_top_srcdir=.
4244        else
4245           ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
4246        fi ;;
4247      [\\/]* | ?:[\\/]* )  # Absolute path.
4248        ac_srcdir=$srcdir$ac_dir_suffix;
4249        ac_top_srcdir=$srcdir ;;
4250      *) # Relative path.
4251        ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
4252        ac_top_srcdir=$ac_top_builddir$srcdir ;;
4253    esac
4254    # Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
4255    # absolute.
4256    ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
4257    ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
4258    ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
4259    ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
4260    
4261    
4262      { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
4263    echo "$as_me: executing $ac_dest commands" >&6;}
4264    case $ac_dest in    case $ac_dest in
4265      default-1 )      depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
4266  test x"$AMDEP_TRUE" != x"" ||    # Strip MF so we end up with the name of the file.
4267  for mf in $CONFIG_FILES; do    mf=`echo "$mf" | sed -e 's/:.*$//'`
4268    case "$mf" in    if (sed 1q $mf | fgrep 'generated by automake') > /dev/null 2>&1; then
4269    Makefile) dirpart=.;;      dirpart=`(dirname "$mf") 2>/dev/null ||
4270    */Makefile) dirpart=`echo "$mf" | sed -e 's|/[^/]*$||'`;;  $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
4271    *) continue;;           X"$mf" : 'X\(//\)[^/]' \| \
4272    esac           X"$mf" : 'X\(//\)$' \| \
4273             X"$mf" : 'X\(/\)' \| \
4274             .     : '\(.\)' 2>/dev/null ||
4275    echo X"$mf" |
4276        sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
4277              /^X\(\/\/\)[^/].*/{ s//\1/; q; }
4278              /^X\(\/\/\)$/{ s//\1/; q; }
4279              /^X\(\/\).*/{ s//\1/; q; }
4280              s/.*/./; q'`
4281      else
4282        continue
4283      fi
4284    grep '^DEP_FILES *= *[^ #]' < "$mf" > /dev/null || continue    grep '^DEP_FILES *= *[^ #]' < "$mf" > /dev/null || continue
4285    # Extract the definition of DEP_FILES from the Makefile without    # Extract the definition of DEP_FILES from the Makefile without
4286    # running `make'.    # running `make'.
# Line 3335  for mf in $CONFIG_FILES; do Line 4305  for mf in $CONFIG_FILES; do
4305         sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do         sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
4306      # Make sure the directory exists.      # Make sure the directory exists.
4307      test -f "$dirpart/$file" && continue      test -f "$dirpart/$file" && continue
4308      fdir=`echo "$file" | sed -e 's|/[^/]*$||'`      fdir=`(dirname "$file") 2>/dev/null ||
4309      $ac_aux_dir/mkinstalldirs "$dirpart/$fdir" > /dev/null 2>&1  $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
4310             X"$file" : 'X\(//\)[^/]' \| \
4311             X"$file" : 'X\(//\)$' \| \
4312             X"$file" : 'X\(/\)' \| \
4313             .     : '\(.\)' 2>/dev/null ||
4314    echo X"$file" |
4315        sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
4316              /^X\(\/\/\)[^/].*/{ s//\1/; q; }
4317              /^X\(\/\/\)$/{ s//\1/; q; }
4318              /^X\(\/\).*/{ s//\1/; q; }
4319              s/.*/./; q'`
4320        { case $dirpart/$fdir in
4321      [\\/]* | ?:[\\/]* ) as_incr_dir=;;
4322      *)                      as_incr_dir=.;;
4323    esac
4324    as_dummy=$dirpart/$fdir
4325    for as_mkdir_dir in `IFS='/\\'; set X $as_dummy; shift; echo "$@"`; do
4326      case $as_mkdir_dir in
4327        # Skip DOS drivespec
4328        ?:) as_incr_dir=$as_mkdir_dir ;;
4329        *)
4330          as_incr_dir=$as_incr_dir/$as_mkdir_dir
4331          test -d "$as_incr_dir" ||
4332            mkdir "$as_incr_dir" ||
4333            { { echo "$as_me:$LINENO: error: cannot create $dirpart/$fdir" >&5
4334    echo "$as_me: error: cannot create $dirpart/$fdir" >&2;}
4335       { (exit 1); exit 1; }; }
4336        ;;
4337      esac
4338    done; }
4339    
4340      # echo "creating $dirpart/$file"      # echo "creating $dirpart/$file"
4341      echo '# dummy' > "$dirpart/$file"      echo '# dummy' > "$dirpart/$file"
4342    done    done
# Line 3344  done Line 4344  done
4344   ;;   ;;
4345    esac    esac
4346  done  done
4347  EOF  _ACEOF
4348    
4349  cat >>$CONFIG_STATUS <<\EOF  cat >>$CONFIG_STATUS <<\_ACEOF
4350    
4351  { (exit 0); exit 0; }  { (exit 0); exit 0; }
4352  EOF  _ACEOF
4353  chmod +x $CONFIG_STATUS  chmod +x $CONFIG_STATUS
4354  ac_clean_files=$ac_clean_files_save  ac_clean_files=$ac_clean_files_save
4355    
4356    
4357  # configure is writing to config.log, and then calls config.status.  # configure is writing to config.log, and then calls config.status.
4358  # config.status does its own redirection, appending to config.log.  # config.status does its own redirection, appending to config.log.
4359  # Unfortunately, on DOS this fails, as config.log is still kept open  # Unfortunately, on DOS this fails, as config.log is still kept open

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26