Changeset 4ad3480


Ignore:
Timestamp:
Jan 8, 2007, 5:03:05 PM (17 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
master, barnowl_perlaim, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
15bd5ef
Parents:
723f464
git-author:
Nelson Elhage <nelhage@mit.edu> (01/08/07 17:02:51)
git-committer:
Nelson Elhage <nelhage@mit.edu> (01/08/07 17:03:05)
Message:
Adding the configure check we talked about on d-o-h to look for
${XSUBPPDIR}/typemap and use it if it exists.
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Makefile.in

    r5f576e3 r4ad3480  
    1313CFLAGS=@CFLAGS@ -I. -I./libfaim -DDATADIR=\"${datadir}\"
    1414LDFLAGS=@LDFLAGS@
    15 XSUBPPDIR=@XSUBPPDIR@
     15XSUBPPFLAGS=@XSUBPPFLAGS@
    1616INSTALL=@INSTALL@
    1717INSTALL_PROGRAM=@INSTALL_PROGRAM@
  • configure

    rbbd2fdc r4ad3480  
    11#! /bin/sh
    22# Guess values for system-dependent variables and create Makefiles.
    3 # Generated by GNU Autoconf 2.59.
     3# Generated by GNU Autoconf 2.60.
    44#
    5 # Copyright (C) 2003 Free Software Foundation, Inc.
     5# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
     6# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
    67# This configure script is free software; the Free Software Foundation
    78# gives unlimited permission to copy, distribute and modify it.
     
    1718  # is contrary to our usage.  Disable this feature.
    1819  alias -g '${1+"$@"}'='"$@"'
    19 elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
    20   set -o posix
    21 fi
     20  setopt NO_GLOB_SUBST
     21else
     22  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
     23fi
     24BIN_SH=xpg4; export BIN_SH # for Tru64
    2225DUALCASE=1; export DUALCASE # for MKS sh
    2326
    24 # Support unset when possible.
    25 if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
    26   as_unset=unset
    27 else
    28   as_unset=false
    29 fi
    30 
    31 
    32 # Work around bugs in pre-3.0 UWIN ksh.
    33 $as_unset ENV MAIL MAILPATH
    34 PS1='$ '
    35 PS2='> '
    36 PS4='+ '
    37 
    38 # NLS nuisances.
    39 for as_var in \
    40   LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
    41   LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
    42   LC_TELEPHONE LC_TIME
    43 do
    44   if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
    45     eval $as_var=C; export $as_var
    46   else
    47     $as_unset $as_var
    48   fi
    49 done
    50 
    51 # Required to use basename.
    52 if expr a : '\(a\)' >/dev/null 2>&1; then
    53   as_expr=expr
    54 else
    55   as_expr=false
    56 fi
    57 
    58 if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
    59   as_basename=basename
    60 else
    61   as_basename=false
    62 fi
    63 
    64 
    65 # Name of the executable.
    66 as_me=`$as_basename "$0" ||
    67 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
    68          X"$0" : 'X\(//\)$' \| \
    69          X"$0" : 'X\(/\)$' \| \
    70          .     : '\(.\)' 2>/dev/null ||
    71 echo X/"$0" |
    72     sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
    73           /^X\/\(\/\/\)$/{ s//\1/; q; }
    74           /^X\/\(\/\).*/{ s//\1/; q; }
    75           s/.*/./; q'`
    76 
    77 
    78 # PATH needs CR, and LINENO needs CR and PATH.
     27
     28# PATH needs CR
    7929# Avoid depending upon Character Ranges.
    8030as_cr_letters='abcdefghijklmnopqrstuvwxyz'
     
    9747fi
    9848
    99 
    100   as_lineno_1=$LINENO
    101   as_lineno_2=$LINENO
    102   as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
    103   test "x$as_lineno_1" != "x$as_lineno_2" &&
    104   test "x$as_lineno_3"  = "x$as_lineno_2"  || {
    105   # Find who we are.  Look in the path if we contain no path at all
    106   # relative or not.
    107   case $0 in
    108     *[\\/]* ) as_myself=$0 ;;
    109     *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
     49# Support unset when possible.
     50if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
     51  as_unset=unset
     52else
     53  as_unset=false
     54fi
     55
     56
     57# IFS
     58# We need space, tab and new line, in precisely that order.  Quoting is
     59# there to prevent editors from complaining about space-tab.
     60# (If _AS_PATH_WALK were called with IFS unset, it would disable word
     61# splitting by setting IFS to empty value.)
     62as_nl='
     63'
     64IFS=" ""        $as_nl"
     65
     66# Find who we are.  Look in the path if we contain no directory separator.
     67case $0 in
     68  *[\\/]* ) as_myself=$0 ;;
     69  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
    11070for as_dir in $PATH
    11171do
     
    11474  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
    11575done
    116 
    117        ;;
    118   esac
    119   # We did not find ourselves, most probably we were run as `sh COMMAND'
    120   # in which case we are not to be found in the path.
    121   if test "x$as_myself" = x; then
    122     as_myself=$0
     76IFS=$as_save_IFS
     77
     78     ;;
     79esac
     80# We did not find ourselves, most probably we were run as `sh COMMAND'
     81# in which case we are not to be found in the path.
     82if test "x$as_myself" = x; then
     83  as_myself=$0
     84fi
     85if test ! -f "$as_myself"; then
     86  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
     87  { (exit 1); exit 1; }
     88fi
     89
     90# Work around bugs in pre-3.0 UWIN ksh.
     91for as_var in ENV MAIL MAILPATH
     92do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
     93done
     94PS1='$ '
     95PS2='> '
     96PS4='+ '
     97
     98# NLS nuisances.
     99for as_var in \
     100  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
     101  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
     102  LC_TELEPHONE LC_TIME
     103do
     104  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
     105    eval $as_var=C; export $as_var
     106  else
     107    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
    123108  fi
    124   if test ! -f "$as_myself"; then
    125     { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
    126    { (exit 1); exit 1; }; }
    127   fi
    128   case $CONFIG_SHELL in
    129   '')
     109done
     110
     111# Required to use basename.
     112if expr a : '\(a\)' >/dev/null 2>&1 &&
     113   test "X`expr 00001 : '.*\(...\)'`" = X001; then
     114  as_expr=expr
     115else
     116  as_expr=false
     117fi
     118
     119if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
     120  as_basename=basename
     121else
     122  as_basename=false
     123fi
     124
     125
     126# Name of the executable.
     127as_me=`$as_basename -- "$0" ||
     128$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
     129         X"$0" : 'X\(//\)$' \| \
     130         X"$0" : 'X\(/\)' \| . 2>/dev/null ||
     131echo X/"$0" |
     132    sed '/^.*\/\([^/][^/]*\)\/*$/{
     133            s//\1/
     134            q
     135          }
     136          /^X\/\(\/\/\)$/{
     137            s//\1/
     138            q
     139          }
     140          /^X\/\(\/\).*/{
     141            s//\1/
     142            q
     143          }
     144          s/.*/./; q'`
     145
     146# CDPATH.
     147$as_unset CDPATH
     148
     149
     150if test "x$CONFIG_SHELL" = x; then
     151  if (eval ":") 2>/dev/null; then
     152  as_have_required=yes
     153else
     154  as_have_required=no
     155fi
     156
     157  if test $as_have_required = yes &&     (eval ":
     158(as_func_return () {
     159  (exit \$1)
     160}
     161as_func_success () {
     162  as_func_return 0
     163}
     164as_func_failure () {
     165  as_func_return 1
     166}
     167as_func_ret_success () {
     168  return 0
     169}
     170as_func_ret_failure () {
     171  return 1
     172}
     173
     174exitcode=0
     175if as_func_success; then
     176  :
     177else
     178  exitcode=1
     179  echo as_func_success failed.
     180fi
     181
     182if as_func_failure; then
     183  exitcode=1
     184  echo as_func_failure succeeded.
     185fi
     186
     187if as_func_ret_success; then
     188  :
     189else
     190  exitcode=1
     191  echo as_func_ret_success failed.
     192fi
     193
     194if as_func_ret_failure; then
     195  exitcode=1
     196  echo as_func_ret_failure succeeded.
     197fi
     198
     199if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
     200  :
     201else
     202  exitcode=1
     203  echo positional parameters were not saved.
     204fi
     205
     206test \$exitcode = 0) || { (exit 1); exit 1; }
     207
     208(
     209  as_lineno_1=\$LINENO
     210  as_lineno_2=\$LINENO
     211  test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" &&
     212  test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; }
     213") 2> /dev/null; then
     214  :
     215else
     216  as_candidate_shells=
    130217    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
    131 for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
     218for as_dir in /usr/bin/posix$PATH_SEPARATOR/bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
    132219do
    133220  IFS=$as_save_IFS
    134221  test -z "$as_dir" && as_dir=.
    135   for as_base in sh bash ksh sh5; do
    136          case $as_dir in
     222  case $as_dir in
    137223         /*)
    138            if ("$as_dir/$as_base" -c '
     224           for as_base in sh bash ksh sh5; do
     225             as_candidate_shells="$as_candidate_shells $as_dir/$as_base"
     226           done;;
     227       esac
     228done
     229IFS=$as_save_IFS
     230
     231
     232      for as_shell in $as_candidate_shells $SHELL; do
     233         # Try only shells that exist, to save several forks.
     234         if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
     235                { ("$as_shell") 2> /dev/null <<\_ASEOF
     236# Be Bourne compatible
     237if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
     238  emulate sh
     239  NULLCMD=:
     240  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
     241  # is contrary to our usage.  Disable this feature.
     242  alias -g '${1+"$@"}'='"$@"'
     243  setopt NO_GLOB_SUBST
     244else
     245  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
     246fi
     247BIN_SH=xpg4; export BIN_SH # for Tru64
     248DUALCASE=1; export DUALCASE # for MKS sh
     249
     250:
     251_ASEOF
     252}; then
     253  CONFIG_SHELL=$as_shell
     254               as_have_required=yes
     255               if { "$as_shell" 2> /dev/null <<\_ASEOF
     256# Be Bourne compatible
     257if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
     258  emulate sh
     259  NULLCMD=:
     260  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
     261  # is contrary to our usage.  Disable this feature.
     262  alias -g '${1+"$@"}'='"$@"'
     263  setopt NO_GLOB_SUBST
     264else
     265  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
     266fi
     267BIN_SH=xpg4; export BIN_SH # for Tru64
     268DUALCASE=1; export DUALCASE # for MKS sh
     269
     270:
     271(as_func_return () {
     272  (exit $1)
     273}
     274as_func_success () {
     275  as_func_return 0
     276}
     277as_func_failure () {
     278  as_func_return 1
     279}
     280as_func_ret_success () {
     281  return 0
     282}
     283as_func_ret_failure () {
     284  return 1
     285}
     286
     287exitcode=0
     288if as_func_success; then
     289  :
     290else
     291  exitcode=1
     292  echo as_func_success failed.
     293fi
     294
     295if as_func_failure; then
     296  exitcode=1
     297  echo as_func_failure succeeded.
     298fi
     299
     300if as_func_ret_success; then
     301  :
     302else
     303  exitcode=1
     304  echo as_func_ret_success failed.
     305fi
     306
     307if as_func_ret_failure; then
     308  exitcode=1
     309  echo as_func_ret_failure succeeded.
     310fi
     311
     312if ( set x; as_func_ret_success y && test x = "$1" ); then
     313  :
     314else
     315  exitcode=1
     316  echo positional parameters were not saved.
     317fi
     318
     319test $exitcode = 0) || { (exit 1); exit 1; }
     320
     321(
    139322  as_lineno_1=$LINENO
    140323  as_lineno_2=$LINENO
    141   as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
    142324  test "x$as_lineno_1" != "x$as_lineno_2" &&
    143   test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
    144              $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
    145              $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
    146              CONFIG_SHELL=$as_dir/$as_base
    147              export CONFIG_SHELL
    148              exec "$CONFIG_SHELL" "$0" ${1+"$@"}
    149            fi;;
    150          esac
    151        done
    152 done
    153 ;;
    154   esac
     325  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; }
     326
     327_ASEOF
     328}; then
     329  break
     330fi
     331
     332fi
     333
     334      done
     335
     336      if test "x$CONFIG_SHELL" != x; then
     337  for as_var in BASH_ENV ENV
     338        do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
     339        done
     340        export CONFIG_SHELL
     341        exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
     342fi
     343
     344
     345    if test $as_have_required = no; then
     346  echo This script requires a shell more modern than all the
     347      echo shells that I found on your system.  Please install a
     348      echo modern shell, or manually run the script under such a
     349      echo shell if you do have one.
     350      { (exit 1); exit 1; }
     351fi
     352
     353
     354fi
     355
     356fi
     357
     358
     359
     360(eval "as_func_return () {
     361  (exit \$1)
     362}
     363as_func_success () {
     364  as_func_return 0
     365}
     366as_func_failure () {
     367  as_func_return 1
     368}
     369as_func_ret_success () {
     370  return 0
     371}
     372as_func_ret_failure () {
     373  return 1
     374}
     375
     376exitcode=0
     377if as_func_success; then
     378  :
     379else
     380  exitcode=1
     381  echo as_func_success failed.
     382fi
     383
     384if as_func_failure; then
     385  exitcode=1
     386  echo as_func_failure succeeded.
     387fi
     388
     389if as_func_ret_success; then
     390  :
     391else
     392  exitcode=1
     393  echo as_func_ret_success failed.
     394fi
     395
     396if as_func_ret_failure; then
     397  exitcode=1
     398  echo as_func_ret_failure succeeded.
     399fi
     400
     401if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
     402  :
     403else
     404  exitcode=1
     405  echo positional parameters were not saved.
     406fi
     407
     408test \$exitcode = 0") || {
     409  echo No shell found that supports shell functions.
     410  echo Please tell autoconf@gnu.org about your system,
     411  echo including any error possibly output before this
     412  echo message
     413}
     414
     415
     416
     417  as_lineno_1=$LINENO
     418  as_lineno_2=$LINENO
     419  test "x$as_lineno_1" != "x$as_lineno_2" &&
     420  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
    155421
    156422  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
    157423  # uniformly replaced by the line number.  The first 'sed' inserts a
    158   # line-number line before each line; the second 'sed' does the real
    159   # work.  The second script uses 'N' to pair each line-number line
    160   # with the numbered line, and appends trailing '-' during
    161   # substitution so that $LINENO is not a special case at line end.
     424  # line-number line after each line using $LINENO; the second 'sed'
     425  # does the real work.  The second script uses 'N' to pair each
     426  # line-number line with the line containing $LINENO, and appends
     427  # trailing '-' during substitution so that $LINENO is not a special
     428  # case at line end.
    162429  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
    163   # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
    164   sed '=' <$as_myself |
     430  # scripts with optimization help from Paolo Bonzini.  Blame Lee
     431  # E. McMahon (1931-1989) for sed's syntax.  :-)
     432  sed -n '
     433    p
     434    /[$]LINENO/=
     435  ' <$as_myself |
    165436    sed '
     437      s/[$]LINENO.*/&-/
     438      t lineno
     439      b
     440      :lineno
    166441      N
    167       s,$,-,
    168       : loop
    169       s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
     442      :loop
     443      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
    170444      t loop
    171       s,-$,,
    172       s,^['$as_cr_digits']*\n,,
     445      s/-\n.*//
    173446    ' >$as_me.lineno &&
    174   chmod +x $as_me.lineno ||
     447  chmod +x "$as_me.lineno" ||
    175448    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
    176449   { (exit 1); exit 1; }; }
     
    178451  # Don't try to exec as it changes $[0], causing all sort of problems
    179452  # (the dirname of $[0] is not the place where we might find the
    180   # original and so on.  Autoconf is especially sensible to this).
    181   . ./$as_me.lineno
     453  # original and so on.  Autoconf is especially sensitive to this).
     454  . "./$as_me.lineno"
    182455  # Exit status is that of the last command.
    183456  exit
     
    185458
    186459
    187 case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
    188   *c*,-n*) ECHO_N= ECHO_C='
    189 ' ECHO_T='      ' ;;
    190   *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
    191   *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
    192 esac
    193 
    194 if expr a : '\(a\)' >/dev/null 2>&1; then
     460if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
     461  as_dirname=dirname
     462else
     463  as_dirname=false
     464fi
     465
     466ECHO_C= ECHO_N= ECHO_T=
     467case `echo -n x` in
     468-n*)
     469  case `echo 'x\c'` in
     470  *c*) ECHO_T=' ';;     # ECHO_T is single tab character.
     471  *)   ECHO_C='\c';;
     472  esac;;
     473*)
     474  ECHO_N='-n';;
     475esac
     476
     477if expr a : '\(a\)' >/dev/null 2>&1 &&
     478   test "X`expr 00001 : '.*\(...\)'`" = X001; then
    195479  as_expr=expr
    196480else
     
    199483
    200484rm -f conf$$ conf$$.exe conf$$.file
     485if test -d conf$$.dir; then
     486  rm -f conf$$.dir/conf$$.file
     487else
     488  rm -f conf$$.dir
     489  mkdir conf$$.dir
     490fi
    201491echo >conf$$.file
    202492if ln -s conf$$.file conf$$ 2>/dev/null; then
    203   # We could just check for DJGPP; but this test a) works b) is more generic
    204   # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
    205   if test -f conf$$.exe; then
    206     # Don't use ln at all; we don't have any links
     493  as_ln_s='ln -s'
     494  # ... but there are two gotchas:
     495  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
     496  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
     497  # In both cases, we have to default to `cp -p'.
     498  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
    207499    as_ln_s='cp -p'
    208   else
    209     as_ln_s='ln -s'
    210   fi
    211500elif ln conf$$.file conf$$ 2>/dev/null; then
    212501  as_ln_s=ln
     
    214503  as_ln_s='cp -p'
    215504fi
    216 rm -f conf$$ conf$$.exe conf$$.file
     505rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
     506rmdir conf$$.dir 2>/dev/null
    217507
    218508if mkdir -p . 2>/dev/null; then
     
    223513fi
    224514
    225 as_executable_p="test -f"
     515# Find out whether ``test -x'' works.  Don't use a zero-byte file, as
     516# systems may use methods other than mode bits to determine executability.
     517cat >conf$$.file <<_ASEOF
     518#! /bin/sh
     519exit 0
     520_ASEOF
     521chmod +x conf$$.file
     522if test -x conf$$.file >/dev/null 2>&1; then
     523  as_executable_p="test -x"
     524else
     525  as_executable_p=:
     526fi
     527rm -f conf$$.file
    226528
    227529# Sed expression to map a string onto a valid CPP name.
     
    232534
    233535
    234 # IFS
    235 # We need space, tab and new line, in precisely that order.
    236 as_nl='
    237 '
    238 IFS="   $as_nl"
    239 
    240 # CDPATH.
    241 $as_unset CDPATH
    242 
     536
     537exec 7<&0 </dev/null 6>&1
    243538
    244539# Name of the host.
     
    247542ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
    248543
    249 exec 6>&1
    250 
    251544#
    252545# Initializations.
    253546#
    254547ac_default_prefix=/usr/local
     548ac_clean_files=
    255549ac_config_libobj_dir=.
     550LIBOBJS=
    256551cross_compiling=no
    257552subdirs=
     
    259554MAKEFLAGS=
    260555SHELL=${CONFIG_SHELL-/bin/sh}
    261 
    262 # Maximum number of lines to put in a shell here document.
    263 # This variable seems obsolete.  It should probably be removed, and
    264 # only ac_max_sed_lines should be used.
    265 : ${ac_max_here_lines=38}
    266556
    267557# Identity of this package.
     
    301591#if HAVE_INTTYPES_H
    302592# include <inttypes.h>
    303 #else
    304 # if HAVE_STDINT_H
    305 #  include <stdint.h>
    306 # endif
     593#endif
     594#if HAVE_STDINT_H
     595# include <stdint.h>
    307596#endif
    308597#if HAVE_UNISTD_H
     
    310599#endif"
    311600
    312 ac_subdirs_all="$ac_subdirs_all libfaim"
    313 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CPP EGREP XSUBPPDIR INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA subdirs LIBOBJS LTLIBOBJS'
     601ac_subst_vars='SHELL
     602PATH_SEPARATOR
     603PACKAGE_NAME
     604PACKAGE_TARNAME
     605PACKAGE_VERSION
     606PACKAGE_STRING
     607PACKAGE_BUGREPORT
     608exec_prefix
     609prefix
     610program_transform_name
     611bindir
     612sbindir
     613libexecdir
     614datarootdir
     615datadir
     616sysconfdir
     617sharedstatedir
     618localstatedir
     619includedir
     620oldincludedir
     621docdir
     622infodir
     623htmldir
     624dvidir
     625pdfdir
     626psdir
     627libdir
     628localedir
     629mandir
     630DEFS
     631ECHO_C
     632ECHO_N
     633ECHO_T
     634LIBS
     635build_alias
     636host_alias
     637target_alias
     638CC
     639CFLAGS
     640LDFLAGS
     641CPPFLAGS
     642ac_ct_CC
     643EXEEXT
     644OBJEXT
     645CPP
     646GREP
     647EGREP
     648XSUBPPFLAGS
     649INSTALL_PROGRAM
     650INSTALL_SCRIPT
     651INSTALL_DATA
     652subdirs
     653LIBOBJS
     654LTLIBOBJS'
    314655ac_subst_files=''
     656      ac_precious_vars='build_alias
     657host_alias
     658target_alias
     659CC
     660CFLAGS
     661LDFLAGS
     662CPPFLAGS
     663CPP'
     664ac_subdirs_all='libfaim'
    315665
    316666# Initialize some variables set by options.
     
    339689# by default will actually change.
    340690# Use braces instead of parens because sh, perl, etc. also accept them.
     691# (The list follows the same order as the GNU Coding Standards.)
    341692bindir='${exec_prefix}/bin'
    342693sbindir='${exec_prefix}/sbin'
    343694libexecdir='${exec_prefix}/libexec'
    344 datadir='${prefix}/share'
     695datarootdir='${prefix}/share'
     696datadir='${datarootdir}'
    345697sysconfdir='${prefix}/etc'
    346698sharedstatedir='${prefix}/com'
    347699localstatedir='${prefix}/var'
    348 libdir='${exec_prefix}/lib'
    349700includedir='${prefix}/include'
    350701oldincludedir='/usr/include'
    351 infodir='${prefix}/info'
    352 mandir='${prefix}/man'
     702docdir='${datarootdir}/doc/${PACKAGE}'
     703infodir='${datarootdir}/info'
     704htmldir='${docdir}'
     705dvidir='${docdir}'
     706pdfdir='${docdir}'
     707psdir='${docdir}'
     708libdir='${exec_prefix}/lib'
     709localedir='${datarootdir}/locale'
     710mandir='${datarootdir}/man'
    353711
    354712ac_prev=
     713ac_dashdash=
    355714for ac_option
    356715do
    357716  # If the previous option needs an argument, assign it.
    358717  if test -n "$ac_prev"; then
    359     eval "$ac_prev=\$ac_option"
     718    eval $ac_prev=\$ac_option
    360719    ac_prev=
    361720    continue
    362721  fi
    363722
    364   ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
     723  case $ac_option in
     724  *=*)  ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
     725  *)    ac_optarg=yes ;;
     726  esac
    365727
    366728  # Accept the important Cygnus configure options, so we can diagnose typos.
    367729
    368   case $ac_option in
     730  case $ac_dashdash$ac_option in
     731  --)
     732    ac_dashdash=yes ;;
    369733
    370734  -bindir | --bindir | --bindi | --bind | --bin | --bi)
     
    388752    cache_file=config.cache ;;
    389753
    390   -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
     754  -datadir | --datadir | --datadi | --datad)
    391755    ac_prev=datadir ;;
    392   -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
    393   | --da=*)
     756  -datadir=* | --datadir=* | --datadi=* | --datad=*)
    394757    datadir=$ac_optarg ;;
     758
     759  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
     760  | --dataroo | --dataro | --datar)
     761    ac_prev=datarootdir ;;
     762  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
     763  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
     764    datarootdir=$ac_optarg ;;
    395765
    396766  -disable-* | --disable-*)
     
    401771   { (exit 1); exit 1; }; }
    402772    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
    403     eval "enable_$ac_feature=no" ;;
     773    eval enable_$ac_feature=no ;;
     774
     775  -docdir | --docdir | --docdi | --doc | --do)
     776    ac_prev=docdir ;;
     777  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
     778    docdir=$ac_optarg ;;
     779
     780  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
     781    ac_prev=dvidir ;;
     782  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
     783    dvidir=$ac_optarg ;;
    404784
    405785  -enable-* | --enable-*)
     
    410790   { (exit 1); exit 1; }; }
    411791    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
    412     case $ac_option in
    413       *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
    414       *) ac_optarg=yes ;;
    415     esac
    416     eval "enable_$ac_feature='$ac_optarg'" ;;
     792    eval enable_$ac_feature=\$ac_optarg ;;
    417793
    418794  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
     
    441817    host_alias=$ac_optarg ;;
    442818
     819  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
     820    ac_prev=htmldir ;;
     821  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
     822  | --ht=*)
     823    htmldir=$ac_optarg ;;
     824
    443825  -includedir | --includedir | --includedi | --included | --include \
    444826  | --includ | --inclu | --incl | --inc)
     
    465847    libexecdir=$ac_optarg ;;
    466848
     849  -localedir | --localedir | --localedi | --localed | --locale)
     850    ac_prev=localedir ;;
     851  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
     852    localedir=$ac_optarg ;;
     853
    467854  -localstatedir | --localstatedir | --localstatedi | --localstated \
    468   | --localstate | --localstat | --localsta | --localst \
    469   | --locals | --local | --loca | --loc | --lo)
     855  | --localstate | --localstat | --localsta | --localst | --locals)
    470856    ac_prev=localstatedir ;;
    471857  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
    472   | --localstate=* | --localstat=* | --localsta=* | --localst=* \
    473   | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
     858  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
    474859    localstatedir=$ac_optarg ;;
    475860
     
    536921    program_transform_name=$ac_optarg ;;
    537922
     923  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
     924    ac_prev=pdfdir ;;
     925  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
     926    pdfdir=$ac_optarg ;;
     927
     928  -psdir | --psdir | --psdi | --psd | --ps)
     929    ac_prev=psdir ;;
     930  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
     931    psdir=$ac_optarg ;;
     932
    538933  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
    539934  | -silent | --silent | --silen | --sile | --sil)
     
    592987   { (exit 1); exit 1; }; }
    593988    ac_package=`echo $ac_package| sed 's/-/_/g'`
    594     case $ac_option in
    595       *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
    596       *) ac_optarg=yes ;;
    597     esac
    598     eval "with_$ac_package='$ac_optarg'" ;;
     989    eval with_$ac_package=\$ac_optarg ;;
    599990
    600991  -without-* | --without-*)
     
    605996   { (exit 1); exit 1; }; }
    606997    ac_package=`echo $ac_package | sed 's/-/_/g'`
    607     eval "with_$ac_package=no" ;;
     998    eval with_$ac_package=no ;;
    608999
    6091000  --x)
     
    6361027      { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
    6371028   { (exit 1); exit 1; }; }
    638     ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
    639     eval "$ac_envvar='$ac_optarg'"
     1029    eval $ac_envvar=\$ac_optarg
    6401030    export $ac_envvar ;;
    6411031
     
    6571047fi
    6581048
    659 # Be sure to have absolute paths.
    660 for ac_var in exec_prefix prefix
     1049# Be sure to have absolute directory names.
     1050for ac_var in   exec_prefix prefix bindir sbindir libexecdir datarootdir \
     1051                datadir sysconfdir sharedstatedir localstatedir includedir \
     1052                oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
     1053                libdir localedir mandir
    6611054do
    662   eval ac_val=$`echo $ac_var`
     1055  eval ac_val=\$$ac_var
    6631056  case $ac_val in
    664     [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
    665     *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
    666    { (exit 1); exit 1; }; };;
     1057    [\\/$]* | ?:[\\/]* )  continue;;
     1058    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
    6671059  esac
    668 done
    669 
    670 # Be sure to have absolute paths.
    671 for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
    672               localstatedir libdir includedir oldincludedir infodir mandir
    673 do
    674   eval ac_val=$`echo $ac_var`
    675   case $ac_val in
    676     [\\/$]* | ?:[\\/]* ) ;;
    677     *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
    678    { (exit 1); exit 1; }; };;
    679   esac
     1060  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
     1061   { (exit 1); exit 1; }; }
    6801062done
    6811063
     
    7041086
    7051087
     1088ac_pwd=`pwd` && test -n "$ac_pwd" &&
     1089ac_ls_di=`ls -di .` &&
     1090ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
     1091  { echo "$as_me: error: Working directory cannot be determined" >&2
     1092   { (exit 1); exit 1; }; }
     1093test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
     1094  { echo "$as_me: error: pwd does not report name of working directory" >&2
     1095   { (exit 1); exit 1; }; }
     1096
     1097
    7061098# Find the source files, if location was not specified.
    7071099if test -z "$srcdir"; then
    7081100  ac_srcdir_defaulted=yes
    709   # Try the directory containing this script, then its parent.
    710   ac_confdir=`(dirname "$0") 2>/dev/null ||
     1101  # Try the directory containing this script, then the parent directory.
     1102  ac_confdir=`$as_dirname -- "$0" ||
    7111103$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
    7121104         X"$0" : 'X\(//\)[^/]' \| \
    7131105         X"$0" : 'X\(//\)$' \| \
    714          X"$0" : 'X\(/\)' \| \
    715          .     : '\(.\)' 2>/dev/null ||
     1106         X"$0" : 'X\(/\)' \| . 2>/dev/null ||
    7161107echo X"$0" |
    717     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
    718           /^X\(\/\/\)[^/].*/{ s//\1/; q; }
    719           /^X\(\/\/\)$/{ s//\1/; q; }
    720           /^X\(\/\).*/{ s//\1/; q; }
    721           s/.*/./; q'`
     1108    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
     1109            s//\1/
     1110            q
     1111          }
     1112          /^X\(\/\/\)[^/].*/{
     1113            s//\1/
     1114            q
     1115          }
     1116          /^X\(\/\/\)$/{
     1117            s//\1/
     1118            q
     1119          }
     1120          /^X\(\/\).*/{
     1121            s//\1/
     1122            q
     1123          }
     1124          s/.*/./; q'`
    7221125  srcdir=$ac_confdir
    723   if test ! -r $srcdir/$ac_unique_file; then
     1126  if test ! -r "$srcdir/$ac_unique_file"; then
    7241127    srcdir=..
    7251128  fi
     
    7271130  ac_srcdir_defaulted=no
    7281131fi
    729 if test ! -r $srcdir/$ac_unique_file; then
    730   if test "$ac_srcdir_defaulted" = yes; then
    731     { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
     1132if test ! -r "$srcdir/$ac_unique_file"; then
     1133  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
     1134  { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
    7321135   { (exit 1); exit 1; }; }
    733   else
    734     { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
     1136fi
     1137ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
     1138ac_abs_confdir=`(
     1139        cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2
    7351140   { (exit 1); exit 1; }; }
    736   fi
    737 fi
    738 (cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
    739   { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
    740    { (exit 1); exit 1; }; }
    741 srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
    742 ac_env_build_alias_set=${build_alias+set}
    743 ac_env_build_alias_value=$build_alias
    744 ac_cv_env_build_alias_set=${build_alias+set}
    745 ac_cv_env_build_alias_value=$build_alias
    746 ac_env_host_alias_set=${host_alias+set}
    747 ac_env_host_alias_value=$host_alias
    748 ac_cv_env_host_alias_set=${host_alias+set}
    749 ac_cv_env_host_alias_value=$host_alias
    750 ac_env_target_alias_set=${target_alias+set}
    751 ac_env_target_alias_value=$target_alias
    752 ac_cv_env_target_alias_set=${target_alias+set}
    753 ac_cv_env_target_alias_value=$target_alias
    754 ac_env_CC_set=${CC+set}
    755 ac_env_CC_value=$CC
    756 ac_cv_env_CC_set=${CC+set}
    757 ac_cv_env_CC_value=$CC
    758 ac_env_CFLAGS_set=${CFLAGS+set}
    759 ac_env_CFLAGS_value=$CFLAGS
    760 ac_cv_env_CFLAGS_set=${CFLAGS+set}
    761 ac_cv_env_CFLAGS_value=$CFLAGS
    762 ac_env_LDFLAGS_set=${LDFLAGS+set}
    763 ac_env_LDFLAGS_value=$LDFLAGS
    764 ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
    765 ac_cv_env_LDFLAGS_value=$LDFLAGS
    766 ac_env_CPPFLAGS_set=${CPPFLAGS+set}
    767 ac_env_CPPFLAGS_value=$CPPFLAGS
    768 ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
    769 ac_cv_env_CPPFLAGS_value=$CPPFLAGS
    770 ac_env_CPP_set=${CPP+set}
    771 ac_env_CPP_value=$CPP
    772 ac_cv_env_CPP_set=${CPP+set}
    773 ac_cv_env_CPP_value=$CPP
     1141        pwd)`
     1142# When building in place, set srcdir=.
     1143if test "$ac_abs_confdir" = "$ac_pwd"; then
     1144  srcdir=.
     1145fi
     1146# Remove unnecessary trailing slashes from srcdir.
     1147# Double slashes in file names in object file debugging info
     1148# mess up M-x gdb in Emacs.
     1149case $srcdir in
     1150*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
     1151esac
     1152for ac_var in $ac_precious_vars; do
     1153  eval ac_env_${ac_var}_set=\${${ac_var}+set}
     1154  eval ac_env_${ac_var}_value=\$${ac_var}
     1155  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
     1156  eval ac_cv_env_${ac_var}_value=\$${ac_var}
     1157done
    7741158
    7751159#
     
    8001184      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
    8011185
    802 _ACEOF
    803 
    804   cat <<_ACEOF
    8051186Installation directories:
    8061187  --prefix=PREFIX         install architecture-independent files in PREFIX
     
    8201201  --sbindir=DIR          system admin executables [EPREFIX/sbin]
    8211202  --libexecdir=DIR       program executables [EPREFIX/libexec]
    822   --datadir=DIR          read-only architecture-independent data [PREFIX/share]
    8231203  --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]
    8241204  --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]
     
    8271207  --includedir=DIR       C header files [PREFIX/include]
    8281208  --oldincludedir=DIR    C header files for non-gcc [/usr/include]
    829   --infodir=DIR          info documentation [PREFIX/info]
    830   --mandir=DIR           man documentation [PREFIX/man]
     1209  --datarootdir=DIR      read-only arch.-independent data root [PREFIX/share]
     1210  --datadir=DIR          read-only architecture-independent data [DATAROOTDIR]
     1211  --infodir=DIR          info documentation [DATAROOTDIR/info]
     1212  --localedir=DIR        locale-dependent data [DATAROOTDIR/locale]
     1213  --mandir=DIR           man documentation [DATAROOTDIR/man]
     1214  --docdir=DIR           documentation root [DATAROOTDIR/doc/PACKAGE]
     1215  --htmldir=DIR          html documentation [DOCDIR]
     1216  --dvidir=DIR           dvi documentation [DOCDIR]
     1217  --pdfdir=DIR           pdf documentation [DOCDIR]
     1218  --psdir=DIR            ps documentation [DOCDIR]
    8311219_ACEOF
    8321220
     
    8441232  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
    8451233              nonstandard directory <lib dir>
    846   CPPFLAGS    C/C++ preprocessor flags, e.g. -I<include dir> if you have
    847               headers in a nonstandard directory <include dir>
     1234  CPPFLAGS    C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
     1235              you have headers in a nonstandard directory <include dir>
    8481236  CPP         C preprocessor
    8491237
     
    8521240
    8531241_ACEOF
     1242ac_status=$?
    8541243fi
    8551244
    8561245if test "$ac_init_help" = "recursive"; then
    8571246  # If there are subdirs, report their specific --help.
    858   ac_popdir=`pwd`
    8591247  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
    860     test -d $ac_dir || continue
     1248    test -d "$ac_dir" || continue
    8611249    ac_builddir=.
    8621250
    863 if test "$ac_dir" != .; then
     1251case "$ac_dir" in
     1252.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
     1253*)
    8641254  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
    865   # A "../" for each directory in $ac_dir_suffix.
    866   ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
    867 else
    868   ac_dir_suffix= ac_top_builddir=
    869 fi
     1255  # A ".." for each directory in $ac_dir_suffix.
     1256  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
     1257  case $ac_top_builddir_sub in
     1258  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
     1259  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
     1260  esac ;;
     1261esac
     1262ac_abs_top_builddir=$ac_pwd
     1263ac_abs_builddir=$ac_pwd$ac_dir_suffix
     1264# for backward compatibility:
     1265ac_top_builddir=$ac_top_build_prefix
    8701266
    8711267case $srcdir in
    872   .)  # No --srcdir option.  We are building in place.
     1268  .)  # We are building in place.
    8731269    ac_srcdir=.
    874     if test -z "$ac_top_builddir"; then
    875        ac_top_srcdir=.
    876     else
    877        ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
    878     fi ;;
    879   [\\/]* | ?:[\\/]* )  # Absolute path.
     1270    ac_top_srcdir=$ac_top_builddir_sub
     1271    ac_abs_top_srcdir=$ac_pwd ;;
     1272  [\\/]* | ?:[\\/]* )  # Absolute name.
    8801273    ac_srcdir=$srcdir$ac_dir_suffix;
    881     ac_top_srcdir=$srcdir ;;
    882   *) # Relative path.
    883     ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
    884     ac_top_srcdir=$ac_top_builddir$srcdir ;;
    885 esac
    886 
    887 # Do not use `cd foo && pwd` to compute absolute paths, because
    888 # the directories may not exist.
    889 case `pwd` in
    890 .) ac_abs_builddir="$ac_dir";;
    891 *)
    892   case "$ac_dir" in
    893   .) ac_abs_builddir=`pwd`;;
    894   [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
    895   *) ac_abs_builddir=`pwd`/"$ac_dir";;
    896   esac;;
    897 esac
    898 case $ac_abs_builddir in
    899 .) ac_abs_top_builddir=${ac_top_builddir}.;;
    900 *)
    901   case ${ac_top_builddir}. in
    902   .) ac_abs_top_builddir=$ac_abs_builddir;;
    903   [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
    904   *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
    905   esac;;
    906 esac
    907 case $ac_abs_builddir in
    908 .) ac_abs_srcdir=$ac_srcdir;;
    909 *)
    910   case $ac_srcdir in
    911   .) ac_abs_srcdir=$ac_abs_builddir;;
    912   [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
    913   *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
    914   esac;;
    915 esac
    916 case $ac_abs_builddir in
    917 .) ac_abs_top_srcdir=$ac_top_srcdir;;
    918 *)
    919   case $ac_top_srcdir in
    920   .) ac_abs_top_srcdir=$ac_abs_builddir;;
    921   [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
    922   *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
    923   esac;;
    924 esac
    925 
    926     cd $ac_dir
    927     # Check for guested configure; otherwise get Cygnus style configure.
    928     if test -f $ac_srcdir/configure.gnu; then
    929       echo
    930       $SHELL $ac_srcdir/configure.gnu  --help=recursive
    931     elif test -f $ac_srcdir/configure; then
    932       echo
    933       $SHELL $ac_srcdir/configure  --help=recursive
    934     elif test -f $ac_srcdir/configure.ac ||
    935            test -f $ac_srcdir/configure.in; then
    936       echo
    937       $ac_configure --help
     1274    ac_top_srcdir=$srcdir
     1275    ac_abs_top_srcdir=$srcdir ;;
     1276  *) # Relative name.
     1277    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
     1278    ac_top_srcdir=$ac_top_build_prefix$srcdir
     1279    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
     1280esac
     1281ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
     1282
     1283    cd "$ac_dir" || { ac_status=$?; continue; }
     1284    # Check for guested configure.
     1285    if test -f "$ac_srcdir/configure.gnu"; then
     1286      echo &&
     1287      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
     1288    elif test -f "$ac_srcdir/configure"; then
     1289      echo &&
     1290      $SHELL "$ac_srcdir/configure" --help=recursive
    9381291    else
    9391292      echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
    940     fi
    941     cd $ac_popdir
     1293    fi || ac_status=$?
     1294    cd "$ac_pwd" || { ac_status=$?; break; }
    9421295  done
    9431296fi
    9441297
    945 test -n "$ac_init_help" && exit 0
     1298test -n "$ac_init_help" && exit $ac_status
    9461299if $ac_init_version; then
    9471300  cat <<\_ACEOF
    948 
    949 Copyright (C) 2003 Free Software Foundation, Inc.
     1301configure
     1302generated by GNU Autoconf 2.60
     1303
     1304Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
     13052002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
    9501306This configure script is free software; the Free Software Foundation
    9511307gives unlimited permission to copy, distribute and modify it.
    9521308_ACEOF
    953   exit 0
    954 fi
    955 exec 5>config.log
    956 cat >&5 <<_ACEOF
     1309  exit
     1310fi
     1311cat >config.log <<_ACEOF
    9571312This file contains any messages produced by compilers while
    9581313running configure, to aid debugging if configure makes a mistake.
    9591314
    9601315It was created by $as_me, which was
    961 generated by GNU Autoconf 2.59.  Invocation command line was
     1316generated by GNU Autoconf 2.60.  Invocation command line was
    9621317
    9631318  $ $0 $@
    9641319
    9651320_ACEOF
     1321exec 5>>config.log
    9661322{
    9671323cat <<_ASUNAME
     
    9821338/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
    9831339/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
    984 hostinfo               = `(hostinfo) 2>/dev/null               || echo unknown`
     1340/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
    9851341/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
    9861342/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
     
    9961352  echo "PATH: $as_dir"
    9971353done
     1354IFS=$as_save_IFS
    9981355
    9991356} >&5
     
    10171374ac_configure_args0=
    10181375ac_configure_args1=
    1019 ac_sep=
    10201376ac_must_keep_next=false
    10211377for ac_pass in 1 2
     
    10281384    | -silent | --silent | --silen | --sile | --sil)
    10291385      continue ;;
    1030     *" "*|*"    "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
     1386    *\'*)
    10311387      ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
    10321388    esac
     
    10501406        esac
    10511407      fi
    1052       ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
    1053       # Get rid of the leading space.
    1054       ac_sep=" "
     1408      ac_configure_args="$ac_configure_args '$ac_arg'"
    10551409      ;;
    10561410    esac
     
    10631417# config.log.  We remove comments because anyway the quotes in there
    10641418# would cause problems or look ugly.
    1065 # WARNING: Be sure not to use single quotes in there, as some shells,
    1066 # such as our DU 5.0 friend, will then `close' the trap.
     1419# WARNING: Use '\'' to represent an apostrophe within the trap.
     1420# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
    10671421trap 'exit_status=$?
    10681422  # Save into config.log some information that might help in debugging.
     
    10771431    echo
    10781432    # The following way of writing the cache mishandles newlines in values,
    1079 {
     1433(
     1434  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
     1435    eval ac_val=\$$ac_var
     1436    case $ac_val in #(
     1437    *${as_nl}*)
     1438      case $ac_var in #(
     1439      *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
     1440echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
     1441      esac
     1442      case $ac_var in #(
     1443      _ | IFS | as_nl) ;; #(
     1444      *) $as_unset $ac_var ;;
     1445      esac ;;
     1446    esac
     1447  done
    10801448  (set) 2>&1 |
    1081     case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
    1082     *ac_space=\ *)
     1449    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
     1450    *${as_nl}ac_space=\ *)
    10831451      sed -n \
    1084         "s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
    1085           s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
     1452        "s/'\''/'\''\\\\'\'''\''/g;
     1453          s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
     1454      ;; #(
     1455    *)
     1456      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
    10861457      ;;
    1087     *)
    1088       sed -n \
    1089         "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
    1090       ;;
    1091     esac;
    1092 }
     1458    esac |
     1459    sort
     1460)
    10931461    echo
    10941462
     
    11011469    for ac_var in $ac_subst_vars
    11021470    do
    1103       eval ac_val=$`echo $ac_var`
    1104       echo "$ac_var='"'"'$ac_val'"'"'"
     1471      eval ac_val=\$$ac_var
     1472      case $ac_val in
     1473      *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
     1474      esac
     1475      echo "$ac_var='\''$ac_val'\''"
    11051476    done | sort
    11061477    echo
     
    11081479    if test -n "$ac_subst_files"; then
    11091480      cat <<\_ASBOX
    1110 ## ------------- ##
    1111 ## Output files. ##
    1112 ## ------------- ##
     1481## ------------------- ##
     1482## File substitutions. ##
     1483## ------------------- ##
    11131484_ASBOX
    11141485      echo
    11151486      for ac_var in $ac_subst_files
    11161487      do
    1117         eval ac_val=$`echo $ac_var`
    1118         echo "$ac_var='"'"'$ac_val'"'"'"
     1488        eval ac_val=\$$ac_var
     1489        case $ac_val in
     1490        *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
     1491        esac
     1492        echo "$ac_var='\''$ac_val'\''"
    11191493      done | sort
    11201494      echo
     
    11281502_ASBOX
    11291503      echo
    1130       sed "/^$/d" confdefs.h | sort
     1504      cat confdefs.h
    11311505      echo
    11321506    fi
     
    11351509    echo "$as_me: exit $exit_status"
    11361510  } >&5
    1137   rm -f core *.core &&
    1138   rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
     1511  rm -f core *.core core.conftest.* &&
     1512    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
    11391513    exit $exit_status
    1140      ' 0
     1514' 0
    11411515for ac_signal in 1 2 13 15; do
    11421516  trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
     
    11451519
    11461520# confdefs.h avoids OS command line length limits that DEFS can exceed.
    1147 rm -rf conftest* confdefs.h
    1148 # AIX cpp loses on an empty file, so make sure it contains at least a newline.
    1149 echo >confdefs.h
     1521rm -f -r conftest* confdefs.h
    11501522
    11511523# Predefined preprocessor variables.
     
    11781550# Let the site file select an alternate cache file if it wants to.
    11791551# Prefer explicitly selected file to automatically selected ones.
    1180 if test -z "$CONFIG_SITE"; then
    1181   if test "x$prefix" != xNONE; then
    1182     CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
    1183   else
    1184     CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
    1185   fi
    1186 fi
    1187 for ac_site_file in $CONFIG_SITE; do
     1552if test -n "$CONFIG_SITE"; then
     1553  set x "$CONFIG_SITE"
     1554elif test "x$prefix" != xNONE; then
     1555  set x "$prefix/share/config.site" "$prefix/etc/config.site"
     1556else
     1557  set x "$ac_default_prefix/share/config.site" \
     1558        "$ac_default_prefix/etc/config.site"
     1559fi
     1560shift
     1561for ac_site_file
     1562do
    11881563  if test -r "$ac_site_file"; then
    11891564    { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
     
    12011576echo "$as_me: loading cache $cache_file" >&6;}
    12021577    case $cache_file in
    1203       [\\/]* | ?:[\\/]* ) . $cache_file;;
    1204       *)                      . ./$cache_file;;
     1578      [\\/]* | ?:[\\/]* ) . "$cache_file";;
     1579      *)                      . "./$cache_file";;
    12051580    esac
    12061581  fi
     
    12141589# value.
    12151590ac_cache_corrupted=false
    1216 for ac_var in `(set) 2>&1 |
    1217                sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
     1591for ac_var in $ac_precious_vars; do
    12181592  eval ac_old_set=\$ac_cv_env_${ac_var}_set
    12191593  eval ac_new_set=\$ac_env_${ac_var}_set
    1220   eval ac_old_val="\$ac_cv_env_${ac_var}_value"
    1221   eval ac_new_val="\$ac_env_${ac_var}_value"
     1594  eval ac_old_val=\$ac_cv_env_${ac_var}_value
     1595  eval ac_new_val=\$ac_env_${ac_var}_value
    12221596  case $ac_old_set,$ac_new_set in
    12231597    set,)
     
    12441618  if test "$ac_new_set" = set; then
    12451619    case $ac_new_val in
    1246     *" "*|*"    "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
    1247       ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
     1620    *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
    12481621    *) ac_arg=$ac_var=$ac_new_val ;;
    12491622    esac
     
    12621635fi
    12631636
     1637
     1638
     1639
     1640
     1641
     1642
     1643
     1644
     1645
     1646
     1647
     1648
     1649
     1650
     1651
     1652
    12641653ac_ext=c
    12651654ac_cpp='$CPP $CPPFLAGS'
     
    12701659
    12711660
    1272 
    1273 
    1274 
    1275 
    1276 
    1277 
    1278 
    1279 
    1280 
    1281 
    1282 
    1283 
    1284 
    1285 
    1286 
    1287 
    1288 
    1289           ac_config_headers="$ac_config_headers config.h"
     1661ac_config_headers="$ac_config_headers config.h"
    12901662
    12911663
     
    12981670  # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
    12991671set dummy ${ac_tool_prefix}gcc; ac_word=$2
    1300 echo "$as_me:$LINENO: checking for $ac_word" >&5
    1301 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
     1672{ echo "$as_me:$LINENO: checking for $ac_word" >&5
     1673echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
    13021674if test "${ac_cv_prog_CC+set}" = set; then
    13031675  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    13121684  test -z "$as_dir" && as_dir=.
    13131685  for ac_exec_ext in '' $ac_executable_extensions; do
    1314   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
     1686  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
    13151687    ac_cv_prog_CC="${ac_tool_prefix}gcc"
    13161688    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
     
    13191691done
    13201692done
     1693IFS=$as_save_IFS
    13211694
    13221695fi
     
    13241697CC=$ac_cv_prog_CC
    13251698if test -n "$CC"; then
    1326   echo "$as_me:$LINENO: result: $CC" >&5
    1327 echo "${ECHO_T}$CC" >&6
    1328 else
    1329   echo "$as_me:$LINENO: result: no" >&5
    1330 echo "${ECHO_T}no" >&6
    1331 fi
     1699  { echo "$as_me:$LINENO: result: $CC" >&5
     1700echo "${ECHO_T}$CC" >&6; }
     1701else
     1702  { echo "$as_me:$LINENO: result: no" >&5
     1703echo "${ECHO_T}no" >&6; }
     1704fi
     1705
    13321706
    13331707fi
     
    13361710  # Extract the first word of "gcc", so it can be a program name with args.
    13371711set dummy gcc; ac_word=$2
    1338 echo "$as_me:$LINENO: checking for $ac_word" >&5
    1339 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
     1712{ echo "$as_me:$LINENO: checking for $ac_word" >&5
     1713echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
    13401714if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
    13411715  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    13501724  test -z "$as_dir" && as_dir=.
    13511725  for ac_exec_ext in '' $ac_executable_extensions; do
    1352   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
     1726  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
    13531727    ac_cv_prog_ac_ct_CC="gcc"
    13541728    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
     
    13571731done
    13581732done
     1733IFS=$as_save_IFS
    13591734
    13601735fi
     
    13621737ac_ct_CC=$ac_cv_prog_ac_ct_CC
    13631738if test -n "$ac_ct_CC"; then
    1364   echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
    1365 echo "${ECHO_T}$ac_ct_CC" >&6
    1366 else
    1367   echo "$as_me:$LINENO: result: no" >&5
    1368 echo "${ECHO_T}no" >&6
    1369 fi
    1370 
    1371   CC=$ac_ct_CC
     1739  { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
     1740echo "${ECHO_T}$ac_ct_CC" >&6; }
     1741else
     1742  { echo "$as_me:$LINENO: result: no" >&5
     1743echo "${ECHO_T}no" >&6; }
     1744fi
     1745
     1746  if test "x$ac_ct_CC" = x; then
     1747    CC=""
     1748  else
     1749    case $cross_compiling:$ac_tool_warned in
     1750yes:)
     1751{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
     1752whose name does not start with the host triplet.  If you think this
     1753configuration is useful to you, please write to autoconf@gnu.org." >&5
     1754echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
     1755whose name does not start with the host triplet.  If you think this
     1756configuration is useful to you, please write to autoconf@gnu.org." >&2;}
     1757ac_tool_warned=yes ;;
     1758esac
     1759    CC=$ac_ct_CC
     1760  fi
    13721761else
    13731762  CC="$ac_cv_prog_CC"
     
    13751764
    13761765if test -z "$CC"; then
    1377   if test -n "$ac_tool_prefix"; then
    1378   # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
     1766          if test -n "$ac_tool_prefix"; then
     1767    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
    13791768set dummy ${ac_tool_prefix}cc; ac_word=$2
    1380 echo "$as_me:$LINENO: checking for $ac_word" >&5
    1381 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
     1769{ echo "$as_me:$LINENO: checking for $ac_word" >&5
     1770echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
    13821771if test "${ac_cv_prog_CC+set}" = set; then
    13831772  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    13921781  test -z "$as_dir" && as_dir=.
    13931782  for ac_exec_ext in '' $ac_executable_extensions; do
    1394   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
     1783  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
    13951784    ac_cv_prog_CC="${ac_tool_prefix}cc"
    13961785    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
     
    13991788done
    14001789done
     1790IFS=$as_save_IFS
    14011791
    14021792fi
     
    14041794CC=$ac_cv_prog_CC
    14051795if test -n "$CC"; then
    1406   echo "$as_me:$LINENO: result: $CC" >&5
    1407 echo "${ECHO_T}$CC" >&6
    1408 else
    1409   echo "$as_me:$LINENO: result: no" >&5
    1410 echo "${ECHO_T}no" >&6
    1411 fi
    1412 
    1413 fi
    1414 if test -z "$ac_cv_prog_CC"; then
    1415   ac_ct_CC=$CC
    1416   # Extract the first word of "cc", so it can be a program name with args.
    1417 set dummy cc; ac_word=$2
    1418 echo "$as_me:$LINENO: checking for $ac_word" >&5
    1419 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1420 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
    1421   echo $ECHO_N "(cached) $ECHO_C" >&6
    1422 else
    1423   if test -n "$ac_ct_CC"; then
    1424   ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
    1425 else
    1426 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
    1427 for as_dir in $PATH
    1428 do
    1429   IFS=$as_save_IFS
    1430   test -z "$as_dir" && as_dir=.
    1431   for ac_exec_ext in '' $ac_executable_extensions; do
    1432   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    1433     ac_cv_prog_ac_ct_CC="cc"
    1434     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
    1435     break 2
     1796  { echo "$as_me:$LINENO: result: $CC" >&5
     1797echo "${ECHO_T}$CC" >&6; }
     1798else
     1799  { echo "$as_me:$LINENO: result: no" >&5
     1800echo "${ECHO_T}no" >&6; }
     1801fi
     1802
     1803
    14361804  fi
    1437 done
    1438 done
    1439 
    1440 fi
    1441 fi
    1442 ac_ct_CC=$ac_cv_prog_ac_ct_CC
    1443 if test -n "$ac_ct_CC"; then
    1444   echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
    1445 echo "${ECHO_T}$ac_ct_CC" >&6
    1446 else
    1447   echo "$as_me:$LINENO: result: no" >&5
    1448 echo "${ECHO_T}no" >&6
    1449 fi
    1450 
    1451   CC=$ac_ct_CC
    1452 else
    1453   CC="$ac_cv_prog_CC"
    1454 fi
    1455 
    14561805fi
    14571806if test -z "$CC"; then
    14581807  # Extract the first word of "cc", so it can be a program name with args.
    14591808set dummy cc; ac_word=$2
    1460 echo "$as_me:$LINENO: checking for $ac_word" >&5
    1461 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
     1809{ echo "$as_me:$LINENO: checking for $ac_word" >&5
     1810echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
    14621811if test "${ac_cv_prog_CC+set}" = set; then
    14631812  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    14731822  test -z "$as_dir" && as_dir=.
    14741823  for ac_exec_ext in '' $ac_executable_extensions; do
    1475   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
     1824  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
    14761825    if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
    14771826       ac_prog_rejected=yes
     
    14841833done
    14851834done
     1835IFS=$as_save_IFS
    14861836
    14871837if test $ac_prog_rejected = yes; then
     
    15011851CC=$ac_cv_prog_CC
    15021852if test -n "$CC"; then
    1503   echo "$as_me:$LINENO: result: $CC" >&5
    1504 echo "${ECHO_T}$CC" >&6
    1505 else
    1506   echo "$as_me:$LINENO: result: no" >&5
    1507 echo "${ECHO_T}no" >&6
    1508 fi
     1853  { echo "$as_me:$LINENO: result: $CC" >&5
     1854echo "${ECHO_T}$CC" >&6; }
     1855else
     1856  { echo "$as_me:$LINENO: result: no" >&5
     1857echo "${ECHO_T}no" >&6; }
     1858fi
     1859
    15091860
    15101861fi
    15111862if test -z "$CC"; then
    15121863  if test -n "$ac_tool_prefix"; then
    1513   for ac_prog in cl
     1864  for ac_prog in cl.exe
    15141865  do
    15151866    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
    15161867set dummy $ac_tool_prefix$ac_prog; ac_word=$2
    1517 echo "$as_me:$LINENO: checking for $ac_word" >&5
    1518 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
     1868{ echo "$as_me:$LINENO: checking for $ac_word" >&5
     1869echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
    15191870if test "${ac_cv_prog_CC+set}" = set; then
    15201871  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    15291880  test -z "$as_dir" && as_dir=.
    15301881  for ac_exec_ext in '' $ac_executable_extensions; do
    1531   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
     1882  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
    15321883    ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
    15331884    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
     
    15361887done
    15371888done
     1889IFS=$as_save_IFS
    15381890
    15391891fi
     
    15411893CC=$ac_cv_prog_CC
    15421894if test -n "$CC"; then
    1543   echo "$as_me:$LINENO: result: $CC" >&5
    1544 echo "${ECHO_T}$CC" >&6
    1545 else
    1546   echo "$as_me:$LINENO: result: no" >&5
    1547 echo "${ECHO_T}no" >&6
    1548 fi
     1895  { echo "$as_me:$LINENO: result: $CC" >&5
     1896echo "${ECHO_T}$CC" >&6; }
     1897else
     1898  { echo "$as_me:$LINENO: result: no" >&5
     1899echo "${ECHO_T}no" >&6; }
     1900fi
     1901
    15491902
    15501903    test -n "$CC" && break
     
    15531906if test -z "$CC"; then
    15541907  ac_ct_CC=$CC
    1555   for ac_prog in cl
     1908  for ac_prog in cl.exe
    15561909do
    15571910  # Extract the first word of "$ac_prog", so it can be a program name with args.
    15581911set dummy $ac_prog; ac_word=$2
    1559 echo "$as_me:$LINENO: checking for $ac_word" >&5
    1560 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
     1912{ echo "$as_me:$LINENO: checking for $ac_word" >&5
     1913echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
    15611914if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
    15621915  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    15711924  test -z "$as_dir" && as_dir=.
    15721925  for ac_exec_ext in '' $ac_executable_extensions; do
    1573   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
     1926  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
    15741927    ac_cv_prog_ac_ct_CC="$ac_prog"
    15751928    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
     
    15781931done
    15791932done
     1933IFS=$as_save_IFS
    15801934
    15811935fi
     
    15831937ac_ct_CC=$ac_cv_prog_ac_ct_CC
    15841938if test -n "$ac_ct_CC"; then
    1585   echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
    1586 echo "${ECHO_T}$ac_ct_CC" >&6
    1587 else
    1588   echo "$as_me:$LINENO: result: no" >&5
    1589 echo "${ECHO_T}no" >&6
    1590 fi
     1939  { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
     1940echo "${ECHO_T}$ac_ct_CC" >&6; }
     1941else
     1942  { echo "$as_me:$LINENO: result: no" >&5
     1943echo "${ECHO_T}no" >&6; }
     1944fi
     1945
    15911946
    15921947  test -n "$ac_ct_CC" && break
    15931948done
    15941949
    1595   CC=$ac_ct_CC
     1950  if test "x$ac_ct_CC" = x; then
     1951    CC=""
     1952  else
     1953    case $cross_compiling:$ac_tool_warned in
     1954yes:)
     1955{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
     1956whose name does not start with the host triplet.  If you think this
     1957configuration is useful to you, please write to autoconf@gnu.org." >&5
     1958echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
     1959whose name does not start with the host triplet.  If you think this
     1960configuration is useful to you, please write to autoconf@gnu.org." >&2;}
     1961ac_tool_warned=yes ;;
     1962esac
     1963    CC=$ac_ct_CC
     1964  fi
    15961965fi
    15971966
     
    16061975
    16071976# Provide some information about the compiler.
    1608 echo "$as_me:$LINENO:" \
    1609      "checking for C compiler version" >&5
     1977echo "$as_me:$LINENO: checking for C compiler version" >&5
    16101978ac_compiler=`set X $ac_compile; echo $2`
    1611 { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
    1612   (eval $ac_compiler --version </dev/null >&5) 2>&5
     1979{ (ac_try="$ac_compiler --version >&5"
     1980case "(($ac_try" in
     1981  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     1982  *) ac_try_echo=$ac_try;;
     1983esac
     1984eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     1985  (eval "$ac_compiler --version >&5") 2>&5
    16131986  ac_status=$?
    16141987  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    16151988  (exit $ac_status); }
    1616 { (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
    1617   (eval $ac_compiler -v </dev/null >&5) 2>&5
     1989{ (ac_try="$ac_compiler -v >&5"
     1990case "(($ac_try" in
     1991  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     1992  *) ac_try_echo=$ac_try;;
     1993esac
     1994eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     1995  (eval "$ac_compiler -v >&5") 2>&5
    16181996  ac_status=$?
    16191997  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    16201998  (exit $ac_status); }
    1621 { (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
    1622   (eval $ac_compiler -V </dev/null >&5) 2>&5
     1999{ (ac_try="$ac_compiler -V >&5"
     2000case "(($ac_try" in
     2001  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2002  *) ac_try_echo=$ac_try;;
     2003esac
     2004eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2005  (eval "$ac_compiler -V >&5") 2>&5
    16232006  ac_status=$?
    16242007  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    16452028# It will help us diagnose broken compilers, and finding out an intuition
    16462029# of exeext.
    1647 echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
    1648 echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6
     2030{ echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
     2031echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; }
    16492032ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
    1650 if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
    1651   (eval $ac_link_default) 2>&5
     2033#
     2034# List of possible output files, starting from the most likely.
     2035# The algorithm is not robust to junk in `.', hence go to wildcards (a.*)
     2036# only as a last resort.  b.out is created by i960 compilers.
     2037ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out'
     2038#
     2039# The IRIX 6 linker writes into existing files which may not be
     2040# executable, retaining their permissions.  Remove them first so a
     2041# subsequent execution test works.
     2042ac_rmfiles=
     2043for ac_file in $ac_files
     2044do
     2045  case $ac_file in
     2046    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
     2047    * ) ac_rmfiles="$ac_rmfiles $ac_file";;
     2048  esac
     2049done
     2050rm -f $ac_rmfiles
     2051
     2052if { (ac_try="$ac_link_default"
     2053case "(($ac_try" in
     2054  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2055  *) ac_try_echo=$ac_try;;
     2056esac
     2057eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2058  (eval "$ac_link_default") 2>&5
    16522059  ac_status=$?
    16532060  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    16542061  (exit $ac_status); }; then
    1655   # Find the output, starting from the most likely.  This scheme is
    1656 # not robust to junk in `.', hence go to wildcards (a.*) only as a last
    1657 # resort.
    1658 
    1659 # Be careful to initialize this variable, since it used to be cached.
    1660 # Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
    1661 ac_cv_exeext=
    1662 # b.out is created by i960 compilers.
    1663 for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out
     2062  # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
     2063# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
     2064# in a Makefile.  We should not override ac_cv_exeext if it was cached,
     2065# so that the user can short-circuit this test for compilers unknown to
     2066# Autoconf.
     2067for ac_file in $ac_files
    16642068do
    16652069  test -f "$ac_file" || continue
    16662070  case $ac_file in
    1667     *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj )
    1668         ;;
    1669     conftest.$ac_ext )
    1670         # This is the source file.
     2071    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj )
    16712072        ;;
    16722073    [ab].out )
     
    16752076        break;;
    16762077    *.* )
    1677         ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
    1678         # FIXME: I believe we export ac_cv_exeext for Libtool,
    1679         # but it would be cool to find out if it's true.  Does anybody
    1680         # maintain Libtool? --akim.
    1681         export ac_cv_exeext
     2078        if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
     2079        then :; else
     2080           ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
     2081        fi
     2082        # We set ac_cv_exeext here because the later test for it is not
     2083        # safe: cross compilers may not add the suffix if given an `-o'
     2084        # argument, so we may need to know it at that point already.
     2085        # Even if this section looks crufty: it has the advantage of
     2086        # actually working.
    16822087        break;;
    16832088    * )
     
    16852090  esac
    16862091done
     2092test "$ac_cv_exeext" = no && ac_cv_exeext=
     2093
    16872094else
    16882095  echo "$as_me: failed program was:" >&5
     
    16972104
    16982105ac_exeext=$ac_cv_exeext
    1699 echo "$as_me:$LINENO: result: $ac_file" >&5
    1700 echo "${ECHO_T}$ac_file" >&6
    1701 
    1702 # Check the compiler produces executables we can run.  If not, either
     2106{ echo "$as_me:$LINENO: result: $ac_file" >&5
     2107echo "${ECHO_T}$ac_file" >&6; }
     2108
     2109# Check that the compiler produces executables we can run.  If not, either
    17032110# the compiler is broken, or we cross compile.
    1704 echo "$as_me:$LINENO: checking whether the C compiler works" >&5
    1705 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
     2111{ echo "$as_me:$LINENO: checking whether the C compiler works" >&5
     2112echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; }
    17062113# FIXME: These cross compiler hacks should be removed for Autoconf 3.0
    17072114# If not cross compiling, check that we can run a simple program.
    17082115if test "$cross_compiling" != yes; then
    17092116  if { ac_try='./$ac_file'
    1710   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    1711   (eval $ac_try) 2>&5
     2117  { (case "(($ac_try" in
     2118  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2119  *) ac_try_echo=$ac_try;;
     2120esac
     2121eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2122  (eval "$ac_try") 2>&5
    17122123  ac_status=$?
    17132124  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    17282139  fi
    17292140fi
    1730 echo "$as_me:$LINENO: result: yes" >&5
    1731 echo "${ECHO_T}yes" >&6
     2141{ echo "$as_me:$LINENO: result: yes" >&5
     2142echo "${ECHO_T}yes" >&6; }
    17322143
    17332144rm -f a.out a.exe conftest$ac_cv_exeext b.out
    17342145ac_clean_files=$ac_clean_files_save
    1735 # Check the compiler produces executables we can run.  If not, either
     2146# Check that the compiler produces executables we can run.  If not, either
    17362147# the compiler is broken, or we cross compile.
    1737 echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
    1738 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
    1739 echo "$as_me:$LINENO: result: $cross_compiling" >&5
    1740 echo "${ECHO_T}$cross_compiling" >&6
    1741 
    1742 echo "$as_me:$LINENO: checking for suffix of executables" >&5
    1743 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
    1744 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    1745   (eval $ac_link) 2>&5
     2148{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
     2149echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }
     2150{ echo "$as_me:$LINENO: result: $cross_compiling" >&5
     2151echo "${ECHO_T}$cross_compiling" >&6; }
     2152
     2153{ echo "$as_me:$LINENO: checking for suffix of executables" >&5
     2154echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; }
     2155if { (ac_try="$ac_link"
     2156case "(($ac_try" in
     2157  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2158  *) ac_try_echo=$ac_try;;
     2159esac
     2160eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2161  (eval "$ac_link") 2>&5
    17462162  ac_status=$?
    17472163  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    17542170  test -f "$ac_file" || continue
    17552171  case $ac_file in
    1756     *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;;
     2172    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
    17572173    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
    1758           export ac_cv_exeext
    17592174          break;;
    17602175    * ) break;;
     
    17702185
    17712186rm -f conftest$ac_cv_exeext
    1772 echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
    1773 echo "${ECHO_T}$ac_cv_exeext" >&6
     2187{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
     2188echo "${ECHO_T}$ac_cv_exeext" >&6; }
    17742189
    17752190rm -f conftest.$ac_ext
    17762191EXEEXT=$ac_cv_exeext
    17772192ac_exeext=$EXEEXT
    1778 echo "$as_me:$LINENO: checking for suffix of object files" >&5
    1779 echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6
     2193{ echo "$as_me:$LINENO: checking for suffix of object files" >&5
     2194echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; }
    17802195if test "${ac_cv_objext+set}" = set; then
    17812196  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    17972212_ACEOF
    17982213rm -f conftest.o conftest.obj
    1799 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
    1800   (eval $ac_compile) 2>&5
     2214if { (ac_try="$ac_compile"
     2215case "(($ac_try" in
     2216  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2217  *) ac_try_echo=$ac_try;;
     2218esac
     2219eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2220  (eval "$ac_compile") 2>&5
    18012221  ac_status=$?
    18022222  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    18032223  (exit $ac_status); }; then
    1804   for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
     2224  for ac_file in conftest.o conftest.obj conftest.*; do
     2225  test -f "$ac_file" || continue;
    18052226  case $ac_file in
    1806     *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;;
     2227    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;
    18072228    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
    18082229       break;;
     
    18222243rm -f conftest.$ac_cv_objext conftest.$ac_ext
    18232244fi
    1824 echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
    1825 echo "${ECHO_T}$ac_cv_objext" >&6
     2245{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
     2246echo "${ECHO_T}$ac_cv_objext" >&6; }
    18262247OBJEXT=$ac_cv_objext
    18272248ac_objext=$OBJEXT
    1828 echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
    1829 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
     2249{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
     2250echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; }
    18302251if test "${ac_cv_c_compiler_gnu+set}" = set; then
    18312252  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    18502271_ACEOF
    18512272rm -f conftest.$ac_objext
    1852 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
    1853   (eval $ac_compile) 2>conftest.er1
     2273if { (ac_try="$ac_compile"
     2274case "(($ac_try" in
     2275  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2276  *) ac_try_echo=$ac_try;;
     2277esac
     2278eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2279  (eval "$ac_compile") 2>conftest.er1
    18542280  ac_status=$?
    18552281  grep -v '^ *+' conftest.er1 >conftest.err
     
    18582284  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    18592285  (exit $ac_status); } &&
    1860          { ac_try='test -z "$ac_c_werror_flag"
    1861                          || test ! -s conftest.err'
    1862   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    1863   (eval $ac_try) 2>&5
     2286         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     2287  { (case "(($ac_try" in
     2288  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2289  *) ac_try_echo=$ac_try;;
     2290esac
     2291eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2292  (eval "$ac_try") 2>&5
    18642293  ac_status=$?
    18652294  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    18662295  (exit $ac_status); }; } &&
    18672296         { ac_try='test -s conftest.$ac_objext'
    1868   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    1869   (eval $ac_try) 2>&5
     2297  { (case "(($ac_try" in
     2298  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2299  *) ac_try_echo=$ac_try;;
     2300esac
     2301eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2302  (eval "$ac_try") 2>&5
    18702303  ac_status=$?
    18712304  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    18762309sed 's/^/| /' conftest.$ac_ext >&5
    18772310
    1878 ac_compiler_gnu=no
    1879 fi
    1880 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
     2311        ac_compiler_gnu=no
     2312fi
     2313
     2314rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
    18812315ac_cv_c_compiler_gnu=$ac_compiler_gnu
    18822316
    18832317fi
    1884 echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
    1885 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
     2318{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
     2319echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; }
    18862320GCC=`test $ac_compiler_gnu = yes && echo yes`
    18872321ac_test_CFLAGS=${CFLAGS+set}
    18882322ac_save_CFLAGS=$CFLAGS
    1889 CFLAGS="-g"
    1890 echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
    1891 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
     2323{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
     2324echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; }
    18922325if test "${ac_cv_prog_cc_g+set}" = set; then
    18932326  echo $ECHO_N "(cached) $ECHO_C" >&6
    18942327else
    1895   cat >conftest.$ac_ext <<_ACEOF
     2328  ac_save_c_werror_flag=$ac_c_werror_flag
     2329   ac_c_werror_flag=yes
     2330   ac_cv_prog_cc_g=no
     2331   CFLAGS="-g"
     2332   cat >conftest.$ac_ext <<_ACEOF
    18962333/* confdefs.h.  */
    18972334_ACEOF
     
    19092346_ACEOF
    19102347rm -f conftest.$ac_objext
    1911 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
    1912   (eval $ac_compile) 2>conftest.er1
     2348if { (ac_try="$ac_compile"
     2349case "(($ac_try" in
     2350  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2351  *) ac_try_echo=$ac_try;;
     2352esac
     2353eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2354  (eval "$ac_compile") 2>conftest.er1
    19132355  ac_status=$?
    19142356  grep -v '^ *+' conftest.er1 >conftest.err
     
    19172359  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    19182360  (exit $ac_status); } &&
    1919          { ac_try='test -z "$ac_c_werror_flag"
    1920                          || test ! -s conftest.err'
    1921   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    1922   (eval $ac_try) 2>&5
     2361         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     2362  { (case "(($ac_try" in
     2363  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2364  *) ac_try_echo=$ac_try;;
     2365esac
     2366eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2367  (eval "$ac_try") 2>&5
    19232368  ac_status=$?
    19242369  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    19252370  (exit $ac_status); }; } &&
    19262371         { ac_try='test -s conftest.$ac_objext'
    1927   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    1928   (eval $ac_try) 2>&5
     2372  { (case "(($ac_try" in
     2373  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2374  *) ac_try_echo=$ac_try;;
     2375esac
     2376eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2377  (eval "$ac_try") 2>&5
    19292378  ac_status=$?
    19302379  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    19352384sed 's/^/| /' conftest.$ac_ext >&5
    19362385
    1937 ac_cv_prog_cc_g=no
    1938 fi
    1939 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
    1940 fi
    1941 echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
    1942 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
     2386        CFLAGS=""
     2387      cat >conftest.$ac_ext <<_ACEOF
     2388/* confdefs.h.  */
     2389_ACEOF
     2390cat confdefs.h >>conftest.$ac_ext
     2391cat >>conftest.$ac_ext <<_ACEOF
     2392/* end confdefs.h.  */
     2393
     2394int
     2395main ()
     2396{
     2397
     2398  ;
     2399  return 0;
     2400}
     2401_ACEOF
     2402rm -f conftest.$ac_objext
     2403if { (ac_try="$ac_compile"
     2404case "(($ac_try" in
     2405  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2406  *) ac_try_echo=$ac_try;;
     2407esac
     2408eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2409  (eval "$ac_compile") 2>conftest.er1
     2410  ac_status=$?
     2411  grep -v '^ *+' conftest.er1 >conftest.err
     2412  rm -f conftest.er1
     2413  cat conftest.err >&5
     2414  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     2415  (exit $ac_status); } &&
     2416         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     2417  { (case "(($ac_try" in
     2418  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2419  *) ac_try_echo=$ac_try;;
     2420esac
     2421eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2422  (eval "$ac_try") 2>&5
     2423  ac_status=$?
     2424  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     2425  (exit $ac_status); }; } &&
     2426         { ac_try='test -s conftest.$ac_objext'
     2427  { (case "(($ac_try" in
     2428  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2429  *) ac_try_echo=$ac_try;;
     2430esac
     2431eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2432  (eval "$ac_try") 2>&5
     2433  ac_status=$?
     2434  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     2435  (exit $ac_status); }; }; then
     2436  :
     2437else
     2438  echo "$as_me: failed program was:" >&5
     2439sed 's/^/| /' conftest.$ac_ext >&5
     2440
     2441        ac_c_werror_flag=$ac_save_c_werror_flag
     2442         CFLAGS="-g"
     2443         cat >conftest.$ac_ext <<_ACEOF
     2444/* confdefs.h.  */
     2445_ACEOF
     2446cat confdefs.h >>conftest.$ac_ext
     2447cat >>conftest.$ac_ext <<_ACEOF
     2448/* end confdefs.h.  */
     2449
     2450int
     2451main ()
     2452{
     2453
     2454  ;
     2455  return 0;
     2456}
     2457_ACEOF
     2458rm -f conftest.$ac_objext
     2459if { (ac_try="$ac_compile"
     2460case "(($ac_try" in
     2461  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2462  *) ac_try_echo=$ac_try;;
     2463esac
     2464eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2465  (eval "$ac_compile") 2>conftest.er1
     2466  ac_status=$?
     2467  grep -v '^ *+' conftest.er1 >conftest.err
     2468  rm -f conftest.er1
     2469  cat conftest.err >&5
     2470  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     2471  (exit $ac_status); } &&
     2472         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     2473  { (case "(($ac_try" in
     2474  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2475  *) ac_try_echo=$ac_try;;
     2476esac
     2477eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2478  (eval "$ac_try") 2>&5
     2479  ac_status=$?
     2480  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     2481  (exit $ac_status); }; } &&
     2482         { ac_try='test -s conftest.$ac_objext'
     2483  { (case "(($ac_try" in
     2484  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2485  *) ac_try_echo=$ac_try;;
     2486esac
     2487eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2488  (eval "$ac_try") 2>&5
     2489  ac_status=$?
     2490  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     2491  (exit $ac_status); }; }; then
     2492  ac_cv_prog_cc_g=yes
     2493else
     2494  echo "$as_me: failed program was:" >&5
     2495sed 's/^/| /' conftest.$ac_ext >&5
     2496
     2497
     2498fi
     2499
     2500rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
     2501fi
     2502
     2503rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
     2504fi
     2505
     2506rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
     2507   ac_c_werror_flag=$ac_save_c_werror_flag
     2508fi
     2509{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
     2510echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; }
    19432511if test "$ac_test_CFLAGS" = set; then
    19442512  CFLAGS=$ac_save_CFLAGS
     
    19562524  fi
    19572525fi
    1958 echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
    1959 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
    1960 if test "${ac_cv_prog_cc_stdc+set}" = set; then
     2526{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5
     2527echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; }
     2528if test "${ac_cv_prog_cc_c89+set}" = set; then
    19612529  echo $ECHO_N "(cached) $ECHO_C" >&6
    19622530else
    1963   ac_cv_prog_cc_stdc=no
     2531  ac_cv_prog_cc_c89=no
    19642532ac_save_CC=$CC
    19652533cat >conftest.$ac_ext <<_ACEOF
     
    19952563   function prototypes and stuff, but not '\xHH' hex character constants.
    19962564   These don't provoke an error unfortunately, instead are silently treated
    1997    as 'x'.  The following induces an error, until -std1 is added to get
     2565   as 'x'.  The following induces an error, until -std is added to get
    19982566   proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
    19992567   array size at least.  It's necessary to write '\x00'==0 to get something
    2000    that's true only with -std1.  */
     2568   that's true only with -std.  */
    20012569int osf4_cc_array ['\x00' == 0 ? 1 : -1];
     2570
     2571/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
     2572   inside strings and character constants.  */
     2573#define FOO(x) 'x'
     2574int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
    20022575
    20032576int test (int i, double x);
     
    20152588}
    20162589_ACEOF
    2017 # Don't try gcc -ansi; that turns off useful extensions and
    2018 # breaks some systems' header files.
    2019 # AIX                   -qlanglvl=ansi
    2020 # Ultrix and OSF/1      -std1
    2021 # HP-UX 10.20 and later -Ae
    2022 # HP-UX older versions  -Aa -D_HPUX_SOURCE
    2023 # SVR4                  -Xc -D__EXTENSIONS__
    2024 for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
     2590for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
     2591        -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
    20252592do
    20262593  CC="$ac_save_CC $ac_arg"
    20272594  rm -f conftest.$ac_objext
    2028 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
    2029   (eval $ac_compile) 2>conftest.er1
     2595if { (ac_try="$ac_compile"
     2596case "(($ac_try" in
     2597  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2598  *) ac_try_echo=$ac_try;;
     2599esac
     2600eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2601  (eval "$ac_compile") 2>conftest.er1
    20302602  ac_status=$?
    20312603  grep -v '^ *+' conftest.er1 >conftest.err
     
    20342606  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    20352607  (exit $ac_status); } &&
    2036          { ac_try='test -z "$ac_c_werror_flag"
    2037                          || test ! -s conftest.err'
    2038   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2039   (eval $ac_try) 2>&5
     2608         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     2609  { (case "(($ac_try" in
     2610  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2611  *) ac_try_echo=$ac_try;;
     2612esac
     2613eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2614  (eval "$ac_try") 2>&5
    20402615  ac_status=$?
    20412616  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    20422617  (exit $ac_status); }; } &&
    20432618         { ac_try='test -s conftest.$ac_objext'
    2044   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2045   (eval $ac_try) 2>&5
     2619  { (case "(($ac_try" in
     2620  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2621  *) ac_try_echo=$ac_try;;
     2622esac
     2623eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2624  (eval "$ac_try") 2>&5
    20462625  ac_status=$?
    20472626  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    20482627  (exit $ac_status); }; }; then
    2049   ac_cv_prog_cc_stdc=$ac_arg
    2050 break
     2628  ac_cv_prog_cc_c89=$ac_arg
    20512629else
    20522630  echo "$as_me: failed program was:" >&5
    20532631sed 's/^/| /' conftest.$ac_ext >&5
    20542632
    2055 fi
    2056 rm -f conftest.err conftest.$ac_objext
     2633
     2634fi
     2635
     2636rm -f core conftest.err conftest.$ac_objext
     2637  test "x$ac_cv_prog_cc_c89" != "xno" && break
    20572638done
    2058 rm -f conftest.$ac_ext conftest.$ac_objext
     2639rm -f conftest.$ac_ext
    20592640CC=$ac_save_CC
    20602641
    20612642fi
    2062 
    2063 case "x$ac_cv_prog_cc_stdc" in
    2064   x|xno)
    2065     echo "$as_me:$LINENO: result: none needed" >&5
    2066 echo "${ECHO_T}none needed" >&6 ;;
     2643# AC_CACHE_VAL
     2644case "x$ac_cv_prog_cc_c89" in
     2645  x)
     2646    { echo "$as_me:$LINENO: result: none needed" >&5
     2647echo "${ECHO_T}none needed" >&6; } ;;
     2648  xno)
     2649    { echo "$as_me:$LINENO: result: unsupported" >&5
     2650echo "${ECHO_T}unsupported" >&6; } ;;
    20672651  *)
    2068     echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
    2069 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
    2070     CC="$CC $ac_cv_prog_cc_stdc" ;;
    2071 esac
    2072 
    2073 # Some people use a C++ compiler to compile C.  Since we use `exit',
    2074 # in C++ we need to declare it.  In case someone uses the same compiler
    2075 # for both compiling C and C++ we need to have the C++ compiler decide
    2076 # the declaration of exit, since it's the most demanding environment.
    2077 cat >conftest.$ac_ext <<_ACEOF
    2078 #ifndef __cplusplus
    2079   choke me
    2080 #endif
    2081 _ACEOF
    2082 rm -f conftest.$ac_objext
    2083 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
    2084   (eval $ac_compile) 2>conftest.er1
    2085   ac_status=$?
    2086   grep -v '^ *+' conftest.er1 >conftest.err
    2087   rm -f conftest.er1
    2088   cat conftest.err >&5
    2089   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2090   (exit $ac_status); } &&
    2091          { ac_try='test -z "$ac_c_werror_flag"
    2092                          || test ! -s conftest.err'
    2093   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2094   (eval $ac_try) 2>&5
    2095   ac_status=$?
    2096   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2097   (exit $ac_status); }; } &&
    2098          { ac_try='test -s conftest.$ac_objext'
    2099   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2100   (eval $ac_try) 2>&5
    2101   ac_status=$?
    2102   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2103   (exit $ac_status); }; }; then
    2104   for ac_declaration in \
    2105    '' \
    2106    'extern "C" void std::exit (int) throw (); using std::exit;' \
    2107    'extern "C" void std::exit (int); using std::exit;' \
    2108    'extern "C" void exit (int) throw ();' \
    2109    'extern "C" void exit (int);' \
    2110    'void exit (int);'
    2111 do
    2112   cat >conftest.$ac_ext <<_ACEOF
    2113 /* confdefs.h.  */
    2114 _ACEOF
    2115 cat confdefs.h >>conftest.$ac_ext
    2116 cat >>conftest.$ac_ext <<_ACEOF
    2117 /* end confdefs.h.  */
    2118 $ac_declaration
    2119 #include <stdlib.h>
    2120 int
    2121 main ()
    2122 {
    2123 exit (42);
    2124   ;
    2125   return 0;
    2126 }
    2127 _ACEOF
    2128 rm -f conftest.$ac_objext
    2129 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
    2130   (eval $ac_compile) 2>conftest.er1
    2131   ac_status=$?
    2132   grep -v '^ *+' conftest.er1 >conftest.err
    2133   rm -f conftest.er1
    2134   cat conftest.err >&5
    2135   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2136   (exit $ac_status); } &&
    2137          { ac_try='test -z "$ac_c_werror_flag"
    2138                          || test ! -s conftest.err'
    2139   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2140   (eval $ac_try) 2>&5
    2141   ac_status=$?
    2142   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2143   (exit $ac_status); }; } &&
    2144          { ac_try='test -s conftest.$ac_objext'
    2145   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2146   (eval $ac_try) 2>&5
    2147   ac_status=$?
    2148   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2149   (exit $ac_status); }; }; then
    2150   :
    2151 else
    2152   echo "$as_me: failed program was:" >&5
    2153 sed 's/^/| /' conftest.$ac_ext >&5
    2154 
    2155 continue
    2156 fi
    2157 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
    2158   cat >conftest.$ac_ext <<_ACEOF
    2159 /* confdefs.h.  */
    2160 _ACEOF
    2161 cat confdefs.h >>conftest.$ac_ext
    2162 cat >>conftest.$ac_ext <<_ACEOF
    2163 /* end confdefs.h.  */
    2164 $ac_declaration
    2165 int
    2166 main ()
    2167 {
    2168 exit (42);
    2169   ;
    2170   return 0;
    2171 }
    2172 _ACEOF
    2173 rm -f conftest.$ac_objext
    2174 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
    2175   (eval $ac_compile) 2>conftest.er1
    2176   ac_status=$?
    2177   grep -v '^ *+' conftest.er1 >conftest.err
    2178   rm -f conftest.er1
    2179   cat conftest.err >&5
    2180   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2181   (exit $ac_status); } &&
    2182          { ac_try='test -z "$ac_c_werror_flag"
    2183                          || test ! -s conftest.err'
    2184   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2185   (eval $ac_try) 2>&5
    2186   ac_status=$?
    2187   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2188   (exit $ac_status); }; } &&
    2189          { ac_try='test -s conftest.$ac_objext'
    2190   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2191   (eval $ac_try) 2>&5
    2192   ac_status=$?
    2193   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2194   (exit $ac_status); }; }; then
    2195   break
    2196 else
    2197   echo "$as_me: failed program was:" >&5
    2198 sed 's/^/| /' conftest.$ac_ext >&5
    2199 
    2200 fi
    2201 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
    2202 done
    2203 rm -f conftest*
    2204 if test -n "$ac_declaration"; then
    2205   echo '#ifdef __cplusplus' >>confdefs.h
    2206   echo $ac_declaration      >>confdefs.h
    2207   echo '#endif'             >>confdefs.h
    2208 fi
    2209 
    2210 else
    2211   echo "$as_me: failed program was:" >&5
    2212 sed 's/^/| /' conftest.$ac_ext >&5
    2213 
    2214 fi
    2215 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
     2652    CC="$CC $ac_cv_prog_cc_c89"
     2653    { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5
     2654echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;;
     2655esac
     2656
     2657
    22162658ac_ext=c
    22172659ac_cpp='$CPP $CPPFLAGS'
     
    22262668
    22272669
    2228 echo "$as_me:$LINENO: checking for /usr/athena/include" >&5
    2229 echo $ECHO_N "checking for /usr/athena/include... $ECHO_C" >&6
     2670{ echo "$as_me:$LINENO: checking for /usr/athena/include" >&5
     2671echo $ECHO_N "checking for /usr/athena/include... $ECHO_C" >&6; }
    22302672if test -d /usr/athena/include; then
    22312673        CFLAGS=${CFLAGS}\ -I/usr/athena/include
    22322674        CPPFLAGS=${CPPFLAGS}\ -I/usr/athena/include
    2233         echo "$as_me:$LINENO: result: yes" >&5
    2234 echo "${ECHO_T}yes" >&6
    2235 else
    2236         echo "$as_me:$LINENO: result: no" >&5
    2237 echo "${ECHO_T}no" >&6
    2238 fi
    2239 echo "$as_me:$LINENO: checking for /usr/athena/lib" >&5
    2240 echo $ECHO_N "checking for /usr/athena/lib... $ECHO_C" >&6
     2675        { echo "$as_me:$LINENO: result: yes" >&5
     2676echo "${ECHO_T}yes" >&6; }
     2677else
     2678        { echo "$as_me:$LINENO: result: no" >&5
     2679echo "${ECHO_T}no" >&6; }
     2680fi
     2681{ echo "$as_me:$LINENO: checking for /usr/athena/lib" >&5
     2682echo $ECHO_N "checking for /usr/athena/lib... $ECHO_C" >&6; }
    22412683if test -d /usr/athena/lib; then
    22422684        LDFLAGS=-L/usr/athena/lib\ ${LDFLAGS}
    2243         echo "$as_me:$LINENO: result: yes" >&5
    2244 echo "${ECHO_T}yes" >&6
    2245 else
    2246         echo "$as_me:$LINENO: result: no" >&5
    2247 echo "${ECHO_T}no" >&6
    2248 fi
    2249 
    2250 echo "$as_me:$LINENO: checking for /usr/include/kerberosIV" >&5
    2251 echo $ECHO_N "checking for /usr/include/kerberosIV... $ECHO_C" >&6
     2685        { echo "$as_me:$LINENO: result: yes" >&5
     2686echo "${ECHO_T}yes" >&6; }
     2687else
     2688        { echo "$as_me:$LINENO: result: no" >&5
     2689echo "${ECHO_T}no" >&6; }
     2690fi
     2691
     2692{ echo "$as_me:$LINENO: checking for /usr/include/kerberosIV" >&5
     2693echo $ECHO_N "checking for /usr/include/kerberosIV... $ECHO_C" >&6; }
    22522694if test -d /usr/include/kerberosIV; then
    22532695        CFLAGS=${CFLAGS}\ -I/usr/include/kerberosIV
    22542696        CPPFLAGS=${CPPFLAGS}\ -I/usr/include/kerberosIV
    2255         echo "$as_me:$LINENO: result: yes" >&5
    2256 echo "${ECHO_T}yes" >&6
    2257 else
    2258         echo "$as_me:$LINENO: result: no" >&5
    2259 echo "${ECHO_T}no" >&6
    2260 fi
    2261 
    2262 
    2263 echo "$as_me:$LINENO: checking for initscr in -lncurses" >&5
    2264 echo $ECHO_N "checking for initscr in -lncurses... $ECHO_C" >&6
     2697        { echo "$as_me:$LINENO: result: yes" >&5
     2698echo "${ECHO_T}yes" >&6; }
     2699else
     2700        { echo "$as_me:$LINENO: result: no" >&5
     2701echo "${ECHO_T}no" >&6; }
     2702fi
     2703
     2704
     2705{ echo "$as_me:$LINENO: checking for initscr in -lncurses" >&5
     2706echo $ECHO_N "checking for initscr in -lncurses... $ECHO_C" >&6; }
    22652707if test "${ac_cv_lib_ncurses_initscr+set}" = set; then
    22662708  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    22752717/* end confdefs.h.  */
    22762718
    2277 /* Override any gcc2 internal prototype to avoid an error.  */
     2719/* Override any GCC internal prototype to avoid an error.
     2720   Use char because int might match the return type of a GCC
     2721   builtin and then its argument prototype would still apply.  */
    22782722#ifdef __cplusplus
    22792723extern "C"
    22802724#endif
    2281 /* We use char because int might match the return type of a gcc2
    2282    builtin and then its argument prototype would still apply.  */
    22832725char initscr ();
    22842726int
    22852727main ()
    22862728{
    2287 initscr ();
     2729return initscr ();
    22882730  ;
    22892731  return 0;
     
    22912733_ACEOF
    22922734rm -f conftest.$ac_objext conftest$ac_exeext
    2293 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    2294   (eval $ac_link) 2>conftest.er1
     2735if { (ac_try="$ac_link"
     2736case "(($ac_try" in
     2737  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2738  *) ac_try_echo=$ac_try;;
     2739esac
     2740eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2741  (eval "$ac_link") 2>conftest.er1
    22952742  ac_status=$?
    22962743  grep -v '^ *+' conftest.er1 >conftest.err
     
    22992746  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    23002747  (exit $ac_status); } &&
    2301          { ac_try='test -z "$ac_c_werror_flag"
    2302                          || test ! -s conftest.err'
    2303   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2304   (eval $ac_try) 2>&5
     2748         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     2749  { (case "(($ac_try" in
     2750  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2751  *) ac_try_echo=$ac_try;;
     2752esac
     2753eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2754  (eval "$ac_try") 2>&5
    23052755  ac_status=$?
    23062756  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    23072757  (exit $ac_status); }; } &&
    23082758         { ac_try='test -s conftest$ac_exeext'
    2309   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2310   (eval $ac_try) 2>&5
     2759  { (case "(($ac_try" in
     2760  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2761  *) ac_try_echo=$ac_try;;
     2762esac
     2763eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2764  (eval "$ac_try") 2>&5
    23112765  ac_status=$?
    23122766  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    23172771sed 's/^/| /' conftest.$ac_ext >&5
    23182772
    2319 ac_cv_lib_ncurses_initscr=no
    2320 fi
    2321 rm -f conftest.err conftest.$ac_objext \
     2773        ac_cv_lib_ncurses_initscr=no
     2774fi
     2775
     2776rm -f core conftest.err conftest.$ac_objext \
    23222777      conftest$ac_exeext conftest.$ac_ext
    23232778LIBS=$ac_check_lib_save_LIBS
    23242779fi
    2325 echo "$as_me:$LINENO: result: $ac_cv_lib_ncurses_initscr" >&5
    2326 echo "${ECHO_T}$ac_cv_lib_ncurses_initscr" >&6
     2780{ echo "$as_me:$LINENO: result: $ac_cv_lib_ncurses_initscr" >&5
     2781echo "${ECHO_T}$ac_cv_lib_ncurses_initscr" >&6; }
    23272782if test $ac_cv_lib_ncurses_initscr = yes; then
    23282783  cat >>confdefs.h <<_ACEOF
     
    23342789else
    23352790
    2336 echo "$as_me:$LINENO: checking for initscr in -lcurses" >&5
    2337 echo $ECHO_N "checking for initscr in -lcurses... $ECHO_C" >&6
     2791{ echo "$as_me:$LINENO: checking for initscr in -lcurses" >&5
     2792echo $ECHO_N "checking for initscr in -lcurses... $ECHO_C" >&6; }
    23382793if test "${ac_cv_lib_curses_initscr+set}" = set; then
    23392794  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    23492804/* end confdefs.h.  */
    23502805
    2351 /* Override any gcc2 internal prototype to avoid an error.  */
     2806/* Override any GCC internal prototype to avoid an error.
     2807   Use char because int might match the return type of a GCC
     2808   builtin and then its argument prototype would still apply.  */
    23522809#ifdef __cplusplus
    23532810extern "C"
    23542811#endif
    2355 /* We use char because int might match the return type of a gcc2
    2356    builtin and then its argument prototype would still apply.  */
    23572812char initscr ();
    23582813int
    23592814main ()
    23602815{
    2361 initscr ();
     2816return initscr ();
    23622817  ;
    23632818  return 0;
     
    23652820_ACEOF
    23662821rm -f conftest.$ac_objext conftest$ac_exeext
    2367 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    2368   (eval $ac_link) 2>conftest.er1
     2822if { (ac_try="$ac_link"
     2823case "(($ac_try" in
     2824  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2825  *) ac_try_echo=$ac_try;;
     2826esac
     2827eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2828  (eval "$ac_link") 2>conftest.er1
    23692829  ac_status=$?
    23702830  grep -v '^ *+' conftest.er1 >conftest.err
     
    23732833  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    23742834  (exit $ac_status); } &&
    2375          { ac_try='test -z "$ac_c_werror_flag"
    2376                          || test ! -s conftest.err'
    2377   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2378   (eval $ac_try) 2>&5
     2835         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     2836  { (case "(($ac_try" in
     2837  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2838  *) ac_try_echo=$ac_try;;
     2839esac
     2840eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2841  (eval "$ac_try") 2>&5
    23792842  ac_status=$?
    23802843  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    23812844  (exit $ac_status); }; } &&
    23822845         { ac_try='test -s conftest$ac_exeext'
    2383   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2384   (eval $ac_try) 2>&5
     2846  { (case "(($ac_try" in
     2847  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2848  *) ac_try_echo=$ac_try;;
     2849esac
     2850eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2851  (eval "$ac_try") 2>&5
    23852852  ac_status=$?
    23862853  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    23912858sed 's/^/| /' conftest.$ac_ext >&5
    23922859
    2393 ac_cv_lib_curses_initscr=no
    2394 fi
    2395 rm -f conftest.err conftest.$ac_objext \
     2860        ac_cv_lib_curses_initscr=no
     2861fi
     2862
     2863rm -f core conftest.err conftest.$ac_objext \
    23962864      conftest$ac_exeext conftest.$ac_ext
    23972865LIBS=$ac_check_lib_save_LIBS
    23982866fi
    2399 echo "$as_me:$LINENO: result: $ac_cv_lib_curses_initscr" >&5
    2400 echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6
     2867{ echo "$as_me:$LINENO: result: $ac_cv_lib_curses_initscr" >&5
     2868echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6; }
    24012869if test $ac_cv_lib_curses_initscr = yes; then
    24022870  cat >>confdefs.h <<_ACEOF
     
    24152883
    24162884
    2417 echo "$as_me:$LINENO: checking for com_err in -lcom_err" >&5
    2418 echo $ECHO_N "checking for com_err in -lcom_err... $ECHO_C" >&6
     2885{ echo "$as_me:$LINENO: checking for com_err in -lcom_err" >&5
     2886echo $ECHO_N "checking for com_err in -lcom_err... $ECHO_C" >&6; }
    24192887if test "${ac_cv_lib_com_err_com_err+set}" = set; then
    24202888  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    24292897/* end confdefs.h.  */
    24302898
    2431 /* Override any gcc2 internal prototype to avoid an error.  */
     2899/* Override any GCC internal prototype to avoid an error.
     2900   Use char because int might match the return type of a GCC
     2901   builtin and then its argument prototype would still apply.  */
    24322902#ifdef __cplusplus
    24332903extern "C"
    24342904#endif
    2435 /* We use char because int might match the return type of a gcc2
    2436    builtin and then its argument prototype would still apply.  */
    24372905char com_err ();
    24382906int
    24392907main ()
    24402908{
    2441 com_err ();
     2909return com_err ();
    24422910  ;
    24432911  return 0;
     
    24452913_ACEOF
    24462914rm -f conftest.$ac_objext conftest$ac_exeext
    2447 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    2448   (eval $ac_link) 2>conftest.er1
     2915if { (ac_try="$ac_link"
     2916case "(($ac_try" in
     2917  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2918  *) ac_try_echo=$ac_try;;
     2919esac
     2920eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2921  (eval "$ac_link") 2>conftest.er1
    24492922  ac_status=$?
    24502923  grep -v '^ *+' conftest.er1 >conftest.err
     
    24532926  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    24542927  (exit $ac_status); } &&
    2455          { ac_try='test -z "$ac_c_werror_flag"
    2456                          || test ! -s conftest.err'
    2457   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2458   (eval $ac_try) 2>&5
     2928         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     2929  { (case "(($ac_try" in
     2930  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2931  *) ac_try_echo=$ac_try;;
     2932esac
     2933eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2934  (eval "$ac_try") 2>&5
    24592935  ac_status=$?
    24602936  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    24612937  (exit $ac_status); }; } &&
    24622938         { ac_try='test -s conftest$ac_exeext'
    2463   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2464   (eval $ac_try) 2>&5
     2939  { (case "(($ac_try" in
     2940  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     2941  *) ac_try_echo=$ac_try;;
     2942esac
     2943eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     2944  (eval "$ac_try") 2>&5
    24652945  ac_status=$?
    24662946  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    24712951sed 's/^/| /' conftest.$ac_ext >&5
    24722952
    2473 ac_cv_lib_com_err_com_err=no
    2474 fi
    2475 rm -f conftest.err conftest.$ac_objext \
     2953        ac_cv_lib_com_err_com_err=no
     2954fi
     2955
     2956rm -f core conftest.err conftest.$ac_objext \
    24762957      conftest$ac_exeext conftest.$ac_ext
    24772958LIBS=$ac_check_lib_save_LIBS
    24782959fi
    2479 echo "$as_me:$LINENO: result: $ac_cv_lib_com_err_com_err" >&5
    2480 echo "${ECHO_T}$ac_cv_lib_com_err_com_err" >&6
     2960{ echo "$as_me:$LINENO: result: $ac_cv_lib_com_err_com_err" >&5
     2961echo "${ECHO_T}$ac_cv_lib_com_err_com_err" >&6; }
    24812962if test $ac_cv_lib_com_err_com_err = yes; then
    24822963  cat >>confdefs.h <<_ACEOF
     
    24892970
    24902971
    2491 echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5
    2492 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6
     2972{ echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5
     2973echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6; }
    24932974if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then
    24942975  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    25032984/* end confdefs.h.  */
    25042985
    2505 /* Override any gcc2 internal prototype to avoid an error.  */
     2986/* Override any GCC internal prototype to avoid an error.
     2987   Use char because int might match the return type of a GCC
     2988   builtin and then its argument prototype would still apply.  */
    25062989#ifdef __cplusplus
    25072990extern "C"
    25082991#endif
    2509 /* We use char because int might match the return type of a gcc2
    2510    builtin and then its argument prototype would still apply.  */
    25112992char gethostbyname ();
    25122993int
    25132994main ()
    25142995{
    2515 gethostbyname ();
     2996return gethostbyname ();
    25162997  ;
    25172998  return 0;
     
    25193000_ACEOF
    25203001rm -f conftest.$ac_objext conftest$ac_exeext
    2521 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    2522   (eval $ac_link) 2>conftest.er1
     3002if { (ac_try="$ac_link"
     3003case "(($ac_try" in
     3004  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3005  *) ac_try_echo=$ac_try;;
     3006esac
     3007eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3008  (eval "$ac_link") 2>conftest.er1
    25233009  ac_status=$?
    25243010  grep -v '^ *+' conftest.er1 >conftest.err
     
    25273013  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    25283014  (exit $ac_status); } &&
    2529          { ac_try='test -z "$ac_c_werror_flag"
    2530                          || test ! -s conftest.err'
    2531   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2532   (eval $ac_try) 2>&5
     3015         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     3016  { (case "(($ac_try" in
     3017  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3018  *) ac_try_echo=$ac_try;;
     3019esac
     3020eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3021  (eval "$ac_try") 2>&5
    25333022  ac_status=$?
    25343023  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    25353024  (exit $ac_status); }; } &&
    25363025         { ac_try='test -s conftest$ac_exeext'
    2537   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2538   (eval $ac_try) 2>&5
     3026  { (case "(($ac_try" in
     3027  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3028  *) ac_try_echo=$ac_try;;
     3029esac
     3030eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3031  (eval "$ac_try") 2>&5
    25393032  ac_status=$?
    25403033  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    25453038sed 's/^/| /' conftest.$ac_ext >&5
    25463039
    2547 ac_cv_lib_nsl_gethostbyname=no
    2548 fi
    2549 rm -f conftest.err conftest.$ac_objext \
     3040        ac_cv_lib_nsl_gethostbyname=no
     3041fi
     3042
     3043rm -f core conftest.err conftest.$ac_objext \
    25503044      conftest$ac_exeext conftest.$ac_ext
    25513045LIBS=$ac_check_lib_save_LIBS
    25523046fi
    2553 echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5
    2554 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6
     3047{ echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5
     3048echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6; }
    25553049if test $ac_cv_lib_nsl_gethostbyname = yes; then
    25563050  cat >>confdefs.h <<_ACEOF
     
    25633057
    25643058
    2565 echo "$as_me:$LINENO: checking for socket in -lsocket" >&5
    2566 echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6
     3059{ echo "$as_me:$LINENO: checking for socket in -lsocket" >&5
     3060echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6; }
    25673061if test "${ac_cv_lib_socket_socket+set}" = set; then
    25683062  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    25773071/* end confdefs.h.  */
    25783072
    2579 /* Override any gcc2 internal prototype to avoid an error.  */
     3073/* Override any GCC internal prototype to avoid an error.
     3074   Use char because int might match the return type of a GCC
     3075   builtin and then its argument prototype would still apply.  */
    25803076#ifdef __cplusplus
    25813077extern "C"
    25823078#endif
    2583 /* We use char because int might match the return type of a gcc2
    2584    builtin and then its argument prototype would still apply.  */
    25853079char socket ();
    25863080int
    25873081main ()
    25883082{
    2589 socket ();
     3083return socket ();
    25903084  ;
    25913085  return 0;
     
    25933087_ACEOF
    25943088rm -f conftest.$ac_objext conftest$ac_exeext
    2595 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    2596   (eval $ac_link) 2>conftest.er1
     3089if { (ac_try="$ac_link"
     3090case "(($ac_try" in
     3091  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3092  *) ac_try_echo=$ac_try;;
     3093esac
     3094eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3095  (eval "$ac_link") 2>conftest.er1
    25973096  ac_status=$?
    25983097  grep -v '^ *+' conftest.er1 >conftest.err
     
    26013100  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    26023101  (exit $ac_status); } &&
    2603          { ac_try='test -z "$ac_c_werror_flag"
    2604                          || test ! -s conftest.err'
    2605   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2606   (eval $ac_try) 2>&5
     3102         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     3103  { (case "(($ac_try" in
     3104  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3105  *) ac_try_echo=$ac_try;;
     3106esac
     3107eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3108  (eval "$ac_try") 2>&5
    26073109  ac_status=$?
    26083110  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    26093111  (exit $ac_status); }; } &&
    26103112         { ac_try='test -s conftest$ac_exeext'
    2611   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2612   (eval $ac_try) 2>&5
     3113  { (case "(($ac_try" in
     3114  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3115  *) ac_try_echo=$ac_try;;
     3116esac
     3117eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3118  (eval "$ac_try") 2>&5
    26133119  ac_status=$?
    26143120  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    26193125sed 's/^/| /' conftest.$ac_ext >&5
    26203126
    2621 ac_cv_lib_socket_socket=no
    2622 fi
    2623 rm -f conftest.err conftest.$ac_objext \
     3127        ac_cv_lib_socket_socket=no
     3128fi
     3129
     3130rm -f core conftest.err conftest.$ac_objext \
    26243131      conftest$ac_exeext conftest.$ac_ext
    26253132LIBS=$ac_check_lib_save_LIBS
    26263133fi
    2627 echo "$as_me:$LINENO: result: $ac_cv_lib_socket_socket" >&5
    2628 echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6
     3134{ echo "$as_me:$LINENO: result: $ac_cv_lib_socket_socket" >&5
     3135echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6; }
    26293136if test $ac_cv_lib_socket_socket = yes; then
    26303137  cat >>confdefs.h <<_ACEOF
     
    26373144
    26383145
    2639 echo "$as_me:$LINENO: checking for krb5_derive_key in -lk5crypto" >&5
    2640 echo $ECHO_N "checking for krb5_derive_key in -lk5crypto... $ECHO_C" >&6
     3146{ echo "$as_me:$LINENO: checking for krb5_derive_key in -lk5crypto" >&5
     3147echo $ECHO_N "checking for krb5_derive_key in -lk5crypto... $ECHO_C" >&6; }
    26413148if test "${ac_cv_lib_k5crypto_krb5_derive_key+set}" = set; then
    26423149  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    26513158/* end confdefs.h.  */
    26523159
    2653 /* Override any gcc2 internal prototype to avoid an error.  */
     3160/* Override any GCC internal prototype to avoid an error.
     3161   Use char because int might match the return type of a GCC
     3162   builtin and then its argument prototype would still apply.  */
    26543163#ifdef __cplusplus
    26553164extern "C"
    26563165#endif
    2657 /* We use char because int might match the return type of a gcc2
    2658    builtin and then its argument prototype would still apply.  */
    26593166char krb5_derive_key ();
    26603167int
    26613168main ()
    26623169{
    2663 krb5_derive_key ();
     3170return krb5_derive_key ();
    26643171  ;
    26653172  return 0;
     
    26673174_ACEOF
    26683175rm -f conftest.$ac_objext conftest$ac_exeext
    2669 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    2670   (eval $ac_link) 2>conftest.er1
     3176if { (ac_try="$ac_link"
     3177case "(($ac_try" in
     3178  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3179  *) ac_try_echo=$ac_try;;
     3180esac
     3181eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3182  (eval "$ac_link") 2>conftest.er1
    26713183  ac_status=$?
    26723184  grep -v '^ *+' conftest.er1 >conftest.err
     
    26753187  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    26763188  (exit $ac_status); } &&
    2677          { ac_try='test -z "$ac_c_werror_flag"
    2678                          || test ! -s conftest.err'
    2679   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2680   (eval $ac_try) 2>&5
     3189         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     3190  { (case "(($ac_try" in
     3191  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3192  *) ac_try_echo=$ac_try;;
     3193esac
     3194eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3195  (eval "$ac_try") 2>&5
    26813196  ac_status=$?
    26823197  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    26833198  (exit $ac_status); }; } &&
    26843199         { ac_try='test -s conftest$ac_exeext'
    2685   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2686   (eval $ac_try) 2>&5
     3200  { (case "(($ac_try" in
     3201  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3202  *) ac_try_echo=$ac_try;;
     3203esac
     3204eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3205  (eval "$ac_try") 2>&5
    26873206  ac_status=$?
    26883207  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    26933212sed 's/^/| /' conftest.$ac_ext >&5
    26943213
    2695 ac_cv_lib_k5crypto_krb5_derive_key=no
    2696 fi
    2697 rm -f conftest.err conftest.$ac_objext \
     3214        ac_cv_lib_k5crypto_krb5_derive_key=no
     3215fi
     3216
     3217rm -f core conftest.err conftest.$ac_objext \
    26983218      conftest$ac_exeext conftest.$ac_ext
    26993219LIBS=$ac_check_lib_save_LIBS
    27003220fi
    2701 echo "$as_me:$LINENO: result: $ac_cv_lib_k5crypto_krb5_derive_key" >&5
    2702 echo "${ECHO_T}$ac_cv_lib_k5crypto_krb5_derive_key" >&6
     3221{ echo "$as_me:$LINENO: result: $ac_cv_lib_k5crypto_krb5_derive_key" >&5
     3222echo "${ECHO_T}$ac_cv_lib_k5crypto_krb5_derive_key" >&6; }
    27033223if test $ac_cv_lib_k5crypto_krb5_derive_key = yes; then
    27043224  cat >>confdefs.h <<_ACEOF
     
    27113231
    27123232
    2713 echo "$as_me:$LINENO: checking for des_cbc_encrypt in -ldes425" >&5
    2714 echo $ECHO_N "checking for des_cbc_encrypt in -ldes425... $ECHO_C" >&6
     3233{ echo "$as_me:$LINENO: checking for des_cbc_encrypt in -ldes425" >&5
     3234echo $ECHO_N "checking for des_cbc_encrypt in -ldes425... $ECHO_C" >&6; }
    27153235if test "${ac_cv_lib_des425_des_cbc_encrypt+set}" = set; then
    27163236  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    27253245/* end confdefs.h.  */
    27263246
    2727 /* Override any gcc2 internal prototype to avoid an error.  */
     3247/* Override any GCC internal prototype to avoid an error.
     3248   Use char because int might match the return type of a GCC
     3249   builtin and then its argument prototype would still apply.  */
    27283250#ifdef __cplusplus
    27293251extern "C"
    27303252#endif
    2731 /* We use char because int might match the return type of a gcc2
    2732    builtin and then its argument prototype would still apply.  */
    27333253char des_cbc_encrypt ();
    27343254int
    27353255main ()
    27363256{
    2737 des_cbc_encrypt ();
     3257return des_cbc_encrypt ();
    27383258  ;
    27393259  return 0;
     
    27413261_ACEOF
    27423262rm -f conftest.$ac_objext conftest$ac_exeext
    2743 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    2744   (eval $ac_link) 2>conftest.er1
     3263if { (ac_try="$ac_link"
     3264case "(($ac_try" in
     3265  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3266  *) ac_try_echo=$ac_try;;
     3267esac
     3268eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3269  (eval "$ac_link") 2>conftest.er1
    27453270  ac_status=$?
    27463271  grep -v '^ *+' conftest.er1 >conftest.err
     
    27493274  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    27503275  (exit $ac_status); } &&
    2751          { ac_try='test -z "$ac_c_werror_flag"
    2752                          || test ! -s conftest.err'
    2753   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2754   (eval $ac_try) 2>&5
     3276         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     3277  { (case "(($ac_try" in
     3278  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3279  *) ac_try_echo=$ac_try;;
     3280esac
     3281eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3282  (eval "$ac_try") 2>&5
    27553283  ac_status=$?
    27563284  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    27573285  (exit $ac_status); }; } &&
    27583286         { ac_try='test -s conftest$ac_exeext'
    2759   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2760   (eval $ac_try) 2>&5
     3287  { (case "(($ac_try" in
     3288  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3289  *) ac_try_echo=$ac_try;;
     3290esac
     3291eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3292  (eval "$ac_try") 2>&5
    27613293  ac_status=$?
    27623294  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    27673299sed 's/^/| /' conftest.$ac_ext >&5
    27683300
    2769 ac_cv_lib_des425_des_cbc_encrypt=no
    2770 fi
    2771 rm -f conftest.err conftest.$ac_objext \
     3301        ac_cv_lib_des425_des_cbc_encrypt=no
     3302fi
     3303
     3304rm -f core conftest.err conftest.$ac_objext \
    27723305      conftest$ac_exeext conftest.$ac_ext
    27733306LIBS=$ac_check_lib_save_LIBS
    27743307fi
    2775 echo "$as_me:$LINENO: result: $ac_cv_lib_des425_des_cbc_encrypt" >&5
    2776 echo "${ECHO_T}$ac_cv_lib_des425_des_cbc_encrypt" >&6
     3308{ echo "$as_me:$LINENO: result: $ac_cv_lib_des425_des_cbc_encrypt" >&5
     3309echo "${ECHO_T}$ac_cv_lib_des425_des_cbc_encrypt" >&6; }
    27773310if test $ac_cv_lib_des425_des_cbc_encrypt = yes; then
    27783311  cat >>confdefs.h <<_ACEOF
     
    27853318
    27863319
    2787 echo "$as_me:$LINENO: checking for des_quad_cksum in -ldes" >&5
    2788 echo $ECHO_N "checking for des_quad_cksum in -ldes... $ECHO_C" >&6
    2789 if test "${ac_cv_lib_des_des_quad_cksum+set}" = set; then
    2790   echo $ECHO_N "(cached) $ECHO_C" >&6
    2791 else
    2792   ac_check_lib_save_LIBS=$LIBS
    2793 LIBS="$LIBS"
    2794 cat >conftest.$ac_ext <<_ACEOF
    2795 /* confdefs.h.  */
    2796 _ACEOF
    2797 cat confdefs.h >>conftest.$ac_ext
    2798 cat >>conftest.$ac_ext <<_ACEOF
    2799 /* end confdefs.h.  */
    2800 
    2801 /* Override any gcc2 internal prototype to avoid an error.  */
    2802 #ifdef __cplusplus
    2803 extern "C"
    2804 #endif
    2805 /* We use char because int might match the return type of a gcc2
    2806    builtin and then its argument prototype would still apply.  */
    2807 char des_quad_cksum ();
    2808 int
    2809 main ()
    2810 {
    2811 des_quad_cksum ();
    2812   ;
    2813   return 0;
    2814 }
    2815 _ACEOF
    2816 rm -f conftest.$ac_objext conftest$ac_exeext
    2817 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    2818   (eval $ac_link) 2>conftest.er1
    2819   ac_status=$?
    2820   grep -v '^ *+' conftest.er1 >conftest.err
    2821   rm -f conftest.er1
    2822   cat conftest.err >&5
    2823   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2824   (exit $ac_status); } &&
    2825          { ac_try='test -z "$ac_c_werror_flag"
    2826                          || test ! -s conftest.err'
    2827   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2828   (eval $ac_try) 2>&5
    2829   ac_status=$?
    2830   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2831   (exit $ac_status); }; } &&
    2832          { ac_try='test -s conftest$ac_exeext'
    2833   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2834   (eval $ac_try) 2>&5
    2835   ac_status=$?
    2836   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2837   (exit $ac_status); }; }; then
    2838   ac_cv_lib_des_des_quad_cksum=yes
    2839 else
    2840   echo "$as_me: failed program was:" >&5
    2841 sed 's/^/| /' conftest.$ac_ext >&5
    2842 
    2843 ac_cv_lib_des_des_quad_cksum=no
    2844 fi
    2845 rm -f conftest.err conftest.$ac_objext \
    2846       conftest$ac_exeext conftest.$ac_ext
    2847 LIBS=$ac_check_lib_save_LIBS
    2848 fi
    2849 echo "$as_me:$LINENO: result: $ac_cv_lib_des_des_quad_cksum" >&5
    2850 echo "${ECHO_T}$ac_cv_lib_des_des_quad_cksum" >&6
    2851 if test $ac_cv_lib_des_des_quad_cksum = yes; then
    2852   cat >>confdefs.h <<_ACEOF
    2853 #define HAVE_LIBDES 1
    2854 _ACEOF
    2855 
    2856   LIBS="$LIBS"
    2857 
    2858 fi
    2859 
    2860 
    2861 echo "$as_me:$LINENO: checking for res_search in -lresolv" >&5
    2862 echo $ECHO_N "checking for res_search in -lresolv... $ECHO_C" >&6
     3320{ echo "$as_me:$LINENO: checking for res_search in -lresolv" >&5
     3321echo $ECHO_N "checking for res_search in -lresolv... $ECHO_C" >&6; }
    28633322if test "${ac_cv_lib_resolv_res_search+set}" = set; then
    28643323  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    28733332/* end confdefs.h.  */
    28743333
    2875 /* Override any gcc2 internal prototype to avoid an error.  */
     3334/* Override any GCC internal prototype to avoid an error.
     3335   Use char because int might match the return type of a GCC
     3336   builtin and then its argument prototype would still apply.  */
    28763337#ifdef __cplusplus
    28773338extern "C"
    28783339#endif
    2879 /* We use char because int might match the return type of a gcc2
    2880    builtin and then its argument prototype would still apply.  */
    28813340char res_search ();
    28823341int
    28833342main ()
    28843343{
    2885 res_search ();
     3344return res_search ();
    28863345  ;
    28873346  return 0;
     
    28893348_ACEOF
    28903349rm -f conftest.$ac_objext conftest$ac_exeext
    2891 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    2892   (eval $ac_link) 2>conftest.er1
     3350if { (ac_try="$ac_link"
     3351case "(($ac_try" in
     3352  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3353  *) ac_try_echo=$ac_try;;
     3354esac
     3355eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3356  (eval "$ac_link") 2>conftest.er1
    28933357  ac_status=$?
    28943358  grep -v '^ *+' conftest.er1 >conftest.err
     
    28973361  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    28983362  (exit $ac_status); } &&
    2899          { ac_try='test -z "$ac_c_werror_flag"
    2900                          || test ! -s conftest.err'
    2901   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2902   (eval $ac_try) 2>&5
     3363         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     3364  { (case "(($ac_try" in
     3365  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3366  *) ac_try_echo=$ac_try;;
     3367esac
     3368eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3369  (eval "$ac_try") 2>&5
    29033370  ac_status=$?
    29043371  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    29053372  (exit $ac_status); }; } &&
    29063373         { ac_try='test -s conftest$ac_exeext'
    2907   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2908   (eval $ac_try) 2>&5
     3374  { (case "(($ac_try" in
     3375  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3376  *) ac_try_echo=$ac_try;;
     3377esac
     3378eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3379  (eval "$ac_try") 2>&5
    29093380  ac_status=$?
    29103381  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    29153386sed 's/^/| /' conftest.$ac_ext >&5
    29163387
    2917 ac_cv_lib_resolv_res_search=no
    2918 fi
    2919 rm -f conftest.err conftest.$ac_objext \
     3388        ac_cv_lib_resolv_res_search=no
     3389fi
     3390
     3391rm -f core conftest.err conftest.$ac_objext \
    29203392      conftest$ac_exeext conftest.$ac_ext
    29213393LIBS=$ac_check_lib_save_LIBS
    29223394fi
    2923 echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_res_search" >&5
    2924 echo "${ECHO_T}$ac_cv_lib_resolv_res_search" >&6
     3395{ echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_res_search" >&5
     3396echo "${ECHO_T}$ac_cv_lib_resolv_res_search" >&6; }
    29253397if test $ac_cv_lib_resolv_res_search = yes; then
    29263398  cat >>confdefs.h <<_ACEOF
     
    29333405
    29343406
    2935 echo "$as_me:$LINENO: checking for krb5_get_credentials in -lkrb5" >&5
    2936 echo $ECHO_N "checking for krb5_get_credentials in -lkrb5... $ECHO_C" >&6
     3407{ echo "$as_me:$LINENO: checking for krb5_get_credentials in -lkrb5" >&5
     3408echo $ECHO_N "checking for krb5_get_credentials in -lkrb5... $ECHO_C" >&6; }
    29373409if test "${ac_cv_lib_krb5_krb5_get_credentials+set}" = set; then
    29383410  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    29473419/* end confdefs.h.  */
    29483420
    2949 /* Override any gcc2 internal prototype to avoid an error.  */
     3421/* Override any GCC internal prototype to avoid an error.
     3422   Use char because int might match the return type of a GCC
     3423   builtin and then its argument prototype would still apply.  */
    29503424#ifdef __cplusplus
    29513425extern "C"
    29523426#endif
    2953 /* We use char because int might match the return type of a gcc2
    2954    builtin and then its argument prototype would still apply.  */
    29553427char krb5_get_credentials ();
    29563428int
    29573429main ()
    29583430{
    2959 krb5_get_credentials ();
     3431return krb5_get_credentials ();
    29603432  ;
    29613433  return 0;
     
    29633435_ACEOF
    29643436rm -f conftest.$ac_objext conftest$ac_exeext
    2965 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    2966   (eval $ac_link) 2>conftest.er1
     3437if { (ac_try="$ac_link"
     3438case "(($ac_try" in
     3439  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3440  *) ac_try_echo=$ac_try;;
     3441esac
     3442eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3443  (eval "$ac_link") 2>conftest.er1
    29673444  ac_status=$?
    29683445  grep -v '^ *+' conftest.er1 >conftest.err
     
    29713448  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    29723449  (exit $ac_status); } &&
    2973          { ac_try='test -z "$ac_c_werror_flag"
    2974                          || test ! -s conftest.err'
    2975   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2976   (eval $ac_try) 2>&5
     3450         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     3451  { (case "(($ac_try" in
     3452  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3453  *) ac_try_echo=$ac_try;;
     3454esac
     3455eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3456  (eval "$ac_try") 2>&5
    29773457  ac_status=$?
    29783458  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    29793459  (exit $ac_status); }; } &&
    29803460         { ac_try='test -s conftest$ac_exeext'
    2981   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    2982   (eval $ac_try) 2>&5
     3461  { (case "(($ac_try" in
     3462  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3463  *) ac_try_echo=$ac_try;;
     3464esac
     3465eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3466  (eval "$ac_try") 2>&5
    29833467  ac_status=$?
    29843468  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    29893473sed 's/^/| /' conftest.$ac_ext >&5
    29903474
    2991 ac_cv_lib_krb5_krb5_get_credentials=no
    2992 fi
    2993 rm -f conftest.err conftest.$ac_objext \
     3475        ac_cv_lib_krb5_krb5_get_credentials=no
     3476fi
     3477
     3478rm -f core conftest.err conftest.$ac_objext \
    29943479      conftest$ac_exeext conftest.$ac_ext
    29953480LIBS=$ac_check_lib_save_LIBS
    29963481fi
    2997 echo "$as_me:$LINENO: result: $ac_cv_lib_krb5_krb5_get_credentials" >&5
    2998 echo "${ECHO_T}$ac_cv_lib_krb5_krb5_get_credentials" >&6
     3482{ echo "$as_me:$LINENO: result: $ac_cv_lib_krb5_krb5_get_credentials" >&5
     3483echo "${ECHO_T}$ac_cv_lib_krb5_krb5_get_credentials" >&6; }
    29993484if test $ac_cv_lib_krb5_krb5_get_credentials = yes; then
    30003485  cat >>confdefs.h <<_ACEOF
     
    30073492
    30083493
    3009 echo "$as_me:$LINENO: checking for krb_sendauth in -lkrb4" >&5
    3010 echo $ECHO_N "checking for krb_sendauth in -lkrb4... $ECHO_C" >&6
     3494{ echo "$as_me:$LINENO: checking for krb_sendauth in -lkrb4" >&5
     3495echo $ECHO_N "checking for krb_sendauth in -lkrb4... $ECHO_C" >&6; }
    30113496if test "${ac_cv_lib_krb4_krb_sendauth+set}" = set; then
    30123497  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    30213506/* end confdefs.h.  */
    30223507
    3023 /* Override any gcc2 internal prototype to avoid an error.  */
     3508/* Override any GCC internal prototype to avoid an error.
     3509   Use char because int might match the return type of a GCC
     3510   builtin and then its argument prototype would still apply.  */
    30243511#ifdef __cplusplus
    30253512extern "C"
    30263513#endif
    3027 /* We use char because int might match the return type of a gcc2
    3028    builtin and then its argument prototype would still apply.  */
    30293514char krb_sendauth ();
    30303515int
    30313516main ()
    30323517{
    3033 krb_sendauth ();
     3518return krb_sendauth ();
    30343519  ;
    30353520  return 0;
     
    30373522_ACEOF
    30383523rm -f conftest.$ac_objext conftest$ac_exeext
    3039 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    3040   (eval $ac_link) 2>conftest.er1
     3524if { (ac_try="$ac_link"
     3525case "(($ac_try" in
     3526  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3527  *) ac_try_echo=$ac_try;;
     3528esac
     3529eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3530  (eval "$ac_link") 2>conftest.er1
    30413531  ac_status=$?
    30423532  grep -v '^ *+' conftest.er1 >conftest.err
     
    30453535  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    30463536  (exit $ac_status); } &&
    3047          { ac_try='test -z "$ac_c_werror_flag"
    3048                          || test ! -s conftest.err'
    3049   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3050   (eval $ac_try) 2>&5
     3537         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     3538  { (case "(($ac_try" in
     3539  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3540  *) ac_try_echo=$ac_try;;
     3541esac
     3542eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3543  (eval "$ac_try") 2>&5
    30513544  ac_status=$?
    30523545  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    30533546  (exit $ac_status); }; } &&
    30543547         { ac_try='test -s conftest$ac_exeext'
    3055   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3056   (eval $ac_try) 2>&5
     3548  { (case "(($ac_try" in
     3549  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3550  *) ac_try_echo=$ac_try;;
     3551esac
     3552eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3553  (eval "$ac_try") 2>&5
    30573554  ac_status=$?
    30583555  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    30633560sed 's/^/| /' conftest.$ac_ext >&5
    30643561
    3065 ac_cv_lib_krb4_krb_sendauth=no
    3066 fi
    3067 rm -f conftest.err conftest.$ac_objext \
     3562        ac_cv_lib_krb4_krb_sendauth=no
     3563fi
     3564
     3565rm -f core conftest.err conftest.$ac_objext \
    30683566      conftest$ac_exeext conftest.$ac_ext
    30693567LIBS=$ac_check_lib_save_LIBS
    30703568fi
    3071 echo "$as_me:$LINENO: result: $ac_cv_lib_krb4_krb_sendauth" >&5
    3072 echo "${ECHO_T}$ac_cv_lib_krb4_krb_sendauth" >&6
     3569{ echo "$as_me:$LINENO: result: $ac_cv_lib_krb4_krb_sendauth" >&5
     3570echo "${ECHO_T}$ac_cv_lib_krb4_krb_sendauth" >&6; }
    30733571if test $ac_cv_lib_krb4_krb_sendauth = yes; then
    30743572  cat >>confdefs.h <<_ACEOF
     
    30803578else
    30813579
    3082 echo "$as_me:$LINENO: checking for krb_sendauth in -lkrb" >&5
    3083 echo $ECHO_N "checking for krb_sendauth in -lkrb... $ECHO_C" >&6
     3580{ echo "$as_me:$LINENO: checking for krb_sendauth in -lkrb" >&5
     3581echo $ECHO_N "checking for krb_sendauth in -lkrb... $ECHO_C" >&6; }
    30843582if test "${ac_cv_lib_krb_krb_sendauth+set}" = set; then
    30853583  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    30943592/* end confdefs.h.  */
    30953593
    3096 /* Override any gcc2 internal prototype to avoid an error.  */
     3594/* Override any GCC internal prototype to avoid an error.
     3595   Use char because int might match the return type of a GCC
     3596   builtin and then its argument prototype would still apply.  */
    30973597#ifdef __cplusplus
    30983598extern "C"
    30993599#endif
    3100 /* We use char because int might match the return type of a gcc2
    3101    builtin and then its argument prototype would still apply.  */
    31023600char krb_sendauth ();
    31033601int
    31043602main ()
    31053603{
    3106 krb_sendauth ();
     3604return krb_sendauth ();
    31073605  ;
    31083606  return 0;
     
    31103608_ACEOF
    31113609rm -f conftest.$ac_objext conftest$ac_exeext
    3112 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    3113   (eval $ac_link) 2>conftest.er1
     3610if { (ac_try="$ac_link"
     3611case "(($ac_try" in
     3612  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3613  *) ac_try_echo=$ac_try;;
     3614esac
     3615eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3616  (eval "$ac_link") 2>conftest.er1
    31143617  ac_status=$?
    31153618  grep -v '^ *+' conftest.er1 >conftest.err
     
    31183621  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    31193622  (exit $ac_status); } &&
    3120          { ac_try='test -z "$ac_c_werror_flag"
    3121                          || test ! -s conftest.err'
    3122   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3123   (eval $ac_try) 2>&5
     3623         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     3624  { (case "(($ac_try" in
     3625  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3626  *) ac_try_echo=$ac_try;;
     3627esac
     3628eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3629  (eval "$ac_try") 2>&5
    31243630  ac_status=$?
    31253631  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    31263632  (exit $ac_status); }; } &&
    31273633         { ac_try='test -s conftest$ac_exeext'
    3128   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3129   (eval $ac_try) 2>&5
     3634  { (case "(($ac_try" in
     3635  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3636  *) ac_try_echo=$ac_try;;
     3637esac
     3638eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3639  (eval "$ac_try") 2>&5
    31303640  ac_status=$?
    31313641  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    31363646sed 's/^/| /' conftest.$ac_ext >&5
    31373647
    3138 ac_cv_lib_krb_krb_sendauth=no
    3139 fi
    3140 rm -f conftest.err conftest.$ac_objext \
     3648        ac_cv_lib_krb_krb_sendauth=no
     3649fi
     3650
     3651rm -f core conftest.err conftest.$ac_objext \
    31413652      conftest$ac_exeext conftest.$ac_ext
    31423653LIBS=$ac_check_lib_save_LIBS
    31433654fi
    3144 echo "$as_me:$LINENO: result: $ac_cv_lib_krb_krb_sendauth" >&5
    3145 echo "${ECHO_T}$ac_cv_lib_krb_krb_sendauth" >&6
     3655{ echo "$as_me:$LINENO: result: $ac_cv_lib_krb_krb_sendauth" >&5
     3656echo "${ECHO_T}$ac_cv_lib_krb_krb_sendauth" >&6; }
    31463657if test $ac_cv_lib_krb_krb_sendauth = yes; then
    31473658  cat >>confdefs.h <<_ACEOF
     
    31563667
    31573668
    3158 echo "$as_me:$LINENO: checking for ZGetSender in -lzephyr" >&5
    3159 echo $ECHO_N "checking for ZGetSender in -lzephyr... $ECHO_C" >&6
     3669{ echo "$as_me:$LINENO: checking for ZGetSender in -lzephyr" >&5
     3670echo $ECHO_N "checking for ZGetSender in -lzephyr... $ECHO_C" >&6; }
    31603671if test "${ac_cv_lib_zephyr_ZGetSender+set}" = set; then
    31613672  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    31703681/* end confdefs.h.  */
    31713682
    3172 /* Override any gcc2 internal prototype to avoid an error.  */
     3683/* Override any GCC internal prototype to avoid an error.
     3684   Use char because int might match the return type of a GCC
     3685   builtin and then its argument prototype would still apply.  */
    31733686#ifdef __cplusplus
    31743687extern "C"
    31753688#endif
    3176 /* We use char because int might match the return type of a gcc2
    3177    builtin and then its argument prototype would still apply.  */
    31783689char ZGetSender ();
    31793690int
    31803691main ()
    31813692{
    3182 ZGetSender ();
     3693return ZGetSender ();
    31833694  ;
    31843695  return 0;
     
    31863697_ACEOF
    31873698rm -f conftest.$ac_objext conftest$ac_exeext
    3188 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    3189   (eval $ac_link) 2>conftest.er1
     3699if { (ac_try="$ac_link"
     3700case "(($ac_try" in
     3701  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3702  *) ac_try_echo=$ac_try;;
     3703esac
     3704eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3705  (eval "$ac_link") 2>conftest.er1
    31903706  ac_status=$?
    31913707  grep -v '^ *+' conftest.er1 >conftest.err
     
    31943710  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    31953711  (exit $ac_status); } &&
    3196          { ac_try='test -z "$ac_c_werror_flag"
    3197                          || test ! -s conftest.err'
    3198   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3199   (eval $ac_try) 2>&5
     3712         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     3713  { (case "(($ac_try" in
     3714  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3715  *) ac_try_echo=$ac_try;;
     3716esac
     3717eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3718  (eval "$ac_try") 2>&5
    32003719  ac_status=$?
    32013720  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    32023721  (exit $ac_status); }; } &&
    32033722         { ac_try='test -s conftest$ac_exeext'
    3204   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3205   (eval $ac_try) 2>&5
     3723  { (case "(($ac_try" in
     3724  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3725  *) ac_try_echo=$ac_try;;
     3726esac
     3727eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3728  (eval "$ac_try") 2>&5
    32063729  ac_status=$?
    32073730  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    32123735sed 's/^/| /' conftest.$ac_ext >&5
    32133736
    3214 ac_cv_lib_zephyr_ZGetSender=no
    3215 fi
    3216 rm -f conftest.err conftest.$ac_objext \
     3737        ac_cv_lib_zephyr_ZGetSender=no
     3738fi
     3739
     3740rm -f core conftest.err conftest.$ac_objext \
    32173741      conftest$ac_exeext conftest.$ac_ext
    32183742LIBS=$ac_check_lib_save_LIBS
    32193743fi
    3220 echo "$as_me:$LINENO: result: $ac_cv_lib_zephyr_ZGetSender" >&5
    3221 echo "${ECHO_T}$ac_cv_lib_zephyr_ZGetSender" >&6
     3744{ echo "$as_me:$LINENO: result: $ac_cv_lib_zephyr_ZGetSender" >&5
     3745echo "${ECHO_T}$ac_cv_lib_zephyr_ZGetSender" >&6; }
    32223746if test $ac_cv_lib_zephyr_ZGetSender = yes; then
    32233747  cat >>confdefs.h <<_ACEOF
     
    32293753fi
    32303754
    3231 echo "$as_me:$LINENO: checking for ZInitLocationInfo in -lzephyr" >&5
    3232 echo $ECHO_N "checking for ZInitLocationInfo in -lzephyr... $ECHO_C" >&6
     3755{ echo "$as_me:$LINENO: checking for ZInitLocationInfo in -lzephyr" >&5
     3756echo $ECHO_N "checking for ZInitLocationInfo in -lzephyr... $ECHO_C" >&6; }
    32333757if test "${ac_cv_lib_zephyr_ZInitLocationInfo+set}" = set; then
    32343758  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    32433767/* end confdefs.h.  */
    32443768
    3245 /* Override any gcc2 internal prototype to avoid an error.  */
     3769/* Override any GCC internal prototype to avoid an error.
     3770   Use char because int might match the return type of a GCC
     3771   builtin and then its argument prototype would still apply.  */
    32463772#ifdef __cplusplus
    32473773extern "C"
    32483774#endif
    3249 /* We use char because int might match the return type of a gcc2
    3250    builtin and then its argument prototype would still apply.  */
    32513775char ZInitLocationInfo ();
    32523776int
    32533777main ()
    32543778{
    3255 ZInitLocationInfo ();
     3779return ZInitLocationInfo ();
    32563780  ;
    32573781  return 0;
     
    32593783_ACEOF
    32603784rm -f conftest.$ac_objext conftest$ac_exeext
    3261 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    3262   (eval $ac_link) 2>conftest.er1
     3785if { (ac_try="$ac_link"
     3786case "(($ac_try" in
     3787  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3788  *) ac_try_echo=$ac_try;;
     3789esac
     3790eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3791  (eval "$ac_link") 2>conftest.er1
    32633792  ac_status=$?
    32643793  grep -v '^ *+' conftest.er1 >conftest.err
     
    32673796  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    32683797  (exit $ac_status); } &&
    3269          { ac_try='test -z "$ac_c_werror_flag"
    3270                          || test ! -s conftest.err'
    3271   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3272   (eval $ac_try) 2>&5
     3798         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     3799  { (case "(($ac_try" in
     3800  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3801  *) ac_try_echo=$ac_try;;
     3802esac
     3803eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3804  (eval "$ac_try") 2>&5
    32733805  ac_status=$?
    32743806  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    32753807  (exit $ac_status); }; } &&
    32763808         { ac_try='test -s conftest$ac_exeext'
    3277   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3278   (eval $ac_try) 2>&5
     3809  { (case "(($ac_try" in
     3810  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3811  *) ac_try_echo=$ac_try;;
     3812esac
     3813eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3814  (eval "$ac_try") 2>&5
    32793815  ac_status=$?
    32803816  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    32853821sed 's/^/| /' conftest.$ac_ext >&5
    32863822
    3287 ac_cv_lib_zephyr_ZInitLocationInfo=no
    3288 fi
    3289 rm -f conftest.err conftest.$ac_objext \
     3823        ac_cv_lib_zephyr_ZInitLocationInfo=no
     3824fi
     3825
     3826rm -f core conftest.err conftest.$ac_objext \
    32903827      conftest$ac_exeext conftest.$ac_ext
    32913828LIBS=$ac_check_lib_save_LIBS
    32923829fi
    3293 echo "$as_me:$LINENO: result: $ac_cv_lib_zephyr_ZInitLocationInfo" >&5
    3294 echo "${ECHO_T}$ac_cv_lib_zephyr_ZInitLocationInfo" >&6
     3830{ echo "$as_me:$LINENO: result: $ac_cv_lib_zephyr_ZInitLocationInfo" >&5
     3831echo "${ECHO_T}$ac_cv_lib_zephyr_ZInitLocationInfo" >&6; }
    32953832if test $ac_cv_lib_zephyr_ZInitLocationInfo = yes; then
    32963833
     
    33093846do
    33103847as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
    3311 echo "$as_me:$LINENO: checking for $ac_func" >&5
    3312 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
    3313 if eval "test \"\${$as_ac_var+set}\" = set"; then
     3848{ echo "$as_me:$LINENO: checking for $ac_func" >&5
     3849echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
     3850if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
    33143851  echo $ECHO_N "(cached) $ECHO_C" >&6
    33153852else
     
    33373874#undef $ac_func
    33383875
    3339 /* Override any gcc2 internal prototype to avoid an error.  */
     3876/* Override any GCC internal prototype to avoid an error.
     3877   Use char because int might match the return type of a GCC
     3878   builtin and then its argument prototype would still apply.  */
    33403879#ifdef __cplusplus
    33413880extern "C"
    3342 {
    33433881#endif
    3344 /* We use char because int might match the return type of a gcc2
    3345    builtin and then its argument prototype would still apply.  */
    33463882char $ac_func ();
    33473883/* The GNU C library defines this for functions which it implements
    33483884    to always fail with ENOSYS.  Some functions are actually named
    33493885    something starting with __ and the normal name is an alias.  */
    3350 #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
     3886#if defined __stub_$ac_func || defined __stub___$ac_func
    33513887choke me
    3352 #else
    3353 char (*f) () = $ac_func;
    3354 #endif
    3355 #ifdef __cplusplus
    3356 }
    33573888#endif
    33583889
     
    33603891main ()
    33613892{
    3362 return f != $ac_func;
     3893return $ac_func ();
    33633894  ;
    33643895  return 0;
     
    33663897_ACEOF
    33673898rm -f conftest.$ac_objext conftest$ac_exeext
    3368 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    3369   (eval $ac_link) 2>conftest.er1
     3899if { (ac_try="$ac_link"
     3900case "(($ac_try" in
     3901  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3902  *) ac_try_echo=$ac_try;;
     3903esac
     3904eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3905  (eval "$ac_link") 2>conftest.er1
    33703906  ac_status=$?
    33713907  grep -v '^ *+' conftest.er1 >conftest.err
     
    33743910  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    33753911  (exit $ac_status); } &&
    3376          { ac_try='test -z "$ac_c_werror_flag"
    3377                          || test ! -s conftest.err'
    3378   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3379   (eval $ac_try) 2>&5
     3912         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     3913  { (case "(($ac_try" in
     3914  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3915  *) ac_try_echo=$ac_try;;
     3916esac
     3917eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3918  (eval "$ac_try") 2>&5
    33803919  ac_status=$?
    33813920  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    33823921  (exit $ac_status); }; } &&
    33833922         { ac_try='test -s conftest$ac_exeext'
    3384   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3385   (eval $ac_try) 2>&5
     3923  { (case "(($ac_try" in
     3924  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3925  *) ac_try_echo=$ac_try;;
     3926esac
     3927eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3928  (eval "$ac_try") 2>&5
    33863929  ac_status=$?
    33873930  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    33923935sed 's/^/| /' conftest.$ac_ext >&5
    33933936
    3394 eval "$as_ac_var=no"
    3395 fi
    3396 rm -f conftest.err conftest.$ac_objext \
     3937        eval "$as_ac_var=no"
     3938fi
     3939
     3940rm -f core conftest.err conftest.$ac_objext \
    33973941      conftest$ac_exeext conftest.$ac_ext
    33983942fi
    3399 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
    3400 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
     3943ac_res=`eval echo '${'$as_ac_var'}'`
     3944               { echo "$as_me:$LINENO: result: $ac_res" >&5
     3945echo "${ECHO_T}$ac_res" >&6; }
    34013946if test `eval echo '${'$as_ac_var'}'` = yes; then
    34023947  cat >>confdefs.h <<_ACEOF
     
    34083953
    34093954
    3410 echo "$as_me:$LINENO: checking for des_ecb_encrypt prototype" >&5
    3411 echo $ECHO_N "checking for des_ecb_encrypt prototype... $ECHO_C" >&6
     3955{ echo "$as_me:$LINENO: checking for des_ecb_encrypt prototype" >&5
     3956echo $ECHO_N "checking for des_ecb_encrypt prototype... $ECHO_C" >&6; }
    34123957cat >conftest.$ac_ext <<_ACEOF
    34133958/* confdefs.h.  */
     
    34273972_ACEOF
    34283973rm -f conftest.$ac_objext
    3429 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
    3430   (eval $ac_compile) 2>conftest.er1
     3974if { (ac_try="$ac_compile"
     3975case "(($ac_try" in
     3976  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3977  *) ac_try_echo=$ac_try;;
     3978esac
     3979eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3980  (eval "$ac_compile") 2>conftest.er1
    34313981  ac_status=$?
    34323982  grep -v '^ *+' conftest.er1 >conftest.err
     
    34353985  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    34363986  (exit $ac_status); } &&
    3437          { ac_try='test -z "$ac_c_werror_flag"
    3438                          || test ! -s conftest.err'
    3439   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3440   (eval $ac_try) 2>&5
     3987         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     3988  { (case "(($ac_try" in
     3989  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     3990  *) ac_try_echo=$ac_try;;
     3991esac
     3992eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     3993  (eval "$ac_try") 2>&5
    34413994  ac_status=$?
    34423995  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    34433996  (exit $ac_status); }; } &&
    34443997         { ac_try='test -s conftest.$ac_objext'
    3445   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3446   (eval $ac_try) 2>&5
     3998  { (case "(($ac_try" in
     3999  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4000  *) ac_try_echo=$ac_try;;
     4001esac
     4002eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4003  (eval "$ac_try") 2>&5
    34474004  ac_status=$?
    34484005  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    34534010sed 's/^/| /' conftest.$ac_ext >&5
    34544011
    3455 ac_cv_des_ecb_encrypt_proto=yes
    3456 fi
    3457 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
    3458 echo "$as_me:$LINENO: result: $ac_cv_des_ecb_encrypt_proto" >&5
    3459 echo "${ECHO_T}$ac_cv_des_ecb_encrypt_proto" >&6
     4012        ac_cv_des_ecb_encrypt_proto=yes
     4013fi
     4014
     4015rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
     4016{ echo "$as_me:$LINENO: result: $ac_cv_des_ecb_encrypt_proto" >&5
     4017echo "${ECHO_T}$ac_cv_des_ecb_encrypt_proto" >&6; }
    34604018if test "$ac_cv_des_ecb_encrypt_proto" = yes; then
    34614019
     
    34714029ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
    34724030ac_compiler_gnu=$ac_cv_c_compiler_gnu
    3473 echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
    3474 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
     4031{ echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
     4032echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; }
    34754033# On Suns, sometimes $CPP names a directory.
    34764034if test -n "$CPP" && test -d "$CPP"; then
     
    35064064                     Syntax error
    35074065_ACEOF
    3508 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
    3509   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
     4066if { (ac_try="$ac_cpp conftest.$ac_ext"
     4067case "(($ac_try" in
     4068  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4069  *) ac_try_echo=$ac_try;;
     4070esac
     4071eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4072  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
    35104073  ac_status=$?
    35114074  grep -v '^ *+' conftest.er1 >conftest.err
     
    35324095continue
    35334096fi
     4097
    35344098rm -f conftest.err conftest.$ac_ext
    35354099
    3536   # OK, works on sane cases.  Now check whether non-existent headers
     4100  # OK, works on sane cases.  Now check whether nonexistent headers
    35374101  # can be detected and how.
    35384102  cat >conftest.$ac_ext <<_ACEOF
     
    35444108#include <ac_nonexistent.h>
    35454109_ACEOF
    3546 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
    3547   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
     4110if { (ac_try="$ac_cpp conftest.$ac_ext"
     4111case "(($ac_try" in
     4112  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4113  *) ac_try_echo=$ac_try;;
     4114esac
     4115eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4116  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
    35484117  ac_status=$?
    35494118  grep -v '^ *+' conftest.er1 >conftest.err
     
    35724141break
    35734142fi
     4143
    35744144rm -f conftest.err conftest.$ac_ext
    35754145
     
    35894159  ac_cv_prog_CPP=$CPP
    35904160fi
    3591 echo "$as_me:$LINENO: result: $CPP" >&5
    3592 echo "${ECHO_T}$CPP" >&6
     4161{ echo "$as_me:$LINENO: result: $CPP" >&5
     4162echo "${ECHO_T}$CPP" >&6; }
    35934163ac_preproc_ok=false
    35944164for ac_c_preproc_warn_flag in '' yes
     
    36134183                     Syntax error
    36144184_ACEOF
    3615 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
    3616   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
     4185if { (ac_try="$ac_cpp conftest.$ac_ext"
     4186case "(($ac_try" in
     4187  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4188  *) ac_try_echo=$ac_try;;
     4189esac
     4190eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4191  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
    36174192  ac_status=$?
    36184193  grep -v '^ *+' conftest.er1 >conftest.err
     
    36394214continue
    36404215fi
     4216
    36414217rm -f conftest.err conftest.$ac_ext
    36424218
    3643   # OK, works on sane cases.  Now check whether non-existent headers
     4219  # OK, works on sane cases.  Now check whether nonexistent headers
    36444220  # can be detected and how.
    36454221  cat >conftest.$ac_ext <<_ACEOF
     
    36514227#include <ac_nonexistent.h>
    36524228_ACEOF
    3653 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
    3654   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
     4229if { (ac_try="$ac_cpp conftest.$ac_ext"
     4230case "(($ac_try" in
     4231  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4232  *) ac_try_echo=$ac_try;;
     4233esac
     4234eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4235  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
    36554236  ac_status=$?
    36564237  grep -v '^ *+' conftest.er1 >conftest.err
     
    36794260break
    36804261fi
     4262
    36814263rm -f conftest.err conftest.$ac_ext
    36824264
     
    37014283
    37024284
    3703 echo "$as_me:$LINENO: checking for egrep" >&5
    3704 echo $ECHO_N "checking for egrep... $ECHO_C" >&6
    3705 if test "${ac_cv_prog_egrep+set}" = set; then
     4285{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5
     4286echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; }
     4287if test "${ac_cv_path_GREP+set}" = set; then
    37064288  echo $ECHO_N "(cached) $ECHO_C" >&6
    37074289else
    3708   if echo a | (grep -E '(a|b)') >/dev/null 2>&1
    3709     then ac_cv_prog_egrep='grep -E'
    3710     else ac_cv_prog_egrep='egrep'
     4290  # Extract the first word of "grep ggrep" to use in msg output
     4291if test -z "$GREP"; then
     4292set dummy grep ggrep; ac_prog_name=$2
     4293if test "${ac_cv_path_GREP+set}" = set; then
     4294  echo $ECHO_N "(cached) $ECHO_C" >&6
     4295else
     4296  ac_path_GREP_found=false
     4297# Loop through the user's path and test for each of PROGNAME-LIST
     4298as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
     4299for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
     4300do
     4301  IFS=$as_save_IFS
     4302  test -z "$as_dir" && as_dir=.
     4303  for ac_prog in grep ggrep; do
     4304  for ac_exec_ext in '' $ac_executable_extensions; do
     4305    ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
     4306    { test -f "$ac_path_GREP" && $as_executable_p "$ac_path_GREP"; } || continue
     4307    # Check for GNU ac_path_GREP and select it if it is found.
     4308  # Check for GNU $ac_path_GREP
     4309case `"$ac_path_GREP" --version 2>&1` in
     4310*GNU*)
     4311  ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
     4312*)
     4313  ac_count=0
     4314  echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
     4315  while :
     4316  do
     4317    cat "conftest.in" "conftest.in" >"conftest.tmp"
     4318    mv "conftest.tmp" "conftest.in"
     4319    cp "conftest.in" "conftest.nl"
     4320    echo 'GREP' >> "conftest.nl"
     4321    "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
     4322    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
     4323    ac_count=`expr $ac_count + 1`
     4324    if test $ac_count -gt ${ac_path_GREP_max-0}; then
     4325      # Best one so far, save it but keep looking for a better one
     4326      ac_cv_path_GREP="$ac_path_GREP"
     4327      ac_path_GREP_max=$ac_count
    37114328    fi
    3712 fi
    3713 echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
    3714 echo "${ECHO_T}$ac_cv_prog_egrep" >&6
    3715  EGREP=$ac_cv_prog_egrep
    3716 
    3717 
    3718 echo "$as_me:$LINENO: checking for ANSI C header files" >&5
    3719 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
     4329    # 10*(2^10) chars as input seems more than enough
     4330    test $ac_count -gt 10 && break
     4331  done
     4332  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
     4333esac
     4334
     4335
     4336    $ac_path_GREP_found && break 3
     4337  done
     4338done
     4339
     4340done
     4341IFS=$as_save_IFS
     4342
     4343
     4344fi
     4345
     4346GREP="$ac_cv_path_GREP"
     4347if test -z "$GREP"; then
     4348  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
     4349echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
     4350   { (exit 1); exit 1; }; }
     4351fi
     4352
     4353else
     4354  ac_cv_path_GREP=$GREP
     4355fi
     4356
     4357
     4358fi
     4359{ echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5
     4360echo "${ECHO_T}$ac_cv_path_GREP" >&6; }
     4361 GREP="$ac_cv_path_GREP"
     4362
     4363
     4364{ echo "$as_me:$LINENO: checking for egrep" >&5
     4365echo $ECHO_N "checking for egrep... $ECHO_C" >&6; }
     4366if test "${ac_cv_path_EGREP+set}" = set; then
     4367  echo $ECHO_N "(cached) $ECHO_C" >&6
     4368else
     4369  if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
     4370   then ac_cv_path_EGREP="$GREP -E"
     4371   else
     4372     # Extract the first word of "egrep" to use in msg output
     4373if test -z "$EGREP"; then
     4374set dummy egrep; ac_prog_name=$2
     4375if test "${ac_cv_path_EGREP+set}" = set; then
     4376  echo $ECHO_N "(cached) $ECHO_C" >&6
     4377else
     4378  ac_path_EGREP_found=false
     4379# Loop through the user's path and test for each of PROGNAME-LIST
     4380as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
     4381for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
     4382do
     4383  IFS=$as_save_IFS
     4384  test -z "$as_dir" && as_dir=.
     4385  for ac_prog in egrep; do
     4386  for ac_exec_ext in '' $ac_executable_extensions; do
     4387    ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
     4388    { test -f "$ac_path_EGREP" && $as_executable_p "$ac_path_EGREP"; } || continue
     4389    # Check for GNU ac_path_EGREP and select it if it is found.
     4390  # Check for GNU $ac_path_EGREP
     4391case `"$ac_path_EGREP" --version 2>&1` in
     4392*GNU*)
     4393  ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
     4394*)
     4395  ac_count=0
     4396  echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
     4397  while :
     4398  do
     4399    cat "conftest.in" "conftest.in" >"conftest.tmp"
     4400    mv "conftest.tmp" "conftest.in"
     4401    cp "conftest.in" "conftest.nl"
     4402    echo 'EGREP' >> "conftest.nl"
     4403    "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
     4404    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
     4405    ac_count=`expr $ac_count + 1`
     4406    if test $ac_count -gt ${ac_path_EGREP_max-0}; then
     4407      # Best one so far, save it but keep looking for a better one
     4408      ac_cv_path_EGREP="$ac_path_EGREP"
     4409      ac_path_EGREP_max=$ac_count
     4410    fi
     4411    # 10*(2^10) chars as input seems more than enough
     4412    test $ac_count -gt 10 && break
     4413  done
     4414  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
     4415esac
     4416
     4417
     4418    $ac_path_EGREP_found && break 3
     4419  done
     4420done
     4421
     4422done
     4423IFS=$as_save_IFS
     4424
     4425
     4426fi
     4427
     4428EGREP="$ac_cv_path_EGREP"
     4429if test -z "$EGREP"; then
     4430  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
     4431echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
     4432   { (exit 1); exit 1; }; }
     4433fi
     4434
     4435else
     4436  ac_cv_path_EGREP=$EGREP
     4437fi
     4438
     4439
     4440   fi
     4441fi
     4442{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5
     4443echo "${ECHO_T}$ac_cv_path_EGREP" >&6; }
     4444 EGREP="$ac_cv_path_EGREP"
     4445
     4446
     4447{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5
     4448echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }
    37204449if test "${ac_cv_header_stdc+set}" = set; then
    37214450  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    37414470_ACEOF
    37424471rm -f conftest.$ac_objext
    3743 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
    3744   (eval $ac_compile) 2>conftest.er1
     4472if { (ac_try="$ac_compile"
     4473case "(($ac_try" in
     4474  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4475  *) ac_try_echo=$ac_try;;
     4476esac
     4477eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4478  (eval "$ac_compile") 2>conftest.er1
    37454479  ac_status=$?
    37464480  grep -v '^ *+' conftest.er1 >conftest.err
     
    37494483  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    37504484  (exit $ac_status); } &&
    3751          { ac_try='test -z "$ac_c_werror_flag"
    3752                          || test ! -s conftest.err'
    3753   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3754   (eval $ac_try) 2>&5
     4485         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     4486  { (case "(($ac_try" in
     4487  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4488  *) ac_try_echo=$ac_try;;
     4489esac
     4490eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4491  (eval "$ac_try") 2>&5
    37554492  ac_status=$?
    37564493  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    37574494  (exit $ac_status); }; } &&
    37584495         { ac_try='test -s conftest.$ac_objext'
    3759   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3760   (eval $ac_try) 2>&5
     4496  { (case "(($ac_try" in
     4497  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4498  *) ac_try_echo=$ac_try;;
     4499esac
     4500eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4501  (eval "$ac_try") 2>&5
    37614502  ac_status=$?
    37624503  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    37674508sed 's/^/| /' conftest.$ac_ext >&5
    37684509
    3769 ac_cv_header_stdc=no
    3770 fi
    3771 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
     4510        ac_cv_header_stdc=no
     4511fi
     4512
     4513rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
    37724514
    37734515if test $ac_cv_header_stdc = yes; then
     
    38254567/* end confdefs.h.  */
    38264568#include <ctype.h>
     4569#include <stdlib.h>
    38274570#if ((' ' & 0x0FF) == 0x020)
    38284571# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
     
    38444587    if (XOR (islower (i), ISLOWER (i))
    38454588        || toupper (i) != TOUPPER (i))
    3846       exit(2);
    3847   exit (0);
     4589      return 2;
     4590  return 0;
    38484591}
    38494592_ACEOF
    38504593rm -f conftest$ac_exeext
    3851 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
    3852   (eval $ac_link) 2>&5
     4594if { (ac_try="$ac_link"
     4595case "(($ac_try" in
     4596  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4597  *) ac_try_echo=$ac_try;;
     4598esac
     4599eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4600  (eval "$ac_link") 2>&5
    38534601  ac_status=$?
    38544602  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    38554603  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    3856   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3857   (eval $ac_try) 2>&5
     4604  { (case "(($ac_try" in
     4605  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4606  *) ac_try_echo=$ac_try;;
     4607esac
     4608eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4609  (eval "$ac_try") 2>&5
    38584610  ac_status=$?
    38594611  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    38684620ac_cv_header_stdc=no
    38694621fi
    3870 rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
    3871 fi
    3872 fi
    3873 fi
    3874 echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
    3875 echo "${ECHO_T}$ac_cv_header_stdc" >&6
     4622rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
     4623fi
     4624
     4625
     4626fi
     4627fi
     4628{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
     4629echo "${ECHO_T}$ac_cv_header_stdc" >&6; }
    38764630if test $ac_cv_header_stdc = yes; then
    38774631
     
    38824636fi
    38834637
    3884 echo "$as_me:$LINENO: checking for sys/wait.h that is POSIX.1 compatible" >&5
    3885 echo $ECHO_N "checking for sys/wait.h that is POSIX.1 compatible... $ECHO_C" >&6
     4638{ echo "$as_me:$LINENO: checking for sys/wait.h that is POSIX.1 compatible" >&5
     4639echo $ECHO_N "checking for sys/wait.h that is POSIX.1 compatible... $ECHO_C" >&6; }
    38864640if test "${ac_cv_header_sys_wait_h+set}" = set; then
    38874641  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    38964650#include <sys/wait.h>
    38974651#ifndef WEXITSTATUS
    3898 # define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
     4652# define WEXITSTATUS(stat_val) ((unsigned int) (stat_val) >> 8)
    38994653#endif
    39004654#ifndef WIFEXITED
     
    39134667_ACEOF
    39144668rm -f conftest.$ac_objext
    3915 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
    3916   (eval $ac_compile) 2>conftest.er1
     4669if { (ac_try="$ac_compile"
     4670case "(($ac_try" in
     4671  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4672  *) ac_try_echo=$ac_try;;
     4673esac
     4674eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4675  (eval "$ac_compile") 2>conftest.er1
    39174676  ac_status=$?
    39184677  grep -v '^ *+' conftest.er1 >conftest.err
     
    39214680  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    39224681  (exit $ac_status); } &&
    3923          { ac_try='test -z "$ac_c_werror_flag"
    3924                          || test ! -s conftest.err'
    3925   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3926   (eval $ac_try) 2>&5
     4682         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     4683  { (case "(($ac_try" in
     4684  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4685  *) ac_try_echo=$ac_try;;
     4686esac
     4687eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4688  (eval "$ac_try") 2>&5
    39274689  ac_status=$?
    39284690  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    39294691  (exit $ac_status); }; } &&
    39304692         { ac_try='test -s conftest.$ac_objext'
    3931   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3932   (eval $ac_try) 2>&5
     4693  { (case "(($ac_try" in
     4694  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4695  *) ac_try_echo=$ac_try;;
     4696esac
     4697eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4698  (eval "$ac_try") 2>&5
    39334699  ac_status=$?
    39344700  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    39394705sed 's/^/| /' conftest.$ac_ext >&5
    39404706
    3941 ac_cv_header_sys_wait_h=no
    3942 fi
    3943 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
    3944 fi
    3945 echo "$as_me:$LINENO: result: $ac_cv_header_sys_wait_h" >&5
    3946 echo "${ECHO_T}$ac_cv_header_sys_wait_h" >&6
     4707        ac_cv_header_sys_wait_h=no
     4708fi
     4709
     4710rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
     4711fi
     4712{ echo "$as_me:$LINENO: result: $ac_cv_header_sys_wait_h" >&5
     4713echo "${ECHO_T}$ac_cv_header_sys_wait_h" >&6; }
    39474714if test $ac_cv_header_sys_wait_h = yes; then
    39484715
     
    39674734do
    39684735as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
    3969 echo "$as_me:$LINENO: checking for $ac_header" >&5
    3970 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
    3971 if eval "test \"\${$as_ac_Header+set}\" = set"; then
     4736{ echo "$as_me:$LINENO: checking for $ac_header" >&5
     4737echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
     4738if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
    39724739  echo $ECHO_N "(cached) $ECHO_C" >&6
    39734740else
     
    39834750_ACEOF
    39844751rm -f conftest.$ac_objext
    3985 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
    3986   (eval $ac_compile) 2>conftest.er1
     4752if { (ac_try="$ac_compile"
     4753case "(($ac_try" in
     4754  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4755  *) ac_try_echo=$ac_try;;
     4756esac
     4757eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4758  (eval "$ac_compile") 2>conftest.er1
    39874759  ac_status=$?
    39884760  grep -v '^ *+' conftest.er1 >conftest.err
     
    39914763  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    39924764  (exit $ac_status); } &&
    3993          { ac_try='test -z "$ac_c_werror_flag"
    3994                          || test ! -s conftest.err'
    3995   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    3996   (eval $ac_try) 2>&5
     4765         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     4766  { (case "(($ac_try" in
     4767  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4768  *) ac_try_echo=$ac_try;;
     4769esac
     4770eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4771  (eval "$ac_try") 2>&5
    39974772  ac_status=$?
    39984773  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    39994774  (exit $ac_status); }; } &&
    40004775         { ac_try='test -s conftest.$ac_objext'
    4001   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    4002   (eval $ac_try) 2>&5
     4776  { (case "(($ac_try" in
     4777  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4778  *) ac_try_echo=$ac_try;;
     4779esac
     4780eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4781  (eval "$ac_try") 2>&5
    40034782  ac_status=$?
    40044783  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    40094788sed 's/^/| /' conftest.$ac_ext >&5
    40104789
    4011 eval "$as_ac_Header=no"
    4012 fi
    4013 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
    4014 fi
    4015 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
    4016 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
     4790        eval "$as_ac_Header=no"
     4791fi
     4792
     4793rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
     4794fi
     4795ac_res=`eval echo '${'$as_ac_Header'}'`
     4796               { echo "$as_me:$LINENO: result: $ac_res" >&5
     4797echo "${ECHO_T}$ac_res" >&6; }
    40174798if test `eval echo '${'$as_ac_Header'}'` = yes; then
    40184799  cat >>confdefs.h <<_ACEOF
     
    40334814do
    40344815as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
    4035 if eval "test \"\${$as_ac_Header+set}\" = set"; then
    4036   echo "$as_me:$LINENO: checking for $ac_header" >&5
    4037 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
    4038 if eval "test \"\${$as_ac_Header+set}\" = set"; then
     4816if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
     4817  { echo "$as_me:$LINENO: checking for $ac_header" >&5
     4818echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
     4819if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
    40394820  echo $ECHO_N "(cached) $ECHO_C" >&6
    40404821fi
    4041 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
    4042 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
     4822ac_res=`eval echo '${'$as_ac_Header'}'`
     4823               { echo "$as_me:$LINENO: result: $ac_res" >&5
     4824echo "${ECHO_T}$ac_res" >&6; }
    40434825else
    40444826  # Is the header compilable?
    4045 echo "$as_me:$LINENO: checking $ac_header usability" >&5
    4046 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
     4827{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
     4828echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
    40474829cat >conftest.$ac_ext <<_ACEOF
    40484830/* confdefs.h.  */
     
    40554837_ACEOF
    40564838rm -f conftest.$ac_objext
    4057 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
    4058   (eval $ac_compile) 2>conftest.er1
     4839if { (ac_try="$ac_compile"
     4840case "(($ac_try" in
     4841  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4842  *) ac_try_echo=$ac_try;;
     4843esac
     4844eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4845  (eval "$ac_compile") 2>conftest.er1
    40594846  ac_status=$?
    40604847  grep -v '^ *+' conftest.er1 >conftest.err
     
    40634850  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    40644851  (exit $ac_status); } &&
    4065          { ac_try='test -z "$ac_c_werror_flag"
    4066                          || test ! -s conftest.err'
    4067   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    4068   (eval $ac_try) 2>&5
     4852         { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
     4853  { (case "(($ac_try" in
     4854  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4855  *) ac_try_echo=$ac_try;;
     4856esac
     4857eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4858  (eval "$ac_try") 2>&5
    40694859  ac_status=$?
    40704860  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    40714861  (exit $ac_status); }; } &&
    40724862         { ac_try='test -s conftest.$ac_objext'
    4073   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
    4074   (eval $ac_try) 2>&5
     4863  { (case "(($ac_try" in
     4864  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4865  *) ac_try_echo=$ac_try;;
     4866esac
     4867eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4868  (eval "$ac_try") 2>&5
    40754869  ac_status=$?
    40764870  echo "$as_me:$LINENO: \$? = $ac_status" >&5
     
    40814875sed 's/^/| /' conftest.$ac_ext >&5
    40824876
    4083 ac_header_compiler=no
    4084 fi
    4085 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
    4086 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
    4087 echo "${ECHO_T}$ac_header_compiler" >&6
     4877        ac_header_compiler=no
     4878fi
     4879
     4880rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
     4881{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
     4882echo "${ECHO_T}$ac_header_compiler" >&6; }
    40884883
    40894884# Is the header present?
    4090 echo "$as_me:$LINENO: checking $ac_header presence" >&5
    4091 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
     4885{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
     4886echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
    40924887cat >conftest.$ac_ext <<_ACEOF
    40934888/* confdefs.h.  */
     
    40984893#include <$ac_header>
    40994894_ACEOF
    4100 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
    4101   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
     4895if { (ac_try="$ac_cpp conftest.$ac_ext"
     4896case "(($ac_try" in
     4897  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
     4898  *) ac_try_echo=$ac_try;;
     4899esac
     4900eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
     4901  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
    41024902  ac_status=$?
    41034903  grep -v '^ *+' conftest.er1 >conftest.err
     
    41234923  ac_header_preproc=no
    41244924fi
     4925
    41254926rm -f conftest.err conftest.$ac_ext
    4126 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
    4127 echo "${ECHO_T}$ac_header_preproc" >&6
     4927{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
     4928echo "${ECHO_T}$ac_header_preproc" >&6; }
    41284929
    41294930# So?  What about this header?
     
    41494950    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
    41504951echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
    4151     (
    4152       cat <<\_ASBOX
    4153 ## ------------------------------------------ ##
    4154 ## Report this to the AC_PACKAGE_NAME lists.  ##
    4155 ## ------------------------------------------ ##
    4156 _ASBOX
    4157     ) |
    4158       sed "s/^/$as_me: WARNING:     /" >&2
     4952
    41594953    ;;
    41604954esac
    4161 echo "$as_me:$LINENO: checking for $ac_header" >&5
    4162 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
    4163 if eval "test \"\${$as_ac_Header+set}\" = set"; then
     4955{ echo "$as_me:$LINENO: checking for $ac_header" >&5
     4956echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
     4957if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
    41644958  echo $ECHO_N "(cached) $ECHO_C" >&6
    41654959else
    41664960  eval "$as_ac_Header=\$ac_header_preproc"
    41674961fi
    4168 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
    4169 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
     4962ac_res=`eval echo '${'$as_ac_Header'}'`
     4963               { echo "$as_me:$LINENO: result: $ac_res" >&5
     4964echo "${ECHO_T}$ac_res" >&6; }
    41704965
    41714966fi
     
    41844979CFLAGS=${CFLAGS}\ ${FOO}
    41854980
    4186 echo "$as_me:$LINENO: checking for the perl xsubpp precompiler" >&5
    4187 echo $ECHO_N "checking for the perl xsubpp precompiler... $ECHO_C" >&6
     4981{ echo "$as_me:$LINENO: checking for the perl xsubpp precompiler" >&5
     4982echo $ECHO_N "checking for the perl xsubpp precompiler... $ECHO_C" >&6; }
    41884983XSUBPPDIR="`(perl -MExtUtils::MakeMaker -e 'print ExtUtils::MakeMaker->new({NAME => qw(owl)})->tool_xsubpp;') | grep \^XSUBPPDIR | sed -e 's/XSUBPPDIR = //g;'`"
    41894984if test -n "${XSUBPPDIR}"; then
    4190    echo "$as_me:$LINENO: result: ${XSUBPPDIR}" >&5
    4191 echo "${ECHO_T}${XSUBPPDIR}" >&6
     4985   { echo "$as_me:$LINENO: result: ${XSUBPPDIR}" >&5
     4986echo "${ECHO_T}${XSUBPPDIR}" >&6; }
    41924987else
    41934988   { { echo "$as_me:$LINENO: error: not found" >&5
     
    41964991fi
    41974992
     4993if test -f "${XSUBPPDIR}/typemap"; then
     4994   XSUBPPFLAGS="-typemap ${XSUBPPDIR}/typemap"
     4995else
     4996   XSUBPPFLAGS=""
     4997fi
     4998
    41984999FOO=`perl -MExtUtils::Embed -e ldopts | sed 's/,-E//' | sed 's/-liconv//'`
    41995000echo Adding perl LDFLAGS ${FOO}
    42005001LDFLAGS=${LDFLAGS}\ ${FOO}
    42015002
    4202 echo "$as_me:$LINENO: checking for /usr/share/terminfo" >&5
    4203 echo $ECHO_N "checking for /usr/share/terminfo... $ECHO_C" >&6
     5003{ echo "$as_me:$LINENO: checking for /usr/share/terminfo" >&5
     5004echo $ECHO_N "checking for /usr/share/terminfo... $ECHO_C" >&6; }
    42045005if test "${ac_cv_file__usr_share_terminfo+set}" = set; then
    42055006  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    42155016fi
    42165017fi
    4217 echo "$as_me:$LINENO: result: $ac_cv_file__usr_share_terminfo" >&5
    4218 echo "${ECHO_T}$ac_cv_file__usr_share_terminfo" >&6
     5018{ echo "$as_me:$LINENO: result: $ac_cv_file__usr_share_terminfo" >&5
     5019echo "${ECHO_T}$ac_cv_file__usr_share_terminfo" >&6; }
    42195020if test $ac_cv_file__usr_share_terminfo = yes; then
    42205021
     
    42245025
    42255026else
    4226   echo "$as_me:$LINENO: checking for /usr/share/lib/terminfo" >&5
    4227 echo $ECHO_N "checking for /usr/share/lib/terminfo... $ECHO_C" >&6
     5027  { echo "$as_me:$LINENO: checking for /usr/share/lib/terminfo" >&5
     5028echo $ECHO_N "checking for /usr/share/lib/terminfo... $ECHO_C" >&6; }
    42285029if test "${ac_cv_file__usr_share_lib_terminfo+set}" = set; then
    42295030  echo $ECHO_N "(cached) $ECHO_C" >&6
     
    42395040fi
    42405041fi
    4241 echo "$as_me:$LINENO: result: $ac_cv_file__usr_share_lib_terminfo" >&5
    4242 echo "${ECHO_T}$ac_cv_file__usr_share_lib_terminfo" >&6
     5042{ echo "$as_me:$LINENO: result: $ac_cv_file__usr_share_lib_terminfo" >&5
     5043echo "${ECHO_T}$ac_cv_file__usr_share_lib_terminfo" >&6; }
    42435044if test $ac_cv_file__usr_share_lib_terminfo = yes; then
    42445045
     
    42595060
    42605061ac_aux_dir=
    4261 for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
    4262   if test -f $ac_dir/install-sh; then
     5062for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
     5063  if test -f "$ac_dir/install-sh"; then
    42635064    ac_aux_dir=$ac_dir
    42645065    ac_install_sh="$ac_aux_dir/install-sh -c"
    42655066    break
    4266   elif test -f $ac_dir/install.sh; then
     5067  elif test -f "$ac_dir/install.sh"; then
    42675068    ac_aux_dir=$ac_dir
    42685069    ac_install_sh="$ac_aux_dir/install.sh -c"
    42695070    break
    4270   elif test -f $ac_dir/shtool; then
     5071  elif test -f "$ac_dir/shtool"; then
    42715072    ac_aux_dir=$ac_dir
    42725073    ac_install_sh="$ac_aux_dir/shtool install -c"
     
    42755076done
    42765077if test -z "$ac_aux_dir"; then
    4277   { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
    4278 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
     5078  { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5
     5079echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;}
    42795080   { (exit 1); exit 1; }; }
    42805081fi
    4281 ac_config_guess="$SHELL $ac_aux_dir/config.guess"
    4282 ac_config_sub="$SHELL $ac_aux_dir/config.sub"
    4283 ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
     5082
     5083# These three variables are undocumented and unsupported,
     5084# and are intended to be withdrawn in a future Autoconf release.
     5085# They can cause serious problems if a builder's source tree is in a directory
     5086# whose full name contains unusual characters.
     5087ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
     5088ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
     5089ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
     5090
    42845091
    42855092# Find a good install program.  We prefer a C program (faster),
     
    42965103# OS/2's system install, which has a completely different semantic
    42975104# ./install, which can be erroneously created by make from ./install.sh.
    4298 echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
    4299 echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
     5105{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
     5106echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; }
    43005107if test -z "$INSTALL"; then
    43015108if test "${ac_cv_path_install+set}" = set; then
     
    43195126    for ac_prog in ginstall scoinst install; do
    43205127      for ac_exec_ext in '' $ac_executable_extensions; do
    4321         if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
     5128        if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; }; then
    43225129          if test $ac_prog = install &&
    43235130            grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
     
    43385145esac
    43395146done
     5147IFS=$as_save_IFS
    43405148
    43415149
     
    43445152    INSTALL=$ac_cv_path_install
    43455153  else
    4346     # As a last resort, use the slow shell script.  We don't cache a
    4347     # path for INSTALL within a source directory, because that will
     5154    # As a last resort, use the slow shell script.  Don't cache a
     5155    # value for INSTALL within a source directory, because that will
    43485156    # break other packages using the cache if that directory is
    4349     # removed, or if the path is relative.
     5157    # removed, or if the value is a relative name.
    43505158    INSTALL=$ac_install_sh
    43515159  fi
    43525160fi
    4353 echo "$as_me:$LINENO: result: $INSTALL" >&5
    4354 echo "${ECHO_T}$INSTALL" >&6
     5161{ echo "$as_me:$LINENO: result: $INSTALL" >&5
     5162echo "${ECHO_T}$INSTALL" >&6; }
    43555163
    43565164# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
     
    43635171
    43645172
    4365 
    4366 
    43675173subdirs="$subdirs libfaim"
    43685174
    43695175
    4370           ac_config_files="$ac_config_files Makefile"
     5176ac_config_files="$ac_config_files Makefile"
     5177
    43715178cat >confcache <<\_ACEOF
    43725179# This file is a shell script that caches the results of configure
     
    43875194# The following way of writing the cache mishandles newlines in values,
    43885195# but we know of no workaround that is simple, portable, and efficient.
    4389 # So, don't put newlines in cache variables' values.
     5196# So, we kill variables containing newlines.
    43905197# Ultrix sh set writes to stderr and can't be redirected directly,
    43915198# and sets the high bit in the cache file unless we assign to the vars.
    4392 {
     5199(
     5200  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
     5201    eval ac_val=\$$ac_var
     5202    case $ac_val in #(
     5203    *${as_nl}*)
     5204      case $ac_var in #(
     5205      *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
     5206echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
     5207      esac
     5208      case $ac_var in #(
     5209      _ | IFS | as_nl) ;; #(
     5210      *) $as_unset $ac_var ;;
     5211      esac ;;
     5212    esac
     5213  done
     5214
    43935215  (set) 2>&1 |
    4394     case `(ac_space=' '; set | grep ac_space) 2>&1` in
    4395     *ac_space=\ *)
     5216    case $as_nl`(ac_space=' '; set) 2>&1` in #(
     5217    *${as_nl}ac_space=\ *)
    43965218      # `set' does not quote correctly, so add quotes (double-quote
    43975219      # substitution turns \\\\ into \\, and sed turns \\ into \).
     
    43995221        "s/'/'\\\\''/g;
    44005222          s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
    4401       ;;
     5223      ;; #(
    44025224    *)
    44035225      # `set' quotes correctly as required by POSIX, so do not add quotes.
    4404       sed -n \
    4405         "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
     5226      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
    44065227      ;;
    4407     esac;
    4408 } |
     5228    esac |
     5229    sort
     5230) |
    44095231  sed '
     5232     /^ac_cv_env_/b end
    44105233     t clear
    4411      : clear
     5234     :clear
    44125235     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
    44135236     t end
    4414      /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
    4415      : end' >>confcache
    4416 if diff $cache_file confcache >/dev/null 2>&1; then :; else
    4417   if test -w $cache_file; then
    4418     test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
     5237     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
     5238     :end' >>confcache
     5239if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
     5240  if test -w "$cache_file"; then
     5241    test "x$cache_file" != "x/dev/null" &&
     5242      { echo "$as_me:$LINENO: updating cache $cache_file" >&5
     5243echo "$as_me: updating cache $cache_file" >&6;}
    44195244    cat confcache >$cache_file
    44205245  else
    4421     echo "not updating unwritable cache $cache_file"
     5246    { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5
     5247echo "$as_me: not updating unwritable cache $cache_file" >&6;}
    44225248  fi
    44235249fi
     
    44275253# Let make expand exec_prefix.
    44285254test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
    4429 
    4430 # VPATH may cause trouble with some makes, so we remove $(srcdir),
    4431 # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
    4432 # trailing colons and then remove the whole line if VPATH becomes empty
    4433 # (actually we leave an empty line to preserve line numbers).
    4434 if test "x$srcdir" = x.; then
    4435   ac_vpsub='/^[  ]*VPATH[        ]*=/{
    4436 s/:*\$(srcdir):*/:/;
    4437 s/:*\${srcdir}:*/:/;
    4438 s/:*@srcdir@:*/:/;
    4439 s/^\([^=]*=[     ]*\):*/\1/;
    4440 s/:*$//;
    4441 s/^[^=]*=[       ]*$//;
    4442 }'
    4443 fi
    44445255
    44455256DEFS=-DHAVE_CONFIG_H
     
    44495260for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
    44505261  # 1. Remove the extension, and $U if already installed.
    4451   ac_i=`echo "$ac_i" |
    4452          sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
    4453   # 2. Add them.
    4454   ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
    4455   ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
     5262  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
     5263  ac_i=`echo "$ac_i" | sed "$ac_script"`
     5264  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
     5265  #    will be set to the directory where LIBOBJS objects are built.
     5266  ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext"
     5267  ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo'
    44565268done
    44575269LIBOBJS=$ac_libobjs
     
    44915303  # is contrary to our usage.  Disable this feature.
    44925304  alias -g '${1+"$@"}'='"$@"'
    4493 elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
    4494   set -o posix
    4495 fi
     5305  setopt NO_GLOB_SUBST
     5306else
     5307  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
     5308fi
     5309BIN_SH=xpg4; export BIN_SH # for Tru64
    44965310DUALCASE=1; export DUALCASE # for MKS sh
    44975311
    4498 # Support unset when possible.
    4499 if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
    4500   as_unset=unset
    4501 else
    4502   as_unset=false
    4503 fi
    4504 
    4505 
    4506 # Work around bugs in pre-3.0 UWIN ksh.
    4507 $as_unset ENV MAIL MAILPATH
    4508 PS1='$ '
    4509 PS2='> '
    4510 PS4='+ '
    4511 
    4512 # NLS nuisances.
    4513 for as_var in \
    4514   LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
    4515   LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
    4516   LC_TELEPHONE LC_TIME
    4517 do
    4518   if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
    4519     eval $as_var=C; export $as_var
    4520   else
    4521     $as_unset $as_var
    4522   fi
    4523 done
    4524 
    4525 # Required to use basename.
    4526 if expr a : '\(a\)' >/dev/null 2>&1; then
    4527   as_expr=expr
    4528 else
    4529   as_expr=false
    4530 fi
    4531 
    4532 if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
    4533   as_basename=basename
    4534 else
    4535   as_basename=false
    4536 fi
    4537 
    4538 
    4539 # Name of the executable.
    4540 as_me=`$as_basename "$0" ||
    4541 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
    4542          X"$0" : 'X\(//\)$' \| \
    4543          X"$0" : 'X\(/\)$' \| \
    4544          .     : '\(.\)' 2>/dev/null ||
    4545 echo X/"$0" |
    4546     sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
    4547           /^X\/\(\/\/\)$/{ s//\1/; q; }
    4548           /^X\/\(\/\).*/{ s//\1/; q; }
    4549           s/.*/./; q'`
    4550 
    4551 
    4552 # PATH needs CR, and LINENO needs CR and PATH.
     5312
     5313# PATH needs CR
    45535314# Avoid depending upon Character Ranges.
    45545315as_cr_letters='abcdefghijklmnopqrstuvwxyz'
     
    45715332fi
    45725333
    4573 
    4574   as_lineno_1=$LINENO
    4575   as_lineno_2=$LINENO
    4576   as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
    4577   test "x$as_lineno_1" != "x$as_lineno_2" &&
    4578   test "x$as_lineno_3"  = "x$as_lineno_2"  || {
    4579   # Find who we are.  Look in the path if we contain no path at all
    4580   # relative or not.
    4581   case $0 in
    4582     *[\\/]* ) as_myself=$0 ;;
    4583     *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
     5334# Support unset when possible.
     5335if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
     5336  as_unset=unset
     5337else
     5338  as_unset=false
     5339fi
     5340
     5341
     5342# IFS
     5343# We need space, tab and new line, in precisely that order.  Quoting is
     5344# there to prevent editors from complaining about space-tab.
     5345# (If _AS_PATH_WALK were called with IFS unset, it would disable word
     5346# splitting by setting IFS to empty value.)
     5347as_nl='
     5348'
     5349IFS=" ""        $as_nl"
     5350
     5351# Find who we are.  Look in the path if we contain no directory separator.
     5352case $0 in
     5353  *[\\/]* ) as_myself=$0 ;;
     5354  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
    45845355for as_dir in $PATH
    45855356do
     
    45885359  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
    45895360done
    4590 
    4591        ;;
    4592   esac
    4593   # We did not find ourselves, most probably we were run as `sh COMMAND'
    4594   # in which case we are not to be found in the path.
    4595   if test "x$as_myself" = x; then
    4596     as_myself=$0
     5361IFS=$as_save_IFS
     5362
     5363     ;;
     5364esac
     5365# We did not find ourselves, most probably we were run as `sh COMMAND'
     5366# in which case we are not to be found in the path.
     5367if test "x$as_myself" = x; then
     5368  as_myself=$0
     5369fi
     5370if test ! -f "$as_myself"; then
     5371  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
     5372  { (exit 1); exit 1; }
     5373fi
     5374
     5375# Work around bugs in pre-3.0 UWIN ksh.
     5376for as_var in ENV MAIL MAILPATH
     5377do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
     5378done
     5379PS1='$ '
     5380PS2='> '
     5381PS4='+ '
     5382
     5383# NLS nuisances.
     5384for as_var in \
     5385  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
     5386  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
     5387  LC_TELEPHONE LC_TIME
     5388do
     5389  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
     5390    eval $as_var=C; export $as_var
     5391  else
     5392    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
    45975393  fi
    4598   if test ! -f "$as_myself"; then
    4599     { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
    4600 echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
    4601    { (exit 1); exit 1; }; }
    4602   fi
    4603   case $CONFIG_SHELL in
    4604   '')
    4605     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
    4606 for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
    4607 do
    4608   IFS=$as_save_IFS
    4609   test -z "$as_dir" && as_dir=.
    4610   for as_base in sh bash ksh sh5; do
    4611          case $as_dir in
    4612          /*)
    4613            if ("$as_dir/$as_base" -c '
     5394done
     5395
     5396# Required to use basename.
     5397if expr a : '\(a\)' >/dev/null 2>&1 &&
     5398   test "X`expr 00001 : '.*\(...\)'`" = X001; then
     5399  as_expr=expr
     5400else
     5401  as_expr=false
     5402fi
     5403
     5404if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
     5405  as_basename=basename
     5406else
     5407  as_basename=false
     5408fi
     5409
     5410
     5411# Name of the executable.
     5412as_me=`$as_basename -- "$0" ||
     5413$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
     5414         X"$0" : 'X\(//\)$' \| \
     5415         X"$0" : 'X\(/\)' \| . 2>/dev/null ||
     5416echo X/"$0" |
     5417    sed '/^.*\/\([^/][^/]*\)\/*$/{
     5418            s//\1/
     5419            q
     5420          }
     5421          /^X\/\(\/\/\)$/{
     5422            s//\1/
     5423            q
     5424          }
     5425          /^X\/\(\/\).*/{
     5426            s//\1/
     5427            q
     5428          }
     5429          s/.*/./; q'`
     5430
     5431# CDPATH.
     5432$as_unset CDPATH
     5433
     5434
     5435
    46145436  as_lineno_1=$LINENO
    46155437  as_lineno_2=$LINENO
    4616   as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
    46175438  test "x$as_lineno_1" != "x$as_lineno_2" &&
    4618   test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
    4619              $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
    4620              $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
    4621              CONFIG_SHELL=$as_dir/$as_base
    4622              export CONFIG_SHELL
    4623              exec "$CONFIG_SHELL" "$0" ${1+"$@"}
    4624            fi;;
    4625          esac
    4626        done
    4627 done
    4628 ;;
    4629   esac
     5439  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
    46305440
    46315441  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
    46325442  # uniformly replaced by the line number.  The first 'sed' inserts a
    4633   # line-number line before each line; the second 'sed' does the real
    4634   # work.  The second script uses 'N' to pair each line-number line
    4635   # with the numbered line, and appends trailing '-' during
    4636   # substitution so that $LINENO is not a special case at line end.
     5443  # line-number line after each line using $LINENO; the second 'sed'
     5444  # does the real work.  The second script uses 'N' to pair each
     5445  # line-number line with the line containing $LINENO, and appends
     5446  # trailing '-' during substitution so that $LINENO is not a special
     5447  # case at line end.
    46375448  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
    4638   # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
    4639   sed '=' <$as_myself |
     5449  # scripts with optimization help from Paolo Bonzini.  Blame Lee
     5450  # E. McMahon (1931-1989) for sed's syntax.  :-)
     5451  sed -n '
     5452    p
     5453    /[$]LINENO/=
     5454  ' <$as_myself |
    46405455    sed '
     5456      s/[$]LINENO.*/&-/
     5457      t lineno
     5458      b
     5459      :lineno
    46415460      N
    4642       s,$,-,
    4643       : loop
    4644       s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
     5461      :loop
     5462      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
    46455463      t loop
    4646       s,-$,,
    4647       s,^['$as_cr_digits']*\n,,
     5464      s/-\n.*//
    46485465    ' >$as_me.lineno &&
    4649   chmod +x $as_me.lineno ||
    4650     { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
    4651 echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
     5466  chmod +x "$as_me.lineno" ||
     5467    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
    46525468   { (exit 1); exit 1; }; }
    46535469
    46545470  # Don't try to exec as it changes $[0], causing all sort of problems
    46555471  # (the dirname of $[0] is not the place where we might find the
    4656   # original and so on.  Autoconf is especially sensible to this).
    4657   . ./$as_me.lineno
     5472  # original and so on.  Autoconf is especially sensitive to this).
     5473  . "./$as_me.lineno"
    46585474  # Exit status is that of the last command.
    46595475  exit
     
    46615477
    46625478
    4663 case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
    4664   *c*,-n*) ECHO_N= ECHO_C='
    4665 ' ECHO_T='      ' ;;
    4666   *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
    4667   *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
    4668 esac
    4669 
    4670 if expr a : '\(a\)' >/dev/null 2>&1; then
     5479if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
     5480  as_dirname=dirname
     5481else
     5482  as_dirname=false
     5483fi
     5484
     5485ECHO_C= ECHO_N= ECHO_T=
     5486case `echo -n x` in
     5487-n*)
     5488  case `echo 'x\c'` in
     5489  *c*) ECHO_T=' ';;     # ECHO_T is single tab character.
     5490  *)   ECHO_C='\c';;
     5491  esac;;
     5492*)
     5493  ECHO_N='-n';;
     5494esac
     5495
     5496if expr a : '\(a\)' >/dev/null 2>&1 &&
     5497   test "X`expr 00001 : '.*\(...\)'`" = X001; then
    46715498  as_expr=expr
    46725499else
     
    46755502
    46765503rm -f conf$$ conf$$.exe conf$$.file
     5504if test -d conf$$.dir; then
     5505  rm -f conf$$.dir/conf$$.file
     5506else
     5507  rm -f conf$$.dir
     5508  mkdir conf$$.dir
     5509fi
    46775510echo >conf$$.file
    46785511if ln -s conf$$.file conf$$ 2>/dev/null; then
    4679   # We could just check for DJGPP; but this test a) works b) is more generic
    4680   # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
    4681   if test -f conf$$.exe; then
    4682     # Don't use ln at all; we don't have any links
     5512  as_ln_s='ln -s'
     5513  # ... but there are two gotchas:
     5514  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
     5515  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
     5516  # In both cases, we have to default to `cp -p'.
     5517  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
    46835518    as_ln_s='cp -p'
    4684   else
    4685     as_ln_s='ln -s'
    4686   fi
    46875519elif ln conf$$.file conf$$ 2>/dev/null; then
    46885520  as_ln_s=ln
     
    46905522  as_ln_s='cp -p'
    46915523fi
    4692 rm -f conf$$ conf$$.exe conf$$.file
     5524rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
     5525rmdir conf$$.dir 2>/dev/null
    46935526
    46945527if mkdir -p . 2>/dev/null; then
     
    46995532fi
    47005533
    4701 as_executable_p="test -f"
     5534# Find out whether ``test -x'' works.  Don't use a zero-byte file, as
     5535# systems may use methods other than mode bits to determine executability.
     5536cat >conf$$.file <<_ASEOF
     5537#! /bin/sh
     5538exit 0
     5539_ASEOF
     5540chmod +x conf$$.file
     5541if test -x conf$$.file >/dev/null 2>&1; then
     5542  as_executable_p="test -x"
     5543else
     5544  as_executable_p=:
     5545fi
     5546rm -f conf$$.file
    47025547
    47035548# Sed expression to map a string onto a valid CPP name.
     
    47085553
    47095554
    4710 # IFS
    4711 # We need space, tab and new line, in precisely that order.
    4712 as_nl='
    4713 '
    4714 IFS="   $as_nl"
    4715 
    4716 # CDPATH.
    4717 $as_unset CDPATH
    4718 
    47195555exec 6>&1
    47205556
    4721 # Open the log real soon, to keep \$[0] and so on meaningful, and to
     5557# Save the log message, to keep $[0] and so on meaningful, and to
    47225558# report actual input values of CONFIG_FILES etc. instead of their
    4723 # values after options handling.  Logging --version etc. is OK.
    4724 exec 5>>config.log
    4725 {
    4726   echo
    4727   sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
    4728 ## Running $as_me. ##
    4729 _ASBOX
    4730 } >&5
    4731 cat >&5 <<_CSEOF
    4732 
     5559# values after options handling.
     5560ac_log="
    47335561This file was extended by $as_me, which was
    4734 generated by GNU Autoconf 2.59.  Invocation command line was
     5562generated by GNU Autoconf 2.60.  Invocation command line was
    47355563
    47365564  CONFIG_FILES    = $CONFIG_FILES
     
    47405568  $ $0 $@
    47415569
    4742 _CSEOF
    4743 echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
    4744 echo >&5
    4745 _ACEOF
    4746 
     5570on `(hostname || uname -n) 2>/dev/null | sed 1q`
     5571"
     5572
     5573_ACEOF
     5574
     5575cat >>$CONFIG_STATUS <<_ACEOF
    47475576# Files that config.status was made for.
    4748 if test -n "$ac_config_files"; then
    4749   echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
    4750 fi
    4751 
    4752 if test -n "$ac_config_headers"; then
    4753   echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
    4754 fi
    4755 
    4756 if test -n "$ac_config_links"; then
    4757   echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
    4758 fi
    4759 
    4760 if test -n "$ac_config_commands"; then
    4761   echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
    4762 fi
     5577config_files="$ac_config_files"
     5578config_headers="$ac_config_headers"
     5579
     5580_ACEOF
    47635581
    47645582cat >>$CONFIG_STATUS <<\_ACEOF
    4765 
    47665583ac_cs_usage="\
    47675584\`$as_me' instantiates files from templates according to the
     
    47875604
    47885605Report bugs to <bug-autoconf@gnu.org>."
    4789 _ACEOF
    4790 
     5606
     5607_ACEOF
    47915608cat >>$CONFIG_STATUS <<_ACEOF
    47925609ac_cs_version="\\
    47935610config.status
    4794 configured by $0, generated by GNU Autoconf 2.59,
    4795   with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
    4796 
    4797 Copyright (C) 2003 Free Software Foundation, Inc.
     5611configured by $0, generated by GNU Autoconf 2.60,
     5612  with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
     5613
     5614Copyright (C) 2006 Free Software Foundation, Inc.
    47985615This config.status script is free software; the Free Software Foundation
    47995616gives unlimited permission to copy, distribute and modify it."
    4800 srcdir=$srcdir
    4801 INSTALL="$INSTALL"
     5617
     5618ac_pwd='$ac_pwd'
     5619srcdir='$srcdir'
     5620INSTALL='$INSTALL'
    48025621_ACEOF
    48035622
     
    48105629  case $1 in
    48115630  --*=*)
    4812     ac_option=`expr "x$1" : 'x\([^=]*\)='`
    4813     ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
     5631    ac_option=`expr "X$1" : 'X\([^=]*\)='`
     5632    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
    48145633    ac_shift=:
    48155634    ;;
    4816   -*)
     5635  *)
    48175636    ac_option=$1
    48185637    ac_optarg=$2
    48195638    ac_shift=shift
    48205639    ;;
    4821   *) # This is not an option, so the user has probably given explicit
    4822      # arguments.
    4823      ac_option=$1
    4824      ac_need_defaults=false;;
    48255640  esac
    48265641
    48275642  case $ac_option in
    48285643  # Handling of the options.
    4829 _ACEOF
    4830 cat >>$CONFIG_STATUS <<\_ACEOF
    48315644  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
    48325645    ac_cs_recheck=: ;;
    4833   --version | --vers* | -V )
    4834     echo "$ac_cs_version"; exit 0 ;;
    4835   --he | --h)
    4836     # Conflict between --help and --header
    4837     { { echo "$as_me:$LINENO: error: ambiguous option: $1
    4838 Try \`$0 --help' for more information." >&5
    4839 echo "$as_me: error: ambiguous option: $1
    4840 Try \`$0 --help' for more information." >&2;}
    4841    { (exit 1); exit 1; }; };;
    4842   --help | --hel | -h )
    4843     echo "$ac_cs_usage"; exit 0 ;;
    4844   --debug | --d* | -d )
     5646  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
     5647    echo "$ac_cs_version"; exit ;;
     5648  --debug | --debu | --deb | --de | --d | -d )
    48455649    debug=: ;;
    48465650  --file | --fil | --fi | --f )
     
    48525656    CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
    48535657    ac_need_defaults=false;;
     5658  --he | --h)
     5659    # Conflict between --help and --header
     5660    { echo "$as_me: error: ambiguous option: $1
     5661Try \`$0 --help' for more information." >&2
     5662   { (exit 1); exit 1; }; };;
     5663  --help | --hel | -h )
     5664    echo "$ac_cs_usage"; exit ;;
    48545665  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
    48555666  | -silent | --silent | --silen | --sile | --sil | --si | --s)
     
    48575668
    48585669  # This is an error.
    4859   -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
    4860 Try \`$0 --help' for more information." >&5
    4861 echo "$as_me: error: unrecognized option: $1
    4862 Try \`$0 --help' for more information." >&2;}
     5670  -*) { echo "$as_me: error: unrecognized option: $1
     5671Try \`$0 --help' for more information." >&2
    48635672   { (exit 1); exit 1; }; } ;;
    48645673
    4865   *) ac_config_targets="$ac_config_targets $1" ;;
     5674  *) ac_config_targets="$ac_config_targets $1"
     5675     ac_need_defaults=false ;;
    48665676
    48675677  esac
     
    48795689cat >>$CONFIG_STATUS <<_ACEOF
    48805690if \$ac_cs_recheck; then
    4881   echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
    4882   exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
    4883 fi
    4884 
    4885 _ACEOF
    4886 
    4887 
    4888 
    4889 
    4890 
     5691  echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
     5692  CONFIG_SHELL=$SHELL
     5693  export CONFIG_SHELL
     5694  exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
     5695fi
     5696
     5697_ACEOF
    48915698cat >>$CONFIG_STATUS <<\_ACEOF
     5699exec 5>>config.log
     5700{
     5701  echo
     5702  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
     5703## Running $as_me. ##
     5704_ASBOX
     5705  echo "$ac_log"
     5706} >&5
     5707
     5708_ACEOF
     5709cat >>$CONFIG_STATUS <<_ACEOF
     5710_ACEOF
     5711
     5712cat >>$CONFIG_STATUS <<\_ACEOF
     5713
     5714# Handling of arguments.
    48925715for ac_config_target in $ac_config_targets
    48935716do
    4894   case "$ac_config_target" in
    4895   # Handling of arguments.
    4896   "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
    4897   "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
     5717  case $ac_config_target in
     5718    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
     5719    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
     5720
    48985721  *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
    48995722echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
     
    49015724  esac
    49025725done
     5726
    49035727
    49045728# If the user did not use the arguments to specify the items to instantiate,
     
    49125736
    49135737# Have a temporary directory for convenience.  Make it in the build tree
    4914 # simply because there is no reason to put it here, and in addition,
     5738# simply because there is no reason against having it here, and in addition,
    49155739# creating and moving files from /tmp can sometimes cause problems.
    4916 # Create a temporary directory, and hook for its removal unless debugging.
     5740# Hook for its removal unless debugging.
     5741# Note that there is a small window in which the directory will not be cleaned:
     5742# after its creation but before its name has been assigned to `$tmp'.
    49175743$debug ||
    49185744{
    4919   trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
     5745  tmp=
     5746  trap 'exit_status=$?
     5747  { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
     5748' 0
    49205749  trap '{ (exit 1); exit 1; }' 1 2 13 15
    49215750}
    4922 
    49235751# Create a (secure) tmp directory for tmp files.
    49245752
    49255753{
    4926   tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` &&
     5754  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
    49275755  test -n "$tmp" && test -d "$tmp"
    49285756}  ||
    49295757{
    4930   tmp=./confstat$$-$RANDOM
    4931   (umask 077 && mkdir $tmp)
     5758  tmp=./conf$$-$RANDOM
     5759  (umask 077 && mkdir "$tmp")
    49325760} ||
    49335761{
     
    49365764}
    49375765
    4938 _ACEOF
    4939 
    4940 cat >>$CONFIG_STATUS <<_ACEOF
    4941 
    49425766#
    4943 # CONFIG_FILES section.
     5767# Set up the sed scripts for CONFIG_FILES section.
    49445768#
    49455769
    49465770# No need to generate the scripts if there are no CONFIG_FILES.
    49475771# This happens for instance when ./config.status config.h
    4948 if test -n "\$CONFIG_FILES"; then
    4949   # Protect against being on the right side of a sed subst in config.status.
    4950   sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
    4951    s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
    4952 s,@SHELL@,$SHELL,;t t
    4953 s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
    4954 s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t
    4955 s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
    4956 s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
    4957 s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t
    4958 s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
    4959 s,@exec_prefix@,$exec_prefix,;t t
    4960 s,@prefix@,$prefix,;t t
    4961 s,@program_transform_name@,$program_transform_name,;t t
    4962 s,@bindir@,$bindir,;t t
    4963 s,@sbindir@,$sbindir,;t t
    4964 s,@libexecdir@,$libexecdir,;t t
    4965 s,@datadir@,$datadir,;t t
    4966 s,@sysconfdir@,$sysconfdir,;t t
    4967 s,@sharedstatedir@,$sharedstatedir,;t t
    4968 s,@localstatedir@,$localstatedir,;t t
    4969 s,@libdir@,$libdir,;t t
    4970 s,@includedir@,$includedir,;t t
    4971 s,@oldincludedir@,$oldincludedir,;t t
    4972 s,@infodir@,$infodir,;t t
    4973 s,@mandir@,$mandir,;t t
    4974 s,@build_alias@,$build_alias,;t t
    4975 s,@host_alias@,$host_alias,;t t
    4976 s,@target_alias@,$target_alias,;t t
    4977 s,@DEFS@,$DEFS,;t t
    4978 s,@ECHO_C@,$ECHO_C,;t t
    4979 s,@ECHO_N@,$ECHO_N,;t t
    4980 s,@ECHO_T@,$ECHO_T,;t t
    4981 s,@LIBS@,$LIBS,;t t
    4982 s,@CC@,$CC,;t t
    4983 s,@CFLAGS@,$CFLAGS,;t t
    4984 s,@LDFLAGS@,$LDFLAGS,;t t
    4985 s,@CPPFLAGS@,$CPPFLAGS,;t t
    4986 s,@ac_ct_CC@,$ac_ct_CC,;t t
    4987 s,@EXEEXT@,$EXEEXT,;t t
    4988 s,@OBJEXT@,$OBJEXT,;t t
    4989 s,@CPP@,$CPP,;t t
    4990 s,@EGREP@,$EGREP,;t t
    4991 s,@XSUBPPDIR@,$XSUBPPDIR,;t t
    4992 s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
    4993 s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
    4994 s,@INSTALL_DATA@,$INSTALL_DATA,;t t
    4995 s,@subdirs@,$subdirs,;t t
    4996 s,@LIBOBJS@,$LIBOBJS,;t t
    4997 s,@LTLIBOBJS@,$LTLIBOBJS,;t t
    4998 CEOF
    4999 
    5000 _ACEOF
    5001 
    5002   cat >>$CONFIG_STATUS <<\_ACEOF
    5003   # Split the substitutions into bite-sized pieces for seds with
    5004   # small command number limits, like on Digital OSF/1 and HP-UX.
    5005   ac_max_sed_lines=48
    5006   ac_sed_frag=1 # Number of current file.
    5007   ac_beg=1 # First line for current file.
    5008   ac_end=$ac_max_sed_lines # Line after last line for current file.
    5009   ac_more_lines=:
    5010   ac_sed_cmds=
    5011   while $ac_more_lines; do
    5012     if test $ac_beg -gt 1; then
    5013       sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
    5014     else
    5015       sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
     5772if test -n "$CONFIG_FILES"; then
     5773
     5774_ACEOF
     5775
     5776
     5777
     5778ac_delim='%!_!# '
     5779for ac_last_try in false false false false false :; do
     5780  cat >conf$$subs.sed <<_ACEOF
     5781SHELL!$SHELL$ac_delim
     5782PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim
     5783PACKAGE_NAME!$PACKAGE_NAME$ac_delim
     5784PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim
     5785PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim
     5786PACKAGE_STRING!$PACKAGE_STRING$ac_delim
     5787PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim
     5788exec_prefix!$exec_prefix$ac_delim
     5789prefix!$prefix$ac_delim
     5790program_transform_name!$program_transform_name$ac_delim
     5791bindir!$bindir$ac_delim
     5792sbindir!$sbindir$ac_delim
     5793libexecdir!$libexecdir$ac_delim
     5794datarootdir!$datarootdir$ac_delim
     5795datadir!$datadir$ac_delim
     5796sysconfdir!$sysconfdir$ac_delim
     5797sharedstatedir!$sharedstatedir$ac_delim
     5798localstatedir!$localstatedir$ac_delim
     5799includedir!$includedir$ac_delim
     5800oldincludedir!$oldincludedir$ac_delim
     5801docdir!$docdir$ac_delim
     5802infodir!$infodir$ac_delim
     5803htmldir!$htmldir$ac_delim
     5804dvidir!$dvidir$ac_delim
     5805pdfdir!$pdfdir$ac_delim
     5806psdir!$psdir$ac_delim
     5807libdir!$libdir$ac_delim
     5808localedir!$localedir$ac_delim
     5809mandir!$mandir$ac_delim
     5810DEFS!$DEFS$ac_delim
     5811ECHO_C!$ECHO_C$ac_delim
     5812ECHO_N!$ECHO_N$ac_delim
     5813ECHO_T!$ECHO_T$ac_delim
     5814LIBS!$LIBS$ac_delim
     5815build_alias!$build_alias$ac_delim
     5816host_alias!$host_alias$ac_delim
     5817target_alias!$target_alias$ac_delim
     5818CC!$CC$ac_delim
     5819CFLAGS!$CFLAGS$ac_delim
     5820LDFLAGS!$LDFLAGS$ac_delim
     5821CPPFLAGS!$CPPFLAGS$ac_delim
     5822ac_ct_CC!$ac_ct_CC$ac_delim
     5823EXEEXT!$EXEEXT$ac_delim
     5824OBJEXT!$OBJEXT$ac_delim
     5825CPP!$CPP$ac_delim
     5826GREP!$GREP$ac_delim
     5827EGREP!$EGREP$ac_delim
     5828XSUBPPFLAGS!$XSUBPPFLAGS$ac_delim
     5829INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
     5830INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
     5831INSTALL_DATA!$INSTALL_DATA$ac_delim
     5832subdirs!$subdirs$ac_delim
     5833LIBOBJS!$LIBOBJS$ac_delim
     5834LTLIBOBJS!$LTLIBOBJS$ac_delim
     5835_ACEOF
     5836
     5837  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 54; then
     5838    break
     5839  elif $ac_last_try; then
     5840    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
     5841echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
     5842   { (exit 1); exit 1; }; }
     5843  else
     5844    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
     5845  fi
     5846done
     5847
     5848ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
     5849if test -n "$ac_eof"; then
     5850  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
     5851  ac_eof=`expr $ac_eof + 1`
     5852fi
     5853
     5854cat >>$CONFIG_STATUS <<_ACEOF
     5855cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof
     5856/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end
     5857_ACEOF
     5858sed '
     5859s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
     5860s/^/s,@/; s/!/@,|#_!!_#|/
     5861:n
     5862t n
     5863s/'"$ac_delim"'$/,g/; t
     5864s/$/\\/; p
     5865N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
     5866' >>$CONFIG_STATUS <conf$$subs.sed
     5867rm -f conf$$subs.sed
     5868cat >>$CONFIG_STATUS <<_ACEOF
     5869:end
     5870s/|#_!!_#|//g
     5871CEOF$ac_eof
     5872_ACEOF
     5873
     5874
     5875# VPATH may cause trouble with some makes, so we remove $(srcdir),
     5876# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
     5877# trailing colons and then remove the whole line if VPATH becomes empty
     5878# (actually we leave an empty line to preserve line numbers).
     5879if test "x$srcdir" = x.; then
     5880  ac_vpsub='/^[  ]*VPATH[        ]*=/{
     5881s/:*\$(srcdir):*/:/
     5882s/:*\${srcdir}:*/:/
     5883s/:*@srcdir@:*/:/
     5884s/^\([^=]*=[     ]*\):*/\1/
     5885s/:*$//
     5886s/^[^=]*=[       ]*$//
     5887}'
     5888fi
     5889
     5890cat >>$CONFIG_STATUS <<\_ACEOF
     5891fi # test -n "$CONFIG_FILES"
     5892
     5893
     5894for ac_tag in  :F $CONFIG_FILES  :H $CONFIG_HEADERS
     5895do
     5896  case $ac_tag in
     5897  :[FHLC]) ac_mode=$ac_tag; continue;;
     5898  esac
     5899  case $ac_mode$ac_tag in
     5900  :[FHL]*:*);;
     5901  :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5
     5902echo "$as_me: error: Invalid tag $ac_tag." >&2;}
     5903   { (exit 1); exit 1; }; };;
     5904  :[FH]-) ac_tag=-:-;;
     5905  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
     5906  esac
     5907  ac_save_IFS=$IFS
     5908  IFS=:
     5909  set x $ac_tag
     5910  IFS=$ac_save_IFS
     5911  shift
     5912  ac_file=$1
     5913  shift
     5914
     5915  case $ac_mode in
     5916  :L) ac_source=$1;;
     5917  :[FH])
     5918    ac_file_inputs=
     5919    for ac_f
     5920    do
     5921      case $ac_f in
     5922      -) ac_f="$tmp/stdin";;
     5923      *) # Look for the file first in the build tree, then in the source tree
     5924         # (if the path is not absolute).  The absolute path cannot be DOS-style,
     5925         # because $ac_f cannot contain `:'.
     5926         test -f "$ac_f" ||
     5927           case $ac_f in
     5928           [\\/$]*) false;;
     5929           *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
     5930           esac ||
     5931           { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
     5932echo "$as_me: error: cannot find input file: $ac_f" >&2;}
     5933   { (exit 1); exit 1; }; };;
     5934      esac
     5935      ac_file_inputs="$ac_file_inputs $ac_f"
     5936    done
     5937
     5938    # Let's still pretend it is `configure' which instantiates (i.e., don't
     5939    # use $as_me), people would be surprised to read:
     5940    #    /* config.h.  Generated by config.status.  */
     5941    configure_input="Generated from "`IFS=:
     5942          echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure."
     5943    if test x"$ac_file" != x-; then
     5944      configure_input="$ac_file.  $configure_input"
     5945      { echo "$as_me:$LINENO: creating $ac_file" >&5
     5946echo "$as_me: creating $ac_file" >&6;}
    50165947    fi
    5017     if test ! -s $tmp/subs.frag; then
    5018       ac_more_lines=false
    5019     else
    5020       # The purpose of the label and of the branching condition is to
    5021       # speed up the sed processing (if there are no `@' at all, there
    5022       # is no need to browse any of the substitutions).
    5023       # These are the two extra sed commands mentioned above.
    5024       (echo ':t
    5025   /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
    5026       if test -z "$ac_sed_cmds"; then
    5027         ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
    5028       else
    5029         ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
    5030       fi
    5031       ac_sed_frag=`expr $ac_sed_frag + 1`
    5032       ac_beg=$ac_end
    5033       ac_end=`expr $ac_end + $ac_max_sed_lines`
    5034     fi
    5035   done
    5036   if test -z "$ac_sed_cmds"; then
    5037     ac_sed_cmds=cat
    5038   fi
    5039 fi # test -n "$CONFIG_FILES"
    5040 
    5041 _ACEOF
    5042 cat >>$CONFIG_STATUS <<\_ACEOF
    5043 for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
    5044   # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
    5045   case $ac_file in
    5046   - | *:- | *:-:* ) # input from stdin
    5047         cat >$tmp/stdin
    5048         ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
    5049         ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
    5050   *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
    5051         ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
    5052   * )   ac_file_in=$ac_file.in ;;
     5948
     5949    case $ac_tag in
     5950    *:-:* | *:-) cat >"$tmp/stdin";;
     5951    esac
     5952    ;;
    50535953  esac
    50545954
    5055   # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
    5056   ac_dir=`(dirname "$ac_file") 2>/dev/null ||
     5955  ac_dir=`$as_dirname -- "$ac_file" ||
    50575956$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
    50585957         X"$ac_file" : 'X\(//\)[^/]' \| \
    50595958         X"$ac_file" : 'X\(//\)$' \| \
    5060          X"$ac_file" : 'X\(/\)' \| \
    5061          .     : '\(.\)' 2>/dev/null ||
     5959         X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
    50625960echo X"$ac_file" |
    5063     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
    5064           /^X\(\/\/\)[^/].*/{ s//\1/; q; }
    5065           /^X\(\/\/\)$/{ s//\1/; q; }
    5066           /^X\(\/\).*/{ s//\1/; q; }
    5067           s/.*/./; q'`
    5068   { if $as_mkdir_p; then
    5069     mkdir -p "$ac_dir"
    5070   else
    5071     as_dir="$ac_dir"
     5961    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
     5962            s//\1/
     5963            q
     5964          }
     5965          /^X\(\/\/\)[^/].*/{
     5966            s//\1/
     5967            q
     5968          }
     5969          /^X\(\/\/\)$/{
     5970            s//\1/
     5971            q
     5972          }
     5973          /^X\(\/\).*/{
     5974            s//\1/
     5975            q
     5976          }
     5977          s/.*/./; q'`
     5978  { as_dir="$ac_dir"
     5979  case $as_dir in #(
     5980  -*) as_dir=./$as_dir;;
     5981  esac
     5982  test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
    50725983    as_dirs=
    5073     while test ! -d "$as_dir"; do
    5074       as_dirs="$as_dir $as_dirs"
    5075       as_dir=`(dirname "$as_dir") 2>/dev/null ||
     5984    while :; do
     5985      case $as_dir in #(
     5986      *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
     5987      *) as_qdir=$as_dir;;
     5988      esac
     5989      as_dirs="'$as_qdir' $as_dirs"
     5990      as_dir=`$as_dirname -- "$as_dir" ||
    50765991$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
    50775992         X"$as_dir" : 'X\(//\)[^/]' \| \
    50785993         X"$as_dir" : 'X\(//\)$' \| \
    5079          X"$as_dir" : 'X\(/\)' \| \
    5080          .     : '\(.\)' 2>/dev/null ||
     5994         X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
    50815995echo X"$as_dir" |
    5082     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
    5083           /^X\(\/\/\)[^/].*/{ s//\1/; q; }
    5084           /^X\(\/\/\)$/{ s//\1/; q; }
    5085           /^X\(\/\).*/{ s//\1/; q; }
    5086           s/.*/./; q'`
     5996    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
     5997            s//\1/
     5998            q
     5999          }
     6000          /^X\(\/\/\)[^/].*/{
     6001            s//\1/
     6002            q
     6003          }
     6004          /^X\(\/\/\)$/{
     6005            s//\1/
     6006            q
     6007          }
     6008          /^X\(\/\).*/{
     6009            s//\1/
     6010            q
     6011          }
     6012          s/.*/./; q'`
     6013      test -d "$as_dir" && break
    50876014    done
    5088     test ! -n "$as_dirs" || mkdir $as_dirs
    5089   fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
    5090 echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
     6015    test -z "$as_dirs" || eval "mkdir $as_dirs"
     6016  } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
     6017echo "$as_me: error: cannot create directory $as_dir" >&2;}
    50916018   { (exit 1); exit 1; }; }; }
    5092 
    50936019  ac_builddir=.
    50946020
    5095 if test "$ac_dir" != .; then
     6021case "$ac_dir" in
     6022.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
     6023*)
    50966024  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
    5097   # A "../" for each directory in $ac_dir_suffix.
    5098   ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
    5099 else
    5100   ac_dir_suffix= ac_top_builddir=
    5101 fi
     6025  # A ".." for each directory in $ac_dir_suffix.
     6026  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
     6027  case $ac_top_builddir_sub in
     6028  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
     6029  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
     6030  esac ;;
     6031esac
     6032ac_abs_top_builddir=$ac_pwd
     6033ac_abs_builddir=$ac_pwd$ac_dir_suffix
     6034# for backward compatibility:
     6035ac_top_builddir=$ac_top_build_prefix
    51026036
    51036037case $srcdir in
    5104   .)  # No --srcdir option.  We are building in place.
     6038  .)  # We are building in place.
    51056039    ac_srcdir=.
    5106     if test -z "$ac_top_builddir"; then
    5107        ac_top_srcdir=.
    5108     else
    5109        ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
    5110     fi ;;
    5111   [\\/]* | ?:[\\/]* )  # Absolute path.
     6040    ac_top_srcdir=$ac_top_builddir_sub
     6041    ac_abs_top_srcdir=$ac_pwd ;;
     6042  [\\/]* | ?:[\\/]* )  # Absolute name.
    51126043    ac_srcdir=$srcdir$ac_dir_suffix;
    5113     ac_top_srcdir=$srcdir ;;
    5114   *) # Relative path.
    5115     ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
    5116     ac_top_srcdir=$ac_top_builddir$srcdir ;;
    5117 esac
    5118 
    5119 # Do not use `cd foo && pwd` to compute absolute paths, because
    5120 # the directories may not exist.
    5121 case `pwd` in
    5122 .) ac_abs_builddir="$ac_dir";;
    5123 *)
    5124   case "$ac_dir" in
    5125   .) ac_abs_builddir=`pwd`;;
    5126   [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
    5127   *) ac_abs_builddir=`pwd`/"$ac_dir";;
    5128   esac;;
    5129 esac
    5130 case $ac_abs_builddir in
    5131 .) ac_abs_top_builddir=${ac_top_builddir}.;;
    5132 *)
    5133   case ${ac_top_builddir}. in
    5134   .) ac_abs_top_builddir=$ac_abs_builddir;;
    5135   [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
    5136   *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
    5137   esac;;
    5138 esac
    5139 case $ac_abs_builddir in
    5140 .) ac_abs_srcdir=$ac_srcdir;;
    5141 *)
    5142   case $ac_srcdir in
    5143   .) ac_abs_srcdir=$ac_abs_builddir;;
    5144   [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
    5145   *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
    5146   esac;;
    5147 esac
    5148 case $ac_abs_builddir in
    5149 .) ac_abs_top_srcdir=$ac_top_srcdir;;
    5150 *)
    5151   case $ac_top_srcdir in
    5152   .) ac_abs_top_srcdir=$ac_abs_builddir;;
    5153   [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
    5154   *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
    5155   esac;;
    5156 esac
    5157 
     6044    ac_top_srcdir=$srcdir
     6045    ac_abs_top_srcdir=$srcdir ;;
     6046  *) # Relative name.
     6047    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
     6048    ac_top_srcdir=$ac_top_build_prefix$srcdir
     6049    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
     6050esac
     6051ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
     6052
     6053
     6054  case $ac_mode in
     6055  :F)
     6056  #
     6057  # CONFIG_FILE
     6058  #
    51586059
    51596060  case $INSTALL in
    51606061  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
    5161   *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
     6062  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
    51626063  esac
    5163 
    5164   if test x"$ac_file" != x-; then
    5165     { echo "$as_me:$LINENO: creating $ac_file" >&5
    5166 echo "$as_me: creating $ac_file" >&6;}
    5167     rm -f "$ac_file"
    5168   fi
    5169   # Let's still pretend it is `configure' which instantiates (i.e., don't
    5170   # use $as_me), people would be surprised to read:
    5171   #    /* config.h.  Generated by config.status.  */
    5172   if test x"$ac_file" = x-; then
    5173     configure_input=
    5174   else
    5175     configure_input="$ac_file.  "
    5176   fi
    5177   configure_input=$configure_input"Generated from `echo $ac_file_in |
    5178                                      sed 's,.*/,,'` by configure."
    5179 
    5180   # First look for the input files in the build tree, otherwise in the
    5181   # src tree.
    5182   ac_file_inputs=`IFS=:
    5183     for f in $ac_file_in; do
    5184       case $f in
    5185       -) echo $tmp/stdin ;;
    5186       [\\/$]*)
    5187          # Absolute (can't be DOS-style, as IFS=:)
    5188          test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
    5189 echo "$as_me: error: cannot find input file: $f" >&2;}
    5190    { (exit 1); exit 1; }; }
    5191          echo "$f";;
    5192       *) # Relative
    5193          if test -f "$f"; then
    5194            # Build tree
    5195            echo "$f"
    5196          elif test -f "$srcdir/$f"; then
    5197            # Source tree
    5198            echo "$srcdir/$f"
    5199          else
    5200            # /dev/null tree
    5201            { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
    5202 echo "$as_me: error: cannot find input file: $f" >&2;}
    5203    { (exit 1); exit 1; }; }
    5204          fi;;
    5205       esac
    5206     done` || { (exit 1); exit 1; }
    5207 _ACEOF
     6064_ACEOF
     6065
     6066cat >>$CONFIG_STATUS <<\_ACEOF
     6067# If the template does not know about datarootdir, expand it.
     6068# FIXME: This hack should be removed a few years after 2.60.
     6069ac_datarootdir_hack=; ac_datarootdir_seen=
     6070
     6071case `sed -n '/datarootdir/ {
     6072  p
     6073  q
     6074}
     6075/@datadir@/p
     6076/@docdir@/p
     6077/@infodir@/p
     6078/@localedir@/p
     6079/@mandir@/p
     6080' $ac_file_inputs` in
     6081*datarootdir*) ac_datarootdir_seen=yes;;
     6082*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
     6083  { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
     6084echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
     6085_ACEOF
     6086cat >>$CONFIG_STATUS <<_ACEOF
     6087  ac_datarootdir_hack='
     6088  s&@datadir@&$datadir&g
     6089  s&@docdir@&$docdir&g
     6090  s&@infodir@&$infodir&g
     6091  s&@localedir@&$localedir&g
     6092  s&@mandir@&$mandir&g
     6093    s&\\\${datarootdir}&$datarootdir&g' ;;
     6094esac
     6095_ACEOF
     6096
     6097# Neutralize VPATH when `$srcdir' = `.'.
     6098# Shell code in configure.ac might set extrasub.
     6099# FIXME: do we really want to maintain this feature?
    52086100cat >>$CONFIG_STATUS <<_ACEOF
    52096101  sed "$ac_vpsub
     
    52136105:t
    52146106/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
    5215 s,@configure_input@,$configure_input,;t t
    5216 s,@srcdir@,$ac_srcdir,;t t
    5217 s,@abs_srcdir@,$ac_abs_srcdir,;t t
    5218 s,@top_srcdir@,$ac_top_srcdir,;t t
    5219 s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t
    5220 s,@builddir@,$ac_builddir,;t t
    5221 s,@abs_builddir@,$ac_abs_builddir,;t t
    5222 s,@top_builddir@,$ac_top_builddir,;t t
    5223 s,@abs_top_builddir@,$ac_abs_top_builddir,;t t
    5224 s,@INSTALL@,$ac_INSTALL,;t t
    5225 " $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
    5226   rm -f $tmp/stdin
    5227   if test x"$ac_file" != x-; then
    5228     mv $tmp/out $ac_file
    5229   else
    5230     cat $tmp/out
    5231     rm -f $tmp/out
    5232   fi
    5233 
    5234 done
    5235 _ACEOF
    5236 cat >>$CONFIG_STATUS <<\_ACEOF
    5237 
    5238 #
    5239 # CONFIG_HEADER section.
    5240 #
    5241 
    5242 # These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
    5243 # NAME is the cpp macro being defined and VALUE is the value it is being given.
    5244 #
    5245 # ac_d sets the value in "#define NAME VALUE" lines.
    5246 ac_dA='s,^\([    ]*\)#\([        ]*define[       ][      ]*\)'
    5247 ac_dB='[         ].*$,\1#\2'
     6107s&@configure_input@&$configure_input&;t t
     6108s&@top_builddir@&$ac_top_builddir_sub&;t t
     6109s&@srcdir@&$ac_srcdir&;t t
     6110s&@abs_srcdir@&$ac_abs_srcdir&;t t
     6111s&@top_srcdir@&$ac_top_srcdir&;t t
     6112s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
     6113s&@builddir@&$ac_builddir&;t t
     6114s&@abs_builddir@&$ac_abs_builddir&;t t
     6115s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
     6116s&@INSTALL@&$ac_INSTALL&;t t
     6117$ac_datarootdir_hack
     6118" $ac_file_inputs | sed -f "$tmp/subs-1.sed" >$tmp/out
     6119
     6120test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
     6121  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
     6122  { ac_out=`sed -n '/^[  ]*datarootdir[  ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
     6123  { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
     6124which seems to be undefined.  Please make sure it is defined." >&5
     6125echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
     6126which seems to be undefined.  Please make sure it is defined." >&2;}
     6127
     6128  rm -f "$tmp/stdin"
     6129  case $ac_file in
     6130  -) cat "$tmp/out"; rm -f "$tmp/out";;
     6131  *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
     6132  esac
     6133 ;;
     6134  :H)
     6135  #
     6136  # CONFIG_HEADER
     6137  #
     6138_ACEOF
     6139
     6140# Transform confdefs.h into a sed script `conftest.defines', that
     6141# substitutes the proper values into config.h.in to produce config.h.
     6142rm -f conftest.defines conftest.tail
     6143# First, append a space to every undef/define line, to ease matching.
     6144echo 's/$/ /' >conftest.defines
     6145# Then, protect against being on the right side of a sed subst, or in
     6146# an unquoted here document, in config.status.  If some macros were
     6147# called several times there might be several #defines for the same
     6148# symbol, which is useless.  But do not sort them, since the last
     6149# AC_DEFINE must be honored.
     6150ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
     6151# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where
     6152# NAME is the cpp macro being defined, VALUE is the value it is being given.
     6153# PARAMS is the parameter list in the macro definition--in most cases, it's
     6154# just an empty string.
     6155ac_dA='s,^\\([   #]*\\)[^        ]*\\([  ]*'
     6156ac_dB='\\)[      (].*,\\1define\\2'
    52486157ac_dC=' '
    5249 ac_dD=',;t'
    5250 # ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
    5251 ac_uA='s,^\([    ]*\)#\([        ]*\)undef\([    ][      ]*\)'
    5252 ac_uB='$,\1#\2define\3'
    5253 ac_uC=' '
    5254 ac_uD=',;t'
    5255 
    5256 for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
    5257   # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
    5258   case $ac_file in
    5259   - | *:- | *:-:* ) # input from stdin
    5260         cat >$tmp/stdin
    5261         ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
    5262         ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
    5263   *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
    5264         ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
    5265   * )   ac_file_in=$ac_file.in ;;
    5266   esac
    5267 
    5268   test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
    5269 echo "$as_me: creating $ac_file" >&6;}
    5270 
    5271   # First look for the input files in the build tree, otherwise in the
    5272   # src tree.
    5273   ac_file_inputs=`IFS=:
    5274     for f in $ac_file_in; do
    5275       case $f in
    5276       -) echo $tmp/stdin ;;
    5277       [\\/$]*)
    5278          # Absolute (can't be DOS-style, as IFS=:)
    5279          test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
    5280 echo "$as_me: error: cannot find input file: $f" >&2;}
    5281    { (exit 1); exit 1; }; }
    5282          # Do quote $f, to prevent DOS paths from being IFS'd.
    5283          echo "$f";;
    5284       *) # Relative
    5285          if test -f "$f"; then
    5286            # Build tree
    5287            echo "$f"
    5288          elif test -f "$srcdir/$f"; then
    5289            # Source tree
    5290            echo "$srcdir/$f"
    5291          else
    5292            # /dev/null tree
    5293            { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
    5294 echo "$as_me: error: cannot find input file: $f" >&2;}
    5295    { (exit 1); exit 1; }; }
    5296          fi;;
    5297       esac
    5298     done` || { (exit 1); exit 1; }
    5299   # Remove the trailing spaces.
    5300   sed 's/[       ]*$//' $ac_file_inputs >$tmp/in
    5301 
    5302 _ACEOF
    5303 
    5304 # Transform confdefs.h into two sed scripts, `conftest.defines' and
    5305 # `conftest.undefs', that substitutes the proper values into
    5306 # config.h.in to produce config.h.  The first handles `#define'
    5307 # templates, and the second `#undef' templates.
    5308 # And first: Protect against being on the right side of a sed subst in
    5309 # config.status.  Protect against being in an unquoted here document
    5310 # in config.status.
    5311 rm -f conftest.defines conftest.undefs
    5312 # Using a here document instead of a string reduces the quoting nightmare.
    5313 # Putting comments in sed scripts is not portable.
    5314 #
    5315 # `end' is used to avoid that the second main sed command (meant for
    5316 # 0-ary CPP macros) applies to n-ary macro definitions.
    5317 # See the Autoconf documentation for `clear'.
    5318 cat >confdef2sed.sed <<\_ACEOF
    5319 s/[\\&,]/\\&/g
    5320 s,[\\$`],\\&,g
    5321 t clear
    5322 : clear
    5323 s,^[     ]*#[    ]*define[       ][      ]*\([^  (][^    (]*\)\(([^)]*)\)[       ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp
    5324 t end
    5325 s,^[     ]*#[    ]*define[       ][      ]*\([^  ][^     ]*\)[   ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
    5326 : end
    5327 _ACEOF
    5328 # If some macros were called several times there might be several times
    5329 # the same #defines, which is useless.  Nevertheless, we may not want to
    5330 # sort them, since we want the *last* AC-DEFINE to be honored.
    5331 uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines
    5332 sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs
    5333 rm -f confdef2sed.sed
    5334 
    5335 # This sed command replaces #undef with comments.  This is necessary, for
     6158ac_dD=' ,'
     6159
     6160uniq confdefs.h |
     6161  sed -n '
     6162        t rset
     6163        :rset
     6164        s/^[     ]*#[    ]*define[       ][      ]*//
     6165        t ok
     6166        d
     6167        :ok
     6168        s/[\\&,]/\\&/g
     6169        s/^\('"$ac_word_re"'\)\(([^()]*)\)[      ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p
     6170        s/^\('"$ac_word_re"'\)[  ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p
     6171  ' >>conftest.defines
     6172
     6173# Remove the space that was appended to ease matching.
     6174# Then replace #undef with comments.  This is necessary, for
    53366175# example, in the case of _POSIX_SOURCE, which is predefined and required
    53376176# on some systems where configure will not decide to define it.
    5338 cat >>conftest.undefs <<\_ACEOF
    5339 s,^[     ]*#[    ]*undef[        ][      ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
    5340 _ACEOF
    5341 
    5342 # Break up conftest.defines because some shells have a limit on the size
    5343 # of here documents, and old seds have small limits too (100 cmds).
    5344 echo '  # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
    5345 echo '  if grep "^[      ]*#[    ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
    5346 echo '  # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
    5347 echo '  :' >>$CONFIG_STATUS
    5348 rm -f conftest.tail
    5349 while grep . conftest.defines >/dev/null
     6177# (The regexp can be short, since the line contains either #define or #undef.)
     6178echo 's/ $//
     6179s,^[     #]*u.*,/* & */,' >>conftest.defines
     6180
     6181# Break up conftest.defines:
     6182ac_max_sed_lines=50
     6183
     6184# First sed command is:  sed -f defines.sed $ac_file_inputs >"$tmp/out1"
     6185# Second one is:         sed -f defines.sed "$tmp/out1" >"$tmp/out2"
     6186# Third one will be:     sed -f defines.sed "$tmp/out2" >"$tmp/out1"
     6187# et cetera.
     6188ac_in='$ac_file_inputs'
     6189ac_out='"$tmp/out1"'
     6190ac_nxt='"$tmp/out2"'
     6191
     6192while :
    53506193do
    5351   # Write a limited-size here document to $tmp/defines.sed.
    5352   echo '  cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
    5353   # Speed up: don't consider the non `#define' lines.
    5354   echo '/^[      ]*#[    ]*define/!b' >>$CONFIG_STATUS
    5355   # Work around the forget-to-reset-the-flag bug.
    5356   echo 't clr' >>$CONFIG_STATUS
    5357   echo ': clr' >>$CONFIG_STATUS
    5358   sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
     6194  # Write a here document:
     6195    cat >>$CONFIG_STATUS <<_ACEOF
     6196    # First, check the format of the line:
     6197    cat >"\$tmp/defines.sed" <<\\CEOF
     6198/^[      ]*#[    ]*undef[        ][      ]*$ac_word_re[  ]*\$/b def
     6199/^[      ]*#[    ]*define[       ][      ]*$ac_word_re[(         ]/b def
     6200b
     6201:def
     6202_ACEOF
     6203  sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS
    53596204  echo 'CEOF
    5360   sed -f $tmp/defines.sed $tmp/in >$tmp/out
    5361   rm -f $tmp/in
    5362   mv $tmp/out $tmp/in
    5363 ' >>$CONFIG_STATUS
    5364   sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
     6205    sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS
     6206  ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in
     6207  sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail
     6208  grep . conftest.tail >/dev/null || break
    53656209  rm -f conftest.defines
    53666210  mv conftest.tail conftest.defines
    53676211done
    5368 rm -f conftest.defines
    5369 echo '  fi # grep' >>$CONFIG_STATUS
    5370 echo >>$CONFIG_STATUS
    5371 
    5372 # Break up conftest.undefs because some shells have a limit on the size
    5373 # of here documents, and old seds have small limits too (100 cmds).
    5374 echo '  # Handle all the #undef templates' >>$CONFIG_STATUS
    5375 rm -f conftest.tail
    5376 while grep . conftest.undefs >/dev/null
    5377 do
    5378   # Write a limited-size here document to $tmp/undefs.sed.
    5379   echo '  cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
    5380   # Speed up: don't consider the non `#undef'
    5381   echo '/^[      ]*#[    ]*undef/!b' >>$CONFIG_STATUS
    5382   # Work around the forget-to-reset-the-flag bug.
    5383   echo 't clr' >>$CONFIG_STATUS
    5384   echo ': clr' >>$CONFIG_STATUS
    5385   sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
    5386   echo 'CEOF
    5387   sed -f $tmp/undefs.sed $tmp/in >$tmp/out
    5388   rm -f $tmp/in
    5389   mv $tmp/out $tmp/in
    5390 ' >>$CONFIG_STATUS
    5391   sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
    5392   rm -f conftest.undefs
    5393   mv conftest.tail conftest.undefs
    5394 done
    5395 rm -f conftest.undefs
    5396 
     6212rm -f conftest.defines conftest.tail
     6213
     6214echo "ac_result=$ac_in" >>$CONFIG_STATUS
    53976215cat >>$CONFIG_STATUS <<\_ACEOF
    5398   # Let's still pretend it is `configure' which instantiates (i.e., don't
    5399   # use $as_me), people would be surprised to read:
    5400   #    /* config.h.  Generated by config.status.  */
    5401   if test x"$ac_file" = x-; then
    5402     echo "/* Generated by configure.  */" >$tmp/config.h
    5403   else
    5404     echo "/* $ac_file.  Generated by configure.  */" >$tmp/config.h
    5405   fi
    5406   cat $tmp/in >>$tmp/config.h
    5407   rm -f $tmp/in
    54086216  if test x"$ac_file" != x-; then
    5409     if diff $ac_file $tmp/config.h >/dev/null 2>&1; then
     6217    echo "/* $configure_input  */" >"$tmp/config.h"
     6218    cat "$ac_result" >>"$tmp/config.h"
     6219    if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then
    54106220      { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
    54116221echo "$as_me: $ac_file is unchanged" >&6;}
    54126222    else
    5413       ac_dir=`(dirname "$ac_file") 2>/dev/null ||
    5414 $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
    5415          X"$ac_file" : 'X\(//\)[^/]' \| \
    5416          X"$ac_file" : 'X\(//\)$' \| \
    5417          X"$ac_file" : 'X\(/\)' \| \
    5418          .     : '\(.\)' 2>/dev/null ||
    5419 echo X"$ac_file" |
    5420     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
    5421           /^X\(\/\/\)[^/].*/{ s//\1/; q; }
    5422           /^X\(\/\/\)$/{ s//\1/; q; }
    5423           /^X\(\/\).*/{ s//\1/; q; }
    5424           s/.*/./; q'`
    5425       { if $as_mkdir_p; then
    5426     mkdir -p "$ac_dir"
    5427   else
    5428     as_dir="$ac_dir"
    5429     as_dirs=
    5430     while test ! -d "$as_dir"; do
    5431       as_dirs="$as_dir $as_dirs"
    5432       as_dir=`(dirname "$as_dir") 2>/dev/null ||
    5433 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
    5434          X"$as_dir" : 'X\(//\)[^/]' \| \
    5435          X"$as_dir" : 'X\(//\)$' \| \
    5436          X"$as_dir" : 'X\(/\)' \| \
    5437          .     : '\(.\)' 2>/dev/null ||
    5438 echo X"$as_dir" |
    5439     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
    5440           /^X\(\/\/\)[^/].*/{ s//\1/; q; }
    5441           /^X\(\/\/\)$/{ s//\1/; q; }
    5442           /^X\(\/\).*/{ s//\1/; q; }
    5443           s/.*/./; q'`
    5444     done
    5445     test ! -n "$as_dirs" || mkdir $as_dirs
    5446   fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
    5447 echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
    5448    { (exit 1); exit 1; }; }; }
    5449 
    54506223      rm -f $ac_file
    5451       mv $tmp/config.h $ac_file
     6224      mv "$tmp/config.h" $ac_file
    54526225    fi
    54536226  else
    5454     cat $tmp/config.h
    5455     rm -f $tmp/config.h
     6227    echo "/* $configure_input  */"
     6228    cat "$ac_result"
    54566229  fi
    5457 done
    5458 _ACEOF
    5459 
    5460 cat >>$CONFIG_STATUS <<\_ACEOF
     6230  rm -f "$tmp/out12"
     6231 ;;
     6232
     6233
     6234  esac
     6235
     6236done # for ac_tag
     6237
    54616238
    54626239{ (exit 0); exit 0; }
     
    54956272  ac_sub_configure_args=
    54966273  ac_prev=
    5497   for ac_arg in $ac_configure_args; do
     6274  eval "set x $ac_configure_args"
     6275  shift
     6276  for ac_arg
     6277  do
    54986278    if test -n "$ac_prev"; then
    54996279      ac_prev=
     
    55186298    -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
    55196299      ;;
    5520     *) ac_sub_configure_args="$ac_sub_configure_args $ac_arg" ;;
     6300    *)
     6301      case $ac_arg in
     6302      *\'*) ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
     6303      esac
     6304      ac_sub_configure_args="$ac_sub_configure_args '$ac_arg'" ;;
    55216305    esac
    55226306  done
     
    55246308  # Always prepend --prefix to ensure using the same prefix
    55256309  # in subdir configurations.
    5526   ac_sub_configure_args="--prefix=$prefix $ac_sub_configure_args"
     6310  ac_arg="--prefix=$prefix"
     6311  case $ac_arg in
     6312  *\'*) ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
     6313  esac
     6314  ac_sub_configure_args="$ac_arg $ac_sub_configure_args"
    55276315
    55286316  ac_popdir=`pwd`
     
    55316319    # Do not complain, so a configure script can configure whichever
    55326320    # parts of a large source tree are present.
    5533     test -d $srcdir/$ac_dir || continue
    5534 
    5535     { echo "$as_me:$LINENO: configuring in $ac_dir" >&5
    5536 echo "$as_me: configuring in $ac_dir" >&6;}
    5537     { if $as_mkdir_p; then
    5538     mkdir -p "$ac_dir"
    5539   else
    5540     as_dir="$ac_dir"
     6321    test -d "$srcdir/$ac_dir" || continue
     6322
     6323    ac_msg="=== configuring in $ac_dir (`pwd`/$ac_dir)"
     6324    echo "$as_me:$LINENO: $ac_msg" >&5
     6325    echo "$ac_msg" >&6
     6326    { as_dir="$ac_dir"
     6327  case $as_dir in #(
     6328  -*) as_dir=./$as_dir;;
     6329  esac
     6330  test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
    55416331    as_dirs=
    5542     while test ! -d "$as_dir"; do
    5543       as_dirs="$as_dir $as_dirs"
    5544       as_dir=`(dirname "$as_dir") 2>/dev/null ||
     6332    while :; do
     6333      case $as_dir in #(
     6334      *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
     6335      *) as_qdir=$as_dir;;
     6336      esac
     6337      as_dirs="'$as_qdir' $as_dirs"
     6338      as_dir=`$as_dirname -- "$as_dir" ||
    55456339$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
    55466340         X"$as_dir" : 'X\(//\)[^/]' \| \
    55476341         X"$as_dir" : 'X\(//\)$' \| \
    5548          X"$as_dir" : 'X\(/\)' \| \
    5549          .     : '\(.\)' 2>/dev/null ||
     6342         X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
    55506343echo X"$as_dir" |
    5551     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
    5552           /^X\(\/\/\)[^/].*/{ s//\1/; q; }
    5553           /^X\(\/\/\)$/{ s//\1/; q; }
    5554           /^X\(\/\).*/{ s//\1/; q; }
    5555           s/.*/./; q'`
     6344    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
     6345            s//\1/
     6346            q
     6347          }
     6348          /^X\(\/\/\)[^/].*/{
     6349            s//\1/
     6350            q
     6351          }
     6352          /^X\(\/\/\)$/{
     6353            s//\1/
     6354            q
     6355          }
     6356          /^X\(\/\).*/{
     6357            s//\1/
     6358            q
     6359          }
     6360          s/.*/./; q'`
     6361      test -d "$as_dir" && break
    55566362    done
    5557     test ! -n "$as_dirs" || mkdir $as_dirs
    5558   fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
    5559 echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
     6363    test -z "$as_dirs" || eval "mkdir $as_dirs"
     6364  } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
     6365echo "$as_me: error: cannot create directory $as_dir" >&2;}
    55606366   { (exit 1); exit 1; }; }; }
    5561 
    55626367    ac_builddir=.
    55636368
    5564 if test "$ac_dir" != .; then
     6369case "$ac_dir" in
     6370.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
     6371*)
    55656372  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
    5566   # A "../" for each directory in $ac_dir_suffix.
    5567   ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
    5568 else
    5569   ac_dir_suffix= ac_top_builddir=
    5570 fi
     6373  # A ".." for each directory in $ac_dir_suffix.
     6374  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
     6375  case $ac_top_builddir_sub in
     6376  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
     6377  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
     6378  esac ;;
     6379esac
     6380ac_abs_top_builddir=$ac_pwd
     6381ac_abs_builddir=$ac_pwd$ac_dir_suffix
     6382# for backward compatibility:
     6383ac_top_builddir=$ac_top_build_prefix
    55716384
    55726385case $srcdir in
    5573   .)  # No --srcdir option.  We are building in place.
     6386  .)  # We are building in place.
    55746387    ac_srcdir=.
    5575     if test -z "$ac_top_builddir"; then
    5576        ac_top_srcdir=.
    5577     else
    5578        ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
    5579     fi ;;
    5580   [\\/]* | ?:[\\/]* )  # Absolute path.
     6388    ac_top_srcdir=$ac_top_builddir_sub
     6389    ac_abs_top_srcdir=$ac_pwd ;;
     6390  [\\/]* | ?:[\\/]* )  # Absolute name.
    55816391    ac_srcdir=$srcdir$ac_dir_suffix;
    5582     ac_top_srcdir=$srcdir ;;
    5583   *) # Relative path.
    5584     ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
    5585     ac_top_srcdir=$ac_top_builddir$srcdir ;;
    5586 esac
    5587 
    5588 # Do not use `cd foo && pwd` to compute absolute paths, because
    5589 # the directories may not exist.
    5590 case `pwd` in
    5591 .) ac_abs_builddir="$ac_dir";;
    5592 *)
    5593   case "$ac_dir" in
    5594   .) ac_abs_builddir=`pwd`;;
    5595   [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
    5596   *) ac_abs_builddir=`pwd`/"$ac_dir";;
    5597   esac;;
    5598 esac
    5599 case $ac_abs_builddir in
    5600 .) ac_abs_top_builddir=${ac_top_builddir}.;;
    5601 *)
    5602   case ${ac_top_builddir}. in
    5603   .) ac_abs_top_builddir=$ac_abs_builddir;;
    5604   [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
    5605   *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
    5606   esac;;
    5607 esac
    5608 case $ac_abs_builddir in
    5609 .) ac_abs_srcdir=$ac_srcdir;;
    5610 *)
    5611   case $ac_srcdir in
    5612   .) ac_abs_srcdir=$ac_abs_builddir;;
    5613   [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
    5614   *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
    5615   esac;;
    5616 esac
    5617 case $ac_abs_builddir in
    5618 .) ac_abs_top_srcdir=$ac_top_srcdir;;
    5619 *)
    5620   case $ac_top_srcdir in
    5621   .) ac_abs_top_srcdir=$ac_abs_builddir;;
    5622   [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
    5623   *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
    5624   esac;;
    5625 esac
    5626 
    5627 
    5628     cd $ac_dir
     6392    ac_top_srcdir=$srcdir
     6393    ac_abs_top_srcdir=$srcdir ;;
     6394  *) # Relative name.
     6395    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
     6396    ac_top_srcdir=$ac_top_build_prefix$srcdir
     6397    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
     6398esac
     6399ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
     6400
     6401
     6402    cd "$ac_dir"
    56296403
    56306404    # Check for guested configure; otherwise get Cygnus style configure.
    5631     if test -f $ac_srcdir/configure.gnu; then
    5632       ac_sub_configure="$SHELL '$ac_srcdir/configure.gnu'"
    5633     elif test -f $ac_srcdir/configure; then
    5634       ac_sub_configure="$SHELL '$ac_srcdir/configure'"
    5635     elif test -f $ac_srcdir/configure.in; then
    5636       ac_sub_configure=$ac_configure
     6405    if test -f "$ac_srcdir/configure.gnu"; then
     6406      ac_sub_configure=$ac_srcdir/configure.gnu
     6407    elif test -f "$ac_srcdir/configure"; then
     6408      ac_sub_configure=$ac_srcdir/configure
     6409    elif test -f "$ac_srcdir/configure.in"; then
     6410      # This should be Cygnus configure.
     6411      ac_sub_configure=$ac_aux_dir/configure
    56376412    else
    56386413      { echo "$as_me:$LINENO: WARNING: no configuration information is in $ac_dir" >&5
     
    56466421      case $cache_file in
    56476422      [\\/]* | ?:[\\/]* ) ac_sub_cache_file=$cache_file ;;
    5648       *) # Relative path.
    5649         ac_sub_cache_file=$ac_top_builddir$cache_file ;;
     6423      *) # Relative name.
     6424        ac_sub_cache_file=$ac_top_build_prefix$cache_file ;;
    56506425      esac
    56516426
    5652       { echo "$as_me:$LINENO: running $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&5
    5653 echo "$as_me: running $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&6;}
     6427      { echo "$as_me:$LINENO: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&5
     6428echo "$as_me: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&6;}
    56546429      # The eval makes quoting arguments work.
    5655       eval $ac_sub_configure $ac_sub_configure_args \
    5656            --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir ||
     6430      eval "\$SHELL \"\$ac_sub_configure\" $ac_sub_configure_args \
     6431           --cache-file=\"\$ac_sub_cache_file\" --srcdir=\"\$ac_srcdir\"" ||
    56576432        { { echo "$as_me:$LINENO: error: $ac_sub_configure failed for $ac_dir" >&5
    56586433echo "$as_me: error: $ac_sub_configure failed for $ac_dir" >&2;}
     
    56606435    fi
    56616436
    5662     cd $ac_popdir
     6437    cd "$ac_popdir"
    56636438  done
    56646439fi
  • configure.in

    r8298425 r4ad3480  
    4848dnl AC_CHECK_LIB(des425, req_act_vno)
    4949AC_CHECK_LIB(des425, des_cbc_encrypt)
    50 AC_CHECK_LIB(des, des_quad_cksum)
    5150AC_CHECK_LIB(resolv, res_search)
    5251AC_CHECK_LIB(krb5, krb5_get_credentials)
     
    8988fi
    9089
     90if test -f "${XSUBPPDIR}/typemap"; then
     91   XSUBPPFLAGS="-typemap ${XSUBPPDIR}/typemap"
     92else
     93   XSUBPPFLAGS=""
     94fi
     95
    9196dnl Add LDFLAGS for embeded perl
    9297FOO=`perl -MExtUtils::Embed -e ldopts | sed 's/,-E//' | sed 's/-liconv//'`
     
    99104  AC_MSG_ERROR(No terminfo found for this system)))
    100105
    101 AC_SUBST(XSUBPPDIR)
     106AC_SUBST(XSUBPPFLAGS)
    102107
    103108AC_PROG_INSTALL
Note: See TracChangeset for help on using the changeset viewer.