| 1 | 330 | jeremybenn | #! /bin/sh
 | 
      
         | 2 |  |  | # Guess values for system-dependent variables and create Makefiles.
 | 
      
         | 3 |  |  | # Generated by GNU Autoconf 2.64.
 | 
      
         | 4 |  |  | #
 | 
      
         | 5 |  |  | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
 | 
      
         | 6 |  |  | # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
 | 
      
         | 7 |  |  | # Foundation, Inc.
 | 
      
         | 8 |  |  | #
 | 
      
         | 9 |  |  | # This configure script is free software; the Free Software Foundation
 | 
      
         | 10 |  |  | # gives unlimited permission to copy, distribute and modify it.
 | 
      
         | 11 |  |  | ## -------------------- ##
 | 
      
         | 12 |  |  | ## M4sh Initialization. ##
 | 
      
         | 13 |  |  | ## -------------------- ##
 | 
      
         | 14 |  |  |  
 | 
      
         | 15 |  |  | # Be more Bourne compatible
 | 
      
         | 16 |  |  | DUALCASE=1; export DUALCASE # for MKS sh
 | 
      
         | 17 |  |  | if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
 | 
      
         | 18 |  |  |   emulate sh
 | 
      
         | 19 |  |  |   NULLCMD=:
 | 
      
         | 20 |  |  |   # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
 | 
      
         | 21 |  |  |   # is contrary to our usage.  Disable this feature.
 | 
      
         | 22 |  |  |   alias -g '${1+"$@"}'='"$@"'
 | 
      
         | 23 |  |  |   setopt NO_GLOB_SUBST
 | 
      
         | 24 |  |  | else
 | 
      
         | 25 |  |  |   case `(set -o) 2>/dev/null` in #(
 | 
      
         | 26 |  |  |   *posix*) :
 | 
      
         | 27 |  |  |     set -o posix ;; #(
 | 
      
         | 28 |  |  |   *) :
 | 
      
         | 29 |  |  |      ;;
 | 
      
         | 30 |  |  | esac
 | 
      
         | 31 |  |  | fi
 | 
      
         | 32 |  |  |  
 | 
      
         | 33 |  |  |  
 | 
      
         | 34 |  |  | as_nl='
 | 
      
         | 35 |  |  | '
 | 
      
         | 36 |  |  | export as_nl
 | 
      
         | 37 |  |  | # Printing a long string crashes Solaris 7 /usr/bin/printf.
 | 
      
         | 38 |  |  | as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
 | 
      
         | 39 |  |  | as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
 | 
      
         | 40 |  |  | as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
 | 
      
         | 41 |  |  | # Prefer a ksh shell builtin over an external printf program on Solaris,
 | 
      
         | 42 |  |  | # but without wasting forks for bash or zsh.
 | 
      
         | 43 |  |  | if test -z "$BASH_VERSION$ZSH_VERSION" \
 | 
      
         | 44 |  |  |     && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
 | 
      
         | 45 |  |  |   as_echo='print -r --'
 | 
      
         | 46 |  |  |   as_echo_n='print -rn --'
 | 
      
         | 47 |  |  | elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
 | 
      
         | 48 |  |  |   as_echo='printf %s\n'
 | 
      
         | 49 |  |  |   as_echo_n='printf %s'
 | 
      
         | 50 |  |  | else
 | 
      
         | 51 |  |  |   if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
 | 
      
         | 52 |  |  |     as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
 | 
      
         | 53 |  |  |     as_echo_n='/usr/ucb/echo -n'
 | 
      
         | 54 |  |  |   else
 | 
      
         | 55 |  |  |     as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
 | 
      
         | 56 |  |  |     as_echo_n_body='eval
 | 
      
         | 57 |  |  |       arg=$1;
 | 
      
         | 58 |  |  |       case $arg in #(
 | 
      
         | 59 |  |  |       *"$as_nl"*)
 | 
      
         | 60 |  |  |         expr "X$arg" : "X\\(.*\\)$as_nl";
 | 
      
         | 61 |  |  |         arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
 | 
      
         | 62 |  |  |       esac;
 | 
      
         | 63 |  |  |       expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
 | 
      
         | 64 |  |  |     '
 | 
      
         | 65 |  |  |     export as_echo_n_body
 | 
      
         | 66 |  |  |     as_echo_n='sh -c $as_echo_n_body as_echo'
 | 
      
         | 67 |  |  |   fi
 | 
      
         | 68 |  |  |   export as_echo_body
 | 
      
         | 69 |  |  |   as_echo='sh -c $as_echo_body as_echo'
 | 
      
         | 70 |  |  | fi
 | 
      
         | 71 |  |  |  
 | 
      
         | 72 |  |  | # The user is always right.
 | 
      
         | 73 |  |  | if test "${PATH_SEPARATOR+set}" != set; then
 | 
      
         | 74 |  |  |   PATH_SEPARATOR=:
 | 
      
         | 75 |  |  |   (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
 | 
      
         | 76 |  |  |     (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
 | 
      
         | 77 |  |  |       PATH_SEPARATOR=';'
 | 
      
         | 78 |  |  |   }
 | 
      
         | 79 |  |  | fi
 | 
      
         | 80 |  |  |  
 | 
      
         | 81 |  |  |  
 | 
      
         | 82 |  |  | # IFS
 | 
      
         | 83 |  |  | # We need space, tab and new line, in precisely that order.  Quoting is
 | 
      
         | 84 |  |  | # there to prevent editors from complaining about space-tab.
 | 
      
         | 85 |  |  | # (If _AS_PATH_WALK were called with IFS unset, it would disable word
 | 
      
         | 86 |  |  | # splitting by setting IFS to empty value.)
 | 
      
         | 87 |  |  | IFS=" ""        $as_nl"
 | 
      
         | 88 |  |  |  
 | 
      
         | 89 |  |  | # Find who we are.  Look in the path if we contain no directory separator.
 | 
      
         | 90 |  |  | case $0 in #((
 | 
      
         | 91 |  |  |   *[\\/]* ) as_myself=$0 ;;
 | 
      
         | 92 |  |  |   *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 | 
      
         | 93 |  |  | for as_dir in $PATH
 | 
      
         | 94 |  |  | do
 | 
      
         | 95 |  |  |   IFS=$as_save_IFS
 | 
      
         | 96 |  |  |   test -z "$as_dir" && as_dir=.
 | 
      
         | 97 |  |  |     test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 | 
      
         | 98 |  |  |   done
 | 
      
         | 99 |  |  | IFS=$as_save_IFS
 | 
      
         | 100 |  |  |  
 | 
      
         | 101 |  |  |      ;;
 | 
      
         | 102 |  |  | esac
 | 
      
         | 103 |  |  | # We did not find ourselves, most probably we were run as `sh COMMAND'
 | 
      
         | 104 |  |  | # in which case we are not to be found in the path.
 | 
      
         | 105 |  |  | if test "x$as_myself" = x; then
 | 
      
         | 106 |  |  |   as_myself=$0
 | 
      
         | 107 |  |  | fi
 | 
      
         | 108 |  |  | if test ! -f "$as_myself"; then
 | 
      
         | 109 |  |  |   $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 | 
      
         | 110 |  |  |   exit 1
 | 
      
         | 111 |  |  | fi
 | 
      
         | 112 |  |  |  
 | 
      
         | 113 |  |  | # Unset variables that we do not need and which cause bugs (e.g. in
 | 
      
         | 114 |  |  | # pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
 | 
      
         | 115 |  |  | # suppresses any "Segmentation fault" message there.  '((' could
 | 
      
         | 116 |  |  | # trigger a bug in pdksh 5.2.14.
 | 
      
         | 117 |  |  | for as_var in BASH_ENV ENV MAIL MAILPATH
 | 
      
         | 118 |  |  | do eval test x\${$as_var+set} = xset \
 | 
      
         | 119 |  |  |   && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
 | 
      
         | 120 |  |  | done
 | 
      
         | 121 |  |  | PS1='$ '
 | 
      
         | 122 |  |  | PS2='> '
 | 
      
         | 123 |  |  | PS4='+ '
 | 
      
         | 124 |  |  |  
 | 
      
         | 125 |  |  | # NLS nuisances.
 | 
      
         | 126 |  |  | LC_ALL=C
 | 
      
         | 127 |  |  | export LC_ALL
 | 
      
         | 128 |  |  | LANGUAGE=C
 | 
      
         | 129 |  |  | export LANGUAGE
 | 
      
         | 130 |  |  |  
 | 
      
         | 131 |  |  | # CDPATH.
 | 
      
         | 132 |  |  | (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 | 
      
         | 133 |  |  |  
 | 
      
         | 134 |  |  | if test "x$CONFIG_SHELL" = x; then
 | 
      
         | 135 |  |  |   as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
 | 
      
         | 136 |  |  |   emulate sh
 | 
      
         | 137 |  |  |   NULLCMD=:
 | 
      
         | 138 |  |  |   # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
 | 
      
         | 139 |  |  |   # is contrary to our usage.  Disable this feature.
 | 
      
         | 140 |  |  |   alias -g '\${1+\"\$@\"}'='\"\$@\"'
 | 
      
         | 141 |  |  |   setopt NO_GLOB_SUBST
 | 
      
         | 142 |  |  | else
 | 
      
         | 143 |  |  |   case \`(set -o) 2>/dev/null\` in #(
 | 
      
         | 144 |  |  |   *posix*) :
 | 
      
         | 145 |  |  |     set -o posix ;; #(
 | 
      
         | 146 |  |  |   *) :
 | 
      
         | 147 |  |  |      ;;
 | 
      
         | 148 |  |  | esac
 | 
      
         | 149 |  |  | fi
 | 
      
         | 150 |  |  | "
 | 
      
         | 151 |  |  |   as_required="as_fn_return () { (exit \$1); }
 | 
      
         | 152 |  |  | as_fn_success () { as_fn_return 0; }
 | 
      
         | 153 |  |  | as_fn_failure () { as_fn_return 1; }
 | 
      
         | 154 |  |  | as_fn_ret_success () { return 0; }
 | 
      
         | 155 |  |  | as_fn_ret_failure () { return 1; }
 | 
      
         | 156 |  |  |  
 | 
      
         | 157 |  |  | exitcode=0
 | 
      
         | 158 |  |  | as_fn_success || { exitcode=1; echo as_fn_success failed.; }
 | 
      
         | 159 |  |  | as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
 | 
      
         | 160 |  |  | as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
 | 
      
         | 161 |  |  | as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
 | 
      
         | 162 |  |  | if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
 | 
      
         | 163 |  |  |  
 | 
      
         | 164 |  |  | else
 | 
      
         | 165 |  |  |   exitcode=1; echo positional parameters were not saved.
 | 
      
         | 166 |  |  | fi
 | 
      
         | 167 |  |  | test x\$exitcode = x0 || exit 1"
 | 
      
         | 168 |  |  |   as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
 | 
      
         | 169 |  |  |   as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
 | 
      
         | 170 |  |  |   eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
 | 
      
         | 171 |  |  |   test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
 | 
      
         | 172 |  |  | test \$(( 1 + 1 )) = 2 || exit 1"
 | 
      
         | 173 |  |  |   if (eval "$as_required") 2>/dev/null; then :
 | 
      
         | 174 |  |  |   as_have_required=yes
 | 
      
         | 175 |  |  | else
 | 
      
         | 176 |  |  |   as_have_required=no
 | 
      
         | 177 |  |  | fi
 | 
      
         | 178 |  |  |   if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
 | 
      
         | 179 |  |  |  
 | 
      
         | 180 |  |  | else
 | 
      
         | 181 |  |  |   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 | 
      
         | 182 |  |  | as_found=false
 | 
      
         | 183 |  |  | for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
 | 
      
         | 184 |  |  | do
 | 
      
         | 185 |  |  |   IFS=$as_save_IFS
 | 
      
         | 186 |  |  |   test -z "$as_dir" && as_dir=.
 | 
      
         | 187 |  |  |   as_found=:
 | 
      
         | 188 |  |  |   case $as_dir in #(
 | 
      
         | 189 |  |  |          /*)
 | 
      
         | 190 |  |  |            for as_base in sh bash ksh sh5; do
 | 
      
         | 191 |  |  |              # Try only shells that exist, to save several forks.
 | 
      
         | 192 |  |  |              as_shell=$as_dir/$as_base
 | 
      
         | 193 |  |  |              if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
 | 
      
         | 194 |  |  |                     { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
 | 
      
         | 195 |  |  |   CONFIG_SHELL=$as_shell as_have_required=yes
 | 
      
         | 196 |  |  |                    if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
 | 
      
         | 197 |  |  |   break 2
 | 
      
         | 198 |  |  | fi
 | 
      
         | 199 |  |  | fi
 | 
      
         | 200 |  |  |            done;;
 | 
      
         | 201 |  |  |        esac
 | 
      
         | 202 |  |  |   as_found=false
 | 
      
         | 203 |  |  | done
 | 
      
         | 204 |  |  | $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
 | 
      
         | 205 |  |  |               { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
 | 
      
         | 206 |  |  |   CONFIG_SHELL=$SHELL as_have_required=yes
 | 
      
         | 207 |  |  | fi; }
 | 
      
         | 208 |  |  | IFS=$as_save_IFS
 | 
      
         | 209 |  |  |  
 | 
      
         | 210 |  |  |  
 | 
      
         | 211 |  |  |       if test "x$CONFIG_SHELL" != x; then :
 | 
      
         | 212 |  |  |   # We cannot yet assume a decent shell, so we have to provide a
 | 
      
         | 213 |  |  |         # neutralization value for shells without unset; and this also
 | 
      
         | 214 |  |  |         # works around shells that cannot unset nonexistent variables.
 | 
      
         | 215 |  |  |         BASH_ENV=/dev/null
 | 
      
         | 216 |  |  |         ENV=/dev/null
 | 
      
         | 217 |  |  |         (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
 | 
      
         | 218 |  |  |         export CONFIG_SHELL
 | 
      
         | 219 |  |  |         exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
 | 
      
         | 220 |  |  | fi
 | 
      
         | 221 |  |  |  
 | 
      
         | 222 |  |  |     if test x$as_have_required = xno; then :
 | 
      
         | 223 |  |  |   $as_echo "$0: This script requires a shell more modern than all"
 | 
      
         | 224 |  |  |   $as_echo "$0: the shells that I found on your system."
 | 
      
         | 225 |  |  |   if test x${ZSH_VERSION+set} = xset ; then
 | 
      
         | 226 |  |  |     $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
 | 
      
         | 227 |  |  |     $as_echo "$0: be upgraded to zsh 4.3.4 or later."
 | 
      
         | 228 |  |  |   else
 | 
      
         | 229 |  |  |     $as_echo "$0: Please tell bug-autoconf@gnu.org about your system,
 | 
      
         | 230 |  |  | $0: including any error possibly output before this
 | 
      
         | 231 |  |  | $0: message. Then install a modern shell, or manually run
 | 
      
         | 232 |  |  | $0: the script under such a shell if you do have one."
 | 
      
         | 233 |  |  |   fi
 | 
      
         | 234 |  |  |   exit 1
 | 
      
         | 235 |  |  | fi
 | 
      
         | 236 |  |  | fi
 | 
      
         | 237 |  |  | fi
 | 
      
         | 238 |  |  | SHELL=${CONFIG_SHELL-/bin/sh}
 | 
      
         | 239 |  |  | export SHELL
 | 
      
         | 240 |  |  | # Unset more variables known to interfere with behavior of common tools.
 | 
      
         | 241 |  |  | CLICOLOR_FORCE= GREP_OPTIONS=
 | 
      
         | 242 |  |  | unset CLICOLOR_FORCE GREP_OPTIONS
 | 
      
         | 243 |  |  |  
 | 
      
         | 244 |  |  | ## --------------------- ##
 | 
      
         | 245 |  |  | ## M4sh Shell Functions. ##
 | 
      
         | 246 |  |  | ## --------------------- ##
 | 
      
         | 247 |  |  | # as_fn_unset VAR
 | 
      
         | 248 |  |  | # ---------------
 | 
      
         | 249 |  |  | # Portably unset VAR.
 | 
      
         | 250 |  |  | as_fn_unset ()
 | 
      
         | 251 |  |  | {
 | 
      
         | 252 |  |  |   { eval $1=; unset $1;}
 | 
      
         | 253 |  |  | }
 | 
      
         | 254 |  |  | as_unset=as_fn_unset
 | 
      
         | 255 |  |  |  
 | 
      
         | 256 |  |  | # as_fn_set_status STATUS
 | 
      
         | 257 |  |  | # -----------------------
 | 
      
         | 258 |  |  | # Set $? to STATUS, without forking.
 | 
      
         | 259 |  |  | as_fn_set_status ()
 | 
      
         | 260 |  |  | {
 | 
      
         | 261 |  |  |   return $1
 | 
      
         | 262 |  |  | } # as_fn_set_status
 | 
      
         | 263 |  |  |  
 | 
      
         | 264 |  |  | # as_fn_exit STATUS
 | 
      
         | 265 |  |  | # -----------------
 | 
      
         | 266 |  |  | # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
 | 
      
         | 267 |  |  | as_fn_exit ()
 | 
      
         | 268 |  |  | {
 | 
      
         | 269 |  |  |   set +e
 | 
      
         | 270 |  |  |   as_fn_set_status $1
 | 
      
         | 271 |  |  |   exit $1
 | 
      
         | 272 |  |  | } # as_fn_exit
 | 
      
         | 273 |  |  |  
 | 
      
         | 274 |  |  | # as_fn_mkdir_p
 | 
      
         | 275 |  |  | # -------------
 | 
      
         | 276 |  |  | # Create "$as_dir" as a directory, including parents if necessary.
 | 
      
         | 277 |  |  | as_fn_mkdir_p ()
 | 
      
         | 278 |  |  | {
 | 
      
         | 279 |  |  |  
 | 
      
         | 280 |  |  |   case $as_dir in #(
 | 
      
         | 281 |  |  |   -*) as_dir=./$as_dir;;
 | 
      
         | 282 |  |  |   esac
 | 
      
         | 283 |  |  |   test -d "$as_dir" || eval $as_mkdir_p || {
 | 
      
         | 284 |  |  |     as_dirs=
 | 
      
         | 285 |  |  |     while :; do
 | 
      
         | 286 |  |  |       case $as_dir in #(
 | 
      
         | 287 |  |  |       *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
 | 
      
         | 288 |  |  |       *) as_qdir=$as_dir;;
 | 
      
         | 289 |  |  |       esac
 | 
      
         | 290 |  |  |       as_dirs="'$as_qdir' $as_dirs"
 | 
      
         | 291 |  |  |       as_dir=`$as_dirname -- "$as_dir" ||
 | 
      
         | 292 |  |  | $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 | 
      
         | 293 |  |  |          X"$as_dir" : 'X\(//\)[^/]' \| \
 | 
      
         | 294 |  |  |          X"$as_dir" : 'X\(//\)$' \| \
 | 
      
         | 295 |  |  |          X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
 | 
      
         | 296 |  |  | $as_echo X"$as_dir" |
 | 
      
         | 297 |  |  |     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 | 
      
         | 298 |  |  |             s//\1/
 | 
      
         | 299 |  |  |             q
 | 
      
         | 300 |  |  |           }
 | 
      
         | 301 |  |  |           /^X\(\/\/\)[^/].*/{
 | 
      
         | 302 |  |  |             s//\1/
 | 
      
         | 303 |  |  |             q
 | 
      
         | 304 |  |  |           }
 | 
      
         | 305 |  |  |           /^X\(\/\/\)$/{
 | 
      
         | 306 |  |  |             s//\1/
 | 
      
         | 307 |  |  |             q
 | 
      
         | 308 |  |  |           }
 | 
      
         | 309 |  |  |           /^X\(\/\).*/{
 | 
      
         | 310 |  |  |             s//\1/
 | 
      
         | 311 |  |  |             q
 | 
      
         | 312 |  |  |           }
 | 
      
         | 313 |  |  |           s/.*/./; q'`
 | 
      
         | 314 |  |  |       test -d "$as_dir" && break
 | 
      
         | 315 |  |  |     done
 | 
      
         | 316 |  |  |     test -z "$as_dirs" || eval "mkdir $as_dirs"
 | 
      
         | 317 |  |  |   } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
 | 
      
         | 318 |  |  |  
 | 
      
         | 319 |  |  |  
 | 
      
         | 320 |  |  | } # as_fn_mkdir_p
 | 
      
         | 321 |  |  | # as_fn_append VAR VALUE
 | 
      
         | 322 |  |  | # ----------------------
 | 
      
         | 323 |  |  | # Append the text in VALUE to the end of the definition contained in VAR. Take
 | 
      
         | 324 |  |  | # advantage of any shell optimizations that allow amortized linear growth over
 | 
      
         | 325 |  |  | # repeated appends, instead of the typical quadratic growth present in naive
 | 
      
         | 326 |  |  | # implementations.
 | 
      
         | 327 |  |  | if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
 | 
      
         | 328 |  |  |   eval 'as_fn_append ()
 | 
      
         | 329 |  |  |   {
 | 
      
         | 330 |  |  |     eval $1+=\$2
 | 
      
         | 331 |  |  |   }'
 | 
      
         | 332 |  |  | else
 | 
      
         | 333 |  |  |   as_fn_append ()
 | 
      
         | 334 |  |  |   {
 | 
      
         | 335 |  |  |     eval $1=\$$1\$2
 | 
      
         | 336 |  |  |   }
 | 
      
         | 337 |  |  | fi # as_fn_append
 | 
      
         | 338 |  |  |  
 | 
      
         | 339 |  |  | # as_fn_arith ARG...
 | 
      
         | 340 |  |  | # ------------------
 | 
      
         | 341 |  |  | # Perform arithmetic evaluation on the ARGs, and store the result in the
 | 
      
         | 342 |  |  | # global $as_val. Take advantage of shells that can avoid forks. The arguments
 | 
      
         | 343 |  |  | # must be portable across $(()) and expr.
 | 
      
         | 344 |  |  | if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
 | 
      
         | 345 |  |  |   eval 'as_fn_arith ()
 | 
      
         | 346 |  |  |   {
 | 
      
         | 347 |  |  |     as_val=$(( $* ))
 | 
      
         | 348 |  |  |   }'
 | 
      
         | 349 |  |  | else
 | 
      
         | 350 |  |  |   as_fn_arith ()
 | 
      
         | 351 |  |  |   {
 | 
      
         | 352 |  |  |     as_val=`expr "$@" || test $? -eq 1`
 | 
      
         | 353 |  |  |   }
 | 
      
         | 354 |  |  | fi # as_fn_arith
 | 
      
         | 355 |  |  |  
 | 
      
         | 356 |  |  |  
 | 
      
         | 357 |  |  | # as_fn_error ERROR [LINENO LOG_FD]
 | 
      
         | 358 |  |  | # ---------------------------------
 | 
      
         | 359 |  |  | # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 | 
      
         | 360 |  |  | # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
 | 
      
         | 361 |  |  | # script with status $?, using 1 if that was 0.
 | 
      
         | 362 |  |  | as_fn_error ()
 | 
      
         | 363 |  |  | {
 | 
      
         | 364 |  |  |   as_status=$?; test $as_status -eq 0 && as_status=1
 | 
      
         | 365 |  |  |   if test "$3"; then
 | 
      
         | 366 |  |  |     as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 | 
      
         | 367 |  |  |     $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
 | 
      
         | 368 |  |  |   fi
 | 
      
         | 369 |  |  |   $as_echo "$as_me: error: $1" >&2
 | 
      
         | 370 |  |  |   as_fn_exit $as_status
 | 
      
         | 371 |  |  | } # as_fn_error
 | 
      
         | 372 |  |  |  
 | 
      
         | 373 |  |  | if expr a : '\(a\)' >/dev/null 2>&1 &&
 | 
      
         | 374 |  |  |    test "X`expr 00001 : '.*\(...\)'`" = X001; then
 | 
      
         | 375 |  |  |   as_expr=expr
 | 
      
         | 376 |  |  | else
 | 
      
         | 377 |  |  |   as_expr=false
 | 
      
         | 378 |  |  | fi
 | 
      
         | 379 |  |  |  
 | 
      
         | 380 |  |  | if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
 | 
      
         | 381 |  |  |   as_basename=basename
 | 
      
         | 382 |  |  | else
 | 
      
         | 383 |  |  |   as_basename=false
 | 
      
         | 384 |  |  | fi
 | 
      
         | 385 |  |  |  
 | 
      
         | 386 |  |  | if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
 | 
      
         | 387 |  |  |   as_dirname=dirname
 | 
      
         | 388 |  |  | else
 | 
      
         | 389 |  |  |   as_dirname=false
 | 
      
         | 390 |  |  | fi
 | 
      
         | 391 |  |  |  
 | 
      
         | 392 |  |  | as_me=`$as_basename -- "$0" ||
 | 
      
         | 393 |  |  | $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
 | 
      
         | 394 |  |  |          X"$0" : 'X\(//\)$' \| \
 | 
      
         | 395 |  |  |          X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 | 
      
         | 396 |  |  | $as_echo X/"$0" |
 | 
      
         | 397 |  |  |     sed '/^.*\/\([^/][^/]*\)\/*$/{
 | 
      
         | 398 |  |  |             s//\1/
 | 
      
         | 399 |  |  |             q
 | 
      
         | 400 |  |  |           }
 | 
      
         | 401 |  |  |           /^X\/\(\/\/\)$/{
 | 
      
         | 402 |  |  |             s//\1/
 | 
      
         | 403 |  |  |             q
 | 
      
         | 404 |  |  |           }
 | 
      
         | 405 |  |  |           /^X\/\(\/\).*/{
 | 
      
         | 406 |  |  |             s//\1/
 | 
      
         | 407 |  |  |             q
 | 
      
         | 408 |  |  |           }
 | 
      
         | 409 |  |  |           s/.*/./; q'`
 | 
      
         | 410 |  |  |  
 | 
      
         | 411 |  |  | # Avoid depending upon Character Ranges.
 | 
      
         | 412 |  |  | as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 | 
      
         | 413 |  |  | as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 | 
      
         | 414 |  |  | as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 | 
      
         | 415 |  |  | as_cr_digits='0123456789'
 | 
      
         | 416 |  |  | as_cr_alnum=$as_cr_Letters$as_cr_digits
 | 
      
         | 417 |  |  |  
 | 
      
         | 418 |  |  |  
 | 
      
         | 419 |  |  |   as_lineno_1=$LINENO as_lineno_1a=$LINENO
 | 
      
         | 420 |  |  |   as_lineno_2=$LINENO as_lineno_2a=$LINENO
 | 
      
         | 421 |  |  |   eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
 | 
      
         | 422 |  |  |   test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
 | 
      
         | 423 |  |  |   # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
 | 
      
         | 424 |  |  |   sed -n '
 | 
      
         | 425 |  |  |     p
 | 
      
         | 426 |  |  |     /[$]LINENO/=
 | 
      
         | 427 |  |  |   ' <$as_myself |
 | 
      
         | 428 |  |  |     sed '
 | 
      
         | 429 |  |  |       s/[$]LINENO.*/&-/
 | 
      
         | 430 |  |  |       t lineno
 | 
      
         | 431 |  |  |       b
 | 
      
         | 432 |  |  |       :lineno
 | 
      
         | 433 |  |  |       N
 | 
      
         | 434 |  |  |       :loop
 | 
      
         | 435 |  |  |       s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
 | 
      
         | 436 |  |  |       t loop
 | 
      
         | 437 |  |  |       s/-\n.*//
 | 
      
         | 438 |  |  |     ' >$as_me.lineno &&
 | 
      
         | 439 |  |  |   chmod +x "$as_me.lineno" ||
 | 
      
         | 440 |  |  |     { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
 | 
      
         | 441 |  |  |  
 | 
      
         | 442 |  |  |   # Don't try to exec as it changes $[0], causing all sort of problems
 | 
      
         | 443 |  |  |   # (the dirname of $[0] is not the place where we might find the
 | 
      
         | 444 |  |  |   # original and so on.  Autoconf is especially sensitive to this).
 | 
      
         | 445 |  |  |   . "./$as_me.lineno"
 | 
      
         | 446 |  |  |   # Exit status is that of the last command.
 | 
      
         | 447 |  |  |   exit
 | 
      
         | 448 |  |  | }
 | 
      
         | 449 |  |  |  
 | 
      
         | 450 |  |  | ECHO_C= ECHO_N= ECHO_T=
 | 
      
         | 451 |  |  | case `echo -n x` in #(((((
 | 
      
         | 452 |  |  | -n*)
 | 
      
         | 453 |  |  |   case `echo 'xy\c'` in
 | 
      
         | 454 |  |  |   *c*) ECHO_T=' ';;     # ECHO_T is single tab character.
 | 
      
         | 455 |  |  |   xy)  ECHO_C='\c';;
 | 
      
         | 456 |  |  |   *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
 | 
      
         | 457 |  |  |        ECHO_T=' ';;
 | 
      
         | 458 |  |  |   esac;;
 | 
      
         | 459 |  |  | *)
 | 
      
         | 460 |  |  |   ECHO_N='-n';;
 | 
      
         | 461 |  |  | esac
 | 
      
         | 462 |  |  |  
 | 
      
         | 463 |  |  | rm -f conf$$ conf$$.exe conf$$.file
 | 
      
         | 464 |  |  | if test -d conf$$.dir; then
 | 
      
         | 465 |  |  |   rm -f conf$$.dir/conf$$.file
 | 
      
         | 466 |  |  | else
 | 
      
         | 467 |  |  |   rm -f conf$$.dir
 | 
      
         | 468 |  |  |   mkdir conf$$.dir 2>/dev/null
 | 
      
         | 469 |  |  | fi
 | 
      
         | 470 |  |  | if (echo >conf$$.file) 2>/dev/null; then
 | 
      
         | 471 |  |  |   if ln -s conf$$.file conf$$ 2>/dev/null; then
 | 
      
         | 472 |  |  |     as_ln_s='ln -s'
 | 
      
         | 473 |  |  |     # ... but there are two gotchas:
 | 
      
         | 474 |  |  |     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 | 
      
         | 475 |  |  |     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 | 
      
         | 476 |  |  |     # In both cases, we have to default to `cp -p'.
 | 
      
         | 477 |  |  |     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
 | 
      
         | 478 |  |  |       as_ln_s='cp -p'
 | 
      
         | 479 |  |  |   elif ln conf$$.file conf$$ 2>/dev/null; then
 | 
      
         | 480 |  |  |     as_ln_s=ln
 | 
      
         | 481 |  |  |   else
 | 
      
         | 482 |  |  |     as_ln_s='cp -p'
 | 
      
         | 483 |  |  |   fi
 | 
      
         | 484 |  |  | else
 | 
      
         | 485 |  |  |   as_ln_s='cp -p'
 | 
      
         | 486 |  |  | fi
 | 
      
         | 487 |  |  | rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
 | 
      
         | 488 |  |  | rmdir conf$$.dir 2>/dev/null
 | 
      
         | 489 |  |  |  
 | 
      
         | 490 |  |  | if mkdir -p . 2>/dev/null; then
 | 
      
         | 491 |  |  |   as_mkdir_p='mkdir -p "$as_dir"'
 | 
      
         | 492 |  |  | else
 | 
      
         | 493 |  |  |   test -d ./-p && rmdir ./-p
 | 
      
         | 494 |  |  |   as_mkdir_p=false
 | 
      
         | 495 |  |  | fi
 | 
      
         | 496 |  |  |  
 | 
      
         | 497 |  |  | if test -x / >/dev/null 2>&1; then
 | 
      
         | 498 |  |  |   as_test_x='test -x'
 | 
      
         | 499 |  |  | else
 | 
      
         | 500 |  |  |   if ls -dL / >/dev/null 2>&1; then
 | 
      
         | 501 |  |  |     as_ls_L_option=L
 | 
      
         | 502 |  |  |   else
 | 
      
         | 503 |  |  |     as_ls_L_option=
 | 
      
         | 504 |  |  |   fi
 | 
      
         | 505 |  |  |   as_test_x='
 | 
      
         | 506 |  |  |     eval sh -c '\''
 | 
      
         | 507 |  |  |       if test -d "$1"; then
 | 
      
         | 508 |  |  |         test -d "$1/.";
 | 
      
         | 509 |  |  |       else
 | 
      
         | 510 |  |  |         case $1 in #(
 | 
      
         | 511 |  |  |         -*)set "./$1";;
 | 
      
         | 512 |  |  |         esac;
 | 
      
         | 513 |  |  |         case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
 | 
      
         | 514 |  |  |         ???[sx]*):;;*)false;;esac;fi
 | 
      
         | 515 |  |  |     '\'' sh
 | 
      
         | 516 |  |  |   '
 | 
      
         | 517 |  |  | fi
 | 
      
         | 518 |  |  | as_executable_p=$as_test_x
 | 
      
         | 519 |  |  |  
 | 
      
         | 520 |  |  | # Sed expression to map a string onto a valid CPP name.
 | 
      
         | 521 |  |  | as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 | 
      
         | 522 |  |  |  
 | 
      
         | 523 |  |  | # Sed expression to map a string onto a valid variable name.
 | 
      
         | 524 |  |  | as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
 | 
      
         | 525 |  |  |  
 | 
      
         | 526 |  |  |  
 | 
      
         | 527 |  |  | exec 7<&0 &1
 | 
      
         | 528 |  |  |  
 | 
      
         | 529 |  |  | # Name of the host.
 | 
      
         | 530 |  |  | # hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
 | 
      
         | 531 |  |  | # so uname gets run too.
 | 
      
         | 532 |  |  | ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
 | 
      
         | 533 |  |  |  
 | 
      
         | 534 |  |  | #
 | 
      
         | 535 |  |  | # Initializations.
 | 
      
         | 536 |  |  | #
 | 
      
         | 537 |  |  | ac_default_prefix=/usr/local
 | 
      
         | 538 |  |  | ac_clean_files=
 | 
      
         | 539 |  |  | ac_config_libobj_dir=.
 | 
      
         | 540 |  |  | LIBOBJS=
 | 
      
         | 541 |  |  | cross_compiling=no
 | 
      
         | 542 |  |  | subdirs=
 | 
      
         | 543 |  |  | MFLAGS=
 | 
      
         | 544 |  |  | MAKEFLAGS=
 | 
      
         | 545 |  |  |  
 | 
      
         | 546 |  |  | # Identity of this package.
 | 
      
         | 547 |  |  | PACKAGE_NAME=
 | 
      
         | 548 |  |  | PACKAGE_TARNAME=
 | 
      
         | 549 |  |  | PACKAGE_VERSION=
 | 
      
         | 550 |  |  | PACKAGE_STRING=
 | 
      
         | 551 |  |  | PACKAGE_BUGREPORT=
 | 
      
         | 552 |  |  | PACKAGE_URL=
 | 
      
         | 553 |  |  |  
 | 
      
         | 554 |  |  | ac_unique_file="Makefile.in"
 | 
      
         | 555 |  |  | # Factoring default headers for most tests.
 | 
      
         | 556 |  |  | ac_includes_default="\
 | 
      
         | 557 |  |  | #include 
 | 
      
         | 558 |  |  | #ifdef HAVE_SYS_TYPES_H
 | 
      
         | 559 |  |  | # include 
 | 
      
         | 560 |  |  | #endif
 | 
      
         | 561 |  |  | #ifdef HAVE_SYS_STAT_H
 | 
      
         | 562 |  |  | # include 
 | 
      
         | 563 |  |  | #endif
 | 
      
         | 564 |  |  | #ifdef STDC_HEADERS
 | 
      
         | 565 |  |  | # include 
 | 
      
         | 566 |  |  | # include 
 | 
      
         | 567 |  |  | #else
 | 
      
         | 568 |  |  | # ifdef HAVE_STDLIB_H
 | 
      
         | 569 |  |  | #  include 
 | 
      
         | 570 |  |  | # endif
 | 
      
         | 571 |  |  | #endif
 | 
      
         | 572 |  |  | #ifdef HAVE_STRING_H
 | 
      
         | 573 |  |  | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
 | 
      
         | 574 |  |  | #  include 
 | 
      
         | 575 |  |  | # endif
 | 
      
         | 576 |  |  | # include 
 | 
      
         | 577 |  |  | #endif
 | 
      
         | 578 |  |  | #ifdef HAVE_STRINGS_H
 | 
      
         | 579 |  |  | # include 
 | 
      
         | 580 |  |  | #endif
 | 
      
         | 581 |  |  | #ifdef HAVE_INTTYPES_H
 | 
      
         | 582 |  |  | # include 
 | 
      
         | 583 |  |  | #endif
 | 
      
         | 584 |  |  | #ifdef HAVE_STDINT_H
 | 
      
         | 585 |  |  | # include 
 | 
      
         | 586 |  |  | #endif
 | 
      
         | 587 |  |  | #ifdef HAVE_UNISTD_H
 | 
      
         | 588 |  |  | # include 
 | 
      
         | 589 |  |  | #endif"
 | 
      
         | 590 |  |  |  
 | 
      
         | 591 |  |  | ac_subst_vars='LTLIBOBJS
 | 
      
         | 592 |  |  | LIBOBJS
 | 
      
         | 593 |  |  | cgen_breaks
 | 
      
         | 594 |  |  | sim_extra_cflags
 | 
      
         | 595 |  |  | traps_obj
 | 
      
         | 596 |  |  | cgen
 | 
      
         | 597 |  |  | cgendir
 | 
      
         | 598 |  |  | CGEN_MAINT
 | 
      
         | 599 |  |  | REPORT_BUGS_TEXI
 | 
      
         | 600 |  |  | REPORT_BUGS_TO
 | 
      
         | 601 |  |  | PKGVERSION
 | 
      
         | 602 |  |  | sim_profile
 | 
      
         | 603 |  |  | sim_trace
 | 
      
         | 604 |  |  | sim_stdio
 | 
      
         | 605 |  |  | sim_debug
 | 
      
         | 606 |  |  | sim_cflags
 | 
      
         | 607 |  |  | sim_bswap
 | 
      
         | 608 |  |  | MAINT
 | 
      
         | 609 |  |  | EGREP
 | 
      
         | 610 |  |  | GREP
 | 
      
         | 611 |  |  | CPP
 | 
      
         | 612 |  |  | CATOBJEXT
 | 
      
         | 613 |  |  | GENCAT
 | 
      
         | 614 |  |  | INSTOBJEXT
 | 
      
         | 615 |  |  | DATADIRNAME
 | 
      
         | 616 |  |  | CATALOGS
 | 
      
         | 617 |  |  | POSUB
 | 
      
         | 618 |  |  | GMSGFMT
 | 
      
         | 619 |  |  | XGETTEXT
 | 
      
         | 620 |  |  | INCINTL
 | 
      
         | 621 |  |  | LIBINTL_DEP
 | 
      
         | 622 |  |  | LIBINTL
 | 
      
         | 623 |  |  | USE_NLS
 | 
      
         | 624 |  |  | RANLIB
 | 
      
         | 625 |  |  | AR
 | 
      
         | 626 |  |  | HDEFINES
 | 
      
         | 627 |  |  | CC_FOR_BUILD
 | 
      
         | 628 |  |  | INSTALL_DATA
 | 
      
         | 629 |  |  | INSTALL_SCRIPT
 | 
      
         | 630 |  |  | INSTALL_PROGRAM
 | 
      
         | 631 |  |  | OBJEXT
 | 
      
         | 632 |  |  | EXEEXT
 | 
      
         | 633 |  |  | ac_ct_CC
 | 
      
         | 634 |  |  | CPPFLAGS
 | 
      
         | 635 |  |  | LDFLAGS
 | 
      
         | 636 |  |  | CFLAGS
 | 
      
         | 637 |  |  | CC
 | 
      
         | 638 |  |  | target_os
 | 
      
         | 639 |  |  | target_vendor
 | 
      
         | 640 |  |  | target_cpu
 | 
      
         | 641 |  |  | target
 | 
      
         | 642 |  |  | host_os
 | 
      
         | 643 |  |  | host_vendor
 | 
      
         | 644 |  |  | host_cpu
 | 
      
         | 645 |  |  | host
 | 
      
         | 646 |  |  | build_os
 | 
      
         | 647 |  |  | build_vendor
 | 
      
         | 648 |  |  | build_cpu
 | 
      
         | 649 |  |  | build
 | 
      
         | 650 |  |  | WERROR_CFLAGS
 | 
      
         | 651 |  |  | WARN_CFLAGS
 | 
      
         | 652 |  |  | sim_xor_endian
 | 
      
         | 653 |  |  | sim_stdcall
 | 
      
         | 654 |  |  | sim_smp
 | 
      
         | 655 |  |  | sim_reserved_bits
 | 
      
         | 656 |  |  | sim_regparm
 | 
      
         | 657 |  |  | sim_packages
 | 
      
         | 658 |  |  | sim_inline
 | 
      
         | 659 |  |  | sim_hw
 | 
      
         | 660 |  |  | sim_hw_objs
 | 
      
         | 661 |  |  | sim_hw_cflags
 | 
      
         | 662 |  |  | sim_default_model
 | 
      
         | 663 |  |  | sim_scache
 | 
      
         | 664 |  |  | sim_float
 | 
      
         | 665 |  |  | sim_hostendian
 | 
      
         | 666 |  |  | sim_endian
 | 
      
         | 667 |  |  | sim_bitsize
 | 
      
         | 668 |  |  | sim_assert
 | 
      
         | 669 |  |  | sim_alignment
 | 
      
         | 670 |  |  | sim_environment
 | 
      
         | 671 |  |  | target_alias
 | 
      
         | 672 |  |  | host_alias
 | 
      
         | 673 |  |  | build_alias
 | 
      
         | 674 |  |  | LIBS
 | 
      
         | 675 |  |  | ECHO_T
 | 
      
         | 676 |  |  | ECHO_N
 | 
      
         | 677 |  |  | ECHO_C
 | 
      
         | 678 |  |  | DEFS
 | 
      
         | 679 |  |  | mandir
 | 
      
         | 680 |  |  | localedir
 | 
      
         | 681 |  |  | libdir
 | 
      
         | 682 |  |  | psdir
 | 
      
         | 683 |  |  | pdfdir
 | 
      
         | 684 |  |  | dvidir
 | 
      
         | 685 |  |  | htmldir
 | 
      
         | 686 |  |  | infodir
 | 
      
         | 687 |  |  | docdir
 | 
      
         | 688 |  |  | oldincludedir
 | 
      
         | 689 |  |  | includedir
 | 
      
         | 690 |  |  | localstatedir
 | 
      
         | 691 |  |  | sharedstatedir
 | 
      
         | 692 |  |  | sysconfdir
 | 
      
         | 693 |  |  | datadir
 | 
      
         | 694 |  |  | datarootdir
 | 
      
         | 695 |  |  | libexecdir
 | 
      
         | 696 |  |  | sbindir
 | 
      
         | 697 |  |  | bindir
 | 
      
         | 698 |  |  | program_transform_name
 | 
      
         | 699 |  |  | prefix
 | 
      
         | 700 |  |  | exec_prefix
 | 
      
         | 701 |  |  | PACKAGE_URL
 | 
      
         | 702 |  |  | PACKAGE_BUGREPORT
 | 
      
         | 703 |  |  | PACKAGE_STRING
 | 
      
         | 704 |  |  | PACKAGE_VERSION
 | 
      
         | 705 |  |  | PACKAGE_TARNAME
 | 
      
         | 706 |  |  | PACKAGE_NAME
 | 
      
         | 707 |  |  | PATH_SEPARATOR
 | 
      
         | 708 |  |  | SHELL'
 | 
      
         | 709 |  |  | ac_subst_files=''
 | 
      
         | 710 |  |  | ac_user_opts='
 | 
      
         | 711 |  |  | enable_option_checking
 | 
      
         | 712 |  |  | with_zlib
 | 
      
         | 713 |  |  | enable_maintainer_mode
 | 
      
         | 714 |  |  | enable_sim_bswap
 | 
      
         | 715 |  |  | enable_sim_cflags
 | 
      
         | 716 |  |  | enable_sim_debug
 | 
      
         | 717 |  |  | enable_sim_stdio
 | 
      
         | 718 |  |  | enable_sim_trace
 | 
      
         | 719 |  |  | enable_sim_profile
 | 
      
         | 720 |  |  | with_pkgversion
 | 
      
         | 721 |  |  | with_bugurl
 | 
      
         | 722 |  |  | enable_sim_endian
 | 
      
         | 723 |  |  | enable_sim_alignment
 | 
      
         | 724 |  |  | enable_sim_hostendian
 | 
      
         | 725 |  |  | enable_sim_scache
 | 
      
         | 726 |  |  | enable_sim_default_model
 | 
      
         | 727 |  |  | enable_sim_environment
 | 
      
         | 728 |  |  | enable_sim_inline
 | 
      
         | 729 |  |  | enable_cgen_maint
 | 
      
         | 730 |  |  | '
 | 
      
         | 731 |  |  |       ac_precious_vars='build_alias
 | 
      
         | 732 |  |  | host_alias
 | 
      
         | 733 |  |  | target_alias
 | 
      
         | 734 |  |  | CC
 | 
      
         | 735 |  |  | CFLAGS
 | 
      
         | 736 |  |  | LDFLAGS
 | 
      
         | 737 |  |  | LIBS
 | 
      
         | 738 |  |  | CPPFLAGS
 | 
      
         | 739 |  |  | CPP'
 | 
      
         | 740 |  |  |  
 | 
      
         | 741 |  |  |  
 | 
      
         | 742 |  |  | # Initialize some variables set by options.
 | 
      
         | 743 |  |  | ac_init_help=
 | 
      
         | 744 |  |  | ac_init_version=false
 | 
      
         | 745 |  |  | ac_unrecognized_opts=
 | 
      
         | 746 |  |  | ac_unrecognized_sep=
 | 
      
         | 747 |  |  | # The variables have the same names as the options, with
 | 
      
         | 748 |  |  | # dashes changed to underlines.
 | 
      
         | 749 |  |  | cache_file=/dev/null
 | 
      
         | 750 |  |  | exec_prefix=NONE
 | 
      
         | 751 |  |  | no_create=
 | 
      
         | 752 |  |  | no_recursion=
 | 
      
         | 753 |  |  | prefix=NONE
 | 
      
         | 754 |  |  | program_prefix=NONE
 | 
      
         | 755 |  |  | program_suffix=NONE
 | 
      
         | 756 |  |  | program_transform_name=s,x,x,
 | 
      
         | 757 |  |  | silent=
 | 
      
         | 758 |  |  | site=
 | 
      
         | 759 |  |  | srcdir=
 | 
      
         | 760 |  |  | verbose=
 | 
      
         | 761 |  |  | x_includes=NONE
 | 
      
         | 762 |  |  | x_libraries=NONE
 | 
      
         | 763 |  |  |  
 | 
      
         | 764 |  |  | # Installation directory options.
 | 
      
         | 765 |  |  | # These are left unexpanded so users can "make install exec_prefix=/foo"
 | 
      
         | 766 |  |  | # and all the variables that are supposed to be based on exec_prefix
 | 
      
         | 767 |  |  | # by default will actually change.
 | 
      
         | 768 |  |  | # Use braces instead of parens because sh, perl, etc. also accept them.
 | 
      
         | 769 |  |  | # (The list follows the same order as the GNU Coding Standards.)
 | 
      
         | 770 |  |  | bindir='${exec_prefix}/bin'
 | 
      
         | 771 |  |  | sbindir='${exec_prefix}/sbin'
 | 
      
         | 772 |  |  | libexecdir='${exec_prefix}/libexec'
 | 
      
         | 773 |  |  | datarootdir='${prefix}/share'
 | 
      
         | 774 |  |  | datadir='${datarootdir}'
 | 
      
         | 775 |  |  | sysconfdir='${prefix}/etc'
 | 
      
         | 776 |  |  | sharedstatedir='${prefix}/com'
 | 
      
         | 777 |  |  | localstatedir='${prefix}/var'
 | 
      
         | 778 |  |  | includedir='${prefix}/include'
 | 
      
         | 779 |  |  | oldincludedir='/usr/include'
 | 
      
         | 780 |  |  | docdir='${datarootdir}/doc/${PACKAGE}'
 | 
      
         | 781 |  |  | infodir='${datarootdir}/info'
 | 
      
         | 782 |  |  | htmldir='${docdir}'
 | 
      
         | 783 |  |  | dvidir='${docdir}'
 | 
      
         | 784 |  |  | pdfdir='${docdir}'
 | 
      
         | 785 |  |  | psdir='${docdir}'
 | 
      
         | 786 |  |  | libdir='${exec_prefix}/lib'
 | 
      
         | 787 |  |  | localedir='${datarootdir}/locale'
 | 
      
         | 788 |  |  | mandir='${datarootdir}/man'
 | 
      
         | 789 |  |  |  
 | 
      
         | 790 |  |  | ac_prev=
 | 
      
         | 791 |  |  | ac_dashdash=
 | 
      
         | 792 |  |  | for ac_option
 | 
      
         | 793 |  |  | do
 | 
      
         | 794 |  |  |   # If the previous option needs an argument, assign it.
 | 
      
         | 795 |  |  |   if test -n "$ac_prev"; then
 | 
      
         | 796 |  |  |     eval $ac_prev=\$ac_option
 | 
      
         | 797 |  |  |     ac_prev=
 | 
      
         | 798 |  |  |     continue
 | 
      
         | 799 |  |  |   fi
 | 
      
         | 800 |  |  |  
 | 
      
         | 801 |  |  |   case $ac_option in
 | 
      
         | 802 |  |  |   *=*)  ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
 | 
      
         | 803 |  |  |   *)    ac_optarg=yes ;;
 | 
      
         | 804 |  |  |   esac
 | 
      
         | 805 |  |  |  
 | 
      
         | 806 |  |  |   # Accept the important Cygnus configure options, so we can diagnose typos.
 | 
      
         | 807 |  |  |  
 | 
      
         | 808 |  |  |   case $ac_dashdash$ac_option in
 | 
      
         | 809 |  |  |   --)
 | 
      
         | 810 |  |  |     ac_dashdash=yes ;;
 | 
      
         | 811 |  |  |  
 | 
      
         | 812 |  |  |   -bindir | --bindir | --bindi | --bind | --bin | --bi)
 | 
      
         | 813 |  |  |     ac_prev=bindir ;;
 | 
      
         | 814 |  |  |   -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
 | 
      
         | 815 |  |  |     bindir=$ac_optarg ;;
 | 
      
         | 816 |  |  |  
 | 
      
         | 817 |  |  |   -build | --build | --buil | --bui | --bu)
 | 
      
         | 818 |  |  |     ac_prev=build_alias ;;
 | 
      
         | 819 |  |  |   -build=* | --build=* | --buil=* | --bui=* | --bu=*)
 | 
      
         | 820 |  |  |     build_alias=$ac_optarg ;;
 | 
      
         | 821 |  |  |  
 | 
      
         | 822 |  |  |   -cache-file | --cache-file | --cache-fil | --cache-fi \
 | 
      
         | 823 |  |  |   | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
 | 
      
         | 824 |  |  |     ac_prev=cache_file ;;
 | 
      
         | 825 |  |  |   -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
 | 
      
         | 826 |  |  |   | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
 | 
      
         | 827 |  |  |     cache_file=$ac_optarg ;;
 | 
      
         | 828 |  |  |  
 | 
      
         | 829 |  |  |   --config-cache | -C)
 | 
      
         | 830 |  |  |     cache_file=config.cache ;;
 | 
      
         | 831 |  |  |  
 | 
      
         | 832 |  |  |   -datadir | --datadir | --datadi | --datad)
 | 
      
         | 833 |  |  |     ac_prev=datadir ;;
 | 
      
         | 834 |  |  |   -datadir=* | --datadir=* | --datadi=* | --datad=*)
 | 
      
         | 835 |  |  |     datadir=$ac_optarg ;;
 | 
      
         | 836 |  |  |  
 | 
      
         | 837 |  |  |   -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
 | 
      
         | 838 |  |  |   | --dataroo | --dataro | --datar)
 | 
      
         | 839 |  |  |     ac_prev=datarootdir ;;
 | 
      
         | 840 |  |  |   -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
 | 
      
         | 841 |  |  |   | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
 | 
      
         | 842 |  |  |     datarootdir=$ac_optarg ;;
 | 
      
         | 843 |  |  |  
 | 
      
         | 844 |  |  |   -disable-* | --disable-*)
 | 
      
         | 845 |  |  |     ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
 | 
      
         | 846 |  |  |     # Reject names that are not valid shell variable names.
 | 
      
         | 847 |  |  |     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 | 
      
         | 848 |  |  |       as_fn_error "invalid feature name: $ac_useropt"
 | 
      
         | 849 |  |  |     ac_useropt_orig=$ac_useropt
 | 
      
         | 850 |  |  |     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 | 
      
         | 851 |  |  |     case $ac_user_opts in
 | 
      
         | 852 |  |  |       *"
 | 
      
         | 853 |  |  | "enable_$ac_useropt"
 | 
      
         | 854 |  |  | "*) ;;
 | 
      
         | 855 |  |  |       *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
 | 
      
         | 856 |  |  |          ac_unrecognized_sep=', ';;
 | 
      
         | 857 |  |  |     esac
 | 
      
         | 858 |  |  |     eval enable_$ac_useropt=no ;;
 | 
      
         | 859 |  |  |  
 | 
      
         | 860 |  |  |   -docdir | --docdir | --docdi | --doc | --do)
 | 
      
         | 861 |  |  |     ac_prev=docdir ;;
 | 
      
         | 862 |  |  |   -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
 | 
      
         | 863 |  |  |     docdir=$ac_optarg ;;
 | 
      
         | 864 |  |  |  
 | 
      
         | 865 |  |  |   -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
 | 
      
         | 866 |  |  |     ac_prev=dvidir ;;
 | 
      
         | 867 |  |  |   -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
 | 
      
         | 868 |  |  |     dvidir=$ac_optarg ;;
 | 
      
         | 869 |  |  |  
 | 
      
         | 870 |  |  |   -enable-* | --enable-*)
 | 
      
         | 871 |  |  |     ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
 | 
      
         | 872 |  |  |     # Reject names that are not valid shell variable names.
 | 
      
         | 873 |  |  |     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 | 
      
         | 874 |  |  |       as_fn_error "invalid feature name: $ac_useropt"
 | 
      
         | 875 |  |  |     ac_useropt_orig=$ac_useropt
 | 
      
         | 876 |  |  |     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 | 
      
         | 877 |  |  |     case $ac_user_opts in
 | 
      
         | 878 |  |  |       *"
 | 
      
         | 879 |  |  | "enable_$ac_useropt"
 | 
      
         | 880 |  |  | "*) ;;
 | 
      
         | 881 |  |  |       *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
 | 
      
         | 882 |  |  |          ac_unrecognized_sep=', ';;
 | 
      
         | 883 |  |  |     esac
 | 
      
         | 884 |  |  |     eval enable_$ac_useropt=\$ac_optarg ;;
 | 
      
         | 885 |  |  |  
 | 
      
         | 886 |  |  |   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
 | 
      
         | 887 |  |  |   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
 | 
      
         | 888 |  |  |   | --exec | --exe | --ex)
 | 
      
         | 889 |  |  |     ac_prev=exec_prefix ;;
 | 
      
         | 890 |  |  |   -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
 | 
      
         | 891 |  |  |   | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
 | 
      
         | 892 |  |  |   | --exec=* | --exe=* | --ex=*)
 | 
      
         | 893 |  |  |     exec_prefix=$ac_optarg ;;
 | 
      
         | 894 |  |  |  
 | 
      
         | 895 |  |  |   -gas | --gas | --ga | --g)
 | 
      
         | 896 |  |  |     # Obsolete; use --with-gas.
 | 
      
         | 897 |  |  |     with_gas=yes ;;
 | 
      
         | 898 |  |  |  
 | 
      
         | 899 |  |  |   -help | --help | --hel | --he | -h)
 | 
      
         | 900 |  |  |     ac_init_help=long ;;
 | 
      
         | 901 |  |  |   -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
 | 
      
         | 902 |  |  |     ac_init_help=recursive ;;
 | 
      
         | 903 |  |  |   -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
 | 
      
         | 904 |  |  |     ac_init_help=short ;;
 | 
      
         | 905 |  |  |  
 | 
      
         | 906 |  |  |   -host | --host | --hos | --ho)
 | 
      
         | 907 |  |  |     ac_prev=host_alias ;;
 | 
      
         | 908 |  |  |   -host=* | --host=* | --hos=* | --ho=*)
 | 
      
         | 909 |  |  |     host_alias=$ac_optarg ;;
 | 
      
         | 910 |  |  |  
 | 
      
         | 911 |  |  |   -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
 | 
      
         | 912 |  |  |     ac_prev=htmldir ;;
 | 
      
         | 913 |  |  |   -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
 | 
      
         | 914 |  |  |   | --ht=*)
 | 
      
         | 915 |  |  |     htmldir=$ac_optarg ;;
 | 
      
         | 916 |  |  |  
 | 
      
         | 917 |  |  |   -includedir | --includedir | --includedi | --included | --include \
 | 
      
         | 918 |  |  |   | --includ | --inclu | --incl | --inc)
 | 
      
         | 919 |  |  |     ac_prev=includedir ;;
 | 
      
         | 920 |  |  |   -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
 | 
      
         | 921 |  |  |   | --includ=* | --inclu=* | --incl=* | --inc=*)
 | 
      
         | 922 |  |  |     includedir=$ac_optarg ;;
 | 
      
         | 923 |  |  |  
 | 
      
         | 924 |  |  |   -infodir | --infodir | --infodi | --infod | --info | --inf)
 | 
      
         | 925 |  |  |     ac_prev=infodir ;;
 | 
      
         | 926 |  |  |   -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
 | 
      
         | 927 |  |  |     infodir=$ac_optarg ;;
 | 
      
         | 928 |  |  |  
 | 
      
         | 929 |  |  |   -libdir | --libdir | --libdi | --libd)
 | 
      
         | 930 |  |  |     ac_prev=libdir ;;
 | 
      
         | 931 |  |  |   -libdir=* | --libdir=* | --libdi=* | --libd=*)
 | 
      
         | 932 |  |  |     libdir=$ac_optarg ;;
 | 
      
         | 933 |  |  |  
 | 
      
         | 934 |  |  |   -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
 | 
      
         | 935 |  |  |   | --libexe | --libex | --libe)
 | 
      
         | 936 |  |  |     ac_prev=libexecdir ;;
 | 
      
         | 937 |  |  |   -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
 | 
      
         | 938 |  |  |   | --libexe=* | --libex=* | --libe=*)
 | 
      
         | 939 |  |  |     libexecdir=$ac_optarg ;;
 | 
      
         | 940 |  |  |  
 | 
      
         | 941 |  |  |   -localedir | --localedir | --localedi | --localed | --locale)
 | 
      
         | 942 |  |  |     ac_prev=localedir ;;
 | 
      
         | 943 |  |  |   -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
 | 
      
         | 944 |  |  |     localedir=$ac_optarg ;;
 | 
      
         | 945 |  |  |  
 | 
      
         | 946 |  |  |   -localstatedir | --localstatedir | --localstatedi | --localstated \
 | 
      
         | 947 |  |  |   | --localstate | --localstat | --localsta | --localst | --locals)
 | 
      
         | 948 |  |  |     ac_prev=localstatedir ;;
 | 
      
         | 949 |  |  |   -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
 | 
      
         | 950 |  |  |   | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
 | 
      
         | 951 |  |  |     localstatedir=$ac_optarg ;;
 | 
      
         | 952 |  |  |  
 | 
      
         | 953 |  |  |   -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
 | 
      
         | 954 |  |  |     ac_prev=mandir ;;
 | 
      
         | 955 |  |  |   -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
 | 
      
         | 956 |  |  |     mandir=$ac_optarg ;;
 | 
      
         | 957 |  |  |  
 | 
      
         | 958 |  |  |   -nfp | --nfp | --nf)
 | 
      
         | 959 |  |  |     # Obsolete; use --without-fp.
 | 
      
         | 960 |  |  |     with_fp=no ;;
 | 
      
         | 961 |  |  |  
 | 
      
         | 962 |  |  |   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
 | 
      
         | 963 |  |  |   | --no-cr | --no-c | -n)
 | 
      
         | 964 |  |  |     no_create=yes ;;
 | 
      
         | 965 |  |  |  
 | 
      
         | 966 |  |  |   -no-recursion | --no-recursion | --no-recursio | --no-recursi \
 | 
      
         | 967 |  |  |   | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
 | 
      
         | 968 |  |  |     no_recursion=yes ;;
 | 
      
         | 969 |  |  |  
 | 
      
         | 970 |  |  |   -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
 | 
      
         | 971 |  |  |   | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
 | 
      
         | 972 |  |  |   | --oldin | --oldi | --old | --ol | --o)
 | 
      
         | 973 |  |  |     ac_prev=oldincludedir ;;
 | 
      
         | 974 |  |  |   -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
 | 
      
         | 975 |  |  |   | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
 | 
      
         | 976 |  |  |   | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
 | 
      
         | 977 |  |  |     oldincludedir=$ac_optarg ;;
 | 
      
         | 978 |  |  |  
 | 
      
         | 979 |  |  |   -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
 | 
      
         | 980 |  |  |     ac_prev=prefix ;;
 | 
      
         | 981 |  |  |   -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
 | 
      
         | 982 |  |  |     prefix=$ac_optarg ;;
 | 
      
         | 983 |  |  |  
 | 
      
         | 984 |  |  |   -program-prefix | --program-prefix | --program-prefi | --program-pref \
 | 
      
         | 985 |  |  |   | --program-pre | --program-pr | --program-p)
 | 
      
         | 986 |  |  |     ac_prev=program_prefix ;;
 | 
      
         | 987 |  |  |   -program-prefix=* | --program-prefix=* | --program-prefi=* \
 | 
      
         | 988 |  |  |   | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
 | 
      
         | 989 |  |  |     program_prefix=$ac_optarg ;;
 | 
      
         | 990 |  |  |  
 | 
      
         | 991 |  |  |   -program-suffix | --program-suffix | --program-suffi | --program-suff \
 | 
      
         | 992 |  |  |   | --program-suf | --program-su | --program-s)
 | 
      
         | 993 |  |  |     ac_prev=program_suffix ;;
 | 
      
         | 994 |  |  |   -program-suffix=* | --program-suffix=* | --program-suffi=* \
 | 
      
         | 995 |  |  |   | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
 | 
      
         | 996 |  |  |     program_suffix=$ac_optarg ;;
 | 
      
         | 997 |  |  |  
 | 
      
         | 998 |  |  |   -program-transform-name | --program-transform-name \
 | 
      
         | 999 |  |  |   | --program-transform-nam | --program-transform-na \
 | 
      
         | 1000 |  |  |   | --program-transform-n | --program-transform- \
 | 
      
         | 1001 |  |  |   | --program-transform | --program-transfor \
 | 
      
         | 1002 |  |  |   | --program-transfo | --program-transf \
 | 
      
         | 1003 |  |  |   | --program-trans | --program-tran \
 | 
      
         | 1004 |  |  |   | --progr-tra | --program-tr | --program-t)
 | 
      
         | 1005 |  |  |     ac_prev=program_transform_name ;;
 | 
      
         | 1006 |  |  |   -program-transform-name=* | --program-transform-name=* \
 | 
      
         | 1007 |  |  |   | --program-transform-nam=* | --program-transform-na=* \
 | 
      
         | 1008 |  |  |   | --program-transform-n=* | --program-transform-=* \
 | 
      
         | 1009 |  |  |   | --program-transform=* | --program-transfor=* \
 | 
      
         | 1010 |  |  |   | --program-transfo=* | --program-transf=* \
 | 
      
         | 1011 |  |  |   | --program-trans=* | --program-tran=* \
 | 
      
         | 1012 |  |  |   | --progr-tra=* | --program-tr=* | --program-t=*)
 | 
      
         | 1013 |  |  |     program_transform_name=$ac_optarg ;;
 | 
      
         | 1014 |  |  |  
 | 
      
         | 1015 |  |  |   -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
 | 
      
         | 1016 |  |  |     ac_prev=pdfdir ;;
 | 
      
         | 1017 |  |  |   -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
 | 
      
         | 1018 |  |  |     pdfdir=$ac_optarg ;;
 | 
      
         | 1019 |  |  |  
 | 
      
         | 1020 |  |  |   -psdir | --psdir | --psdi | --psd | --ps)
 | 
      
         | 1021 |  |  |     ac_prev=psdir ;;
 | 
      
         | 1022 |  |  |   -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
 | 
      
         | 1023 |  |  |     psdir=$ac_optarg ;;
 | 
      
         | 1024 |  |  |  
 | 
      
         | 1025 |  |  |   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 | 
      
         | 1026 |  |  |   | -silent | --silent | --silen | --sile | --sil)
 | 
      
         | 1027 |  |  |     silent=yes ;;
 | 
      
         | 1028 |  |  |  
 | 
      
         | 1029 |  |  |   -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
 | 
      
         | 1030 |  |  |     ac_prev=sbindir ;;
 | 
      
         | 1031 |  |  |   -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
 | 
      
         | 1032 |  |  |   | --sbi=* | --sb=*)
 | 
      
         | 1033 |  |  |     sbindir=$ac_optarg ;;
 | 
      
         | 1034 |  |  |  
 | 
      
         | 1035 |  |  |   -sharedstatedir | --sharedstatedir | --sharedstatedi \
 | 
      
         | 1036 |  |  |   | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
 | 
      
         | 1037 |  |  |   | --sharedst | --shareds | --shared | --share | --shar \
 | 
      
         | 1038 |  |  |   | --sha | --sh)
 | 
      
         | 1039 |  |  |     ac_prev=sharedstatedir ;;
 | 
      
         | 1040 |  |  |   -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
 | 
      
         | 1041 |  |  |   | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
 | 
      
         | 1042 |  |  |   | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
 | 
      
         | 1043 |  |  |   | --sha=* | --sh=*)
 | 
      
         | 1044 |  |  |     sharedstatedir=$ac_optarg ;;
 | 
      
         | 1045 |  |  |  
 | 
      
         | 1046 |  |  |   -site | --site | --sit)
 | 
      
         | 1047 |  |  |     ac_prev=site ;;
 | 
      
         | 1048 |  |  |   -site=* | --site=* | --sit=*)
 | 
      
         | 1049 |  |  |     site=$ac_optarg ;;
 | 
      
         | 1050 |  |  |  
 | 
      
         | 1051 |  |  |   -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
 | 
      
         | 1052 |  |  |     ac_prev=srcdir ;;
 | 
      
         | 1053 |  |  |   -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
 | 
      
         | 1054 |  |  |     srcdir=$ac_optarg ;;
 | 
      
         | 1055 |  |  |  
 | 
      
         | 1056 |  |  |   -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
 | 
      
         | 1057 |  |  |   | --syscon | --sysco | --sysc | --sys | --sy)
 | 
      
         | 1058 |  |  |     ac_prev=sysconfdir ;;
 | 
      
         | 1059 |  |  |   -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
 | 
      
         | 1060 |  |  |   | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
 | 
      
         | 1061 |  |  |     sysconfdir=$ac_optarg ;;
 | 
      
         | 1062 |  |  |  
 | 
      
         | 1063 |  |  |   -target | --target | --targe | --targ | --tar | --ta | --t)
 | 
      
         | 1064 |  |  |     ac_prev=target_alias ;;
 | 
      
         | 1065 |  |  |   -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
 | 
      
         | 1066 |  |  |     target_alias=$ac_optarg ;;
 | 
      
         | 1067 |  |  |  
 | 
      
         | 1068 |  |  |   -v | -verbose | --verbose | --verbos | --verbo | --verb)
 | 
      
         | 1069 |  |  |     verbose=yes ;;
 | 
      
         | 1070 |  |  |  
 | 
      
         | 1071 |  |  |   -version | --version | --versio | --versi | --vers | -V)
 | 
      
         | 1072 |  |  |     ac_init_version=: ;;
 | 
      
         | 1073 |  |  |  
 | 
      
         | 1074 |  |  |   -with-* | --with-*)
 | 
      
         | 1075 |  |  |     ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
 | 
      
         | 1076 |  |  |     # Reject names that are not valid shell variable names.
 | 
      
         | 1077 |  |  |     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 | 
      
         | 1078 |  |  |       as_fn_error "invalid package name: $ac_useropt"
 | 
      
         | 1079 |  |  |     ac_useropt_orig=$ac_useropt
 | 
      
         | 1080 |  |  |     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 | 
      
         | 1081 |  |  |     case $ac_user_opts in
 | 
      
         | 1082 |  |  |       *"
 | 
      
         | 1083 |  |  | "with_$ac_useropt"
 | 
      
         | 1084 |  |  | "*) ;;
 | 
      
         | 1085 |  |  |       *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
 | 
      
         | 1086 |  |  |          ac_unrecognized_sep=', ';;
 | 
      
         | 1087 |  |  |     esac
 | 
      
         | 1088 |  |  |     eval with_$ac_useropt=\$ac_optarg ;;
 | 
      
         | 1089 |  |  |  
 | 
      
         | 1090 |  |  |   -without-* | --without-*)
 | 
      
         | 1091 |  |  |     ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
 | 
      
         | 1092 |  |  |     # Reject names that are not valid shell variable names.
 | 
      
         | 1093 |  |  |     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 | 
      
         | 1094 |  |  |       as_fn_error "invalid package name: $ac_useropt"
 | 
      
         | 1095 |  |  |     ac_useropt_orig=$ac_useropt
 | 
      
         | 1096 |  |  |     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 | 
      
         | 1097 |  |  |     case $ac_user_opts in
 | 
      
         | 1098 |  |  |       *"
 | 
      
         | 1099 |  |  | "with_$ac_useropt"
 | 
      
         | 1100 |  |  | "*) ;;
 | 
      
         | 1101 |  |  |       *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
 | 
      
         | 1102 |  |  |          ac_unrecognized_sep=', ';;
 | 
      
         | 1103 |  |  |     esac
 | 
      
         | 1104 |  |  |     eval with_$ac_useropt=no ;;
 | 
      
         | 1105 |  |  |  
 | 
      
         | 1106 |  |  |   --x)
 | 
      
         | 1107 |  |  |     # Obsolete; use --with-x.
 | 
      
         | 1108 |  |  |     with_x=yes ;;
 | 
      
         | 1109 |  |  |  
 | 
      
         | 1110 |  |  |   -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
 | 
      
         | 1111 |  |  |   | --x-incl | --x-inc | --x-in | --x-i)
 | 
      
         | 1112 |  |  |     ac_prev=x_includes ;;
 | 
      
         | 1113 |  |  |   -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
 | 
      
         | 1114 |  |  |   | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
 | 
      
         | 1115 |  |  |     x_includes=$ac_optarg ;;
 | 
      
         | 1116 |  |  |  
 | 
      
         | 1117 |  |  |   -x-libraries | --x-libraries | --x-librarie | --x-librari \
 | 
      
         | 1118 |  |  |   | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
 | 
      
         | 1119 |  |  |     ac_prev=x_libraries ;;
 | 
      
         | 1120 |  |  |   -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
 | 
      
         | 1121 |  |  |   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
 | 
      
         | 1122 |  |  |     x_libraries=$ac_optarg ;;
 | 
      
         | 1123 |  |  |  
 | 
      
         | 1124 |  |  |   -*) as_fn_error "unrecognized option: \`$ac_option'
 | 
      
         | 1125 |  |  | Try \`$0 --help' for more information."
 | 
      
         | 1126 |  |  |     ;;
 | 
      
         | 1127 |  |  |  
 | 
      
         | 1128 |  |  |   *=*)
 | 
      
         | 1129 |  |  |     ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
 | 
      
         | 1130 |  |  |     # Reject names that are not valid shell variable names.
 | 
      
         | 1131 |  |  |     case $ac_envvar in #(
 | 
      
         | 1132 |  |  |       '' | [0-9]* | *[!_$as_cr_alnum]* )
 | 
      
         | 1133 |  |  |       as_fn_error "invalid variable name: \`$ac_envvar'" ;;
 | 
      
         | 1134 |  |  |     esac
 | 
      
         | 1135 |  |  |     eval $ac_envvar=\$ac_optarg
 | 
      
         | 1136 |  |  |     export $ac_envvar ;;
 | 
      
         | 1137 |  |  |  
 | 
      
         | 1138 |  |  |   *)
 | 
      
         | 1139 |  |  |     # FIXME: should be removed in autoconf 3.0.
 | 
      
         | 1140 |  |  |     $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
 | 
      
         | 1141 |  |  |     expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 | 
      
         | 1142 |  |  |       $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
 | 
      
         | 1143 |  |  |     : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
 | 
      
         | 1144 |  |  |     ;;
 | 
      
         | 1145 |  |  |  
 | 
      
         | 1146 |  |  |   esac
 | 
      
         | 1147 |  |  | done
 | 
      
         | 1148 |  |  |  
 | 
      
         | 1149 |  |  | if test -n "$ac_prev"; then
 | 
      
         | 1150 |  |  |   ac_option=--`echo $ac_prev | sed 's/_/-/g'`
 | 
      
         | 1151 |  |  |   as_fn_error "missing argument to $ac_option"
 | 
      
         | 1152 |  |  | fi
 | 
      
         | 1153 |  |  |  
 | 
      
         | 1154 |  |  | if test -n "$ac_unrecognized_opts"; then
 | 
      
         | 1155 |  |  |   case $enable_option_checking in
 | 
      
         | 1156 |  |  |     no) ;;
 | 
      
         | 1157 |  |  |     fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;;
 | 
      
         | 1158 |  |  |     *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
 | 
      
         | 1159 |  |  |   esac
 | 
      
         | 1160 |  |  | fi
 | 
      
         | 1161 |  |  |  
 | 
      
         | 1162 |  |  | # Check all directory arguments for consistency.
 | 
      
         | 1163 |  |  | for ac_var in   exec_prefix prefix bindir sbindir libexecdir datarootdir \
 | 
      
         | 1164 |  |  |                 datadir sysconfdir sharedstatedir localstatedir includedir \
 | 
      
         | 1165 |  |  |                 oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
 | 
      
         | 1166 |  |  |                 libdir localedir mandir
 | 
      
         | 1167 |  |  | do
 | 
      
         | 1168 |  |  |   eval ac_val=\$$ac_var
 | 
      
         | 1169 |  |  |   # Remove trailing slashes.
 | 
      
         | 1170 |  |  |   case $ac_val in
 | 
      
         | 1171 |  |  |     */ )
 | 
      
         | 1172 |  |  |       ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
 | 
      
         | 1173 |  |  |       eval $ac_var=\$ac_val;;
 | 
      
         | 1174 |  |  |   esac
 | 
      
         | 1175 |  |  |   # Be sure to have absolute directory names.
 | 
      
         | 1176 |  |  |   case $ac_val in
 | 
      
         | 1177 |  |  |     [\\/$]* | ?:[\\/]* )  continue;;
 | 
      
         | 1178 |  |  |     NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
 | 
      
         | 1179 |  |  |   esac
 | 
      
         | 1180 |  |  |   as_fn_error "expected an absolute directory name for --$ac_var: $ac_val"
 | 
      
         | 1181 |  |  | done
 | 
      
         | 1182 |  |  |  
 | 
      
         | 1183 |  |  | # There might be people who depend on the old broken behavior: `$host'
 | 
      
         | 1184 |  |  | # used to hold the argument of --host etc.
 | 
      
         | 1185 |  |  | # FIXME: To remove some day.
 | 
      
         | 1186 |  |  | build=$build_alias
 | 
      
         | 1187 |  |  | host=$host_alias
 | 
      
         | 1188 |  |  | target=$target_alias
 | 
      
         | 1189 |  |  |  
 | 
      
         | 1190 |  |  | # FIXME: To remove some day.
 | 
      
         | 1191 |  |  | if test "x$host_alias" != x; then
 | 
      
         | 1192 |  |  |   if test "x$build_alias" = x; then
 | 
      
         | 1193 |  |  |     cross_compiling=maybe
 | 
      
         | 1194 |  |  |     $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
 | 
      
         | 1195 |  |  |     If a cross compiler is detected then cross compile mode will be used." >&2
 | 
      
         | 1196 |  |  |   elif test "x$build_alias" != "x$host_alias"; then
 | 
      
         | 1197 |  |  |     cross_compiling=yes
 | 
      
         | 1198 |  |  |   fi
 | 
      
         | 1199 |  |  | fi
 | 
      
         | 1200 |  |  |  
 | 
      
         | 1201 |  |  | ac_tool_prefix=
 | 
      
         | 1202 |  |  | test -n "$host_alias" && ac_tool_prefix=$host_alias-
 | 
      
         | 1203 |  |  |  
 | 
      
         | 1204 |  |  | test "$silent" = yes && exec 6>/dev/null
 | 
      
         | 1205 |  |  |  
 | 
      
         | 1206 |  |  |  
 | 
      
         | 1207 |  |  | ac_pwd=`pwd` && test -n "$ac_pwd" &&
 | 
      
         | 1208 |  |  | ac_ls_di=`ls -di .` &&
 | 
      
         | 1209 |  |  | ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
 | 
      
         | 1210 |  |  |   as_fn_error "working directory cannot be determined"
 | 
      
         | 1211 |  |  | test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
 | 
      
         | 1212 |  |  |   as_fn_error "pwd does not report name of working directory"
 | 
      
         | 1213 |  |  |  
 | 
      
         | 1214 |  |  |  
 | 
      
         | 1215 |  |  | # Find the source files, if location was not specified.
 | 
      
         | 1216 |  |  | if test -z "$srcdir"; then
 | 
      
         | 1217 |  |  |   ac_srcdir_defaulted=yes
 | 
      
         | 1218 |  |  |   # Try the directory containing this script, then the parent directory.
 | 
      
         | 1219 |  |  |   ac_confdir=`$as_dirname -- "$as_myself" ||
 | 
      
         | 1220 |  |  | $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 | 
      
         | 1221 |  |  |          X"$as_myself" : 'X\(//\)[^/]' \| \
 | 
      
         | 1222 |  |  |          X"$as_myself" : 'X\(//\)$' \| \
 | 
      
         | 1223 |  |  |          X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
 | 
      
         | 1224 |  |  | $as_echo X"$as_myself" |
 | 
      
         | 1225 |  |  |     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 | 
      
         | 1226 |  |  |             s//\1/
 | 
      
         | 1227 |  |  |             q
 | 
      
         | 1228 |  |  |           }
 | 
      
         | 1229 |  |  |           /^X\(\/\/\)[^/].*/{
 | 
      
         | 1230 |  |  |             s//\1/
 | 
      
         | 1231 |  |  |             q
 | 
      
         | 1232 |  |  |           }
 | 
      
         | 1233 |  |  |           /^X\(\/\/\)$/{
 | 
      
         | 1234 |  |  |             s//\1/
 | 
      
         | 1235 |  |  |             q
 | 
      
         | 1236 |  |  |           }
 | 
      
         | 1237 |  |  |           /^X\(\/\).*/{
 | 
      
         | 1238 |  |  |             s//\1/
 | 
      
         | 1239 |  |  |             q
 | 
      
         | 1240 |  |  |           }
 | 
      
         | 1241 |  |  |           s/.*/./; q'`
 | 
      
         | 1242 |  |  |   srcdir=$ac_confdir
 | 
      
         | 1243 |  |  |   if test ! -r "$srcdir/$ac_unique_file"; then
 | 
      
         | 1244 |  |  |     srcdir=..
 | 
      
         | 1245 |  |  |   fi
 | 
      
         | 1246 |  |  | else
 | 
      
         | 1247 |  |  |   ac_srcdir_defaulted=no
 | 
      
         | 1248 |  |  | fi
 | 
      
         | 1249 |  |  | if test ! -r "$srcdir/$ac_unique_file"; then
 | 
      
         | 1250 |  |  |   test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
 | 
      
         | 1251 |  |  |   as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"
 | 
      
         | 1252 |  |  | fi
 | 
      
         | 1253 |  |  | ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
 | 
      
         | 1254 |  |  | ac_abs_confdir=`(
 | 
      
         | 1255 |  |  |         cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg"
 | 
      
         | 1256 |  |  |         pwd)`
 | 
      
         | 1257 |  |  | # When building in place, set srcdir=.
 | 
      
         | 1258 |  |  | if test "$ac_abs_confdir" = "$ac_pwd"; then
 | 
      
         | 1259 |  |  |   srcdir=.
 | 
      
         | 1260 |  |  | fi
 | 
      
         | 1261 |  |  | # Remove unnecessary trailing slashes from srcdir.
 | 
      
         | 1262 |  |  | # Double slashes in file names in object file debugging info
 | 
      
         | 1263 |  |  | # mess up M-x gdb in Emacs.
 | 
      
         | 1264 |  |  | case $srcdir in
 | 
      
         | 1265 |  |  | */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
 | 
      
         | 1266 |  |  | esac
 | 
      
         | 1267 |  |  | for ac_var in $ac_precious_vars; do
 | 
      
         | 1268 |  |  |   eval ac_env_${ac_var}_set=\${${ac_var}+set}
 | 
      
         | 1269 |  |  |   eval ac_env_${ac_var}_value=\$${ac_var}
 | 
      
         | 1270 |  |  |   eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
 | 
      
         | 1271 |  |  |   eval ac_cv_env_${ac_var}_value=\$${ac_var}
 | 
      
         | 1272 |  |  | done
 | 
      
         | 1273 |  |  |  
 | 
      
         | 1274 |  |  | #
 | 
      
         | 1275 |  |  | # Report the --help message.
 | 
      
         | 1276 |  |  | #
 | 
      
         | 1277 |  |  | if test "$ac_init_help" = "long"; then
 | 
      
         | 1278 |  |  |   # Omit some internal or obsolete options to make the list less imposing.
 | 
      
         | 1279 |  |  |   # This message is too long to be a string in the A/UX 3.1 sh.
 | 
      
         | 1280 |  |  |   cat <<_ACEOF
 | 
      
         | 1281 |  |  | \`configure' configures this package to adapt to many kinds of systems.
 | 
      
         | 1282 |  |  |  
 | 
      
         | 1283 |  |  | Usage: $0 [OPTION]... [VAR=VALUE]...
 | 
      
         | 1284 |  |  |  
 | 
      
         | 1285 |  |  | To assign environment variables (e.g., CC, CFLAGS...), specify them as
 | 
      
         | 1286 |  |  | VAR=VALUE.  See below for descriptions of some of the useful variables.
 | 
      
         | 1287 |  |  |  
 | 
      
         | 1288 |  |  | Defaults for the options are specified in brackets.
 | 
      
         | 1289 |  |  |  
 | 
      
         | 1290 |  |  | Configuration:
 | 
      
         | 1291 |  |  |   -h, --help              display this help and exit
 | 
      
         | 1292 |  |  |       --help=short        display options specific to this package
 | 
      
         | 1293 |  |  |       --help=recursive    display the short help of all the included packages
 | 
      
         | 1294 |  |  |   -V, --version           display version information and exit
 | 
      
         | 1295 |  |  |   -q, --quiet, --silent   do not print \`checking...' messages
 | 
      
         | 1296 |  |  |       --cache-file=FILE   cache test results in FILE [disabled]
 | 
      
         | 1297 |  |  |   -C, --config-cache      alias for \`--cache-file=config.cache'
 | 
      
         | 1298 |  |  |   -n, --no-create         do not create output files
 | 
      
         | 1299 |  |  |       --srcdir=DIR        find the sources in DIR [configure dir or \`..']
 | 
      
         | 1300 |  |  |  
 | 
      
         | 1301 |  |  | Installation directories:
 | 
      
         | 1302 |  |  |   --prefix=PREFIX         install architecture-independent files in PREFIX
 | 
      
         | 1303 |  |  |                           [$ac_default_prefix]
 | 
      
         | 1304 |  |  |   --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
 | 
      
         | 1305 |  |  |                           [PREFIX]
 | 
      
         | 1306 |  |  |  
 | 
      
         | 1307 |  |  | By default, \`make install' will install all the files in
 | 
      
         | 1308 |  |  | \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
 | 
      
         | 1309 |  |  | an installation prefix other than \`$ac_default_prefix' using \`--prefix',
 | 
      
         | 1310 |  |  | for instance \`--prefix=\$HOME'.
 | 
      
         | 1311 |  |  |  
 | 
      
         | 1312 |  |  | For better control, use the options below.
 | 
      
         | 1313 |  |  |  
 | 
      
         | 1314 |  |  | Fine tuning of the installation directories:
 | 
      
         | 1315 |  |  |   --bindir=DIR            user executables [EPREFIX/bin]
 | 
      
         | 1316 |  |  |   --sbindir=DIR           system admin executables [EPREFIX/sbin]
 | 
      
         | 1317 |  |  |   --libexecdir=DIR        program executables [EPREFIX/libexec]
 | 
      
         | 1318 |  |  |   --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
 | 
      
         | 1319 |  |  |   --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
 | 
      
         | 1320 |  |  |   --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
 | 
      
         | 1321 |  |  |   --libdir=DIR            object code libraries [EPREFIX/lib]
 | 
      
         | 1322 |  |  |   --includedir=DIR        C header files [PREFIX/include]
 | 
      
         | 1323 |  |  |   --oldincludedir=DIR     C header files for non-gcc [/usr/include]
 | 
      
         | 1324 |  |  |   --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
 | 
      
         | 1325 |  |  |   --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
 | 
      
         | 1326 |  |  |   --infodir=DIR           info documentation [DATAROOTDIR/info]
 | 
      
         | 1327 |  |  |   --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
 | 
      
         | 1328 |  |  |   --mandir=DIR            man documentation [DATAROOTDIR/man]
 | 
      
         | 1329 |  |  |   --docdir=DIR            documentation root [DATAROOTDIR/doc/PACKAGE]
 | 
      
         | 1330 |  |  |   --htmldir=DIR           html documentation [DOCDIR]
 | 
      
         | 1331 |  |  |   --dvidir=DIR            dvi documentation [DOCDIR]
 | 
      
         | 1332 |  |  |   --pdfdir=DIR            pdf documentation [DOCDIR]
 | 
      
         | 1333 |  |  |   --psdir=DIR             ps documentation [DOCDIR]
 | 
      
         | 1334 |  |  | _ACEOF
 | 
      
         | 1335 |  |  |  
 | 
      
         | 1336 |  |  |   cat <<\_ACEOF
 | 
      
         | 1337 |  |  |  
 | 
      
         | 1338 |  |  | Program names:
 | 
      
         | 1339 |  |  |   --program-prefix=PREFIX            prepend PREFIX to installed program names
 | 
      
         | 1340 |  |  |   --program-suffix=SUFFIX            append SUFFIX to installed program names
 | 
      
         | 1341 |  |  |   --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
 | 
      
         | 1342 |  |  |  
 | 
      
         | 1343 |  |  | System types:
 | 
      
         | 1344 |  |  |   --build=BUILD     configure for building on BUILD [guessed]
 | 
      
         | 1345 |  |  |   --host=HOST       cross-compile to build programs to run on HOST [BUILD]
 | 
      
         | 1346 |  |  |   --target=TARGET   configure for building compilers for TARGET [HOST]
 | 
      
         | 1347 |  |  | _ACEOF
 | 
      
         | 1348 |  |  | fi
 | 
      
         | 1349 |  |  |  
 | 
      
         | 1350 |  |  | if test -n "$ac_init_help"; then
 | 
      
         | 1351 |  |  |  
 | 
      
         | 1352 |  |  |   cat <<\_ACEOF
 | 
      
         | 1353 |  |  |  
 | 
      
         | 1354 |  |  | Optional Features:
 | 
      
         | 1355 |  |  |   --disable-option-checking  ignore unrecognized --enable/--with options
 | 
      
         | 1356 |  |  |   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
 | 
      
         | 1357 |  |  |   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
 | 
      
         | 1358 |  |  |   --enable-maintainer-mode              Enable developer functionality.
 | 
      
         | 1359 |  |  |   --enable-sim-bswap                    Use Host specific BSWAP instruction.
 | 
      
         | 1360 |  |  |   --enable-sim-cflags=opts              Extra CFLAGS for use in building simulator
 | 
      
         | 1361 |  |  |   --enable-sim-debug=opts               Enable debugging flags
 | 
      
         | 1362 |  |  |   --enable-sim-stdio                    Specify whether to use stdio for console input/output.
 | 
      
         | 1363 |  |  |   --enable-sim-trace=opts               Enable tracing flags
 | 
      
         | 1364 |  |  |   --enable-sim-profile=opts             Enable profiling flags
 | 
      
         | 1365 |  |  |   --enable-sim-endian=endian            Specify target byte endian orientation.
 | 
      
         | 1366 |  |  |   --enable-sim-alignment=align          Specify strict,  nonstrict or forced alignment of memory accesses.
 | 
      
         | 1367 |  |  |   --enable-sim-hostendian=end           Specify host byte endian orientation.
 | 
      
         | 1368 |  |  |   --enable-sim-scache=size              Specify simulator execution cache size.
 | 
      
         | 1369 |  |  |   --enable-sim-default-model=model      Specify default model to simulate.
 | 
      
         | 1370 |  |  |   --enable-sim-environment=environment  Specify mixed, user, virtual or operating environment.
 | 
      
         | 1371 |  |  |   --enable-sim-inline=inlines           Specify which functions should be inlined.
 | 
      
         | 1372 |  |  |   --enable-cgen-maint=DIR    build cgen generated files
 | 
      
         | 1373 |  |  |  
 | 
      
         | 1374 |  |  | Optional Packages:
 | 
      
         | 1375 |  |  |   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
 | 
      
         | 1376 |  |  |   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
 | 
      
         | 1377 |  |  |   --with-zlib             include zlib support (auto/yes/no) default=auto
 | 
      
         | 1378 |  |  |   --with-pkgversion=PKG   Use PKG in the version string in place of "GDB"
 | 
      
         | 1379 |  |  |   --with-bugurl=URL       Direct users to URL to report a bug
 | 
      
         | 1380 |  |  |  
 | 
      
         | 1381 |  |  | Some influential environment variables:
 | 
      
         | 1382 |  |  |   CC          C compiler command
 | 
      
         | 1383 |  |  |   CFLAGS      C compiler flags
 | 
      
         | 1384 |  |  |   LDFLAGS     linker flags, e.g. -L if you have libraries in a
 | 
      
         | 1385 |  |  |               nonstandard directory 
 | 
      
         | 1386 |  |  |   LIBS        libraries to pass to the linker, e.g. -l
 | 
      
         | 1387 |  |  |   CPPFLAGS    C/C++/Objective C preprocessor flags, e.g. -I if
 | 
      
         | 1388 |  |  |               you have headers in a nonstandard directory 
 | 
      
         | 1389 |  |  |   CPP         C preprocessor
 | 
      
         | 1390 |  |  |  
 | 
      
         | 1391 |  |  | Use these variables to override the choices made by `configure' or to help
 | 
      
         | 1392 |  |  | it to find libraries and programs with nonstandard names/locations.
 | 
      
         | 1393 |  |  |  
 | 
      
         | 1394 |  |  | Report bugs to the package provider.
 | 
      
         | 1395 |  |  | _ACEOF
 | 
      
         | 1396 |  |  | ac_status=$?
 | 
      
         | 1397 |  |  | fi
 | 
      
         | 1398 |  |  |  
 | 
      
         | 1399 |  |  | if test "$ac_init_help" = "recursive"; then
 | 
      
         | 1400 |  |  |   # If there are subdirs, report their specific --help.
 | 
      
         | 1401 |  |  |   for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
 | 
      
         | 1402 |  |  |     test -d "$ac_dir" ||
 | 
      
         | 1403 |  |  |       { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
 | 
      
         | 1404 |  |  |       continue
 | 
      
         | 1405 |  |  |     ac_builddir=.
 | 
      
         | 1406 |  |  |  
 | 
      
         | 1407 |  |  | case "$ac_dir" in
 | 
      
         | 1408 |  |  | .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
 | 
      
         | 1409 |  |  | *)
 | 
      
         | 1410 |  |  |   ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
 | 
      
         | 1411 |  |  |   # A ".." for each directory in $ac_dir_suffix.
 | 
      
         | 1412 |  |  |   ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
 | 
      
         | 1413 |  |  |   case $ac_top_builddir_sub in
 | 
      
         | 1414 |  |  |   "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
 | 
      
         | 1415 |  |  |   *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
 | 
      
         | 1416 |  |  |   esac ;;
 | 
      
         | 1417 |  |  | esac
 | 
      
         | 1418 |  |  | ac_abs_top_builddir=$ac_pwd
 | 
      
         | 1419 |  |  | ac_abs_builddir=$ac_pwd$ac_dir_suffix
 | 
      
         | 1420 |  |  | # for backward compatibility:
 | 
      
         | 1421 |  |  | ac_top_builddir=$ac_top_build_prefix
 | 
      
         | 1422 |  |  |  
 | 
      
         | 1423 |  |  | case $srcdir in
 | 
      
         | 1424 |  |  |   .)  # We are building in place.
 | 
      
         | 1425 |  |  |     ac_srcdir=.
 | 
      
         | 1426 |  |  |     ac_top_srcdir=$ac_top_builddir_sub
 | 
      
         | 1427 |  |  |     ac_abs_top_srcdir=$ac_pwd ;;
 | 
      
         | 1428 |  |  |   [\\/]* | ?:[\\/]* )  # Absolute name.
 | 
      
         | 1429 |  |  |     ac_srcdir=$srcdir$ac_dir_suffix;
 | 
      
         | 1430 |  |  |     ac_top_srcdir=$srcdir
 | 
      
         | 1431 |  |  |     ac_abs_top_srcdir=$srcdir ;;
 | 
      
         | 1432 |  |  |   *) # Relative name.
 | 
      
         | 1433 |  |  |     ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
 | 
      
         | 1434 |  |  |     ac_top_srcdir=$ac_top_build_prefix$srcdir
 | 
      
         | 1435 |  |  |     ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
 | 
      
         | 1436 |  |  | esac
 | 
      
         | 1437 |  |  | ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
 | 
      
         | 1438 |  |  |  
 | 
      
         | 1439 |  |  |     cd "$ac_dir" || { ac_status=$?; continue; }
 | 
      
         | 1440 |  |  |     # Check for guested configure.
 | 
      
         | 1441 |  |  |     if test -f "$ac_srcdir/configure.gnu"; then
 | 
      
         | 1442 |  |  |       echo &&
 | 
      
         | 1443 |  |  |       $SHELL "$ac_srcdir/configure.gnu" --help=recursive
 | 
      
         | 1444 |  |  |     elif test -f "$ac_srcdir/configure"; then
 | 
      
         | 1445 |  |  |       echo &&
 | 
      
         | 1446 |  |  |       $SHELL "$ac_srcdir/configure" --help=recursive
 | 
      
         | 1447 |  |  |     else
 | 
      
         | 1448 |  |  |       $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
 | 
      
         | 1449 |  |  |     fi || ac_status=$?
 | 
      
         | 1450 |  |  |     cd "$ac_pwd" || { ac_status=$?; break; }
 | 
      
         | 1451 |  |  |   done
 | 
      
         | 1452 |  |  | fi
 | 
      
         | 1453 |  |  |  
 | 
      
         | 1454 |  |  | test -n "$ac_init_help" && exit $ac_status
 | 
      
         | 1455 |  |  | if $ac_init_version; then
 | 
      
         | 1456 |  |  |   cat <<\_ACEOF
 | 
      
         | 1457 |  |  | configure
 | 
      
         | 1458 |  |  | generated by GNU Autoconf 2.64
 | 
      
         | 1459 |  |  |  
 | 
      
         | 1460 |  |  | Copyright (C) 2009 Free Software Foundation, Inc.
 | 
      
         | 1461 |  |  | This configure script is free software; the Free Software Foundation
 | 
      
         | 1462 |  |  | gives unlimited permission to copy, distribute and modify it.
 | 
      
         | 1463 |  |  | _ACEOF
 | 
      
         | 1464 |  |  |   exit
 | 
      
         | 1465 |  |  | fi
 | 
      
         | 1466 |  |  |  
 | 
      
         | 1467 |  |  | ## ------------------------ ##
 | 
      
         | 1468 |  |  | ## Autoconf initialization. ##
 | 
      
         | 1469 |  |  | ## ------------------------ ##
 | 
      
         | 1470 |  |  |  
 | 
      
         | 1471 |  |  | # ac_fn_c_try_compile LINENO
 | 
      
         | 1472 |  |  | # --------------------------
 | 
      
         | 1473 |  |  | # Try to compile conftest.$ac_ext, and return whether this succeeded.
 | 
      
         | 1474 |  |  | ac_fn_c_try_compile ()
 | 
      
         | 1475 |  |  | {
 | 
      
         | 1476 |  |  |   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 | 
      
         | 1477 |  |  |   rm -f conftest.$ac_objext
 | 
      
         | 1478 |  |  |   if { { ac_try="$ac_compile"
 | 
      
         | 1479 |  |  | case "(($ac_try" in
 | 
      
         | 1480 |  |  |   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 | 
      
         | 1481 |  |  |   *) ac_try_echo=$ac_try;;
 | 
      
         | 1482 |  |  | esac
 | 
      
         | 1483 |  |  | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 | 
      
         | 1484 |  |  | $as_echo "$ac_try_echo"; } >&5
 | 
      
         | 1485 |  |  |   (eval "$ac_compile") 2>conftest.err
 | 
      
         | 1486 |  |  |   ac_status=$?
 | 
      
         | 1487 |  |  |   if test -s conftest.err; then
 | 
      
         | 1488 |  |  |     grep -v '^ *+' conftest.err >conftest.er1
 | 
      
         | 1489 |  |  |     cat conftest.er1 >&5
 | 
      
         | 1490 |  |  |     mv -f conftest.er1 conftest.err
 | 
      
         | 1491 |  |  |   fi
 | 
      
         | 1492 |  |  |   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 | 
      
         | 1493 |  |  |   test $ac_status = 0; } && {
 | 
      
         | 1494 |  |  |          test -z "$ac_c_werror_flag" ||
 | 
      
         | 1495 |  |  |          test ! -s conftest.err
 | 
      
         | 1496 |  |  |        } && test -s conftest.$ac_objext; then :
 | 
      
         | 1497 |  |  |   ac_retval=0
 | 
      
         | 1498 |  |  | else
 | 
      
         | 1499 |  |  |   $as_echo "$as_me: failed program was:" >&5
 | 
      
         | 1500 |  |  | sed 's/^/| /' conftest.$ac_ext >&5
 | 
      
         | 1501 |  |  |  
 | 
      
         | 1502 |  |  |         ac_retval=1
 | 
      
         | 1503 |  |  | fi
 | 
      
         | 1504 |  |  |   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
 | 
      
         | 1505 |  |  |   return $ac_retval
 | 
      
         | 1506 |  |  |  
 | 
      
         | 1507 |  |  | } # ac_fn_c_try_compile
 | 
      
         | 1508 |  |  |  
 | 
      
         | 1509 |  |  | # ac_fn_c_try_cpp LINENO
 | 
      
         | 1510 |  |  | # ----------------------
 | 
      
         | 1511 |  |  | # Try to preprocess conftest.$ac_ext, and return whether this succeeded.
 | 
      
         | 1512 |  |  | ac_fn_c_try_cpp ()
 | 
      
         | 1513 |  |  | {
 | 
      
         | 1514 |  |  |   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 | 
      
         | 1515 |  |  |   if { { ac_try="$ac_cpp conftest.$ac_ext"
 | 
      
         | 1516 |  |  | case "(($ac_try" in
 | 
      
         | 1517 |  |  |   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 | 
      
         | 1518 |  |  |   *) ac_try_echo=$ac_try;;
 | 
      
         | 1519 |  |  | esac
 | 
      
         | 1520 |  |  | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 | 
      
         | 1521 |  |  | $as_echo "$ac_try_echo"; } >&5
 | 
      
         | 1522 |  |  |   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
 | 
      
         | 1523 |  |  |   ac_status=$?
 | 
      
         | 1524 |  |  |   if test -s conftest.err; then
 | 
      
         | 1525 |  |  |     grep -v '^ *+' conftest.err >conftest.er1
 | 
      
         | 1526 |  |  |     cat conftest.er1 >&5
 | 
      
         | 1527 |  |  |     mv -f conftest.er1 conftest.err
 | 
      
         | 1528 |  |  |   fi
 | 
      
         | 1529 |  |  |   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 | 
      
         | 1530 |  |  |   test $ac_status = 0; } >/dev/null && {
 | 
      
         | 1531 |  |  |          test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 | 
      
         | 1532 |  |  |          test ! -s conftest.err
 | 
      
         | 1533 |  |  |        }; then :
 | 
      
         | 1534 |  |  |   ac_retval=0
 | 
      
         | 1535 |  |  | else
 | 
      
         | 1536 |  |  |   $as_echo "$as_me: failed program was:" >&5
 | 
      
         | 1537 |  |  | sed 's/^/| /' conftest.$ac_ext >&5
 | 
      
         | 1538 |  |  |  
 | 
      
         | 1539 |  |  |     ac_retval=1
 | 
      
         | 1540 |  |  | fi
 | 
      
         | 1541 |  |  |   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
 | 
      
         | 1542 |  |  |   return $ac_retval
 | 
      
         | 1543 |  |  |  
 | 
      
         | 1544 |  |  | } # ac_fn_c_try_cpp
 | 
      
         | 1545 |  |  |  
 | 
      
         | 1546 |  |  | # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES
 | 
      
         | 1547 |  |  | # -------------------------------------------------------
 | 
      
         | 1548 |  |  | # Tests whether HEADER exists, giving a warning if it cannot be compiled using
 | 
      
         | 1549 |  |  | # the include files in INCLUDES and setting the cache variable VAR
 | 
      
         | 1550 |  |  | # accordingly.
 | 
      
         | 1551 |  |  | ac_fn_c_check_header_mongrel ()
 | 
      
         | 1552 |  |  | {
 | 
      
         | 1553 |  |  |   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 | 
      
         | 1554 |  |  |   if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
 | 
      
         | 1555 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 | 
      
         | 1556 |  |  | $as_echo_n "checking for $2... " >&6; }
 | 
      
         | 1557 |  |  | if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
 | 
      
         | 1558 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 1559 |  |  | fi
 | 
      
         | 1560 |  |  | eval ac_res=\$$3
 | 
      
         | 1561 |  |  |                { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
 | 
      
         | 1562 |  |  | $as_echo "$ac_res" >&6; }
 | 
      
         | 1563 |  |  | else
 | 
      
         | 1564 |  |  |   # Is the header compilable?
 | 
      
         | 1565 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5
 | 
      
         | 1566 |  |  | $as_echo_n "checking $2 usability... " >&6; }
 | 
      
         | 1567 |  |  | cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 1568 |  |  | /* end confdefs.h.  */
 | 
      
         | 1569 |  |  | $4
 | 
      
         | 1570 |  |  | #include <$2>
 | 
      
         | 1571 |  |  | _ACEOF
 | 
      
         | 1572 |  |  | if ac_fn_c_try_compile "$LINENO"; then :
 | 
      
         | 1573 |  |  |   ac_header_compiler=yes
 | 
      
         | 1574 |  |  | else
 | 
      
         | 1575 |  |  |   ac_header_compiler=no
 | 
      
         | 1576 |  |  | fi
 | 
      
         | 1577 |  |  | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 | 
      
         | 1578 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5
 | 
      
         | 1579 |  |  | $as_echo "$ac_header_compiler" >&6; }
 | 
      
         | 1580 |  |  |  
 | 
      
         | 1581 |  |  | # Is the header present?
 | 
      
         | 1582 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5
 | 
      
         | 1583 |  |  | $as_echo_n "checking $2 presence... " >&6; }
 | 
      
         | 1584 |  |  | cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 1585 |  |  | /* end confdefs.h.  */
 | 
      
         | 1586 |  |  | #include <$2>
 | 
      
         | 1587 |  |  | _ACEOF
 | 
      
         | 1588 |  |  | if ac_fn_c_try_cpp "$LINENO"; then :
 | 
      
         | 1589 |  |  |   ac_header_preproc=yes
 | 
      
         | 1590 |  |  | else
 | 
      
         | 1591 |  |  |   ac_header_preproc=no
 | 
      
         | 1592 |  |  | fi
 | 
      
         | 1593 |  |  | rm -f conftest.err conftest.$ac_ext
 | 
      
         | 1594 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
 | 
      
         | 1595 |  |  | $as_echo "$ac_header_preproc" >&6; }
 | 
      
         | 1596 |  |  |  
 | 
      
         | 1597 |  |  | # So?  What about this header?
 | 
      
         | 1598 |  |  | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #((
 | 
      
         | 1599 |  |  |   yes:no: )
 | 
      
         | 1600 |  |  |     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
 | 
      
         | 1601 |  |  | $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
 | 
      
         | 1602 |  |  |     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
 | 
      
         | 1603 |  |  | $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
 | 
      
         | 1604 |  |  |     ;;
 | 
      
         | 1605 |  |  |   no:yes:* )
 | 
      
         | 1606 |  |  |     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
 | 
      
         | 1607 |  |  | $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
 | 
      
         | 1608 |  |  |     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2:     check for missing prerequisite headers?" >&5
 | 
      
         | 1609 |  |  | $as_echo "$as_me: WARNING: $2:     check for missing prerequisite headers?" >&2;}
 | 
      
         | 1610 |  |  |     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
 | 
      
         | 1611 |  |  | $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
 | 
      
         | 1612 |  |  |     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2:     section \"Present But Cannot Be Compiled\"" >&5
 | 
      
         | 1613 |  |  | $as_echo "$as_me: WARNING: $2:     section \"Present But Cannot Be Compiled\"" >&2;}
 | 
      
         | 1614 |  |  |     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
 | 
      
         | 1615 |  |  | $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
 | 
      
         | 1616 |  |  |     ;;
 | 
      
         | 1617 |  |  | esac
 | 
      
         | 1618 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 | 
      
         | 1619 |  |  | $as_echo_n "checking for $2... " >&6; }
 | 
      
         | 1620 |  |  | if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
 | 
      
         | 1621 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 1622 |  |  | else
 | 
      
         | 1623 |  |  |   eval "$3=\$ac_header_compiler"
 | 
      
         | 1624 |  |  | fi
 | 
      
         | 1625 |  |  | eval ac_res=\$$3
 | 
      
         | 1626 |  |  |                { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
 | 
      
         | 1627 |  |  | $as_echo "$ac_res" >&6; }
 | 
      
         | 1628 |  |  | fi
 | 
      
         | 1629 |  |  |   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
 | 
      
         | 1630 |  |  |  
 | 
      
         | 1631 |  |  | } # ac_fn_c_check_header_mongrel
 | 
      
         | 1632 |  |  |  
 | 
      
         | 1633 |  |  | # ac_fn_c_try_run LINENO
 | 
      
         | 1634 |  |  | # ----------------------
 | 
      
         | 1635 |  |  | # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes
 | 
      
         | 1636 |  |  | # that executables *can* be run.
 | 
      
         | 1637 |  |  | ac_fn_c_try_run ()
 | 
      
         | 1638 |  |  | {
 | 
      
         | 1639 |  |  |   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 | 
      
         | 1640 |  |  |   if { { ac_try="$ac_link"
 | 
      
         | 1641 |  |  | case "(($ac_try" in
 | 
      
         | 1642 |  |  |   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 | 
      
         | 1643 |  |  |   *) ac_try_echo=$ac_try;;
 | 
      
         | 1644 |  |  | esac
 | 
      
         | 1645 |  |  | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 | 
      
         | 1646 |  |  | $as_echo "$ac_try_echo"; } >&5
 | 
      
         | 1647 |  |  |   (eval "$ac_link") 2>&5
 | 
      
         | 1648 |  |  |   ac_status=$?
 | 
      
         | 1649 |  |  |   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 | 
      
         | 1650 |  |  |   test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'
 | 
      
         | 1651 |  |  |   { { case "(($ac_try" in
 | 
      
         | 1652 |  |  |   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 | 
      
         | 1653 |  |  |   *) ac_try_echo=$ac_try;;
 | 
      
         | 1654 |  |  | esac
 | 
      
         | 1655 |  |  | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 | 
      
         | 1656 |  |  | $as_echo "$ac_try_echo"; } >&5
 | 
      
         | 1657 |  |  |   (eval "$ac_try") 2>&5
 | 
      
         | 1658 |  |  |   ac_status=$?
 | 
      
         | 1659 |  |  |   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 | 
      
         | 1660 |  |  |   test $ac_status = 0; }; }; then :
 | 
      
         | 1661 |  |  |   ac_retval=0
 | 
      
         | 1662 |  |  | else
 | 
      
         | 1663 |  |  |   $as_echo "$as_me: program exited with status $ac_status" >&5
 | 
      
         | 1664 |  |  |        $as_echo "$as_me: failed program was:" >&5
 | 
      
         | 1665 |  |  | sed 's/^/| /' conftest.$ac_ext >&5
 | 
      
         | 1666 |  |  |  
 | 
      
         | 1667 |  |  |        ac_retval=$ac_status
 | 
      
         | 1668 |  |  | fi
 | 
      
         | 1669 |  |  |   rm -rf conftest.dSYM conftest_ipa8_conftest.oo
 | 
      
         | 1670 |  |  |   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
 | 
      
         | 1671 |  |  |   return $ac_retval
 | 
      
         | 1672 |  |  |  
 | 
      
         | 1673 |  |  | } # ac_fn_c_try_run
 | 
      
         | 1674 |  |  |  
 | 
      
         | 1675 |  |  | # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES
 | 
      
         | 1676 |  |  | # -------------------------------------------------------
 | 
      
         | 1677 |  |  | # Tests whether HEADER exists and can be compiled using the include files in
 | 
      
         | 1678 |  |  | # INCLUDES, setting the cache variable VAR accordingly.
 | 
      
         | 1679 |  |  | ac_fn_c_check_header_compile ()
 | 
      
         | 1680 |  |  | {
 | 
      
         | 1681 |  |  |   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 | 
      
         | 1682 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 | 
      
         | 1683 |  |  | $as_echo_n "checking for $2... " >&6; }
 | 
      
         | 1684 |  |  | if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
 | 
      
         | 1685 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 1686 |  |  | else
 | 
      
         | 1687 |  |  |   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 1688 |  |  | /* end confdefs.h.  */
 | 
      
         | 1689 |  |  | $4
 | 
      
         | 1690 |  |  | #include <$2>
 | 
      
         | 1691 |  |  | _ACEOF
 | 
      
         | 1692 |  |  | if ac_fn_c_try_compile "$LINENO"; then :
 | 
      
         | 1693 |  |  |   eval "$3=yes"
 | 
      
         | 1694 |  |  | else
 | 
      
         | 1695 |  |  |   eval "$3=no"
 | 
      
         | 1696 |  |  | fi
 | 
      
         | 1697 |  |  | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 | 
      
         | 1698 |  |  | fi
 | 
      
         | 1699 |  |  | eval ac_res=\$$3
 | 
      
         | 1700 |  |  |                { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
 | 
      
         | 1701 |  |  | $as_echo "$ac_res" >&6; }
 | 
      
         | 1702 |  |  |   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
 | 
      
         | 1703 |  |  |  
 | 
      
         | 1704 |  |  | } # ac_fn_c_check_header_compile
 | 
      
         | 1705 |  |  |  
 | 
      
         | 1706 |  |  | # ac_fn_c_try_link LINENO
 | 
      
         | 1707 |  |  | # -----------------------
 | 
      
         | 1708 |  |  | # Try to link conftest.$ac_ext, and return whether this succeeded.
 | 
      
         | 1709 |  |  | ac_fn_c_try_link ()
 | 
      
         | 1710 |  |  | {
 | 
      
         | 1711 |  |  |   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 | 
      
         | 1712 |  |  |   rm -f conftest.$ac_objext conftest$ac_exeext
 | 
      
         | 1713 |  |  |   if { { ac_try="$ac_link"
 | 
      
         | 1714 |  |  | case "(($ac_try" in
 | 
      
         | 1715 |  |  |   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 | 
      
         | 1716 |  |  |   *) ac_try_echo=$ac_try;;
 | 
      
         | 1717 |  |  | esac
 | 
      
         | 1718 |  |  | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 | 
      
         | 1719 |  |  | $as_echo "$ac_try_echo"; } >&5
 | 
      
         | 1720 |  |  |   (eval "$ac_link") 2>conftest.err
 | 
      
         | 1721 |  |  |   ac_status=$?
 | 
      
         | 1722 |  |  |   if test -s conftest.err; then
 | 
      
         | 1723 |  |  |     grep -v '^ *+' conftest.err >conftest.er1
 | 
      
         | 1724 |  |  |     cat conftest.er1 >&5
 | 
      
         | 1725 |  |  |     mv -f conftest.er1 conftest.err
 | 
      
         | 1726 |  |  |   fi
 | 
      
         | 1727 |  |  |   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 | 
      
         | 1728 |  |  |   test $ac_status = 0; } && {
 | 
      
         | 1729 |  |  |          test -z "$ac_c_werror_flag" ||
 | 
      
         | 1730 |  |  |          test ! -s conftest.err
 | 
      
         | 1731 |  |  |        } && test -s conftest$ac_exeext && {
 | 
      
         | 1732 |  |  |          test "$cross_compiling" = yes ||
 | 
      
         | 1733 |  |  |          $as_test_x conftest$ac_exeext
 | 
      
         | 1734 |  |  |        }; then :
 | 
      
         | 1735 |  |  |   ac_retval=0
 | 
      
         | 1736 |  |  | else
 | 
      
         | 1737 |  |  |   $as_echo "$as_me: failed program was:" >&5
 | 
      
         | 1738 |  |  | sed 's/^/| /' conftest.$ac_ext >&5
 | 
      
         | 1739 |  |  |  
 | 
      
         | 1740 |  |  |         ac_retval=1
 | 
      
         | 1741 |  |  | fi
 | 
      
         | 1742 |  |  |   # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
 | 
      
         | 1743 |  |  |   # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
 | 
      
         | 1744 |  |  |   # interfere with the next link command; also delete a directory that is
 | 
      
         | 1745 |  |  |   # left behind by Apple's compiler.  We do this before executing the actions.
 | 
      
         | 1746 |  |  |   rm -rf conftest.dSYM conftest_ipa8_conftest.oo
 | 
      
         | 1747 |  |  |   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
 | 
      
         | 1748 |  |  |   return $ac_retval
 | 
      
         | 1749 |  |  |  
 | 
      
         | 1750 |  |  | } # ac_fn_c_try_link
 | 
      
         | 1751 |  |  |  
 | 
      
         | 1752 |  |  | # ac_fn_c_check_func LINENO FUNC VAR
 | 
      
         | 1753 |  |  | # ----------------------------------
 | 
      
         | 1754 |  |  | # Tests whether FUNC exists, setting the cache variable VAR accordingly
 | 
      
         | 1755 |  |  | ac_fn_c_check_func ()
 | 
      
         | 1756 |  |  | {
 | 
      
         | 1757 |  |  |   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 | 
      
         | 1758 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 | 
      
         | 1759 |  |  | $as_echo_n "checking for $2... " >&6; }
 | 
      
         | 1760 |  |  | if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
 | 
      
         | 1761 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 1762 |  |  | else
 | 
      
         | 1763 |  |  |   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 1764 |  |  | /* end confdefs.h.  */
 | 
      
         | 1765 |  |  | /* Define $2 to an innocuous variant, in case  declares $2.
 | 
      
         | 1766 |  |  |    For example, HP-UX 11i  declares gettimeofday.  */
 | 
      
         | 1767 |  |  | #define $2 innocuous_$2
 | 
      
         | 1768 |  |  |  
 | 
      
         | 1769 |  |  | /* System header to define __stub macros and hopefully few prototypes,
 | 
      
         | 1770 |  |  |     which can conflict with char $2 (); below.
 | 
      
         | 1771 |  |  |     Prefer  to  if __STDC__ is defined, since
 | 
      
         | 1772 |  |  |      exists even on freestanding compilers.  */
 | 
      
         | 1773 |  |  |  
 | 
      
         | 1774 |  |  | #ifdef __STDC__
 | 
      
         | 1775 |  |  | # include 
 | 
      
         | 1776 |  |  | #else
 | 
      
         | 1777 |  |  | # include 
 | 
      
         | 1778 |  |  | #endif
 | 
      
         | 1779 |  |  |  
 | 
      
         | 1780 |  |  | #undef $2
 | 
      
         | 1781 |  |  |  
 | 
      
         | 1782 |  |  | /* Override any GCC internal prototype to avoid an error.
 | 
      
         | 1783 |  |  |    Use char because int might match the return type of a GCC
 | 
      
         | 1784 |  |  |    builtin and then its argument prototype would still apply.  */
 | 
      
         | 1785 |  |  | #ifdef __cplusplus
 | 
      
         | 1786 |  |  | extern "C"
 | 
      
         | 1787 |  |  | #endif
 | 
      
         | 1788 |  |  | char $2 ();
 | 
      
         | 1789 |  |  | /* The GNU C library defines this for functions which it implements
 | 
      
         | 1790 |  |  |     to always fail with ENOSYS.  Some functions are actually named
 | 
      
         | 1791 |  |  |     something starting with __ and the normal name is an alias.  */
 | 
      
         | 1792 |  |  | #if defined __stub_$2 || defined __stub___$2
 | 
      
         | 1793 |  |  | choke me
 | 
      
         | 1794 |  |  | #endif
 | 
      
         | 1795 |  |  |  
 | 
      
         | 1796 |  |  | int
 | 
      
         | 1797 |  |  | main ()
 | 
      
         | 1798 |  |  | {
 | 
      
         | 1799 |  |  | return $2 ();
 | 
      
         | 1800 |  |  |   ;
 | 
      
         | 1801 |  |  |   return 0;
 | 
      
         | 1802 |  |  | }
 | 
      
         | 1803 |  |  | _ACEOF
 | 
      
         | 1804 |  |  | if ac_fn_c_try_link "$LINENO"; then :
 | 
      
         | 1805 |  |  |   eval "$3=yes"
 | 
      
         | 1806 |  |  | else
 | 
      
         | 1807 |  |  |   eval "$3=no"
 | 
      
         | 1808 |  |  | fi
 | 
      
         | 1809 |  |  | rm -f core conftest.err conftest.$ac_objext \
 | 
      
         | 1810 |  |  |     conftest$ac_exeext conftest.$ac_ext
 | 
      
         | 1811 |  |  | fi
 | 
      
         | 1812 |  |  | eval ac_res=\$$3
 | 
      
         | 1813 |  |  |                { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
 | 
      
         | 1814 |  |  | $as_echo "$ac_res" >&6; }
 | 
      
         | 1815 |  |  |   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
 | 
      
         | 1816 |  |  |  
 | 
      
         | 1817 |  |  | } # ac_fn_c_check_func
 | 
      
         | 1818 |  |  | cat >config.log <<_ACEOF
 | 
      
         | 1819 |  |  | This file contains any messages produced by compilers while
 | 
      
         | 1820 |  |  | running configure, to aid debugging if configure makes a mistake.
 | 
      
         | 1821 |  |  |  
 | 
      
         | 1822 |  |  | It was created by $as_me, which was
 | 
      
         | 1823 |  |  | generated by GNU Autoconf 2.64.  Invocation command line was
 | 
      
         | 1824 |  |  |  
 | 
      
         | 1825 |  |  |   $ $0 $@
 | 
      
         | 1826 |  |  |  
 | 
      
         | 1827 |  |  | _ACEOF
 | 
      
         | 1828 |  |  | exec 5>>config.log
 | 
      
         | 1829 |  |  | {
 | 
      
         | 1830 |  |  | cat <<_ASUNAME
 | 
      
         | 1831 |  |  | ## --------- ##
 | 
      
         | 1832 |  |  | ## Platform. ##
 | 
      
         | 1833 |  |  | ## --------- ##
 | 
      
         | 1834 |  |  |  
 | 
      
         | 1835 |  |  | hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
 | 
      
         | 1836 |  |  | uname -m = `(uname -m) 2>/dev/null || echo unknown`
 | 
      
         | 1837 |  |  | uname -r = `(uname -r) 2>/dev/null || echo unknown`
 | 
      
         | 1838 |  |  | uname -s = `(uname -s) 2>/dev/null || echo unknown`
 | 
      
         | 1839 |  |  | uname -v = `(uname -v) 2>/dev/null || echo unknown`
 | 
      
         | 1840 |  |  |  
 | 
      
         | 1841 |  |  | /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
 | 
      
         | 1842 |  |  | /bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
 | 
      
         | 1843 |  |  |  
 | 
      
         | 1844 |  |  | /bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
 | 
      
         | 1845 |  |  | /usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
 | 
      
         | 1846 |  |  | /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
 | 
      
         | 1847 |  |  | /usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
 | 
      
         | 1848 |  |  | /bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
 | 
      
         | 1849 |  |  | /usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
 | 
      
         | 1850 |  |  | /bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
 | 
      
         | 1851 |  |  |  
 | 
      
         | 1852 |  |  | _ASUNAME
 | 
      
         | 1853 |  |  |  
 | 
      
         | 1854 |  |  | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 | 
      
         | 1855 |  |  | for as_dir in $PATH
 | 
      
         | 1856 |  |  | do
 | 
      
         | 1857 |  |  |   IFS=$as_save_IFS
 | 
      
         | 1858 |  |  |   test -z "$as_dir" && as_dir=.
 | 
      
         | 1859 |  |  |     $as_echo "PATH: $as_dir"
 | 
      
         | 1860 |  |  |   done
 | 
      
         | 1861 |  |  | IFS=$as_save_IFS
 | 
      
         | 1862 |  |  |  
 | 
      
         | 1863 |  |  | } >&5
 | 
      
         | 1864 |  |  |  
 | 
      
         | 1865 |  |  | cat >&5 <<_ACEOF
 | 
      
         | 1866 |  |  |  
 | 
      
         | 1867 |  |  |  
 | 
      
         | 1868 |  |  | ## ----------- ##
 | 
      
         | 1869 |  |  | ## Core tests. ##
 | 
      
         | 1870 |  |  | ## ----------- ##
 | 
      
         | 1871 |  |  |  
 | 
      
         | 1872 |  |  | _ACEOF
 | 
      
         | 1873 |  |  |  
 | 
      
         | 1874 |  |  |  
 | 
      
         | 1875 |  |  | # Keep a trace of the command line.
 | 
      
         | 1876 |  |  | # Strip out --no-create and --no-recursion so they do not pile up.
 | 
      
         | 1877 |  |  | # Strip out --silent because we don't want to record it for future runs.
 | 
      
         | 1878 |  |  | # Also quote any args containing shell meta-characters.
 | 
      
         | 1879 |  |  | # Make two passes to allow for proper duplicate-argument suppression.
 | 
      
         | 1880 |  |  | ac_configure_args=
 | 
      
         | 1881 |  |  | ac_configure_args0=
 | 
      
         | 1882 |  |  | ac_configure_args1=
 | 
      
         | 1883 |  |  | ac_must_keep_next=false
 | 
      
         | 1884 |  |  | for ac_pass in 1 2
 | 
      
         | 1885 |  |  | do
 | 
      
         | 1886 |  |  |   for ac_arg
 | 
      
         | 1887 |  |  |   do
 | 
      
         | 1888 |  |  |     case $ac_arg in
 | 
      
         | 1889 |  |  |     -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
 | 
      
         | 1890 |  |  |     -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 | 
      
         | 1891 |  |  |     | -silent | --silent | --silen | --sile | --sil)
 | 
      
         | 1892 |  |  |       continue ;;
 | 
      
         | 1893 |  |  |     *\'*)
 | 
      
         | 1894 |  |  |       ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
 | 
      
         | 1895 |  |  |     esac
 | 
      
         | 1896 |  |  |     case $ac_pass in
 | 
      
         | 1897 |  |  |     1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
 | 
      
         | 1898 |  |  |     2)
 | 
      
         | 1899 |  |  |       as_fn_append ac_configure_args1 " '$ac_arg'"
 | 
      
         | 1900 |  |  |       if test $ac_must_keep_next = true; then
 | 
      
         | 1901 |  |  |         ac_must_keep_next=false # Got value, back to normal.
 | 
      
         | 1902 |  |  |       else
 | 
      
         | 1903 |  |  |         case $ac_arg in
 | 
      
         | 1904 |  |  |           *=* | --config-cache | -C | -disable-* | --disable-* \
 | 
      
         | 1905 |  |  |           | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
 | 
      
         | 1906 |  |  |           | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
 | 
      
         | 1907 |  |  |           | -with-* | --with-* | -without-* | --without-* | --x)
 | 
      
         | 1908 |  |  |             case "$ac_configure_args0 " in
 | 
      
         | 1909 |  |  |               "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
 | 
      
         | 1910 |  |  |             esac
 | 
      
         | 1911 |  |  |             ;;
 | 
      
         | 1912 |  |  |           -* ) ac_must_keep_next=true ;;
 | 
      
         | 1913 |  |  |         esac
 | 
      
         | 1914 |  |  |       fi
 | 
      
         | 1915 |  |  |       as_fn_append ac_configure_args " '$ac_arg'"
 | 
      
         | 1916 |  |  |       ;;
 | 
      
         | 1917 |  |  |     esac
 | 
      
         | 1918 |  |  |   done
 | 
      
         | 1919 |  |  | done
 | 
      
         | 1920 |  |  | { ac_configure_args0=; unset ac_configure_args0;}
 | 
      
         | 1921 |  |  | { ac_configure_args1=; unset ac_configure_args1;}
 | 
      
         | 1922 |  |  |  
 | 
      
         | 1923 |  |  | # When interrupted or exit'd, cleanup temporary files, and complete
 | 
      
         | 1924 |  |  | # config.log.  We remove comments because anyway the quotes in there
 | 
      
         | 1925 |  |  | # would cause problems or look ugly.
 | 
      
         | 1926 |  |  | # WARNING: Use '\'' to represent an apostrophe within the trap.
 | 
      
         | 1927 |  |  | # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
 | 
      
         | 1928 |  |  | trap 'exit_status=$?
 | 
      
         | 1929 |  |  |   # Save into config.log some information that might help in debugging.
 | 
      
         | 1930 |  |  |   {
 | 
      
         | 1931 |  |  |     echo
 | 
      
         | 1932 |  |  |  
 | 
      
         | 1933 |  |  |     cat <<\_ASBOX
 | 
      
         | 1934 |  |  | ## ---------------- ##
 | 
      
         | 1935 |  |  | ## Cache variables. ##
 | 
      
         | 1936 |  |  | ## ---------------- ##
 | 
      
         | 1937 |  |  | _ASBOX
 | 
      
         | 1938 |  |  |     echo
 | 
      
         | 1939 |  |  |     # The following way of writing the cache mishandles newlines in values,
 | 
      
         | 1940 |  |  | (
 | 
      
         | 1941 |  |  |   for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
 | 
      
         | 1942 |  |  |     eval ac_val=\$$ac_var
 | 
      
         | 1943 |  |  |     case $ac_val in #(
 | 
      
         | 1944 |  |  |     *${as_nl}*)
 | 
      
         | 1945 |  |  |       case $ac_var in #(
 | 
      
         | 1946 |  |  |       *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
 | 
      
         | 1947 |  |  | $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
 | 
      
         | 1948 |  |  |       esac
 | 
      
         | 1949 |  |  |       case $ac_var in #(
 | 
      
         | 1950 |  |  |       _ | IFS | as_nl) ;; #(
 | 
      
         | 1951 |  |  |       BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
 | 
      
         | 1952 |  |  |       *) { eval $ac_var=; unset $ac_var;} ;;
 | 
      
         | 1953 |  |  |       esac ;;
 | 
      
         | 1954 |  |  |     esac
 | 
      
         | 1955 |  |  |   done
 | 
      
         | 1956 |  |  |   (set) 2>&1 |
 | 
      
         | 1957 |  |  |     case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
 | 
      
         | 1958 |  |  |     *${as_nl}ac_space=\ *)
 | 
      
         | 1959 |  |  |       sed -n \
 | 
      
         | 1960 |  |  |         "s/'\''/'\''\\\\'\'''\''/g;
 | 
      
         | 1961 |  |  |           s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
 | 
      
         | 1962 |  |  |       ;; #(
 | 
      
         | 1963 |  |  |     *)
 | 
      
         | 1964 |  |  |       sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
 | 
      
         | 1965 |  |  |       ;;
 | 
      
         | 1966 |  |  |     esac |
 | 
      
         | 1967 |  |  |     sort
 | 
      
         | 1968 |  |  | )
 | 
      
         | 1969 |  |  |     echo
 | 
      
         | 1970 |  |  |  
 | 
      
         | 1971 |  |  |     cat <<\_ASBOX
 | 
      
         | 1972 |  |  | ## ----------------- ##
 | 
      
         | 1973 |  |  | ## Output variables. ##
 | 
      
         | 1974 |  |  | ## ----------------- ##
 | 
      
         | 1975 |  |  | _ASBOX
 | 
      
         | 1976 |  |  |     echo
 | 
      
         | 1977 |  |  |     for ac_var in $ac_subst_vars
 | 
      
         | 1978 |  |  |     do
 | 
      
         | 1979 |  |  |       eval ac_val=\$$ac_var
 | 
      
         | 1980 |  |  |       case $ac_val in
 | 
      
         | 1981 |  |  |       *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
 | 
      
         | 1982 |  |  |       esac
 | 
      
         | 1983 |  |  |       $as_echo "$ac_var='\''$ac_val'\''"
 | 
      
         | 1984 |  |  |     done | sort
 | 
      
         | 1985 |  |  |     echo
 | 
      
         | 1986 |  |  |  
 | 
      
         | 1987 |  |  |     if test -n "$ac_subst_files"; then
 | 
      
         | 1988 |  |  |       cat <<\_ASBOX
 | 
      
         | 1989 |  |  | ## ------------------- ##
 | 
      
         | 1990 |  |  | ## File substitutions. ##
 | 
      
         | 1991 |  |  | ## ------------------- ##
 | 
      
         | 1992 |  |  | _ASBOX
 | 
      
         | 1993 |  |  |       echo
 | 
      
         | 1994 |  |  |       for ac_var in $ac_subst_files
 | 
      
         | 1995 |  |  |       do
 | 
      
         | 1996 |  |  |         eval ac_val=\$$ac_var
 | 
      
         | 1997 |  |  |         case $ac_val in
 | 
      
         | 1998 |  |  |         *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
 | 
      
         | 1999 |  |  |         esac
 | 
      
         | 2000 |  |  |         $as_echo "$ac_var='\''$ac_val'\''"
 | 
      
         | 2001 |  |  |       done | sort
 | 
      
         | 2002 |  |  |       echo
 | 
      
         | 2003 |  |  |     fi
 | 
      
         | 2004 |  |  |  
 | 
      
         | 2005 |  |  |     if test -s confdefs.h; then
 | 
      
         | 2006 |  |  |       cat <<\_ASBOX
 | 
      
         | 2007 |  |  | ## ----------- ##
 | 
      
         | 2008 |  |  | ## confdefs.h. ##
 | 
      
         | 2009 |  |  | ## ----------- ##
 | 
      
         | 2010 |  |  | _ASBOX
 | 
      
         | 2011 |  |  |       echo
 | 
      
         | 2012 |  |  |       cat confdefs.h
 | 
      
         | 2013 |  |  |       echo
 | 
      
         | 2014 |  |  |     fi
 | 
      
         | 2015 |  |  |     test "$ac_signal" != 0 &&
 | 
      
         | 2016 |  |  |       $as_echo "$as_me: caught signal $ac_signal"
 | 
      
         | 2017 |  |  |     $as_echo "$as_me: exit $exit_status"
 | 
      
         | 2018 |  |  |   } >&5
 | 
      
         | 2019 |  |  |   rm -f core *.core core.conftest.* &&
 | 
      
         | 2020 |  |  |     rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
 | 
      
         | 2021 |  |  |     exit $exit_status
 | 
      
         | 2022 |  |  | ' 0
 | 
      
         | 2023 |  |  | for ac_signal in 1 2 13 15; do
 | 
      
         | 2024 |  |  |   trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
 | 
      
         | 2025 |  |  | done
 | 
      
         | 2026 |  |  | ac_signal=0
 | 
      
         | 2027 |  |  |  
 | 
      
         | 2028 |  |  | # confdefs.h avoids OS command line length limits that DEFS can exceed.
 | 
      
         | 2029 |  |  | rm -f -r conftest* confdefs.h
 | 
      
         | 2030 |  |  |  
 | 
      
         | 2031 |  |  | $as_echo "/* confdefs.h */" > confdefs.h
 | 
      
         | 2032 |  |  |  
 | 
      
         | 2033 |  |  | # Predefined preprocessor variables.
 | 
      
         | 2034 |  |  |  
 | 
      
         | 2035 |  |  | cat >>confdefs.h <<_ACEOF
 | 
      
         | 2036 |  |  | #define PACKAGE_NAME "$PACKAGE_NAME"
 | 
      
         | 2037 |  |  | _ACEOF
 | 
      
         | 2038 |  |  |  
 | 
      
         | 2039 |  |  | cat >>confdefs.h <<_ACEOF
 | 
      
         | 2040 |  |  | #define PACKAGE_TARNAME "$PACKAGE_TARNAME"
 | 
      
         | 2041 |  |  | _ACEOF
 | 
      
         | 2042 |  |  |  
 | 
      
         | 2043 |  |  | cat >>confdefs.h <<_ACEOF
 | 
      
         | 2044 |  |  | #define PACKAGE_VERSION "$PACKAGE_VERSION"
 | 
      
         | 2045 |  |  | _ACEOF
 | 
      
         | 2046 |  |  |  
 | 
      
         | 2047 |  |  | cat >>confdefs.h <<_ACEOF
 | 
      
         | 2048 |  |  | #define PACKAGE_STRING "$PACKAGE_STRING"
 | 
      
         | 2049 |  |  | _ACEOF
 | 
      
         | 2050 |  |  |  
 | 
      
         | 2051 |  |  | cat >>confdefs.h <<_ACEOF
 | 
      
         | 2052 |  |  | #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
 | 
      
         | 2053 |  |  | _ACEOF
 | 
      
         | 2054 |  |  |  
 | 
      
         | 2055 |  |  | cat >>confdefs.h <<_ACEOF
 | 
      
         | 2056 |  |  | #define PACKAGE_URL "$PACKAGE_URL"
 | 
      
         | 2057 |  |  | _ACEOF
 | 
      
         | 2058 |  |  |  
 | 
      
         | 2059 |  |  |  
 | 
      
         | 2060 |  |  | # Let the site file select an alternate cache file if it wants to.
 | 
      
         | 2061 |  |  | # Prefer an explicitly selected file to automatically selected ones.
 | 
      
         | 2062 |  |  | ac_site_file1=NONE
 | 
      
         | 2063 |  |  | ac_site_file2=NONE
 | 
      
         | 2064 |  |  | if test -n "$CONFIG_SITE"; then
 | 
      
         | 2065 |  |  |   ac_site_file1=$CONFIG_SITE
 | 
      
         | 2066 |  |  | elif test "x$prefix" != xNONE; then
 | 
      
         | 2067 |  |  |   ac_site_file1=$prefix/share/config.site
 | 
      
         | 2068 |  |  |   ac_site_file2=$prefix/etc/config.site
 | 
      
         | 2069 |  |  | else
 | 
      
         | 2070 |  |  |   ac_site_file1=$ac_default_prefix/share/config.site
 | 
      
         | 2071 |  |  |   ac_site_file2=$ac_default_prefix/etc/config.site
 | 
      
         | 2072 |  |  | fi
 | 
      
         | 2073 |  |  | for ac_site_file in "$ac_site_file1" "$ac_site_file2"
 | 
      
         | 2074 |  |  | do
 | 
      
         | 2075 |  |  |   test "x$ac_site_file" = xNONE && continue
 | 
      
         | 2076 |  |  |   if test -r "$ac_site_file"; then
 | 
      
         | 2077 |  |  |     { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
 | 
      
         | 2078 |  |  | $as_echo "$as_me: loading site script $ac_site_file" >&6;}
 | 
      
         | 2079 |  |  |     sed 's/^/| /' "$ac_site_file" >&5
 | 
      
         | 2080 |  |  |     . "$ac_site_file"
 | 
      
         | 2081 |  |  |   fi
 | 
      
         | 2082 |  |  | done
 | 
      
         | 2083 |  |  |  
 | 
      
         | 2084 |  |  | if test -r "$cache_file"; then
 | 
      
         | 2085 |  |  |   # Some versions of bash will fail to source /dev/null (special
 | 
      
         | 2086 |  |  |   # files actually), so we avoid doing that.
 | 
      
         | 2087 |  |  |   if test -f "$cache_file"; then
 | 
      
         | 2088 |  |  |     { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
 | 
      
         | 2089 |  |  | $as_echo "$as_me: loading cache $cache_file" >&6;}
 | 
      
         | 2090 |  |  |     case $cache_file in
 | 
      
         | 2091 |  |  |       [\\/]* | ?:[\\/]* ) . "$cache_file";;
 | 
      
         | 2092 |  |  |       *)                      . "./$cache_file";;
 | 
      
         | 2093 |  |  |     esac
 | 
      
         | 2094 |  |  |   fi
 | 
      
         | 2095 |  |  | else
 | 
      
         | 2096 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
 | 
      
         | 2097 |  |  | $as_echo "$as_me: creating cache $cache_file" >&6;}
 | 
      
         | 2098 |  |  |   >$cache_file
 | 
      
         | 2099 |  |  | fi
 | 
      
         | 2100 |  |  |  
 | 
      
         | 2101 |  |  | # Check that the precious variables saved in the cache have kept the same
 | 
      
         | 2102 |  |  | # value.
 | 
      
         | 2103 |  |  | ac_cache_corrupted=false
 | 
      
         | 2104 |  |  | for ac_var in $ac_precious_vars; do
 | 
      
         | 2105 |  |  |   eval ac_old_set=\$ac_cv_env_${ac_var}_set
 | 
      
         | 2106 |  |  |   eval ac_new_set=\$ac_env_${ac_var}_set
 | 
      
         | 2107 |  |  |   eval ac_old_val=\$ac_cv_env_${ac_var}_value
 | 
      
         | 2108 |  |  |   eval ac_new_val=\$ac_env_${ac_var}_value
 | 
      
         | 2109 |  |  |   case $ac_old_set,$ac_new_set in
 | 
      
         | 2110 |  |  |     set,)
 | 
      
         | 2111 |  |  |       { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
 | 
      
         | 2112 |  |  | $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
 | 
      
         | 2113 |  |  |       ac_cache_corrupted=: ;;
 | 
      
         | 2114 |  |  |     ,set)
 | 
      
         | 2115 |  |  |       { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
 | 
      
         | 2116 |  |  | $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
 | 
      
         | 2117 |  |  |       ac_cache_corrupted=: ;;
 | 
      
         | 2118 |  |  |     ,);;
 | 
      
         | 2119 |  |  |     *)
 | 
      
         | 2120 |  |  |       if test "x$ac_old_val" != "x$ac_new_val"; then
 | 
      
         | 2121 |  |  |         # differences in whitespace do not lead to failure.
 | 
      
         | 2122 |  |  |         ac_old_val_w=`echo x $ac_old_val`
 | 
      
         | 2123 |  |  |         ac_new_val_w=`echo x $ac_new_val`
 | 
      
         | 2124 |  |  |         if test "$ac_old_val_w" != "$ac_new_val_w"; then
 | 
      
         | 2125 |  |  |           { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
 | 
      
         | 2126 |  |  | $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
 | 
      
         | 2127 |  |  |           ac_cache_corrupted=:
 | 
      
         | 2128 |  |  |         else
 | 
      
         | 2129 |  |  |           { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
 | 
      
         | 2130 |  |  | $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
 | 
      
         | 2131 |  |  |           eval $ac_var=\$ac_old_val
 | 
      
         | 2132 |  |  |         fi
 | 
      
         | 2133 |  |  |         { $as_echo "$as_me:${as_lineno-$LINENO}:   former value:  \`$ac_old_val'" >&5
 | 
      
         | 2134 |  |  | $as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
 | 
      
         | 2135 |  |  |         { $as_echo "$as_me:${as_lineno-$LINENO}:   current value: \`$ac_new_val'" >&5
 | 
      
         | 2136 |  |  | $as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
 | 
      
         | 2137 |  |  |       fi;;
 | 
      
         | 2138 |  |  |   esac
 | 
      
         | 2139 |  |  |   # Pass precious variables to config.status.
 | 
      
         | 2140 |  |  |   if test "$ac_new_set" = set; then
 | 
      
         | 2141 |  |  |     case $ac_new_val in
 | 
      
         | 2142 |  |  |     *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
 | 
      
         | 2143 |  |  |     *) ac_arg=$ac_var=$ac_new_val ;;
 | 
      
         | 2144 |  |  |     esac
 | 
      
         | 2145 |  |  |     case " $ac_configure_args " in
 | 
      
         | 2146 |  |  |       *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
 | 
      
         | 2147 |  |  |       *) as_fn_append ac_configure_args " '$ac_arg'" ;;
 | 
      
         | 2148 |  |  |     esac
 | 
      
         | 2149 |  |  |   fi
 | 
      
         | 2150 |  |  | done
 | 
      
         | 2151 |  |  | if $ac_cache_corrupted; then
 | 
      
         | 2152 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 | 
      
         | 2153 |  |  | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 | 
      
         | 2154 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
 | 
      
         | 2155 |  |  | $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
 | 
      
         | 2156 |  |  |   as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
 | 
      
         | 2157 |  |  | fi
 | 
      
         | 2158 |  |  | ## -------------------- ##
 | 
      
         | 2159 |  |  | ## Main body of script. ##
 | 
      
         | 2160 |  |  | ## -------------------- ##
 | 
      
         | 2161 |  |  |  
 | 
      
         | 2162 |  |  | ac_ext=c
 | 
      
         | 2163 |  |  | ac_cpp='$CPP $CPPFLAGS'
 | 
      
         | 2164 |  |  | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 | 
      
         | 2165 |  |  | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 | 
      
         | 2166 |  |  | ac_compiler_gnu=$ac_cv_c_compiler_gnu
 | 
      
         | 2167 |  |  |  
 | 
      
         | 2168 |  |  |  
 | 
      
         | 2169 |  |  | ac_config_headers="$ac_config_headers config.h:config.in"
 | 
      
         | 2170 |  |  |  
 | 
      
         | 2171 |  |  |  
 | 
      
         | 2172 |  |  | # This file contains common code used by all simulators.
 | 
      
         | 2173 |  |  | #
 | 
      
         | 2174 |  |  | # SIM_AC_COMMON invokes AC macros used by all simulators and by the common
 | 
      
         | 2175 |  |  | # directory.  It is intended to be invoked before any target specific stuff.
 | 
      
         | 2176 |  |  | # SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
 | 
      
         | 2177 |  |  | # It is intended to be invoked last.
 | 
      
         | 2178 |  |  | #
 | 
      
         | 2179 |  |  | # The simulator's configure.in should look like:
 | 
      
         | 2180 |  |  | #
 | 
      
         | 2181 |  |  | # dnl Process this file with autoconf to produce a configure script.
 | 
      
         | 2182 |  |  | # sinclude(../common/aclocal.m4)
 | 
      
         | 2183 |  |  | # AC_PREREQ(2.5)dnl
 | 
      
         | 2184 |  |  | # AC_INIT(Makefile.in)
 | 
      
         | 2185 |  |  | #
 | 
      
         | 2186 |  |  | # SIM_AC_COMMON
 | 
      
         | 2187 |  |  | #
 | 
      
         | 2188 |  |  | # ... target specific stuff ...
 | 
      
         | 2189 |  |  | #
 | 
      
         | 2190 |  |  | # SIM_AC_OUTPUT
 | 
      
         | 2191 |  |  |  
 | 
      
         | 2192 |  |  | # Include global overrides and fixes for Autoconf.
 | 
      
         | 2193 |  |  |  
 | 
      
         | 2194 |  |  |  
 | 
      
         | 2195 |  |  |  
 | 
      
         | 2196 |  |  |  
 | 
      
         | 2197 |  |  |  
 | 
      
         | 2198 |  |  |  
 | 
      
         | 2199 |  |  |  
 | 
      
         | 2200 |  |  |  
 | 
      
         | 2201 |  |  |  
 | 
      
         | 2202 |  |  |  
 | 
      
         | 2203 |  |  |  
 | 
      
         | 2204 |  |  |  
 | 
      
         | 2205 |  |  |  
 | 
      
         | 2206 |  |  |  
 | 
      
         | 2207 |  |  |  
 | 
      
         | 2208 |  |  |  
 | 
      
         | 2209 |  |  |  
 | 
      
         | 2210 |  |  |  
 | 
      
         | 2211 |  |  |  
 | 
      
         | 2212 |  |  |  
 | 
      
         | 2213 |  |  |  
 | 
      
         | 2214 |  |  |  
 | 
      
         | 2215 |  |  |  
 | 
      
         | 2216 |  |  | # _AC_CHECK_DECL_BODY
 | 
      
         | 2217 |  |  | # -------------------
 | 
      
         | 2218 |  |  | # Shell function body for AC_CHECK_DECL.
 | 
      
         | 2219 |  |  | # _AC_CHECK_DECL_BODY
 | 
      
         | 2220 |  |  |  
 | 
      
         | 2221 |  |  | # _AC_CHECK_DECLS(SYMBOL, ACTION-IF_FOUND, ACTION-IF-NOT-FOUND,
 | 
      
         | 2222 |  |  | #                 INCLUDES)
 | 
      
         | 2223 |  |  | # -------------------------------------------------------------
 | 
      
         | 2224 |  |  | # Helper to AC_CHECK_DECLS, which generates the check for a single
 | 
      
         | 2225 |  |  | # SYMBOL with INCLUDES, performs the AC_DEFINE, then expands
 | 
      
         | 2226 |  |  | # ACTION-IF-FOUND or ACTION-IF-NOT-FOUND.
 | 
      
         | 2227 |  |  |  
 | 
      
         | 2228 |  |  |  
 | 
      
         | 2229 |  |  |  
 | 
      
         | 2230 |  |  |  
 | 
      
         | 2231 |  |  |  
 | 
      
         | 2232 |  |  |  
 | 
      
         | 2233 |  |  |  
 | 
      
         | 2234 |  |  |  
 | 
      
         | 2235 |  |  |  
 | 
      
         | 2236 |  |  |  
 | 
      
         | 2237 |  |  |  
 | 
      
         | 2238 |  |  |  
 | 
      
         | 2239 |  |  |  
 | 
      
         | 2240 |  |  |  
 | 
      
         | 2241 |  |  |  
 | 
      
         | 2242 |  |  |  
 | 
      
         | 2243 |  |  |  
 | 
      
         | 2244 |  |  |  
 | 
      
         | 2245 |  |  |  
 | 
      
         | 2246 |  |  |  
 | 
      
         | 2247 |  |  |  
 | 
      
         | 2248 |  |  |  
 | 
      
         | 2249 |  |  |  
 | 
      
         | 2250 |  |  |  
 | 
      
         | 2251 |  |  |  
 | 
      
         | 2252 |  |  |  
 | 
      
         | 2253 |  |  |  
 | 
      
         | 2254 |  |  |  
 | 
      
         | 2255 |  |  |  
 | 
      
         | 2256 |  |  |  
 | 
      
         | 2257 |  |  |  
 | 
      
         | 2258 |  |  |  
 | 
      
         | 2259 |  |  |  
 | 
      
         | 2260 |  |  |  
 | 
      
         | 2261 |  |  |  
 | 
      
         | 2262 |  |  |  
 | 
      
         | 2263 |  |  |  
 | 
      
         | 2264 |  |  |  
 | 
      
         | 2265 |  |  |  
 | 
      
         | 2266 |  |  |  
 | 
      
         | 2267 |  |  |  
 | 
      
         | 2268 |  |  |  
 | 
      
         | 2269 |  |  |  
 | 
      
         | 2270 |  |  |  
 | 
      
         | 2271 |  |  |  
 | 
      
         | 2272 |  |  |  
 | 
      
         | 2273 |  |  |  
 | 
      
         | 2274 |  |  |  
 | 
      
         | 2275 |  |  |  
 | 
      
         | 2276 |  |  |  
 | 
      
         | 2277 |  |  |  
 | 
      
         | 2278 |  |  |  
 | 
      
         | 2279 |  |  |  
 | 
      
         | 2280 |  |  |  
 | 
      
         | 2281 |  |  |  
 | 
      
         | 2282 |  |  |  
 | 
      
         | 2283 |  |  |  
 | 
      
         | 2284 |  |  |  
 | 
      
         | 2285 |  |  | sim_inline="-DDEFAULT_INLINE=0"
 | 
      
         | 2286 |  |  |  
 | 
      
         | 2287 |  |  |  
 | 
      
         | 2288 |  |  |  
 | 
      
         | 2289 |  |  |  
 | 
      
         | 2290 |  |  |  
 | 
      
         | 2291 |  |  |  
 | 
      
         | 2292 |  |  |  
 | 
      
         | 2293 |  |  |  
 | 
      
         | 2294 |  |  |  
 | 
      
         | 2295 |  |  |  
 | 
      
         | 2296 |  |  |  
 | 
      
         | 2297 |  |  |  
 | 
      
         | 2298 |  |  |  
 | 
      
         | 2299 |  |  |  
 | 
      
         | 2300 |  |  |  
 | 
      
         | 2301 |  |  |  
 | 
      
         | 2302 |  |  |  
 | 
      
         | 2303 |  |  |  
 | 
      
         | 2304 |  |  |  
 | 
      
         | 2305 |  |  |  
 | 
      
         | 2306 |  |  |  
 | 
      
         | 2307 |  |  |  
 | 
      
         | 2308 |  |  |  
 | 
      
         | 2309 |  |  |  
 | 
      
         | 2310 |  |  |  
 | 
      
         | 2311 |  |  |  
 | 
      
         | 2312 |  |  |  
 | 
      
         | 2313 |  |  |  
 | 
      
         | 2314 |  |  |  
 | 
      
         | 2315 |  |  |  
 | 
      
         | 2316 |  |  |  
 | 
      
         | 2317 |  |  |  
 | 
      
         | 2318 |  |  |  
 | 
      
         | 2319 |  |  |  
 | 
      
         | 2320 |  |  |  
 | 
      
         | 2321 |  |  |  
 | 
      
         | 2322 |  |  | # intl sister-directory configuration rules.
 | 
      
         | 2323 |  |  | #
 | 
      
         | 2324 |  |  |  
 | 
      
         | 2325 |  |  | # The idea behind this macro is that there's no need to repeat all the
 | 
      
         | 2326 |  |  | # autoconf probes done by the intl directory - it's already done them
 | 
      
         | 2327 |  |  | # for us.  In fact, there's no need even to look at the cache for the
 | 
      
         | 2328 |  |  | # answers.  All we need to do is nab a few pieces of information.
 | 
      
         | 2329 |  |  | # The intl directory is set up to make this easy, by generating a
 | 
      
         | 2330 |  |  | # small file which can be sourced as a shell script; then we produce
 | 
      
         | 2331 |  |  | # the necessary substitutions and definitions for this directory.
 | 
      
         | 2332 |  |  |  
 | 
      
         | 2333 |  |  |  
 | 
      
         | 2334 |  |  |  
 | 
      
         | 2335 |  |  | # Autoconf M4 include file defining utility macros for complex Canadian
 | 
      
         | 2336 |  |  | # cross builds.
 | 
      
         | 2337 |  |  |  
 | 
      
         | 2338 |  |  |  
 | 
      
         | 2339 |  |  |  
 | 
      
         | 2340 |  |  |  
 | 
      
         | 2341 |  |  |  
 | 
      
         | 2342 |  |  |  
 | 
      
         | 2343 |  |  |  
 | 
      
         | 2344 |  |  |  
 | 
      
         | 2345 |  |  |  
 | 
      
         | 2346 |  |  | ####
 | 
      
         | 2347 |  |  | # _NCN_TOOL_PREFIXES:  Some stuff that oughtta be done in AC_CANONICAL_SYSTEM
 | 
      
         | 2348 |  |  | # or AC_INIT.
 | 
      
         | 2349 |  |  | # These demand that AC_CANONICAL_SYSTEM be called beforehand.
 | 
      
         | 2350 |  |  |  
 | 
      
         | 2351 |  |  | ####
 | 
      
         | 2352 |  |  | # NCN_STRICT_CHECK_TOOLS(variable, progs-to-check-for,[value-if-not-found],[path])
 | 
      
         | 2353 |  |  | # Like plain AC_CHECK_TOOLS, but require prefix if build!=host.
 | 
      
         | 2354 |  |  |  
 | 
      
         | 2355 |  |  |  
 | 
      
         | 2356 |  |  | ####
 | 
      
         | 2357 |  |  | # NCN_STRICT_CHECK_TARGET_TOOLS(variable, progs-to-check-for,[value-if-not-found],[path])
 | 
      
         | 2358 |  |  | # Like CVS Autoconf AC_CHECK_TARGET_TOOLS, but require prefix if build!=target.
 | 
      
         | 2359 |  |  |  
 | 
      
         | 2360 |  |  |  
 | 
      
         | 2361 |  |  |  
 | 
      
         | 2362 |  |  | # Backported from Autoconf 2.5x; can go away when and if
 | 
      
         | 2363 |  |  | # we switch.  Put the OS path separator in $PATH_SEPARATOR.
 | 
      
         | 2364 |  |  |  
 | 
      
         | 2365 |  |  |  
 | 
      
         | 2366 |  |  |  
 | 
      
         | 2367 |  |  |  
 | 
      
         | 2368 |  |  | # ACX_HAVE_GCC_FOR_TARGET
 | 
      
         | 2369 |  |  | # Check if the variable GCC_FOR_TARGET really points to a GCC binary.
 | 
      
         | 2370 |  |  |  
 | 
      
         | 2371 |  |  |  
 | 
      
         | 2372 |  |  | # ACX_CHECK_INSTALLED_TARGET_TOOL(VAR, PROG)
 | 
      
         | 2373 |  |  | # Searching for installed target binutils.  We need to take extra care,
 | 
      
         | 2374 |  |  | # else we may find the wrong assembler, linker, etc., and lose.
 | 
      
         | 2375 |  |  | #
 | 
      
         | 2376 |  |  | # First try --with-build-time-tools, if specified.
 | 
      
         | 2377 |  |  | #
 | 
      
         | 2378 |  |  | # For build != host, we ask the installed GCC for the name of the tool it
 | 
      
         | 2379 |  |  | # uses, and accept it if it is an absolute path.  This is because the
 | 
      
         | 2380 |  |  | # only good choice for a compiler is the same GCC version that is being
 | 
      
         | 2381 |  |  | # installed (or we couldn't make target libraries), and we assume that
 | 
      
         | 2382 |  |  | # on the host system we'll have not only the same GCC version, but also
 | 
      
         | 2383 |  |  | # the same binutils version.
 | 
      
         | 2384 |  |  | #
 | 
      
         | 2385 |  |  | # For build == host, search the same directories that the installed
 | 
      
         | 2386 |  |  | # compiler will search.  We used to do this for the assembler, linker,
 | 
      
         | 2387 |  |  | # and nm only; for simplicity of configuration, however, we extend this
 | 
      
         | 2388 |  |  | # criterion to tools (such as ar and ranlib) that are never invoked by
 | 
      
         | 2389 |  |  | # the compiler, to avoid mismatches.
 | 
      
         | 2390 |  |  | #
 | 
      
         | 2391 |  |  | # Also note we have to check MD_EXEC_PREFIX before checking the user's path
 | 
      
         | 2392 |  |  | # if build == target.  This makes the most sense only when bootstrapping,
 | 
      
         | 2393 |  |  | # but we also do so when build != host.  In this case, we hope that the
 | 
      
         | 2394 |  |  | # build and host systems will have similar contents of MD_EXEC_PREFIX.
 | 
      
         | 2395 |  |  | #
 | 
      
         | 2396 |  |  | # If we do not find a suitable binary, then try the user's path.
 | 
      
         | 2397 |  |  |  
 | 
      
         | 2398 |  |  |  
 | 
      
         | 2399 |  |  | ###
 | 
      
         | 2400 |  |  | # AC_PROG_CPP_WERROR
 | 
      
         | 2401 |  |  | # Used for autoconf 2.5x to force AC_PREPROC_IFELSE to reject code which
 | 
      
         | 2402 |  |  | # triggers warnings from the preprocessor.  Will be in autoconf 2.58.
 | 
      
         | 2403 |  |  | # For now, using this also overrides header checks to use only the
 | 
      
         | 2404 |  |  | # preprocessor (matches 2.13 behavior; matching 2.58's behavior is a
 | 
      
         | 2405 |  |  | # bit harder from here).
 | 
      
         | 2406 |  |  | # Eventually autoconf will default to checking headers with the compiler
 | 
      
         | 2407 |  |  | # instead, and we'll have to do this differently.
 | 
      
         | 2408 |  |  |  
 | 
      
         | 2409 |  |  | # AC_PROG_CPP_WERROR
 | 
      
         | 2410 |  |  |  
 | 
      
         | 2411 |  |  | # Test for GNAT.
 | 
      
         | 2412 |  |  | # We require the gnatbind program, and a compiler driver that
 | 
      
         | 2413 |  |  | # understands Ada.  We use the user's CC setting, already found,
 | 
      
         | 2414 |  |  | # and possibly add $1 to the command-line parameters.
 | 
      
         | 2415 |  |  | #
 | 
      
         | 2416 |  |  | # Sets the shell variable have_gnat to yes or no as appropriate, and
 | 
      
         | 2417 |  |  | # substitutes GNATBIND and GNATMAKE.
 | 
      
         | 2418 |  |  |  
 | 
      
         | 2419 |  |  |  
 | 
      
         | 2420 |  |  |  
 | 
      
         | 2421 |  |  |  
 | 
      
         | 2422 |  |  |  
 | 
      
         | 2423 |  |  |  
 | 
      
         | 2424 |  |  |  
 | 
      
         | 2425 |  |  |  
 | 
      
         | 2426 |  |  |  
 | 
      
         | 2427 |  |  |  
 | 
      
         | 2428 |  |  |  
 | 
      
         | 2429 |  |  |  
 | 
      
         | 2430 |  |  |  
 | 
      
         | 2431 |  |  |  
 | 
      
         | 2432 |  |  |  
 | 
      
         | 2433 |  |  |  
 | 
      
         | 2434 |  |  |  
 | 
      
         | 2435 |  |  |  
 | 
      
         | 2436 |  |  |  
 | 
      
         | 2437 |  |  |  
 | 
      
         | 2438 |  |  |  
 | 
      
         | 2439 |  |  |  
 | 
      
         | 2440 |  |  |  
 | 
      
         | 2441 |  |  |  
 | 
      
         | 2442 |  |  |  
 | 
      
         | 2443 |  |  | # Bugs in autoconf 2.59 break the call to SIM_AC_COMMON, hack around
 | 
      
         | 2444 |  |  | # it by inlining the macro's contents.
 | 
      
         | 2445 |  |  | # This file contains common code used by all simulators.
 | 
      
         | 2446 |  |  | #
 | 
      
         | 2447 |  |  | # common.m4 invokes AC macros used by all simulators and by the common
 | 
      
         | 2448 |  |  | # directory.  It is intended to be included before any target specific
 | 
      
         | 2449 |  |  | # stuff.  SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate
 | 
      
         | 2450 |  |  | # the Makefile.  It is intended to be invoked last.
 | 
      
         | 2451 |  |  | #
 | 
      
         | 2452 |  |  | # The simulator's configure.in should look like:
 | 
      
         | 2453 |  |  | #
 | 
      
         | 2454 |  |  | # dnl Process this file with autoconf to produce a configure script.
 | 
      
         | 2455 |  |  | # AC_PREREQ(2.5)dnl
 | 
      
         | 2456 |  |  | # AC_INIT(Makefile.in)
 | 
      
         | 2457 |  |  | # AC_CONFIG_HEADER(config.h:config.in)
 | 
      
         | 2458 |  |  | #
 | 
      
         | 2459 |  |  | # sinclude(../common/aclocal.m4)
 | 
      
         | 2460 |  |  | # sinclude(../common/common.m4)
 | 
      
         | 2461 |  |  | #
 | 
      
         | 2462 |  |  | # ... target specific stuff ...
 | 
      
         | 2463 |  |  |  
 | 
      
         | 2464 |  |  | ac_aux_dir=
 | 
      
         | 2465 |  |  | for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
 | 
      
         | 2466 |  |  |   for ac_t in install-sh install.sh shtool; do
 | 
      
         | 2467 |  |  |     if test -f "$ac_dir/$ac_t"; then
 | 
      
         | 2468 |  |  |       ac_aux_dir=$ac_dir
 | 
      
         | 2469 |  |  |       ac_install_sh="$ac_aux_dir/$ac_t -c"
 | 
      
         | 2470 |  |  |       break 2
 | 
      
         | 2471 |  |  |     fi
 | 
      
         | 2472 |  |  |   done
 | 
      
         | 2473 |  |  | done
 | 
      
         | 2474 |  |  | if test -z "$ac_aux_dir"; then
 | 
      
         | 2475 |  |  |   as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
 | 
      
         | 2476 |  |  | fi
 | 
      
         | 2477 |  |  |  
 | 
      
         | 2478 |  |  | # These three variables are undocumented and unsupported,
 | 
      
         | 2479 |  |  | # and are intended to be withdrawn in a future Autoconf release.
 | 
      
         | 2480 |  |  | # They can cause serious problems if a builder's source tree is in a directory
 | 
      
         | 2481 |  |  | # whose full name contains unusual characters.
 | 
      
         | 2482 |  |  | ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
 | 
      
         | 2483 |  |  | ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
 | 
      
         | 2484 |  |  | ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
 | 
      
         | 2485 |  |  |  
 | 
      
         | 2486 |  |  |  
 | 
      
         | 2487 |  |  | # Make sure we can run config.sub.
 | 
      
         | 2488 |  |  | $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
 | 
      
         | 2489 |  |  |   as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
 | 
      
         | 2490 |  |  |  
 | 
      
         | 2491 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
 | 
      
         | 2492 |  |  | $as_echo_n "checking build system type... " >&6; }
 | 
      
         | 2493 |  |  | if test "${ac_cv_build+set}" = set; then :
 | 
      
         | 2494 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 2495 |  |  | else
 | 
      
         | 2496 |  |  |   ac_build_alias=$build_alias
 | 
      
         | 2497 |  |  | test "x$ac_build_alias" = x &&
 | 
      
         | 2498 |  |  |   ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
 | 
      
         | 2499 |  |  | test "x$ac_build_alias" = x &&
 | 
      
         | 2500 |  |  |   as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5
 | 
      
         | 2501 |  |  | ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
 | 
      
         | 2502 |  |  |   as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
 | 
      
         | 2503 |  |  |  
 | 
      
         | 2504 |  |  | fi
 | 
      
         | 2505 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
 | 
      
         | 2506 |  |  | $as_echo "$ac_cv_build" >&6; }
 | 
      
         | 2507 |  |  | case $ac_cv_build in
 | 
      
         | 2508 |  |  | *-*-*) ;;
 | 
      
         | 2509 |  |  | *) as_fn_error "invalid value of canonical build" "$LINENO" 5;;
 | 
      
         | 2510 |  |  | esac
 | 
      
         | 2511 |  |  | build=$ac_cv_build
 | 
      
         | 2512 |  |  | ac_save_IFS=$IFS; IFS='-'
 | 
      
         | 2513 |  |  | set x $ac_cv_build
 | 
      
         | 2514 |  |  | shift
 | 
      
         | 2515 |  |  | build_cpu=$1
 | 
      
         | 2516 |  |  | build_vendor=$2
 | 
      
         | 2517 |  |  | shift; shift
 | 
      
         | 2518 |  |  | # Remember, the first character of IFS is used to create $*,
 | 
      
         | 2519 |  |  | # except with old shells:
 | 
      
         | 2520 |  |  | build_os=$*
 | 
      
         | 2521 |  |  | IFS=$ac_save_IFS
 | 
      
         | 2522 |  |  | case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
 | 
      
         | 2523 |  |  |  
 | 
      
         | 2524 |  |  |  
 | 
      
         | 2525 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
 | 
      
         | 2526 |  |  | $as_echo_n "checking host system type... " >&6; }
 | 
      
         | 2527 |  |  | if test "${ac_cv_host+set}" = set; then :
 | 
      
         | 2528 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 2529 |  |  | else
 | 
      
         | 2530 |  |  |   if test "x$host_alias" = x; then
 | 
      
         | 2531 |  |  |   ac_cv_host=$ac_cv_build
 | 
      
         | 2532 |  |  | else
 | 
      
         | 2533 |  |  |   ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
 | 
      
         | 2534 |  |  |     as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
 | 
      
         | 2535 |  |  | fi
 | 
      
         | 2536 |  |  |  
 | 
      
         | 2537 |  |  | fi
 | 
      
         | 2538 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
 | 
      
         | 2539 |  |  | $as_echo "$ac_cv_host" >&6; }
 | 
      
         | 2540 |  |  | case $ac_cv_host in
 | 
      
         | 2541 |  |  | *-*-*) ;;
 | 
      
         | 2542 |  |  | *) as_fn_error "invalid value of canonical host" "$LINENO" 5;;
 | 
      
         | 2543 |  |  | esac
 | 
      
         | 2544 |  |  | host=$ac_cv_host
 | 
      
         | 2545 |  |  | ac_save_IFS=$IFS; IFS='-'
 | 
      
         | 2546 |  |  | set x $ac_cv_host
 | 
      
         | 2547 |  |  | shift
 | 
      
         | 2548 |  |  | host_cpu=$1
 | 
      
         | 2549 |  |  | host_vendor=$2
 | 
      
         | 2550 |  |  | shift; shift
 | 
      
         | 2551 |  |  | # Remember, the first character of IFS is used to create $*,
 | 
      
         | 2552 |  |  | # except with old shells:
 | 
      
         | 2553 |  |  | host_os=$*
 | 
      
         | 2554 |  |  | IFS=$ac_save_IFS
 | 
      
         | 2555 |  |  | case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
 | 
      
         | 2556 |  |  |  
 | 
      
         | 2557 |  |  |  
 | 
      
         | 2558 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5
 | 
      
         | 2559 |  |  | $as_echo_n "checking target system type... " >&6; }
 | 
      
         | 2560 |  |  | if test "${ac_cv_target+set}" = set; then :
 | 
      
         | 2561 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 2562 |  |  | else
 | 
      
         | 2563 |  |  |   if test "x$target_alias" = x; then
 | 
      
         | 2564 |  |  |   ac_cv_target=$ac_cv_host
 | 
      
         | 2565 |  |  | else
 | 
      
         | 2566 |  |  |   ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||
 | 
      
         | 2567 |  |  |     as_fn_error "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5
 | 
      
         | 2568 |  |  | fi
 | 
      
         | 2569 |  |  |  
 | 
      
         | 2570 |  |  | fi
 | 
      
         | 2571 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5
 | 
      
         | 2572 |  |  | $as_echo "$ac_cv_target" >&6; }
 | 
      
         | 2573 |  |  | case $ac_cv_target in
 | 
      
         | 2574 |  |  | *-*-*) ;;
 | 
      
         | 2575 |  |  | *) as_fn_error "invalid value of canonical target" "$LINENO" 5;;
 | 
      
         | 2576 |  |  | esac
 | 
      
         | 2577 |  |  | target=$ac_cv_target
 | 
      
         | 2578 |  |  | ac_save_IFS=$IFS; IFS='-'
 | 
      
         | 2579 |  |  | set x $ac_cv_target
 | 
      
         | 2580 |  |  | shift
 | 
      
         | 2581 |  |  | target_cpu=$1
 | 
      
         | 2582 |  |  | target_vendor=$2
 | 
      
         | 2583 |  |  | shift; shift
 | 
      
         | 2584 |  |  | # Remember, the first character of IFS is used to create $*,
 | 
      
         | 2585 |  |  | # except with old shells:
 | 
      
         | 2586 |  |  | target_os=$*
 | 
      
         | 2587 |  |  | IFS=$ac_save_IFS
 | 
      
         | 2588 |  |  | case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac
 | 
      
         | 2589 |  |  |  
 | 
      
         | 2590 |  |  |  
 | 
      
         | 2591 |  |  | # The aliases save the names the user supplied, while $host etc.
 | 
      
         | 2592 |  |  | # will get canonicalized.
 | 
      
         | 2593 |  |  | test -n "$target_alias" &&
 | 
      
         | 2594 |  |  |   test "$program_prefix$program_suffix$program_transform_name" = \
 | 
      
         | 2595 |  |  |     NONENONEs,x,x, &&
 | 
      
         | 2596 |  |  |   program_prefix=${target_alias}-
 | 
      
         | 2597 |  |  |  
 | 
      
         | 2598 |  |  | test "$program_prefix" != NONE &&
 | 
      
         | 2599 |  |  |   program_transform_name="s&^&$program_prefix&;$program_transform_name"
 | 
      
         | 2600 |  |  | # Use a double $ so make ignores it.
 | 
      
         | 2601 |  |  | test "$program_suffix" != NONE &&
 | 
      
         | 2602 |  |  |   program_transform_name="s&\$&$program_suffix&;$program_transform_name"
 | 
      
         | 2603 |  |  | # Double any \ or $.
 | 
      
         | 2604 |  |  | # By default was `s,x,x', remove it if useless.
 | 
      
         | 2605 |  |  | ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
 | 
      
         | 2606 |  |  | program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
 | 
      
         | 2607 |  |  |  
 | 
      
         | 2608 |  |  | ac_ext=c
 | 
      
         | 2609 |  |  | ac_cpp='$CPP $CPPFLAGS'
 | 
      
         | 2610 |  |  | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 | 
      
         | 2611 |  |  | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 | 
      
         | 2612 |  |  | ac_compiler_gnu=$ac_cv_c_compiler_gnu
 | 
      
         | 2613 |  |  | if test -n "$ac_tool_prefix"; then
 | 
      
         | 2614 |  |  |   # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
 | 
      
         | 2615 |  |  | set dummy ${ac_tool_prefix}gcc; ac_word=$2
 | 
      
         | 2616 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 | 
      
         | 2617 |  |  | $as_echo_n "checking for $ac_word... " >&6; }
 | 
      
         | 2618 |  |  | if test "${ac_cv_prog_CC+set}" = set; then :
 | 
      
         | 2619 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 2620 |  |  | else
 | 
      
         | 2621 |  |  |   if test -n "$CC"; then
 | 
      
         | 2622 |  |  |   ac_cv_prog_CC="$CC" # Let the user override the test.
 | 
      
         | 2623 |  |  | else
 | 
      
         | 2624 |  |  | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 | 
      
         | 2625 |  |  | for as_dir in $PATH
 | 
      
         | 2626 |  |  | do
 | 
      
         | 2627 |  |  |   IFS=$as_save_IFS
 | 
      
         | 2628 |  |  |   test -z "$as_dir" && as_dir=.
 | 
      
         | 2629 |  |  |     for ac_exec_ext in '' $ac_executable_extensions; do
 | 
      
         | 2630 |  |  |   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 | 
      
         | 2631 |  |  |     ac_cv_prog_CC="${ac_tool_prefix}gcc"
 | 
      
         | 2632 |  |  |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 | 
      
         | 2633 |  |  |     break 2
 | 
      
         | 2634 |  |  |   fi
 | 
      
         | 2635 |  |  | done
 | 
      
         | 2636 |  |  |   done
 | 
      
         | 2637 |  |  | IFS=$as_save_IFS
 | 
      
         | 2638 |  |  |  
 | 
      
         | 2639 |  |  | fi
 | 
      
         | 2640 |  |  | fi
 | 
      
         | 2641 |  |  | CC=$ac_cv_prog_CC
 | 
      
         | 2642 |  |  | if test -n "$CC"; then
 | 
      
         | 2643 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
 | 
      
         | 2644 |  |  | $as_echo "$CC" >&6; }
 | 
      
         | 2645 |  |  | else
 | 
      
         | 2646 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 | 
      
         | 2647 |  |  | $as_echo "no" >&6; }
 | 
      
         | 2648 |  |  | fi
 | 
      
         | 2649 |  |  |  
 | 
      
         | 2650 |  |  |  
 | 
      
         | 2651 |  |  | fi
 | 
      
         | 2652 |  |  | if test -z "$ac_cv_prog_CC"; then
 | 
      
         | 2653 |  |  |   ac_ct_CC=$CC
 | 
      
         | 2654 |  |  |   # Extract the first word of "gcc", so it can be a program name with args.
 | 
      
         | 2655 |  |  | set dummy gcc; ac_word=$2
 | 
      
         | 2656 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 | 
      
         | 2657 |  |  | $as_echo_n "checking for $ac_word... " >&6; }
 | 
      
         | 2658 |  |  | if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
 | 
      
         | 2659 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 2660 |  |  | else
 | 
      
         | 2661 |  |  |   if test -n "$ac_ct_CC"; then
 | 
      
         | 2662 |  |  |   ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
 | 
      
         | 2663 |  |  | else
 | 
      
         | 2664 |  |  | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 | 
      
         | 2665 |  |  | for as_dir in $PATH
 | 
      
         | 2666 |  |  | do
 | 
      
         | 2667 |  |  |   IFS=$as_save_IFS
 | 
      
         | 2668 |  |  |   test -z "$as_dir" && as_dir=.
 | 
      
         | 2669 |  |  |     for ac_exec_ext in '' $ac_executable_extensions; do
 | 
      
         | 2670 |  |  |   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 | 
      
         | 2671 |  |  |     ac_cv_prog_ac_ct_CC="gcc"
 | 
      
         | 2672 |  |  |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 | 
      
         | 2673 |  |  |     break 2
 | 
      
         | 2674 |  |  |   fi
 | 
      
         | 2675 |  |  | done
 | 
      
         | 2676 |  |  |   done
 | 
      
         | 2677 |  |  | IFS=$as_save_IFS
 | 
      
         | 2678 |  |  |  
 | 
      
         | 2679 |  |  | fi
 | 
      
         | 2680 |  |  | fi
 | 
      
         | 2681 |  |  | ac_ct_CC=$ac_cv_prog_ac_ct_CC
 | 
      
         | 2682 |  |  | if test -n "$ac_ct_CC"; then
 | 
      
         | 2683 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
 | 
      
         | 2684 |  |  | $as_echo "$ac_ct_CC" >&6; }
 | 
      
         | 2685 |  |  | else
 | 
      
         | 2686 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 | 
      
         | 2687 |  |  | $as_echo "no" >&6; }
 | 
      
         | 2688 |  |  | fi
 | 
      
         | 2689 |  |  |  
 | 
      
         | 2690 |  |  |   if test "x$ac_ct_CC" = x; then
 | 
      
         | 2691 |  |  |     CC=""
 | 
      
         | 2692 |  |  |   else
 | 
      
         | 2693 |  |  |     case $cross_compiling:$ac_tool_warned in
 | 
      
         | 2694 |  |  | yes:)
 | 
      
         | 2695 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
 | 
      
         | 2696 |  |  | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 | 
      
         | 2697 |  |  | ac_tool_warned=yes ;;
 | 
      
         | 2698 |  |  | esac
 | 
      
         | 2699 |  |  |     CC=$ac_ct_CC
 | 
      
         | 2700 |  |  |   fi
 | 
      
         | 2701 |  |  | else
 | 
      
         | 2702 |  |  |   CC="$ac_cv_prog_CC"
 | 
      
         | 2703 |  |  | fi
 | 
      
         | 2704 |  |  |  
 | 
      
         | 2705 |  |  | if test -z "$CC"; then
 | 
      
         | 2706 |  |  |           if test -n "$ac_tool_prefix"; then
 | 
      
         | 2707 |  |  |     # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
 | 
      
         | 2708 |  |  | set dummy ${ac_tool_prefix}cc; ac_word=$2
 | 
      
         | 2709 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 | 
      
         | 2710 |  |  | $as_echo_n "checking for $ac_word... " >&6; }
 | 
      
         | 2711 |  |  | if test "${ac_cv_prog_CC+set}" = set; then :
 | 
      
         | 2712 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 2713 |  |  | else
 | 
      
         | 2714 |  |  |   if test -n "$CC"; then
 | 
      
         | 2715 |  |  |   ac_cv_prog_CC="$CC" # Let the user override the test.
 | 
      
         | 2716 |  |  | else
 | 
      
         | 2717 |  |  | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 | 
      
         | 2718 |  |  | for as_dir in $PATH
 | 
      
         | 2719 |  |  | do
 | 
      
         | 2720 |  |  |   IFS=$as_save_IFS
 | 
      
         | 2721 |  |  |   test -z "$as_dir" && as_dir=.
 | 
      
         | 2722 |  |  |     for ac_exec_ext in '' $ac_executable_extensions; do
 | 
      
         | 2723 |  |  |   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 | 
      
         | 2724 |  |  |     ac_cv_prog_CC="${ac_tool_prefix}cc"
 | 
      
         | 2725 |  |  |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 | 
      
         | 2726 |  |  |     break 2
 | 
      
         | 2727 |  |  |   fi
 | 
      
         | 2728 |  |  | done
 | 
      
         | 2729 |  |  |   done
 | 
      
         | 2730 |  |  | IFS=$as_save_IFS
 | 
      
         | 2731 |  |  |  
 | 
      
         | 2732 |  |  | fi
 | 
      
         | 2733 |  |  | fi
 | 
      
         | 2734 |  |  | CC=$ac_cv_prog_CC
 | 
      
         | 2735 |  |  | if test -n "$CC"; then
 | 
      
         | 2736 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
 | 
      
         | 2737 |  |  | $as_echo "$CC" >&6; }
 | 
      
         | 2738 |  |  | else
 | 
      
         | 2739 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 | 
      
         | 2740 |  |  | $as_echo "no" >&6; }
 | 
      
         | 2741 |  |  | fi
 | 
      
         | 2742 |  |  |  
 | 
      
         | 2743 |  |  |  
 | 
      
         | 2744 |  |  |   fi
 | 
      
         | 2745 |  |  | fi
 | 
      
         | 2746 |  |  | if test -z "$CC"; then
 | 
      
         | 2747 |  |  |   # Extract the first word of "cc", so it can be a program name with args.
 | 
      
         | 2748 |  |  | set dummy cc; ac_word=$2
 | 
      
         | 2749 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 | 
      
         | 2750 |  |  | $as_echo_n "checking for $ac_word... " >&6; }
 | 
      
         | 2751 |  |  | if test "${ac_cv_prog_CC+set}" = set; then :
 | 
      
         | 2752 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 2753 |  |  | else
 | 
      
         | 2754 |  |  |   if test -n "$CC"; then
 | 
      
         | 2755 |  |  |   ac_cv_prog_CC="$CC" # Let the user override the test.
 | 
      
         | 2756 |  |  | else
 | 
      
         | 2757 |  |  |   ac_prog_rejected=no
 | 
      
         | 2758 |  |  | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 | 
      
         | 2759 |  |  | for as_dir in $PATH
 | 
      
         | 2760 |  |  | do
 | 
      
         | 2761 |  |  |   IFS=$as_save_IFS
 | 
      
         | 2762 |  |  |   test -z "$as_dir" && as_dir=.
 | 
      
         | 2763 |  |  |     for ac_exec_ext in '' $ac_executable_extensions; do
 | 
      
         | 2764 |  |  |   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 | 
      
         | 2765 |  |  |     if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
 | 
      
         | 2766 |  |  |        ac_prog_rejected=yes
 | 
      
         | 2767 |  |  |        continue
 | 
      
         | 2768 |  |  |      fi
 | 
      
         | 2769 |  |  |     ac_cv_prog_CC="cc"
 | 
      
         | 2770 |  |  |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 | 
      
         | 2771 |  |  |     break 2
 | 
      
         | 2772 |  |  |   fi
 | 
      
         | 2773 |  |  | done
 | 
      
         | 2774 |  |  |   done
 | 
      
         | 2775 |  |  | IFS=$as_save_IFS
 | 
      
         | 2776 |  |  |  
 | 
      
         | 2777 |  |  | if test $ac_prog_rejected = yes; then
 | 
      
         | 2778 |  |  |   # We found a bogon in the path, so make sure we never use it.
 | 
      
         | 2779 |  |  |   set dummy $ac_cv_prog_CC
 | 
      
         | 2780 |  |  |   shift
 | 
      
         | 2781 |  |  |   if test $# != 0; then
 | 
      
         | 2782 |  |  |     # We chose a different compiler from the bogus one.
 | 
      
         | 2783 |  |  |     # However, it has the same basename, so the bogon will be chosen
 | 
      
         | 2784 |  |  |     # first if we set CC to just the basename; use the full file name.
 | 
      
         | 2785 |  |  |     shift
 | 
      
         | 2786 |  |  |     ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
 | 
      
         | 2787 |  |  |   fi
 | 
      
         | 2788 |  |  | fi
 | 
      
         | 2789 |  |  | fi
 | 
      
         | 2790 |  |  | fi
 | 
      
         | 2791 |  |  | CC=$ac_cv_prog_CC
 | 
      
         | 2792 |  |  | if test -n "$CC"; then
 | 
      
         | 2793 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
 | 
      
         | 2794 |  |  | $as_echo "$CC" >&6; }
 | 
      
         | 2795 |  |  | else
 | 
      
         | 2796 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 | 
      
         | 2797 |  |  | $as_echo "no" >&6; }
 | 
      
         | 2798 |  |  | fi
 | 
      
         | 2799 |  |  |  
 | 
      
         | 2800 |  |  |  
 | 
      
         | 2801 |  |  | fi
 | 
      
         | 2802 |  |  | if test -z "$CC"; then
 | 
      
         | 2803 |  |  |   if test -n "$ac_tool_prefix"; then
 | 
      
         | 2804 |  |  |   for ac_prog in cl.exe
 | 
      
         | 2805 |  |  |   do
 | 
      
         | 2806 |  |  |     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
 | 
      
         | 2807 |  |  | set dummy $ac_tool_prefix$ac_prog; ac_word=$2
 | 
      
         | 2808 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 | 
      
         | 2809 |  |  | $as_echo_n "checking for $ac_word... " >&6; }
 | 
      
         | 2810 |  |  | if test "${ac_cv_prog_CC+set}" = set; then :
 | 
      
         | 2811 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 2812 |  |  | else
 | 
      
         | 2813 |  |  |   if test -n "$CC"; then
 | 
      
         | 2814 |  |  |   ac_cv_prog_CC="$CC" # Let the user override the test.
 | 
      
         | 2815 |  |  | else
 | 
      
         | 2816 |  |  | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 | 
      
         | 2817 |  |  | for as_dir in $PATH
 | 
      
         | 2818 |  |  | do
 | 
      
         | 2819 |  |  |   IFS=$as_save_IFS
 | 
      
         | 2820 |  |  |   test -z "$as_dir" && as_dir=.
 | 
      
         | 2821 |  |  |     for ac_exec_ext in '' $ac_executable_extensions; do
 | 
      
         | 2822 |  |  |   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 | 
      
         | 2823 |  |  |     ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
 | 
      
         | 2824 |  |  |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 | 
      
         | 2825 |  |  |     break 2
 | 
      
         | 2826 |  |  |   fi
 | 
      
         | 2827 |  |  | done
 | 
      
         | 2828 |  |  |   done
 | 
      
         | 2829 |  |  | IFS=$as_save_IFS
 | 
      
         | 2830 |  |  |  
 | 
      
         | 2831 |  |  | fi
 | 
      
         | 2832 |  |  | fi
 | 
      
         | 2833 |  |  | CC=$ac_cv_prog_CC
 | 
      
         | 2834 |  |  | if test -n "$CC"; then
 | 
      
         | 2835 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
 | 
      
         | 2836 |  |  | $as_echo "$CC" >&6; }
 | 
      
         | 2837 |  |  | else
 | 
      
         | 2838 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 | 
      
         | 2839 |  |  | $as_echo "no" >&6; }
 | 
      
         | 2840 |  |  | fi
 | 
      
         | 2841 |  |  |  
 | 
      
         | 2842 |  |  |  
 | 
      
         | 2843 |  |  |     test -n "$CC" && break
 | 
      
         | 2844 |  |  |   done
 | 
      
         | 2845 |  |  | fi
 | 
      
         | 2846 |  |  | if test -z "$CC"; then
 | 
      
         | 2847 |  |  |   ac_ct_CC=$CC
 | 
      
         | 2848 |  |  |   for ac_prog in cl.exe
 | 
      
         | 2849 |  |  | do
 | 
      
         | 2850 |  |  |   # Extract the first word of "$ac_prog", so it can be a program name with args.
 | 
      
         | 2851 |  |  | set dummy $ac_prog; ac_word=$2
 | 
      
         | 2852 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 | 
      
         | 2853 |  |  | $as_echo_n "checking for $ac_word... " >&6; }
 | 
      
         | 2854 |  |  | if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
 | 
      
         | 2855 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 2856 |  |  | else
 | 
      
         | 2857 |  |  |   if test -n "$ac_ct_CC"; then
 | 
      
         | 2858 |  |  |   ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
 | 
      
         | 2859 |  |  | else
 | 
      
         | 2860 |  |  | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 | 
      
         | 2861 |  |  | for as_dir in $PATH
 | 
      
         | 2862 |  |  | do
 | 
      
         | 2863 |  |  |   IFS=$as_save_IFS
 | 
      
         | 2864 |  |  |   test -z "$as_dir" && as_dir=.
 | 
      
         | 2865 |  |  |     for ac_exec_ext in '' $ac_executable_extensions; do
 | 
      
         | 2866 |  |  |   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 | 
      
         | 2867 |  |  |     ac_cv_prog_ac_ct_CC="$ac_prog"
 | 
      
         | 2868 |  |  |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 | 
      
         | 2869 |  |  |     break 2
 | 
      
         | 2870 |  |  |   fi
 | 
      
         | 2871 |  |  | done
 | 
      
         | 2872 |  |  |   done
 | 
      
         | 2873 |  |  | IFS=$as_save_IFS
 | 
      
         | 2874 |  |  |  
 | 
      
         | 2875 |  |  | fi
 | 
      
         | 2876 |  |  | fi
 | 
      
         | 2877 |  |  | ac_ct_CC=$ac_cv_prog_ac_ct_CC
 | 
      
         | 2878 |  |  | if test -n "$ac_ct_CC"; then
 | 
      
         | 2879 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
 | 
      
         | 2880 |  |  | $as_echo "$ac_ct_CC" >&6; }
 | 
      
         | 2881 |  |  | else
 | 
      
         | 2882 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 | 
      
         | 2883 |  |  | $as_echo "no" >&6; }
 | 
      
         | 2884 |  |  | fi
 | 
      
         | 2885 |  |  |  
 | 
      
         | 2886 |  |  |  
 | 
      
         | 2887 |  |  |   test -n "$ac_ct_CC" && break
 | 
      
         | 2888 |  |  | done
 | 
      
         | 2889 |  |  |  
 | 
      
         | 2890 |  |  |   if test "x$ac_ct_CC" = x; then
 | 
      
         | 2891 |  |  |     CC=""
 | 
      
         | 2892 |  |  |   else
 | 
      
         | 2893 |  |  |     case $cross_compiling:$ac_tool_warned in
 | 
      
         | 2894 |  |  | yes:)
 | 
      
         | 2895 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
 | 
      
         | 2896 |  |  | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 | 
      
         | 2897 |  |  | ac_tool_warned=yes ;;
 | 
      
         | 2898 |  |  | esac
 | 
      
         | 2899 |  |  |     CC=$ac_ct_CC
 | 
      
         | 2900 |  |  |   fi
 | 
      
         | 2901 |  |  | fi
 | 
      
         | 2902 |  |  |  
 | 
      
         | 2903 |  |  | fi
 | 
      
         | 2904 |  |  |  
 | 
      
         | 2905 |  |  |  
 | 
      
         | 2906 |  |  | test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 | 
      
         | 2907 |  |  | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 | 
      
         | 2908 |  |  | as_fn_error "no acceptable C compiler found in \$PATH
 | 
      
         | 2909 |  |  | See \`config.log' for more details." "$LINENO" 5; }
 | 
      
         | 2910 |  |  |  
 | 
      
         | 2911 |  |  | # Provide some information about the compiler.
 | 
      
         | 2912 |  |  | $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
 | 
      
         | 2913 |  |  | set X $ac_compile
 | 
      
         | 2914 |  |  | ac_compiler=$2
 | 
      
         | 2915 |  |  | for ac_option in --version -v -V -qversion; do
 | 
      
         | 2916 |  |  |   { { ac_try="$ac_compiler $ac_option >&5"
 | 
      
         | 2917 |  |  | case "(($ac_try" in
 | 
      
         | 2918 |  |  |   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 | 
      
         | 2919 |  |  |   *) ac_try_echo=$ac_try;;
 | 
      
         | 2920 |  |  | esac
 | 
      
         | 2921 |  |  | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 | 
      
         | 2922 |  |  | $as_echo "$ac_try_echo"; } >&5
 | 
      
         | 2923 |  |  |   (eval "$ac_compiler $ac_option >&5") 2>conftest.err
 | 
      
         | 2924 |  |  |   ac_status=$?
 | 
      
         | 2925 |  |  |   if test -s conftest.err; then
 | 
      
         | 2926 |  |  |     sed '10a\
 | 
      
         | 2927 |  |  | ... rest of stderr output deleted ...
 | 
      
         | 2928 |  |  |          10q' conftest.err >conftest.er1
 | 
      
         | 2929 |  |  |     cat conftest.er1 >&5
 | 
      
         | 2930 |  |  |     rm -f conftest.er1 conftest.err
 | 
      
         | 2931 |  |  |   fi
 | 
      
         | 2932 |  |  |   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 | 
      
         | 2933 |  |  |   test $ac_status = 0; }
 | 
      
         | 2934 |  |  | done
 | 
      
         | 2935 |  |  |  
 | 
      
         | 2936 |  |  | cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 2937 |  |  | /* end confdefs.h.  */
 | 
      
         | 2938 |  |  |  
 | 
      
         | 2939 |  |  | int
 | 
      
         | 2940 |  |  | main ()
 | 
      
         | 2941 |  |  | {
 | 
      
         | 2942 |  |  |  
 | 
      
         | 2943 |  |  |   ;
 | 
      
         | 2944 |  |  |   return 0;
 | 
      
         | 2945 |  |  | }
 | 
      
         | 2946 |  |  | _ACEOF
 | 
      
         | 2947 |  |  | ac_clean_files_save=$ac_clean_files
 | 
      
         | 2948 |  |  | ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out conftest.out"
 | 
      
         | 2949 |  |  | # Try to create an executable without -o first, disregard a.out.
 | 
      
         | 2950 |  |  | # It will help us diagnose broken compilers, and finding out an intuition
 | 
      
         | 2951 |  |  | # of exeext.
 | 
      
         | 2952 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
 | 
      
         | 2953 |  |  | $as_echo_n "checking for C compiler default output file name... " >&6; }
 | 
      
         | 2954 |  |  | ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
 | 
      
         | 2955 |  |  |  
 | 
      
         | 2956 |  |  | # The possible output files:
 | 
      
         | 2957 |  |  | ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
 | 
      
         | 2958 |  |  |  
 | 
      
         | 2959 |  |  | ac_rmfiles=
 | 
      
         | 2960 |  |  | for ac_file in $ac_files
 | 
      
         | 2961 |  |  | do
 | 
      
         | 2962 |  |  |   case $ac_file in
 | 
      
         | 2963 |  |  |     *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
 | 
      
         | 2964 |  |  |     * ) ac_rmfiles="$ac_rmfiles $ac_file";;
 | 
      
         | 2965 |  |  |   esac
 | 
      
         | 2966 |  |  | done
 | 
      
         | 2967 |  |  | rm -f $ac_rmfiles
 | 
      
         | 2968 |  |  |  
 | 
      
         | 2969 |  |  | if { { ac_try="$ac_link_default"
 | 
      
         | 2970 |  |  | case "(($ac_try" in
 | 
      
         | 2971 |  |  |   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 | 
      
         | 2972 |  |  |   *) ac_try_echo=$ac_try;;
 | 
      
         | 2973 |  |  | esac
 | 
      
         | 2974 |  |  | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 | 
      
         | 2975 |  |  | $as_echo "$ac_try_echo"; } >&5
 | 
      
         | 2976 |  |  |   (eval "$ac_link_default") 2>&5
 | 
      
         | 2977 |  |  |   ac_status=$?
 | 
      
         | 2978 |  |  |   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 | 
      
         | 2979 |  |  |   test $ac_status = 0; }; then :
 | 
      
         | 2980 |  |  |   # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
 | 
      
         | 2981 |  |  | # So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
 | 
      
         | 2982 |  |  | # in a Makefile.  We should not override ac_cv_exeext if it was cached,
 | 
      
         | 2983 |  |  | # so that the user can short-circuit this test for compilers unknown to
 | 
      
         | 2984 |  |  | # Autoconf.
 | 
      
         | 2985 |  |  | for ac_file in $ac_files ''
 | 
      
         | 2986 |  |  | do
 | 
      
         | 2987 |  |  |   test -f "$ac_file" || continue
 | 
      
         | 2988 |  |  |   case $ac_file in
 | 
      
         | 2989 |  |  |     *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
 | 
      
         | 2990 |  |  |         ;;
 | 
      
         | 2991 |  |  |     [ab].out )
 | 
      
         | 2992 |  |  |         # We found the default executable, but exeext='' is most
 | 
      
         | 2993 |  |  |         # certainly right.
 | 
      
         | 2994 |  |  |         break;;
 | 
      
         | 2995 |  |  |     *.* )
 | 
      
         | 2996 |  |  |         if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
 | 
      
         | 2997 |  |  |         then :; else
 | 
      
         | 2998 |  |  |            ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 | 
      
         | 2999 |  |  |         fi
 | 
      
         | 3000 |  |  |         # We set ac_cv_exeext here because the later test for it is not
 | 
      
         | 3001 |  |  |         # safe: cross compilers may not add the suffix if given an `-o'
 | 
      
         | 3002 |  |  |         # argument, so we may need to know it at that point already.
 | 
      
         | 3003 |  |  |         # Even if this section looks crufty: it has the advantage of
 | 
      
         | 3004 |  |  |         # actually working.
 | 
      
         | 3005 |  |  |         break;;
 | 
      
         | 3006 |  |  |     * )
 | 
      
         | 3007 |  |  |         break;;
 | 
      
         | 3008 |  |  |   esac
 | 
      
         | 3009 |  |  | done
 | 
      
         | 3010 |  |  | test "$ac_cv_exeext" = no && ac_cv_exeext=
 | 
      
         | 3011 |  |  |  
 | 
      
         | 3012 |  |  | else
 | 
      
         | 3013 |  |  |   ac_file=''
 | 
      
         | 3014 |  |  | fi
 | 
      
         | 3015 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
 | 
      
         | 3016 |  |  | $as_echo "$ac_file" >&6; }
 | 
      
         | 3017 |  |  | if test -z "$ac_file"; then :
 | 
      
         | 3018 |  |  |   $as_echo "$as_me: failed program was:" >&5
 | 
      
         | 3019 |  |  | sed 's/^/| /' conftest.$ac_ext >&5
 | 
      
         | 3020 |  |  |  
 | 
      
         | 3021 |  |  | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 | 
      
         | 3022 |  |  | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 | 
      
         | 3023 |  |  | { as_fn_set_status 77
 | 
      
         | 3024 |  |  | as_fn_error "C compiler cannot create executables
 | 
      
         | 3025 |  |  | See \`config.log' for more details." "$LINENO" 5; }; }
 | 
      
         | 3026 |  |  | fi
 | 
      
         | 3027 |  |  | ac_exeext=$ac_cv_exeext
 | 
      
         | 3028 |  |  |  
 | 
      
         | 3029 |  |  | # Check that the compiler produces executables we can run.  If not, either
 | 
      
         | 3030 |  |  | # the compiler is broken, or we cross compile.
 | 
      
         | 3031 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
 | 
      
         | 3032 |  |  | $as_echo_n "checking whether the C compiler works... " >&6; }
 | 
      
         | 3033 |  |  | # If not cross compiling, check that we can run a simple program.
 | 
      
         | 3034 |  |  | if test "$cross_compiling" != yes; then
 | 
      
         | 3035 |  |  |   if { ac_try='./$ac_file'
 | 
      
         | 3036 |  |  |   { { case "(($ac_try" in
 | 
      
         | 3037 |  |  |   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 | 
      
         | 3038 |  |  |   *) ac_try_echo=$ac_try;;
 | 
      
         | 3039 |  |  | esac
 | 
      
         | 3040 |  |  | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 | 
      
         | 3041 |  |  | $as_echo "$ac_try_echo"; } >&5
 | 
      
         | 3042 |  |  |   (eval "$ac_try") 2>&5
 | 
      
         | 3043 |  |  |   ac_status=$?
 | 
      
         | 3044 |  |  |   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 | 
      
         | 3045 |  |  |   test $ac_status = 0; }; }; then
 | 
      
         | 3046 |  |  |     cross_compiling=no
 | 
      
         | 3047 |  |  |   else
 | 
      
         | 3048 |  |  |     if test "$cross_compiling" = maybe; then
 | 
      
         | 3049 |  |  |         cross_compiling=yes
 | 
      
         | 3050 |  |  |     else
 | 
      
         | 3051 |  |  |         { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 | 
      
         | 3052 |  |  | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 | 
      
         | 3053 |  |  | as_fn_error "cannot run C compiled programs.
 | 
      
         | 3054 |  |  | If you meant to cross compile, use \`--host'.
 | 
      
         | 3055 |  |  | See \`config.log' for more details." "$LINENO" 5; }
 | 
      
         | 3056 |  |  |     fi
 | 
      
         | 3057 |  |  |   fi
 | 
      
         | 3058 |  |  | fi
 | 
      
         | 3059 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 | 
      
         | 3060 |  |  | $as_echo "yes" >&6; }
 | 
      
         | 3061 |  |  |  
 | 
      
         | 3062 |  |  | rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out conftest.out
 | 
      
         | 3063 |  |  | ac_clean_files=$ac_clean_files_save
 | 
      
         | 3064 |  |  | # Check that the compiler produces executables we can run.  If not, either
 | 
      
         | 3065 |  |  | # the compiler is broken, or we cross compile.
 | 
      
         | 3066 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
 | 
      
         | 3067 |  |  | $as_echo_n "checking whether we are cross compiling... " >&6; }
 | 
      
         | 3068 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
 | 
      
         | 3069 |  |  | $as_echo "$cross_compiling" >&6; }
 | 
      
         | 3070 |  |  |  
 | 
      
         | 3071 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
 | 
      
         | 3072 |  |  | $as_echo_n "checking for suffix of executables... " >&6; }
 | 
      
         | 3073 |  |  | if { { ac_try="$ac_link"
 | 
      
         | 3074 |  |  | case "(($ac_try" in
 | 
      
         | 3075 |  |  |   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 | 
      
         | 3076 |  |  |   *) ac_try_echo=$ac_try;;
 | 
      
         | 3077 |  |  | esac
 | 
      
         | 3078 |  |  | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 | 
      
         | 3079 |  |  | $as_echo "$ac_try_echo"; } >&5
 | 
      
         | 3080 |  |  |   (eval "$ac_link") 2>&5
 | 
      
         | 3081 |  |  |   ac_status=$?
 | 
      
         | 3082 |  |  |   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 | 
      
         | 3083 |  |  |   test $ac_status = 0; }; then :
 | 
      
         | 3084 |  |  |   # If both `conftest.exe' and `conftest' are `present' (well, observable)
 | 
      
         | 3085 |  |  | # catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
 | 
      
         | 3086 |  |  | # work properly (i.e., refer to `conftest.exe'), while it won't with
 | 
      
         | 3087 |  |  | # `rm'.
 | 
      
         | 3088 |  |  | for ac_file in conftest.exe conftest conftest.*; do
 | 
      
         | 3089 |  |  |   test -f "$ac_file" || continue
 | 
      
         | 3090 |  |  |   case $ac_file in
 | 
      
         | 3091 |  |  |     *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
 | 
      
         | 3092 |  |  |     *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 | 
      
         | 3093 |  |  |           break;;
 | 
      
         | 3094 |  |  |     * ) break;;
 | 
      
         | 3095 |  |  |   esac
 | 
      
         | 3096 |  |  | done
 | 
      
         | 3097 |  |  | else
 | 
      
         | 3098 |  |  |   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 | 
      
         | 3099 |  |  | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 | 
      
         | 3100 |  |  | as_fn_error "cannot compute suffix of executables: cannot compile and link
 | 
      
         | 3101 |  |  | See \`config.log' for more details." "$LINENO" 5; }
 | 
      
         | 3102 |  |  | fi
 | 
      
         | 3103 |  |  | rm -f conftest$ac_cv_exeext
 | 
      
         | 3104 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
 | 
      
         | 3105 |  |  | $as_echo "$ac_cv_exeext" >&6; }
 | 
      
         | 3106 |  |  |  
 | 
      
         | 3107 |  |  | rm -f conftest.$ac_ext
 | 
      
         | 3108 |  |  | EXEEXT=$ac_cv_exeext
 | 
      
         | 3109 |  |  | ac_exeext=$EXEEXT
 | 
      
         | 3110 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
 | 
      
         | 3111 |  |  | $as_echo_n "checking for suffix of object files... " >&6; }
 | 
      
         | 3112 |  |  | if test "${ac_cv_objext+set}" = set; then :
 | 
      
         | 3113 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 3114 |  |  | else
 | 
      
         | 3115 |  |  |   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 3116 |  |  | /* end confdefs.h.  */
 | 
      
         | 3117 |  |  |  
 | 
      
         | 3118 |  |  | int
 | 
      
         | 3119 |  |  | main ()
 | 
      
         | 3120 |  |  | {
 | 
      
         | 3121 |  |  |  
 | 
      
         | 3122 |  |  |   ;
 | 
      
         | 3123 |  |  |   return 0;
 | 
      
         | 3124 |  |  | }
 | 
      
         | 3125 |  |  | _ACEOF
 | 
      
         | 3126 |  |  | rm -f conftest.o conftest.obj
 | 
      
         | 3127 |  |  | if { { ac_try="$ac_compile"
 | 
      
         | 3128 |  |  | case "(($ac_try" in
 | 
      
         | 3129 |  |  |   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 | 
      
         | 3130 |  |  |   *) ac_try_echo=$ac_try;;
 | 
      
         | 3131 |  |  | esac
 | 
      
         | 3132 |  |  | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 | 
      
         | 3133 |  |  | $as_echo "$ac_try_echo"; } >&5
 | 
      
         | 3134 |  |  |   (eval "$ac_compile") 2>&5
 | 
      
         | 3135 |  |  |   ac_status=$?
 | 
      
         | 3136 |  |  |   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 | 
      
         | 3137 |  |  |   test $ac_status = 0; }; then :
 | 
      
         | 3138 |  |  |   for ac_file in conftest.o conftest.obj conftest.*; do
 | 
      
         | 3139 |  |  |   test -f "$ac_file" || continue;
 | 
      
         | 3140 |  |  |   case $ac_file in
 | 
      
         | 3141 |  |  |     *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
 | 
      
         | 3142 |  |  |     *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
 | 
      
         | 3143 |  |  |        break;;
 | 
      
         | 3144 |  |  |   esac
 | 
      
         | 3145 |  |  | done
 | 
      
         | 3146 |  |  | else
 | 
      
         | 3147 |  |  |   $as_echo "$as_me: failed program was:" >&5
 | 
      
         | 3148 |  |  | sed 's/^/| /' conftest.$ac_ext >&5
 | 
      
         | 3149 |  |  |  
 | 
      
         | 3150 |  |  | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 | 
      
         | 3151 |  |  | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 | 
      
         | 3152 |  |  | as_fn_error "cannot compute suffix of object files: cannot compile
 | 
      
         | 3153 |  |  | See \`config.log' for more details." "$LINENO" 5; }
 | 
      
         | 3154 |  |  | fi
 | 
      
         | 3155 |  |  | rm -f conftest.$ac_cv_objext conftest.$ac_ext
 | 
      
         | 3156 |  |  | fi
 | 
      
         | 3157 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
 | 
      
         | 3158 |  |  | $as_echo "$ac_cv_objext" >&6; }
 | 
      
         | 3159 |  |  | OBJEXT=$ac_cv_objext
 | 
      
         | 3160 |  |  | ac_objext=$OBJEXT
 | 
      
         | 3161 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
 | 
      
         | 3162 |  |  | $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
 | 
      
         | 3163 |  |  | if test "${ac_cv_c_compiler_gnu+set}" = set; then :
 | 
      
         | 3164 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 3165 |  |  | else
 | 
      
         | 3166 |  |  |   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 3167 |  |  | /* end confdefs.h.  */
 | 
      
         | 3168 |  |  |  
 | 
      
         | 3169 |  |  | int
 | 
      
         | 3170 |  |  | main ()
 | 
      
         | 3171 |  |  | {
 | 
      
         | 3172 |  |  | #ifndef __GNUC__
 | 
      
         | 3173 |  |  |        choke me
 | 
      
         | 3174 |  |  | #endif
 | 
      
         | 3175 |  |  |  
 | 
      
         | 3176 |  |  |   ;
 | 
      
         | 3177 |  |  |   return 0;
 | 
      
         | 3178 |  |  | }
 | 
      
         | 3179 |  |  | _ACEOF
 | 
      
         | 3180 |  |  | if ac_fn_c_try_compile "$LINENO"; then :
 | 
      
         | 3181 |  |  |   ac_compiler_gnu=yes
 | 
      
         | 3182 |  |  | else
 | 
      
         | 3183 |  |  |   ac_compiler_gnu=no
 | 
      
         | 3184 |  |  | fi
 | 
      
         | 3185 |  |  | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 | 
      
         | 3186 |  |  | ac_cv_c_compiler_gnu=$ac_compiler_gnu
 | 
      
         | 3187 |  |  |  
 | 
      
         | 3188 |  |  | fi
 | 
      
         | 3189 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
 | 
      
         | 3190 |  |  | $as_echo "$ac_cv_c_compiler_gnu" >&6; }
 | 
      
         | 3191 |  |  | if test $ac_compiler_gnu = yes; then
 | 
      
         | 3192 |  |  |   GCC=yes
 | 
      
         | 3193 |  |  | else
 | 
      
         | 3194 |  |  |   GCC=
 | 
      
         | 3195 |  |  | fi
 | 
      
         | 3196 |  |  | ac_test_CFLAGS=${CFLAGS+set}
 | 
      
         | 3197 |  |  | ac_save_CFLAGS=$CFLAGS
 | 
      
         | 3198 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
 | 
      
         | 3199 |  |  | $as_echo_n "checking whether $CC accepts -g... " >&6; }
 | 
      
         | 3200 |  |  | if test "${ac_cv_prog_cc_g+set}" = set; then :
 | 
      
         | 3201 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 3202 |  |  | else
 | 
      
         | 3203 |  |  |   ac_save_c_werror_flag=$ac_c_werror_flag
 | 
      
         | 3204 |  |  |    ac_c_werror_flag=yes
 | 
      
         | 3205 |  |  |    ac_cv_prog_cc_g=no
 | 
      
         | 3206 |  |  |    CFLAGS="-g"
 | 
      
         | 3207 |  |  |    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 3208 |  |  | /* end confdefs.h.  */
 | 
      
         | 3209 |  |  |  
 | 
      
         | 3210 |  |  | int
 | 
      
         | 3211 |  |  | main ()
 | 
      
         | 3212 |  |  | {
 | 
      
         | 3213 |  |  |  
 | 
      
         | 3214 |  |  |   ;
 | 
      
         | 3215 |  |  |   return 0;
 | 
      
         | 3216 |  |  | }
 | 
      
         | 3217 |  |  | _ACEOF
 | 
      
         | 3218 |  |  | if ac_fn_c_try_compile "$LINENO"; then :
 | 
      
         | 3219 |  |  |   ac_cv_prog_cc_g=yes
 | 
      
         | 3220 |  |  | else
 | 
      
         | 3221 |  |  |   CFLAGS=""
 | 
      
         | 3222 |  |  |       cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 3223 |  |  | /* end confdefs.h.  */
 | 
      
         | 3224 |  |  |  
 | 
      
         | 3225 |  |  | int
 | 
      
         | 3226 |  |  | main ()
 | 
      
         | 3227 |  |  | {
 | 
      
         | 3228 |  |  |  
 | 
      
         | 3229 |  |  |   ;
 | 
      
         | 3230 |  |  |   return 0;
 | 
      
         | 3231 |  |  | }
 | 
      
         | 3232 |  |  | _ACEOF
 | 
      
         | 3233 |  |  | if ac_fn_c_try_compile "$LINENO"; then :
 | 
      
         | 3234 |  |  |  
 | 
      
         | 3235 |  |  | else
 | 
      
         | 3236 |  |  |   ac_c_werror_flag=$ac_save_c_werror_flag
 | 
      
         | 3237 |  |  |          CFLAGS="-g"
 | 
      
         | 3238 |  |  |          cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 3239 |  |  | /* end confdefs.h.  */
 | 
      
         | 3240 |  |  |  
 | 
      
         | 3241 |  |  | int
 | 
      
         | 3242 |  |  | main ()
 | 
      
         | 3243 |  |  | {
 | 
      
         | 3244 |  |  |  
 | 
      
         | 3245 |  |  |   ;
 | 
      
         | 3246 |  |  |   return 0;
 | 
      
         | 3247 |  |  | }
 | 
      
         | 3248 |  |  | _ACEOF
 | 
      
         | 3249 |  |  | if ac_fn_c_try_compile "$LINENO"; then :
 | 
      
         | 3250 |  |  |   ac_cv_prog_cc_g=yes
 | 
      
         | 3251 |  |  | fi
 | 
      
         | 3252 |  |  | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 | 
      
         | 3253 |  |  | fi
 | 
      
         | 3254 |  |  | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 | 
      
         | 3255 |  |  | fi
 | 
      
         | 3256 |  |  | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 | 
      
         | 3257 |  |  |    ac_c_werror_flag=$ac_save_c_werror_flag
 | 
      
         | 3258 |  |  | fi
 | 
      
         | 3259 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
 | 
      
         | 3260 |  |  | $as_echo "$ac_cv_prog_cc_g" >&6; }
 | 
      
         | 3261 |  |  | if test "$ac_test_CFLAGS" = set; then
 | 
      
         | 3262 |  |  |   CFLAGS=$ac_save_CFLAGS
 | 
      
         | 3263 |  |  | elif test $ac_cv_prog_cc_g = yes; then
 | 
      
         | 3264 |  |  |   if test "$GCC" = yes; then
 | 
      
         | 3265 |  |  |     CFLAGS="-g -O2"
 | 
      
         | 3266 |  |  |   else
 | 
      
         | 3267 |  |  |     CFLAGS="-g"
 | 
      
         | 3268 |  |  |   fi
 | 
      
         | 3269 |  |  | else
 | 
      
         | 3270 |  |  |   if test "$GCC" = yes; then
 | 
      
         | 3271 |  |  |     CFLAGS="-O2"
 | 
      
         | 3272 |  |  |   else
 | 
      
         | 3273 |  |  |     CFLAGS=
 | 
      
         | 3274 |  |  |   fi
 | 
      
         | 3275 |  |  | fi
 | 
      
         | 3276 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
 | 
      
         | 3277 |  |  | $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
 | 
      
         | 3278 |  |  | if test "${ac_cv_prog_cc_c89+set}" = set; then :
 | 
      
         | 3279 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 3280 |  |  | else
 | 
      
         | 3281 |  |  |   ac_cv_prog_cc_c89=no
 | 
      
         | 3282 |  |  | ac_save_CC=$CC
 | 
      
         | 3283 |  |  | cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 3284 |  |  | /* end confdefs.h.  */
 | 
      
         | 3285 |  |  | #include 
 | 
      
         | 3286 |  |  | #include 
 | 
      
         | 3287 |  |  | #include 
 | 
      
         | 3288 |  |  | #include 
 | 
      
         | 3289 |  |  | /* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
 | 
      
         | 3290 |  |  | struct buf { int x; };
 | 
      
         | 3291 |  |  | FILE * (*rcsopen) (struct buf *, struct stat *, int);
 | 
      
         | 3292 |  |  | static char *e (p, i)
 | 
      
         | 3293 |  |  |      char **p;
 | 
      
         | 3294 |  |  |      int i;
 | 
      
         | 3295 |  |  | {
 | 
      
         | 3296 |  |  |   return p[i];
 | 
      
         | 3297 |  |  | }
 | 
      
         | 3298 |  |  | static char *f (char * (*g) (char **, int), char **p, ...)
 | 
      
         | 3299 |  |  | {
 | 
      
         | 3300 |  |  |   char *s;
 | 
      
         | 3301 |  |  |   va_list v;
 | 
      
         | 3302 |  |  |   va_start (v,p);
 | 
      
         | 3303 |  |  |   s = g (p, va_arg (v,int));
 | 
      
         | 3304 |  |  |   va_end (v);
 | 
      
         | 3305 |  |  |   return s;
 | 
      
         | 3306 |  |  | }
 | 
      
         | 3307 |  |  |  
 | 
      
         | 3308 |  |  | /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
 | 
      
         | 3309 |  |  |    function prototypes and stuff, but not '\xHH' hex character constants.
 | 
      
         | 3310 |  |  |    These don't provoke an error unfortunately, instead are silently treated
 | 
      
         | 3311 |  |  |    as 'x'.  The following induces an error, until -std is added to get
 | 
      
         | 3312 |  |  |    proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
 | 
      
         | 3313 |  |  |    array size at least.  It's necessary to write '\x00'==0 to get something
 | 
      
         | 3314 |  |  |    that's true only with -std.  */
 | 
      
         | 3315 |  |  | int osf4_cc_array ['\x00' == 0 ? 1 : -1];
 | 
      
         | 3316 |  |  |  
 | 
      
         | 3317 |  |  | /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
 | 
      
         | 3318 |  |  |    inside strings and character constants.  */
 | 
      
         | 3319 |  |  | #define FOO(x) 'x'
 | 
      
         | 3320 |  |  | int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
 | 
      
         | 3321 |  |  |  
 | 
      
         | 3322 |  |  | int test (int i, double x);
 | 
      
         | 3323 |  |  | struct s1 {int (*f) (int a);};
 | 
      
         | 3324 |  |  | struct s2 {int (*f) (double a);};
 | 
      
         | 3325 |  |  | int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
 | 
      
         | 3326 |  |  | int argc;
 | 
      
         | 3327 |  |  | char **argv;
 | 
      
         | 3328 |  |  | int
 | 
      
         | 3329 |  |  | main ()
 | 
      
         | 3330 |  |  | {
 | 
      
         | 3331 |  |  | return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
 | 
      
         | 3332 |  |  |   ;
 | 
      
         | 3333 |  |  |   return 0;
 | 
      
         | 3334 |  |  | }
 | 
      
         | 3335 |  |  | _ACEOF
 | 
      
         | 3336 |  |  | for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
 | 
      
         | 3337 |  |  |         -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
 | 
      
         | 3338 |  |  | do
 | 
      
         | 3339 |  |  |   CC="$ac_save_CC $ac_arg"
 | 
      
         | 3340 |  |  |   if ac_fn_c_try_compile "$LINENO"; then :
 | 
      
         | 3341 |  |  |   ac_cv_prog_cc_c89=$ac_arg
 | 
      
         | 3342 |  |  | fi
 | 
      
         | 3343 |  |  | rm -f core conftest.err conftest.$ac_objext
 | 
      
         | 3344 |  |  |   test "x$ac_cv_prog_cc_c89" != "xno" && break
 | 
      
         | 3345 |  |  | done
 | 
      
         | 3346 |  |  | rm -f conftest.$ac_ext
 | 
      
         | 3347 |  |  | CC=$ac_save_CC
 | 
      
         | 3348 |  |  |  
 | 
      
         | 3349 |  |  | fi
 | 
      
         | 3350 |  |  | # AC_CACHE_VAL
 | 
      
         | 3351 |  |  | case "x$ac_cv_prog_cc_c89" in
 | 
      
         | 3352 |  |  |   x)
 | 
      
         | 3353 |  |  |     { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
 | 
      
         | 3354 |  |  | $as_echo "none needed" >&6; } ;;
 | 
      
         | 3355 |  |  |   xno)
 | 
      
         | 3356 |  |  |     { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
 | 
      
         | 3357 |  |  | $as_echo "unsupported" >&6; } ;;
 | 
      
         | 3358 |  |  |   *)
 | 
      
         | 3359 |  |  |     CC="$CC $ac_cv_prog_cc_c89"
 | 
      
         | 3360 |  |  |     { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
 | 
      
         | 3361 |  |  | $as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
 | 
      
         | 3362 |  |  | esac
 | 
      
         | 3363 |  |  | if test "x$ac_cv_prog_cc_c89" != xno; then :
 | 
      
         | 3364 |  |  |  
 | 
      
         | 3365 |  |  | fi
 | 
      
         | 3366 |  |  |  
 | 
      
         | 3367 |  |  | ac_ext=c
 | 
      
         | 3368 |  |  | ac_cpp='$CPP $CPPFLAGS'
 | 
      
         | 3369 |  |  | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 | 
      
         | 3370 |  |  | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 | 
      
         | 3371 |  |  | ac_compiler_gnu=$ac_cv_c_compiler_gnu
 | 
      
         | 3372 |  |  |  
 | 
      
         | 3373 |  |  | # Find a good install program.  We prefer a C program (faster),
 | 
      
         | 3374 |  |  | # so one script is as good as another.  But avoid the broken or
 | 
      
         | 3375 |  |  | # incompatible versions:
 | 
      
         | 3376 |  |  | # SysV /etc/install, /usr/sbin/install
 | 
      
         | 3377 |  |  | # SunOS /usr/etc/install
 | 
      
         | 3378 |  |  | # IRIX /sbin/install
 | 
      
         | 3379 |  |  | # AIX /bin/install
 | 
      
         | 3380 |  |  | # AmigaOS /C/install, which installs bootblocks on floppy discs
 | 
      
         | 3381 |  |  | # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
 | 
      
         | 3382 |  |  | # AFS /usr/afsws/bin/install, which mishandles nonexistent args
 | 
      
         | 3383 |  |  | # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
 | 
      
         | 3384 |  |  | # OS/2's system install, which has a completely different semantic
 | 
      
         | 3385 |  |  | # ./install, which can be erroneously created by make from ./install.sh.
 | 
      
         | 3386 |  |  | # Reject install programs that cannot install multiple files.
 | 
      
         | 3387 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
 | 
      
         | 3388 |  |  | $as_echo_n "checking for a BSD-compatible install... " >&6; }
 | 
      
         | 3389 |  |  | if test -z "$INSTALL"; then
 | 
      
         | 3390 |  |  | if test "${ac_cv_path_install+set}" = set; then :
 | 
      
         | 3391 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 3392 |  |  | else
 | 
      
         | 3393 |  |  |   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 | 
      
         | 3394 |  |  | for as_dir in $PATH
 | 
      
         | 3395 |  |  | do
 | 
      
         | 3396 |  |  |   IFS=$as_save_IFS
 | 
      
         | 3397 |  |  |   test -z "$as_dir" && as_dir=.
 | 
      
         | 3398 |  |  |     # Account for people who put trailing slashes in PATH elements.
 | 
      
         | 3399 |  |  | case $as_dir/ in #((
 | 
      
         | 3400 |  |  |   ./ | .// | /[cC]/* | \
 | 
      
         | 3401 |  |  |   /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
 | 
      
         | 3402 |  |  |   ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
 | 
      
         | 3403 |  |  |   /usr/ucb/* ) ;;
 | 
      
         | 3404 |  |  |   *)
 | 
      
         | 3405 |  |  |     # OSF1 and SCO ODT 3.0 have their own names for install.
 | 
      
         | 3406 |  |  |     # Don't use installbsd from OSF since it installs stuff as root
 | 
      
         | 3407 |  |  |     # by default.
 | 
      
         | 3408 |  |  |     for ac_prog in ginstall scoinst install; do
 | 
      
         | 3409 |  |  |       for ac_exec_ext in '' $ac_executable_extensions; do
 | 
      
         | 3410 |  |  |         if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
 | 
      
         | 3411 |  |  |           if test $ac_prog = install &&
 | 
      
         | 3412 |  |  |             grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
 | 
      
         | 3413 |  |  |             # AIX install.  It has an incompatible calling convention.
 | 
      
         | 3414 |  |  |             :
 | 
      
         | 3415 |  |  |           elif test $ac_prog = install &&
 | 
      
         | 3416 |  |  |             grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
 | 
      
         | 3417 |  |  |             # program-specific install script used by HP pwplus--don't use.
 | 
      
         | 3418 |  |  |             :
 | 
      
         | 3419 |  |  |           else
 | 
      
         | 3420 |  |  |             rm -rf conftest.one conftest.two conftest.dir
 | 
      
         | 3421 |  |  |             echo one > conftest.one
 | 
      
         | 3422 |  |  |             echo two > conftest.two
 | 
      
         | 3423 |  |  |             mkdir conftest.dir
 | 
      
         | 3424 |  |  |             if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
 | 
      
         | 3425 |  |  |               test -s conftest.one && test -s conftest.two &&
 | 
      
         | 3426 |  |  |               test -s conftest.dir/conftest.one &&
 | 
      
         | 3427 |  |  |               test -s conftest.dir/conftest.two
 | 
      
         | 3428 |  |  |             then
 | 
      
         | 3429 |  |  |               ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
 | 
      
         | 3430 |  |  |               break 3
 | 
      
         | 3431 |  |  |             fi
 | 
      
         | 3432 |  |  |           fi
 | 
      
         | 3433 |  |  |         fi
 | 
      
         | 3434 |  |  |       done
 | 
      
         | 3435 |  |  |     done
 | 
      
         | 3436 |  |  |     ;;
 | 
      
         | 3437 |  |  | esac
 | 
      
         | 3438 |  |  |  
 | 
      
         | 3439 |  |  |   done
 | 
      
         | 3440 |  |  | IFS=$as_save_IFS
 | 
      
         | 3441 |  |  |  
 | 
      
         | 3442 |  |  | rm -rf conftest.one conftest.two conftest.dir
 | 
      
         | 3443 |  |  |  
 | 
      
         | 3444 |  |  | fi
 | 
      
         | 3445 |  |  |   if test "${ac_cv_path_install+set}" = set; then
 | 
      
         | 3446 |  |  |     INSTALL=$ac_cv_path_install
 | 
      
         | 3447 |  |  |   else
 | 
      
         | 3448 |  |  |     # As a last resort, use the slow shell script.  Don't cache a
 | 
      
         | 3449 |  |  |     # value for INSTALL within a source directory, because that will
 | 
      
         | 3450 |  |  |     # break other packages using the cache if that directory is
 | 
      
         | 3451 |  |  |     # removed, or if the value is a relative name.
 | 
      
         | 3452 |  |  |     INSTALL=$ac_install_sh
 | 
      
         | 3453 |  |  |   fi
 | 
      
         | 3454 |  |  | fi
 | 
      
         | 3455 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
 | 
      
         | 3456 |  |  | $as_echo "$INSTALL" >&6; }
 | 
      
         | 3457 |  |  |  
 | 
      
         | 3458 |  |  | # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
 | 
      
         | 3459 |  |  | # It thinks the first close brace ends the variable substitution.
 | 
      
         | 3460 |  |  | test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
 | 
      
         | 3461 |  |  |  
 | 
      
         | 3462 |  |  | test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
 | 
      
         | 3463 |  |  |  
 | 
      
         | 3464 |  |  | test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
 | 
      
         | 3465 |  |  |  
 | 
      
         | 3466 |  |  |  
 | 
      
         | 3467 |  |  | # Put a plausible default for CC_FOR_BUILD in Makefile.
 | 
      
         | 3468 |  |  | if test "x$cross_compiling" = "xno"; then
 | 
      
         | 3469 |  |  |   CC_FOR_BUILD='$(CC)'
 | 
      
         | 3470 |  |  | else
 | 
      
         | 3471 |  |  |   CC_FOR_BUILD=gcc
 | 
      
         | 3472 |  |  | fi
 | 
      
         | 3473 |  |  |  
 | 
      
         | 3474 |  |  |  
 | 
      
         | 3475 |  |  |  
 | 
      
         | 3476 |  |  |  
 | 
      
         | 3477 |  |  | AR=${AR-ar}
 | 
      
         | 3478 |  |  |  
 | 
      
         | 3479 |  |  | if test -n "$ac_tool_prefix"; then
 | 
      
         | 3480 |  |  |   # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
 | 
      
         | 3481 |  |  | set dummy ${ac_tool_prefix}ranlib; ac_word=$2
 | 
      
         | 3482 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 | 
      
         | 3483 |  |  | $as_echo_n "checking for $ac_word... " >&6; }
 | 
      
         | 3484 |  |  | if test "${ac_cv_prog_RANLIB+set}" = set; then :
 | 
      
         | 3485 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 3486 |  |  | else
 | 
      
         | 3487 |  |  |   if test -n "$RANLIB"; then
 | 
      
         | 3488 |  |  |   ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
 | 
      
         | 3489 |  |  | else
 | 
      
         | 3490 |  |  | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 | 
      
         | 3491 |  |  | for as_dir in $PATH
 | 
      
         | 3492 |  |  | do
 | 
      
         | 3493 |  |  |   IFS=$as_save_IFS
 | 
      
         | 3494 |  |  |   test -z "$as_dir" && as_dir=.
 | 
      
         | 3495 |  |  |     for ac_exec_ext in '' $ac_executable_extensions; do
 | 
      
         | 3496 |  |  |   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 | 
      
         | 3497 |  |  |     ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
 | 
      
         | 3498 |  |  |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 | 
      
         | 3499 |  |  |     break 2
 | 
      
         | 3500 |  |  |   fi
 | 
      
         | 3501 |  |  | done
 | 
      
         | 3502 |  |  |   done
 | 
      
         | 3503 |  |  | IFS=$as_save_IFS
 | 
      
         | 3504 |  |  |  
 | 
      
         | 3505 |  |  | fi
 | 
      
         | 3506 |  |  | fi
 | 
      
         | 3507 |  |  | RANLIB=$ac_cv_prog_RANLIB
 | 
      
         | 3508 |  |  | if test -n "$RANLIB"; then
 | 
      
         | 3509 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5
 | 
      
         | 3510 |  |  | $as_echo "$RANLIB" >&6; }
 | 
      
         | 3511 |  |  | else
 | 
      
         | 3512 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 | 
      
         | 3513 |  |  | $as_echo "no" >&6; }
 | 
      
         | 3514 |  |  | fi
 | 
      
         | 3515 |  |  |  
 | 
      
         | 3516 |  |  |  
 | 
      
         | 3517 |  |  | fi
 | 
      
         | 3518 |  |  | if test -z "$ac_cv_prog_RANLIB"; then
 | 
      
         | 3519 |  |  |   ac_ct_RANLIB=$RANLIB
 | 
      
         | 3520 |  |  |   # Extract the first word of "ranlib", so it can be a program name with args.
 | 
      
         | 3521 |  |  | set dummy ranlib; ac_word=$2
 | 
      
         | 3522 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 | 
      
         | 3523 |  |  | $as_echo_n "checking for $ac_word... " >&6; }
 | 
      
         | 3524 |  |  | if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :
 | 
      
         | 3525 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 3526 |  |  | else
 | 
      
         | 3527 |  |  |   if test -n "$ac_ct_RANLIB"; then
 | 
      
         | 3528 |  |  |   ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
 | 
      
         | 3529 |  |  | else
 | 
      
         | 3530 |  |  | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 | 
      
         | 3531 |  |  | for as_dir in $PATH
 | 
      
         | 3532 |  |  | do
 | 
      
         | 3533 |  |  |   IFS=$as_save_IFS
 | 
      
         | 3534 |  |  |   test -z "$as_dir" && as_dir=.
 | 
      
         | 3535 |  |  |     for ac_exec_ext in '' $ac_executable_extensions; do
 | 
      
         | 3536 |  |  |   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 | 
      
         | 3537 |  |  |     ac_cv_prog_ac_ct_RANLIB="ranlib"
 | 
      
         | 3538 |  |  |     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 | 
      
         | 3539 |  |  |     break 2
 | 
      
         | 3540 |  |  |   fi
 | 
      
         | 3541 |  |  | done
 | 
      
         | 3542 |  |  |   done
 | 
      
         | 3543 |  |  | IFS=$as_save_IFS
 | 
      
         | 3544 |  |  |  
 | 
      
         | 3545 |  |  | fi
 | 
      
         | 3546 |  |  | fi
 | 
      
         | 3547 |  |  | ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
 | 
      
         | 3548 |  |  | if test -n "$ac_ct_RANLIB"; then
 | 
      
         | 3549 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5
 | 
      
         | 3550 |  |  | $as_echo "$ac_ct_RANLIB" >&6; }
 | 
      
         | 3551 |  |  | else
 | 
      
         | 3552 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 | 
      
         | 3553 |  |  | $as_echo "no" >&6; }
 | 
      
         | 3554 |  |  | fi
 | 
      
         | 3555 |  |  |  
 | 
      
         | 3556 |  |  |   if test "x$ac_ct_RANLIB" = x; then
 | 
      
         | 3557 |  |  |     RANLIB=":"
 | 
      
         | 3558 |  |  |   else
 | 
      
         | 3559 |  |  |     case $cross_compiling:$ac_tool_warned in
 | 
      
         | 3560 |  |  | yes:)
 | 
      
         | 3561 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
 | 
      
         | 3562 |  |  | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 | 
      
         | 3563 |  |  | ac_tool_warned=yes ;;
 | 
      
         | 3564 |  |  | esac
 | 
      
         | 3565 |  |  |     RANLIB=$ac_ct_RANLIB
 | 
      
         | 3566 |  |  |   fi
 | 
      
         | 3567 |  |  | else
 | 
      
         | 3568 |  |  |   RANLIB="$ac_cv_prog_RANLIB"
 | 
      
         | 3569 |  |  | fi
 | 
      
         | 3570 |  |  |  
 | 
      
         | 3571 |  |  |  
 | 
      
         | 3572 |  |  | ALL_LINGUAS=
 | 
      
         | 3573 |  |  | # If we haven't got the data from the intl directory,
 | 
      
         | 3574 |  |  | # assume NLS is disabled.
 | 
      
         | 3575 |  |  | USE_NLS=no
 | 
      
         | 3576 |  |  | LIBINTL=
 | 
      
         | 3577 |  |  | LIBINTL_DEP=
 | 
      
         | 3578 |  |  | INCINTL=
 | 
      
         | 3579 |  |  | XGETTEXT=
 | 
      
         | 3580 |  |  | GMSGFMT=
 | 
      
         | 3581 |  |  | POSUB=
 | 
      
         | 3582 |  |  |  
 | 
      
         | 3583 |  |  | if test -f  ../../intl/config.intl; then
 | 
      
         | 3584 |  |  |   .  ../../intl/config.intl
 | 
      
         | 3585 |  |  | fi
 | 
      
         | 3586 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5
 | 
      
         | 3587 |  |  | $as_echo_n "checking whether NLS is requested... " >&6; }
 | 
      
         | 3588 |  |  | if test x"$USE_NLS" != xyes; then
 | 
      
         | 3589 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 | 
      
         | 3590 |  |  | $as_echo "no" >&6; }
 | 
      
         | 3591 |  |  | else
 | 
      
         | 3592 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 | 
      
         | 3593 |  |  | $as_echo "yes" >&6; }
 | 
      
         | 3594 |  |  |  
 | 
      
         | 3595 |  |  | $as_echo "#define ENABLE_NLS 1" >>confdefs.h
 | 
      
         | 3596 |  |  |  
 | 
      
         | 3597 |  |  |  
 | 
      
         | 3598 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for catalogs to be installed" >&5
 | 
      
         | 3599 |  |  | $as_echo_n "checking for catalogs to be installed... " >&6; }
 | 
      
         | 3600 |  |  |   # Look for .po and .gmo files in the source directory.
 | 
      
         | 3601 |  |  |   CATALOGS=
 | 
      
         | 3602 |  |  |   XLINGUAS=
 | 
      
         | 3603 |  |  |   for cat in $srcdir/po/*.gmo $srcdir/po/*.po; do
 | 
      
         | 3604 |  |  |     # If there aren't any .gmo files the shell will give us the
 | 
      
         | 3605 |  |  |     # literal string "../path/to/srcdir/po/*.gmo" which has to be
 | 
      
         | 3606 |  |  |     # weeded out.
 | 
      
         | 3607 |  |  |     case "$cat" in *\**)
 | 
      
         | 3608 |  |  |       continue;;
 | 
      
         | 3609 |  |  |     esac
 | 
      
         | 3610 |  |  |     # The quadruple backslash is collapsed to a double backslash
 | 
      
         | 3611 |  |  |     # by the backticks, then collapsed again by the double quotes,
 | 
      
         | 3612 |  |  |     # leaving us with one backslash in the sed expression (right
 | 
      
         | 3613 |  |  |     # before the dot that mustn't act as a wildcard).
 | 
      
         | 3614 |  |  |     cat=`echo $cat | sed -e "s!$srcdir/po/!!" -e "s!\\\\.po!.gmo!"`
 | 
      
         | 3615 |  |  |     lang=`echo $cat | sed -e "s!\\\\.gmo!!"`
 | 
      
         | 3616 |  |  |     # The user is allowed to set LINGUAS to a list of languages to
 | 
      
         | 3617 |  |  |     # install catalogs for.  If it's empty that means "all of them."
 | 
      
         | 3618 |  |  |     if test "x$LINGUAS" = x; then
 | 
      
         | 3619 |  |  |       CATALOGS="$CATALOGS $cat"
 | 
      
         | 3620 |  |  |       XLINGUAS="$XLINGUAS $lang"
 | 
      
         | 3621 |  |  |     else
 | 
      
         | 3622 |  |  |       case "$LINGUAS" in *$lang*)
 | 
      
         | 3623 |  |  |         CATALOGS="$CATALOGS $cat"
 | 
      
         | 3624 |  |  |         XLINGUAS="$XLINGUAS $lang"
 | 
      
         | 3625 |  |  |         ;;
 | 
      
         | 3626 |  |  |       esac
 | 
      
         | 3627 |  |  |     fi
 | 
      
         | 3628 |  |  |   done
 | 
      
         | 3629 |  |  |   LINGUAS="$XLINGUAS"
 | 
      
         | 3630 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LINGUAS" >&5
 | 
      
         | 3631 |  |  | $as_echo "$LINGUAS" >&6; }
 | 
      
         | 3632 |  |  |  
 | 
      
         | 3633 |  |  |  
 | 
      
         | 3634 |  |  |     DATADIRNAME=share
 | 
      
         | 3635 |  |  |  
 | 
      
         | 3636 |  |  |   INSTOBJEXT=.mo
 | 
      
         | 3637 |  |  |  
 | 
      
         | 3638 |  |  |   GENCAT=gencat
 | 
      
         | 3639 |  |  |  
 | 
      
         | 3640 |  |  |   CATOBJEXT=.gmo
 | 
      
         | 3641 |  |  |  
 | 
      
         | 3642 |  |  | fi
 | 
      
         | 3643 |  |  |  
 | 
      
         | 3644 |  |  | # Check for common headers.
 | 
      
         | 3645 |  |  | # FIXME: Seems to me this can cause problems for i386-windows hosts.
 | 
      
         | 3646 |  |  | # At one point there were hardcoded AC_DEFINE's if ${host} = i386-*-windows*.
 | 
      
         | 3647 |  |  |  
 | 
      
         | 3648 |  |  | ac_ext=c
 | 
      
         | 3649 |  |  | ac_cpp='$CPP $CPPFLAGS'
 | 
      
         | 3650 |  |  | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 | 
      
         | 3651 |  |  | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 | 
      
         | 3652 |  |  | ac_compiler_gnu=$ac_cv_c_compiler_gnu
 | 
      
         | 3653 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5
 | 
      
         | 3654 |  |  | $as_echo_n "checking how to run the C preprocessor... " >&6; }
 | 
      
         | 3655 |  |  | # On Suns, sometimes $CPP names a directory.
 | 
      
         | 3656 |  |  | if test -n "$CPP" && test -d "$CPP"; then
 | 
      
         | 3657 |  |  |   CPP=
 | 
      
         | 3658 |  |  | fi
 | 
      
         | 3659 |  |  | if test -z "$CPP"; then
 | 
      
         | 3660 |  |  |   if test "${ac_cv_prog_CPP+set}" = set; then :
 | 
      
         | 3661 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 3662 |  |  | else
 | 
      
         | 3663 |  |  |       # Double quotes because CPP needs to be expanded
 | 
      
         | 3664 |  |  |     for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
 | 
      
         | 3665 |  |  |     do
 | 
      
         | 3666 |  |  |       ac_preproc_ok=false
 | 
      
         | 3667 |  |  | for ac_c_preproc_warn_flag in '' yes
 | 
      
         | 3668 |  |  | do
 | 
      
         | 3669 |  |  |   # Use a header file that comes with gcc, so configuring glibc
 | 
      
         | 3670 |  |  |   # with a fresh cross-compiler works.
 | 
      
         | 3671 |  |  |   # Prefer  to  if __STDC__ is defined, since
 | 
      
         | 3672 |  |  |   #  exists even on freestanding compilers.
 | 
      
         | 3673 |  |  |   # On the NeXT, cc -E runs the code through the compiler's parser,
 | 
      
         | 3674 |  |  |   # not just through cpp. "Syntax error" is here to catch this case.
 | 
      
         | 3675 |  |  |   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 3676 |  |  | /* end confdefs.h.  */
 | 
      
         | 3677 |  |  | #ifdef __STDC__
 | 
      
         | 3678 |  |  | # include 
 | 
      
         | 3679 |  |  | #else
 | 
      
         | 3680 |  |  | # include 
 | 
      
         | 3681 |  |  | #endif
 | 
      
         | 3682 |  |  |                      Syntax error
 | 
      
         | 3683 |  |  | _ACEOF
 | 
      
         | 3684 |  |  | if ac_fn_c_try_cpp "$LINENO"; then :
 | 
      
         | 3685 |  |  |  
 | 
      
         | 3686 |  |  | else
 | 
      
         | 3687 |  |  |   # Broken: fails on valid input.
 | 
      
         | 3688 |  |  | continue
 | 
      
         | 3689 |  |  | fi
 | 
      
         | 3690 |  |  | rm -f conftest.err conftest.$ac_ext
 | 
      
         | 3691 |  |  |  
 | 
      
         | 3692 |  |  |   # OK, works on sane cases.  Now check whether nonexistent headers
 | 
      
         | 3693 |  |  |   # can be detected and how.
 | 
      
         | 3694 |  |  |   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 3695 |  |  | /* end confdefs.h.  */
 | 
      
         | 3696 |  |  | #include 
 | 
      
         | 3697 |  |  | _ACEOF
 | 
      
         | 3698 |  |  | if ac_fn_c_try_cpp "$LINENO"; then :
 | 
      
         | 3699 |  |  |   # Broken: success on invalid input.
 | 
      
         | 3700 |  |  | continue
 | 
      
         | 3701 |  |  | else
 | 
      
         | 3702 |  |  |   # Passes both tests.
 | 
      
         | 3703 |  |  | ac_preproc_ok=:
 | 
      
         | 3704 |  |  | break
 | 
      
         | 3705 |  |  | fi
 | 
      
         | 3706 |  |  | rm -f conftest.err conftest.$ac_ext
 | 
      
         | 3707 |  |  |  
 | 
      
         | 3708 |  |  | done
 | 
      
         | 3709 |  |  | # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
 | 
      
         | 3710 |  |  | rm -f conftest.err conftest.$ac_ext
 | 
      
         | 3711 |  |  | if $ac_preproc_ok; then :
 | 
      
         | 3712 |  |  |   break
 | 
      
         | 3713 |  |  | fi
 | 
      
         | 3714 |  |  |  
 | 
      
         | 3715 |  |  |     done
 | 
      
         | 3716 |  |  |     ac_cv_prog_CPP=$CPP
 | 
      
         | 3717 |  |  |  
 | 
      
         | 3718 |  |  | fi
 | 
      
         | 3719 |  |  |   CPP=$ac_cv_prog_CPP
 | 
      
         | 3720 |  |  | else
 | 
      
         | 3721 |  |  |   ac_cv_prog_CPP=$CPP
 | 
      
         | 3722 |  |  | fi
 | 
      
         | 3723 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5
 | 
      
         | 3724 |  |  | $as_echo "$CPP" >&6; }
 | 
      
         | 3725 |  |  | ac_preproc_ok=false
 | 
      
         | 3726 |  |  | for ac_c_preproc_warn_flag in '' yes
 | 
      
         | 3727 |  |  | do
 | 
      
         | 3728 |  |  |   # Use a header file that comes with gcc, so configuring glibc
 | 
      
         | 3729 |  |  |   # with a fresh cross-compiler works.
 | 
      
         | 3730 |  |  |   # Prefer  to  if __STDC__ is defined, since
 | 
      
         | 3731 |  |  |   #  exists even on freestanding compilers.
 | 
      
         | 3732 |  |  |   # On the NeXT, cc -E runs the code through the compiler's parser,
 | 
      
         | 3733 |  |  |   # not just through cpp. "Syntax error" is here to catch this case.
 | 
      
         | 3734 |  |  |   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 3735 |  |  | /* end confdefs.h.  */
 | 
      
         | 3736 |  |  | #ifdef __STDC__
 | 
      
         | 3737 |  |  | # include 
 | 
      
         | 3738 |  |  | #else
 | 
      
         | 3739 |  |  | # include 
 | 
      
         | 3740 |  |  | #endif
 | 
      
         | 3741 |  |  |                      Syntax error
 | 
      
         | 3742 |  |  | _ACEOF
 | 
      
         | 3743 |  |  | if ac_fn_c_try_cpp "$LINENO"; then :
 | 
      
         | 3744 |  |  |  
 | 
      
         | 3745 |  |  | else
 | 
      
         | 3746 |  |  |   # Broken: fails on valid input.
 | 
      
         | 3747 |  |  | continue
 | 
      
         | 3748 |  |  | fi
 | 
      
         | 3749 |  |  | rm -f conftest.err conftest.$ac_ext
 | 
      
         | 3750 |  |  |  
 | 
      
         | 3751 |  |  |   # OK, works on sane cases.  Now check whether nonexistent headers
 | 
      
         | 3752 |  |  |   # can be detected and how.
 | 
      
         | 3753 |  |  |   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 3754 |  |  | /* end confdefs.h.  */
 | 
      
         | 3755 |  |  | #include 
 | 
      
         | 3756 |  |  | _ACEOF
 | 
      
         | 3757 |  |  | if ac_fn_c_try_cpp "$LINENO"; then :
 | 
      
         | 3758 |  |  |   # Broken: success on invalid input.
 | 
      
         | 3759 |  |  | continue
 | 
      
         | 3760 |  |  | else
 | 
      
         | 3761 |  |  |   # Passes both tests.
 | 
      
         | 3762 |  |  | ac_preproc_ok=:
 | 
      
         | 3763 |  |  | break
 | 
      
         | 3764 |  |  | fi
 | 
      
         | 3765 |  |  | rm -f conftest.err conftest.$ac_ext
 | 
      
         | 3766 |  |  |  
 | 
      
         | 3767 |  |  | done
 | 
      
         | 3768 |  |  | # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
 | 
      
         | 3769 |  |  | rm -f conftest.err conftest.$ac_ext
 | 
      
         | 3770 |  |  | if $ac_preproc_ok; then :
 | 
      
         | 3771 |  |  |  
 | 
      
         | 3772 |  |  | else
 | 
      
         | 3773 |  |  |   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 | 
      
         | 3774 |  |  | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 | 
      
         | 3775 |  |  | as_fn_error "C preprocessor \"$CPP\" fails sanity check
 | 
      
         | 3776 |  |  | See \`config.log' for more details." "$LINENO" 5; }
 | 
      
         | 3777 |  |  | fi
 | 
      
         | 3778 |  |  |  
 | 
      
         | 3779 |  |  | ac_ext=c
 | 
      
         | 3780 |  |  | ac_cpp='$CPP $CPPFLAGS'
 | 
      
         | 3781 |  |  | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 | 
      
         | 3782 |  |  | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 | 
      
         | 3783 |  |  | ac_compiler_gnu=$ac_cv_c_compiler_gnu
 | 
      
         | 3784 |  |  |  
 | 
      
         | 3785 |  |  |  
 | 
      
         | 3786 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
 | 
      
         | 3787 |  |  | $as_echo_n "checking for grep that handles long lines and -e... " >&6; }
 | 
      
         | 3788 |  |  | if test "${ac_cv_path_GREP+set}" = set; then :
 | 
      
         | 3789 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 3790 |  |  | else
 | 
      
         | 3791 |  |  |   if test -z "$GREP"; then
 | 
      
         | 3792 |  |  |   ac_path_GREP_found=false
 | 
      
         | 3793 |  |  |   # Loop through the user's path and test for each of PROGNAME-LIST
 | 
      
         | 3794 |  |  |   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 | 
      
         | 3795 |  |  | for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
 | 
      
         | 3796 |  |  | do
 | 
      
         | 3797 |  |  |   IFS=$as_save_IFS
 | 
      
         | 3798 |  |  |   test -z "$as_dir" && as_dir=.
 | 
      
         | 3799 |  |  |     for ac_prog in grep ggrep; do
 | 
      
         | 3800 |  |  |     for ac_exec_ext in '' $ac_executable_extensions; do
 | 
      
         | 3801 |  |  |       ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
 | 
      
         | 3802 |  |  |       { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
 | 
      
         | 3803 |  |  | # Check for GNU ac_path_GREP and select it if it is found.
 | 
      
         | 3804 |  |  |   # Check for GNU $ac_path_GREP
 | 
      
         | 3805 |  |  | case `"$ac_path_GREP" --version 2>&1` in
 | 
      
         | 3806 |  |  | *GNU*)
 | 
      
         | 3807 |  |  |   ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
 | 
      
         | 3808 |  |  | *)
 | 
      
         | 3809 |  |  |   ac_count=0
 | 
      
         | 3810 |  |  |   $as_echo_n 0123456789 >"conftest.in"
 | 
      
         | 3811 |  |  |   while :
 | 
      
         | 3812 |  |  |   do
 | 
      
         | 3813 |  |  |     cat "conftest.in" "conftest.in" >"conftest.tmp"
 | 
      
         | 3814 |  |  |     mv "conftest.tmp" "conftest.in"
 | 
      
         | 3815 |  |  |     cp "conftest.in" "conftest.nl"
 | 
      
         | 3816 |  |  |     $as_echo 'GREP' >> "conftest.nl"
 | 
      
         | 3817 |  |  |     "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
 | 
      
         | 3818 |  |  |     diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
 | 
      
         | 3819 |  |  |     as_fn_arith $ac_count + 1 && ac_count=$as_val
 | 
      
         | 3820 |  |  |     if test $ac_count -gt ${ac_path_GREP_max-0}; then
 | 
      
         | 3821 |  |  |       # Best one so far, save it but keep looking for a better one
 | 
      
         | 3822 |  |  |       ac_cv_path_GREP="$ac_path_GREP"
 | 
      
         | 3823 |  |  |       ac_path_GREP_max=$ac_count
 | 
      
         | 3824 |  |  |     fi
 | 
      
         | 3825 |  |  |     # 10*(2^10) chars as input seems more than enough
 | 
      
         | 3826 |  |  |     test $ac_count -gt 10 && break
 | 
      
         | 3827 |  |  |   done
 | 
      
         | 3828 |  |  |   rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
 | 
      
         | 3829 |  |  | esac
 | 
      
         | 3830 |  |  |  
 | 
      
         | 3831 |  |  |       $ac_path_GREP_found && break 3
 | 
      
         | 3832 |  |  |     done
 | 
      
         | 3833 |  |  |   done
 | 
      
         | 3834 |  |  |   done
 | 
      
         | 3835 |  |  | IFS=$as_save_IFS
 | 
      
         | 3836 |  |  |   if test -z "$ac_cv_path_GREP"; then
 | 
      
         | 3837 |  |  |     as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
 | 
      
         | 3838 |  |  |   fi
 | 
      
         | 3839 |  |  | else
 | 
      
         | 3840 |  |  |   ac_cv_path_GREP=$GREP
 | 
      
         | 3841 |  |  | fi
 | 
      
         | 3842 |  |  |  
 | 
      
         | 3843 |  |  | fi
 | 
      
         | 3844 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5
 | 
      
         | 3845 |  |  | $as_echo "$ac_cv_path_GREP" >&6; }
 | 
      
         | 3846 |  |  |  GREP="$ac_cv_path_GREP"
 | 
      
         | 3847 |  |  |  
 | 
      
         | 3848 |  |  |  
 | 
      
         | 3849 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
 | 
      
         | 3850 |  |  | $as_echo_n "checking for egrep... " >&6; }
 | 
      
         | 3851 |  |  | if test "${ac_cv_path_EGREP+set}" = set; then :
 | 
      
         | 3852 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 3853 |  |  | else
 | 
      
         | 3854 |  |  |   if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
 | 
      
         | 3855 |  |  |    then ac_cv_path_EGREP="$GREP -E"
 | 
      
         | 3856 |  |  |    else
 | 
      
         | 3857 |  |  |      if test -z "$EGREP"; then
 | 
      
         | 3858 |  |  |   ac_path_EGREP_found=false
 | 
      
         | 3859 |  |  |   # Loop through the user's path and test for each of PROGNAME-LIST
 | 
      
         | 3860 |  |  |   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 | 
      
         | 3861 |  |  | for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
 | 
      
         | 3862 |  |  | do
 | 
      
         | 3863 |  |  |   IFS=$as_save_IFS
 | 
      
         | 3864 |  |  |   test -z "$as_dir" && as_dir=.
 | 
      
         | 3865 |  |  |     for ac_prog in egrep; do
 | 
      
         | 3866 |  |  |     for ac_exec_ext in '' $ac_executable_extensions; do
 | 
      
         | 3867 |  |  |       ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
 | 
      
         | 3868 |  |  |       { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
 | 
      
         | 3869 |  |  | # Check for GNU ac_path_EGREP and select it if it is found.
 | 
      
         | 3870 |  |  |   # Check for GNU $ac_path_EGREP
 | 
      
         | 3871 |  |  | case `"$ac_path_EGREP" --version 2>&1` in
 | 
      
         | 3872 |  |  | *GNU*)
 | 
      
         | 3873 |  |  |   ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
 | 
      
         | 3874 |  |  | *)
 | 
      
         | 3875 |  |  |   ac_count=0
 | 
      
         | 3876 |  |  |   $as_echo_n 0123456789 >"conftest.in"
 | 
      
         | 3877 |  |  |   while :
 | 
      
         | 3878 |  |  |   do
 | 
      
         | 3879 |  |  |     cat "conftest.in" "conftest.in" >"conftest.tmp"
 | 
      
         | 3880 |  |  |     mv "conftest.tmp" "conftest.in"
 | 
      
         | 3881 |  |  |     cp "conftest.in" "conftest.nl"
 | 
      
         | 3882 |  |  |     $as_echo 'EGREP' >> "conftest.nl"
 | 
      
         | 3883 |  |  |     "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
 | 
      
         | 3884 |  |  |     diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
 | 
      
         | 3885 |  |  |     as_fn_arith $ac_count + 1 && ac_count=$as_val
 | 
      
         | 3886 |  |  |     if test $ac_count -gt ${ac_path_EGREP_max-0}; then
 | 
      
         | 3887 |  |  |       # Best one so far, save it but keep looking for a better one
 | 
      
         | 3888 |  |  |       ac_cv_path_EGREP="$ac_path_EGREP"
 | 
      
         | 3889 |  |  |       ac_path_EGREP_max=$ac_count
 | 
      
         | 3890 |  |  |     fi
 | 
      
         | 3891 |  |  |     # 10*(2^10) chars as input seems more than enough
 | 
      
         | 3892 |  |  |     test $ac_count -gt 10 && break
 | 
      
         | 3893 |  |  |   done
 | 
      
         | 3894 |  |  |   rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
 | 
      
         | 3895 |  |  | esac
 | 
      
         | 3896 |  |  |  
 | 
      
         | 3897 |  |  |       $ac_path_EGREP_found && break 3
 | 
      
         | 3898 |  |  |     done
 | 
      
         | 3899 |  |  |   done
 | 
      
         | 3900 |  |  |   done
 | 
      
         | 3901 |  |  | IFS=$as_save_IFS
 | 
      
         | 3902 |  |  |   if test -z "$ac_cv_path_EGREP"; then
 | 
      
         | 3903 |  |  |     as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
 | 
      
         | 3904 |  |  |   fi
 | 
      
         | 3905 |  |  | else
 | 
      
         | 3906 |  |  |   ac_cv_path_EGREP=$EGREP
 | 
      
         | 3907 |  |  | fi
 | 
      
         | 3908 |  |  |  
 | 
      
         | 3909 |  |  |    fi
 | 
      
         | 3910 |  |  | fi
 | 
      
         | 3911 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5
 | 
      
         | 3912 |  |  | $as_echo "$ac_cv_path_EGREP" >&6; }
 | 
      
         | 3913 |  |  |  EGREP="$ac_cv_path_EGREP"
 | 
      
         | 3914 |  |  |  
 | 
      
         | 3915 |  |  |  
 | 
      
         | 3916 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
 | 
      
         | 3917 |  |  | $as_echo_n "checking for ANSI C header files... " >&6; }
 | 
      
         | 3918 |  |  | if test "${ac_cv_header_stdc+set}" = set; then :
 | 
      
         | 3919 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 3920 |  |  | else
 | 
      
         | 3921 |  |  |   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 3922 |  |  | /* end confdefs.h.  */
 | 
      
         | 3923 |  |  | #include 
 | 
      
         | 3924 |  |  | #include 
 | 
      
         | 3925 |  |  | #include 
 | 
      
         | 3926 |  |  | #include 
 | 
      
         | 3927 |  |  |  
 | 
      
         | 3928 |  |  | int
 | 
      
         | 3929 |  |  | main ()
 | 
      
         | 3930 |  |  | {
 | 
      
         | 3931 |  |  |  
 | 
      
         | 3932 |  |  |   ;
 | 
      
         | 3933 |  |  |   return 0;
 | 
      
         | 3934 |  |  | }
 | 
      
         | 3935 |  |  | _ACEOF
 | 
      
         | 3936 |  |  | if ac_fn_c_try_compile "$LINENO"; then :
 | 
      
         | 3937 |  |  |   ac_cv_header_stdc=yes
 | 
      
         | 3938 |  |  | else
 | 
      
         | 3939 |  |  |   ac_cv_header_stdc=no
 | 
      
         | 3940 |  |  | fi
 | 
      
         | 3941 |  |  | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 | 
      
         | 3942 |  |  |  
 | 
      
         | 3943 |  |  | if test $ac_cv_header_stdc = yes; then
 | 
      
         | 3944 |  |  |   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
 | 
      
         | 3945 |  |  |   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 3946 |  |  | /* end confdefs.h.  */
 | 
      
         | 3947 |  |  | #include 
 | 
      
         | 3948 |  |  |  
 | 
      
         | 3949 |  |  | _ACEOF
 | 
      
         | 3950 |  |  | if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
 | 
      
         | 3951 |  |  |   $EGREP "memchr" >/dev/null 2>&1; then :
 | 
      
         | 3952 |  |  |  
 | 
      
         | 3953 |  |  | else
 | 
      
         | 3954 |  |  |   ac_cv_header_stdc=no
 | 
      
         | 3955 |  |  | fi
 | 
      
         | 3956 |  |  | rm -f conftest*
 | 
      
         | 3957 |  |  |  
 | 
      
         | 3958 |  |  | fi
 | 
      
         | 3959 |  |  |  
 | 
      
         | 3960 |  |  | if test $ac_cv_header_stdc = yes; then
 | 
      
         | 3961 |  |  |   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
 | 
      
         | 3962 |  |  |   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 3963 |  |  | /* end confdefs.h.  */
 | 
      
         | 3964 |  |  | #include 
 | 
      
         | 3965 |  |  |  
 | 
      
         | 3966 |  |  | _ACEOF
 | 
      
         | 3967 |  |  | if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
 | 
      
         | 3968 |  |  |   $EGREP "free" >/dev/null 2>&1; then :
 | 
      
         | 3969 |  |  |  
 | 
      
         | 3970 |  |  | else
 | 
      
         | 3971 |  |  |   ac_cv_header_stdc=no
 | 
      
         | 3972 |  |  | fi
 | 
      
         | 3973 |  |  | rm -f conftest*
 | 
      
         | 3974 |  |  |  
 | 
      
         | 3975 |  |  | fi
 | 
      
         | 3976 |  |  |  
 | 
      
         | 3977 |  |  | if test $ac_cv_header_stdc = yes; then
 | 
      
         | 3978 |  |  |   # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
 | 
      
         | 3979 |  |  |   if test "$cross_compiling" = yes; then :
 | 
      
         | 3980 |  |  |   :
 | 
      
         | 3981 |  |  | else
 | 
      
         | 3982 |  |  |   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 3983 |  |  | /* end confdefs.h.  */
 | 
      
         | 3984 |  |  | #include 
 | 
      
         | 3985 |  |  | #include 
 | 
      
         | 3986 |  |  | #if ((' ' & 0x0FF) == 0x020)
 | 
      
         | 3987 |  |  | # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
 | 
      
         | 3988 |  |  | # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
 | 
      
         | 3989 |  |  | #else
 | 
      
         | 3990 |  |  | # define ISLOWER(c) \
 | 
      
         | 3991 |  |  |                    (('a' <= (c) && (c) <= 'i') \
 | 
      
         | 3992 |  |  |                      || ('j' <= (c) && (c) <= 'r') \
 | 
      
         | 3993 |  |  |                      || ('s' <= (c) && (c) <= 'z'))
 | 
      
         | 3994 |  |  | # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
 | 
      
         | 3995 |  |  | #endif
 | 
      
         | 3996 |  |  |  
 | 
      
         | 3997 |  |  | #define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
 | 
      
         | 3998 |  |  | int
 | 
      
         | 3999 |  |  | main ()
 | 
      
         | 4000 |  |  | {
 | 
      
         | 4001 |  |  |   int i;
 | 
      
         | 4002 |  |  |   for (i = 0; i < 256; i++)
 | 
      
         | 4003 |  |  |     if (XOR (islower (i), ISLOWER (i))
 | 
      
         | 4004 |  |  |         || toupper (i) != TOUPPER (i))
 | 
      
         | 4005 |  |  |       return 2;
 | 
      
         | 4006 |  |  |   return 0;
 | 
      
         | 4007 |  |  | }
 | 
      
         | 4008 |  |  | _ACEOF
 | 
      
         | 4009 |  |  | if ac_fn_c_try_run "$LINENO"; then :
 | 
      
         | 4010 |  |  |  
 | 
      
         | 4011 |  |  | else
 | 
      
         | 4012 |  |  |   ac_cv_header_stdc=no
 | 
      
         | 4013 |  |  | fi
 | 
      
         | 4014 |  |  | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
 | 
      
         | 4015 |  |  |   conftest.$ac_objext conftest.beam conftest.$ac_ext
 | 
      
         | 4016 |  |  | fi
 | 
      
         | 4017 |  |  |  
 | 
      
         | 4018 |  |  | fi
 | 
      
         | 4019 |  |  | fi
 | 
      
         | 4020 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5
 | 
      
         | 4021 |  |  | $as_echo "$ac_cv_header_stdc" >&6; }
 | 
      
         | 4022 |  |  | if test $ac_cv_header_stdc = yes; then
 | 
      
         | 4023 |  |  |  
 | 
      
         | 4024 |  |  | $as_echo "#define STDC_HEADERS 1" >>confdefs.h
 | 
      
         | 4025 |  |  |  
 | 
      
         | 4026 |  |  | fi
 | 
      
         | 4027 |  |  |  
 | 
      
         | 4028 |  |  | # On IRIX 5.3, sys/types and inttypes.h are conflicting.
 | 
      
         | 4029 |  |  | for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
 | 
      
         | 4030 |  |  |                   inttypes.h stdint.h unistd.h
 | 
      
         | 4031 |  |  | do :
 | 
      
         | 4032 |  |  |   as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
 | 
      
         | 4033 |  |  | ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
 | 
      
         | 4034 |  |  | "
 | 
      
         | 4035 |  |  | eval as_val=\$$as_ac_Header
 | 
      
         | 4036 |  |  |    if test "x$as_val" = x""yes; then :
 | 
      
         | 4037 |  |  |   cat >>confdefs.h <<_ACEOF
 | 
      
         | 4038 |  |  | #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
 | 
      
         | 4039 |  |  | _ACEOF
 | 
      
         | 4040 |  |  |  
 | 
      
         | 4041 |  |  | fi
 | 
      
         | 4042 |  |  |  
 | 
      
         | 4043 |  |  | done
 | 
      
         | 4044 |  |  |  
 | 
      
         | 4045 |  |  |  
 | 
      
         | 4046 |  |  | for ac_header in stdlib.h string.h strings.h unistd.h time.h
 | 
      
         | 4047 |  |  | do :
 | 
      
         | 4048 |  |  |   as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
 | 
      
         | 4049 |  |  | ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
 | 
      
         | 4050 |  |  | eval as_val=\$$as_ac_Header
 | 
      
         | 4051 |  |  |    if test "x$as_val" = x""yes; then :
 | 
      
         | 4052 |  |  |   cat >>confdefs.h <<_ACEOF
 | 
      
         | 4053 |  |  | #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
 | 
      
         | 4054 |  |  | _ACEOF
 | 
      
         | 4055 |  |  |  
 | 
      
         | 4056 |  |  | fi
 | 
      
         | 4057 |  |  |  
 | 
      
         | 4058 |  |  | done
 | 
      
         | 4059 |  |  |  
 | 
      
         | 4060 |  |  | for ac_header in sys/time.h sys/resource.h
 | 
      
         | 4061 |  |  | do :
 | 
      
         | 4062 |  |  |   as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
 | 
      
         | 4063 |  |  | ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
 | 
      
         | 4064 |  |  | eval as_val=\$$as_ac_Header
 | 
      
         | 4065 |  |  |    if test "x$as_val" = x""yes; then :
 | 
      
         | 4066 |  |  |   cat >>confdefs.h <<_ACEOF
 | 
      
         | 4067 |  |  | #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
 | 
      
         | 4068 |  |  | _ACEOF
 | 
      
         | 4069 |  |  |  
 | 
      
         | 4070 |  |  | fi
 | 
      
         | 4071 |  |  |  
 | 
      
         | 4072 |  |  | done
 | 
      
         | 4073 |  |  |  
 | 
      
         | 4074 |  |  | for ac_header in fcntl.h fpu_control.h
 | 
      
         | 4075 |  |  | do :
 | 
      
         | 4076 |  |  |   as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
 | 
      
         | 4077 |  |  | ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
 | 
      
         | 4078 |  |  | eval as_val=\$$as_ac_Header
 | 
      
         | 4079 |  |  |    if test "x$as_val" = x""yes; then :
 | 
      
         | 4080 |  |  |   cat >>confdefs.h <<_ACEOF
 | 
      
         | 4081 |  |  | #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
 | 
      
         | 4082 |  |  | _ACEOF
 | 
      
         | 4083 |  |  |  
 | 
      
         | 4084 |  |  | fi
 | 
      
         | 4085 |  |  |  
 | 
      
         | 4086 |  |  | done
 | 
      
         | 4087 |  |  |  
 | 
      
         | 4088 |  |  | for ac_header in dlfcn.h errno.h sys/stat.h
 | 
      
         | 4089 |  |  | do :
 | 
      
         | 4090 |  |  |   as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
 | 
      
         | 4091 |  |  | ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
 | 
      
         | 4092 |  |  | eval as_val=\$$as_ac_Header
 | 
      
         | 4093 |  |  |    if test "x$as_val" = x""yes; then :
 | 
      
         | 4094 |  |  |   cat >>confdefs.h <<_ACEOF
 | 
      
         | 4095 |  |  | #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
 | 
      
         | 4096 |  |  | _ACEOF
 | 
      
         | 4097 |  |  |  
 | 
      
         | 4098 |  |  | fi
 | 
      
         | 4099 |  |  |  
 | 
      
         | 4100 |  |  | done
 | 
      
         | 4101 |  |  |  
 | 
      
         | 4102 |  |  | for ac_func in getrusage time sigaction __setfpucw
 | 
      
         | 4103 |  |  | do :
 | 
      
         | 4104 |  |  |   as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
 | 
      
         | 4105 |  |  | ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
 | 
      
         | 4106 |  |  | eval as_val=\$$as_ac_var
 | 
      
         | 4107 |  |  |    if test "x$as_val" = x""yes; then :
 | 
      
         | 4108 |  |  |   cat >>confdefs.h <<_ACEOF
 | 
      
         | 4109 |  |  | #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
 | 
      
         | 4110 |  |  | _ACEOF
 | 
      
         | 4111 |  |  |  
 | 
      
         | 4112 |  |  | fi
 | 
      
         | 4113 |  |  | done
 | 
      
         | 4114 |  |  |  
 | 
      
         | 4115 |  |  |  
 | 
      
         | 4116 |  |  | # Check for socket libraries
 | 
      
         | 4117 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bind in -lsocket" >&5
 | 
      
         | 4118 |  |  | $as_echo_n "checking for bind in -lsocket... " >&6; }
 | 
      
         | 4119 |  |  | if test "${ac_cv_lib_socket_bind+set}" = set; then :
 | 
      
         | 4120 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 4121 |  |  | else
 | 
      
         | 4122 |  |  |   ac_check_lib_save_LIBS=$LIBS
 | 
      
         | 4123 |  |  | LIBS="-lsocket  $LIBS"
 | 
      
         | 4124 |  |  | cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 4125 |  |  | /* end confdefs.h.  */
 | 
      
         | 4126 |  |  |  
 | 
      
         | 4127 |  |  | /* Override any GCC internal prototype to avoid an error.
 | 
      
         | 4128 |  |  |    Use char because int might match the return type of a GCC
 | 
      
         | 4129 |  |  |    builtin and then its argument prototype would still apply.  */
 | 
      
         | 4130 |  |  | #ifdef __cplusplus
 | 
      
         | 4131 |  |  | extern "C"
 | 
      
         | 4132 |  |  | #endif
 | 
      
         | 4133 |  |  | char bind ();
 | 
      
         | 4134 |  |  | int
 | 
      
         | 4135 |  |  | main ()
 | 
      
         | 4136 |  |  | {
 | 
      
         | 4137 |  |  | return bind ();
 | 
      
         | 4138 |  |  |   ;
 | 
      
         | 4139 |  |  |   return 0;
 | 
      
         | 4140 |  |  | }
 | 
      
         | 4141 |  |  | _ACEOF
 | 
      
         | 4142 |  |  | if ac_fn_c_try_link "$LINENO"; then :
 | 
      
         | 4143 |  |  |   ac_cv_lib_socket_bind=yes
 | 
      
         | 4144 |  |  | else
 | 
      
         | 4145 |  |  |   ac_cv_lib_socket_bind=no
 | 
      
         | 4146 |  |  | fi
 | 
      
         | 4147 |  |  | rm -f core conftest.err conftest.$ac_objext \
 | 
      
         | 4148 |  |  |     conftest$ac_exeext conftest.$ac_ext
 | 
      
         | 4149 |  |  | LIBS=$ac_check_lib_save_LIBS
 | 
      
         | 4150 |  |  | fi
 | 
      
         | 4151 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_bind" >&5
 | 
      
         | 4152 |  |  | $as_echo "$ac_cv_lib_socket_bind" >&6; }
 | 
      
         | 4153 |  |  | if test "x$ac_cv_lib_socket_bind" = x""yes; then :
 | 
      
         | 4154 |  |  |   cat >>confdefs.h <<_ACEOF
 | 
      
         | 4155 |  |  | #define HAVE_LIBSOCKET 1
 | 
      
         | 4156 |  |  | _ACEOF
 | 
      
         | 4157 |  |  |  
 | 
      
         | 4158 |  |  |   LIBS="-lsocket $LIBS"
 | 
      
         | 4159 |  |  |  
 | 
      
         | 4160 |  |  | fi
 | 
      
         | 4161 |  |  |  
 | 
      
         | 4162 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5
 | 
      
         | 4163 |  |  | $as_echo_n "checking for gethostbyname in -lnsl... " >&6; }
 | 
      
         | 4164 |  |  | if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then :
 | 
      
         | 4165 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 4166 |  |  | else
 | 
      
         | 4167 |  |  |   ac_check_lib_save_LIBS=$LIBS
 | 
      
         | 4168 |  |  | LIBS="-lnsl  $LIBS"
 | 
      
         | 4169 |  |  | cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 4170 |  |  | /* end confdefs.h.  */
 | 
      
         | 4171 |  |  |  
 | 
      
         | 4172 |  |  | /* Override any GCC internal prototype to avoid an error.
 | 
      
         | 4173 |  |  |    Use char because int might match the return type of a GCC
 | 
      
         | 4174 |  |  |    builtin and then its argument prototype would still apply.  */
 | 
      
         | 4175 |  |  | #ifdef __cplusplus
 | 
      
         | 4176 |  |  | extern "C"
 | 
      
         | 4177 |  |  | #endif
 | 
      
         | 4178 |  |  | char gethostbyname ();
 | 
      
         | 4179 |  |  | int
 | 
      
         | 4180 |  |  | main ()
 | 
      
         | 4181 |  |  | {
 | 
      
         | 4182 |  |  | return gethostbyname ();
 | 
      
         | 4183 |  |  |   ;
 | 
      
         | 4184 |  |  |   return 0;
 | 
      
         | 4185 |  |  | }
 | 
      
         | 4186 |  |  | _ACEOF
 | 
      
         | 4187 |  |  | if ac_fn_c_try_link "$LINENO"; then :
 | 
      
         | 4188 |  |  |   ac_cv_lib_nsl_gethostbyname=yes
 | 
      
         | 4189 |  |  | else
 | 
      
         | 4190 |  |  |   ac_cv_lib_nsl_gethostbyname=no
 | 
      
         | 4191 |  |  | fi
 | 
      
         | 4192 |  |  | rm -f core conftest.err conftest.$ac_objext \
 | 
      
         | 4193 |  |  |     conftest$ac_exeext conftest.$ac_ext
 | 
      
         | 4194 |  |  | LIBS=$ac_check_lib_save_LIBS
 | 
      
         | 4195 |  |  | fi
 | 
      
         | 4196 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5
 | 
      
         | 4197 |  |  | $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; }
 | 
      
         | 4198 |  |  | if test "x$ac_cv_lib_nsl_gethostbyname" = x""yes; then :
 | 
      
         | 4199 |  |  |   cat >>confdefs.h <<_ACEOF
 | 
      
         | 4200 |  |  | #define HAVE_LIBNSL 1
 | 
      
         | 4201 |  |  | _ACEOF
 | 
      
         | 4202 |  |  |  
 | 
      
         | 4203 |  |  |   LIBS="-lnsl $LIBS"
 | 
      
         | 4204 |  |  |  
 | 
      
         | 4205 |  |  | fi
 | 
      
         | 4206 |  |  |  
 | 
      
         | 4207 |  |  |  
 | 
      
         | 4208 |  |  | # BFD conditionally uses zlib, so we must link it in if libbfd does, by
 | 
      
         | 4209 |  |  | # using the same condition.
 | 
      
         | 4210 |  |  |  
 | 
      
         | 4211 |  |  |   # See if the user specified whether he wants zlib support or not.
 | 
      
         | 4212 |  |  |  
 | 
      
         | 4213 |  |  | # Check whether --with-zlib was given.
 | 
      
         | 4214 |  |  | if test "${with_zlib+set}" = set; then :
 | 
      
         | 4215 |  |  |   withval=$with_zlib;
 | 
      
         | 4216 |  |  | else
 | 
      
         | 4217 |  |  |   with_zlib=auto
 | 
      
         | 4218 |  |  | fi
 | 
      
         | 4219 |  |  |  
 | 
      
         | 4220 |  |  |  
 | 
      
         | 4221 |  |  |   if test "$with_zlib" != "no"; then
 | 
      
         | 4222 |  |  |     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing zlibVersion" >&5
 | 
      
         | 4223 |  |  | $as_echo_n "checking for library containing zlibVersion... " >&6; }
 | 
      
         | 4224 |  |  | if test "${ac_cv_search_zlibVersion+set}" = set; then :
 | 
      
         | 4225 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 4226 |  |  | else
 | 
      
         | 4227 |  |  |   ac_func_search_save_LIBS=$LIBS
 | 
      
         | 4228 |  |  | cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 4229 |  |  | /* end confdefs.h.  */
 | 
      
         | 4230 |  |  |  
 | 
      
         | 4231 |  |  | /* Override any GCC internal prototype to avoid an error.
 | 
      
         | 4232 |  |  |    Use char because int might match the return type of a GCC
 | 
      
         | 4233 |  |  |    builtin and then its argument prototype would still apply.  */
 | 
      
         | 4234 |  |  | #ifdef __cplusplus
 | 
      
         | 4235 |  |  | extern "C"
 | 
      
         | 4236 |  |  | #endif
 | 
      
         | 4237 |  |  | char zlibVersion ();
 | 
      
         | 4238 |  |  | int
 | 
      
         | 4239 |  |  | main ()
 | 
      
         | 4240 |  |  | {
 | 
      
         | 4241 |  |  | return zlibVersion ();
 | 
      
         | 4242 |  |  |   ;
 | 
      
         | 4243 |  |  |   return 0;
 | 
      
         | 4244 |  |  | }
 | 
      
         | 4245 |  |  | _ACEOF
 | 
      
         | 4246 |  |  | for ac_lib in '' z; do
 | 
      
         | 4247 |  |  |   if test -z "$ac_lib"; then
 | 
      
         | 4248 |  |  |     ac_res="none required"
 | 
      
         | 4249 |  |  |   else
 | 
      
         | 4250 |  |  |     ac_res=-l$ac_lib
 | 
      
         | 4251 |  |  |     LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
 | 
      
         | 4252 |  |  |   fi
 | 
      
         | 4253 |  |  |   if ac_fn_c_try_link "$LINENO"; then :
 | 
      
         | 4254 |  |  |   ac_cv_search_zlibVersion=$ac_res
 | 
      
         | 4255 |  |  | fi
 | 
      
         | 4256 |  |  | rm -f core conftest.err conftest.$ac_objext \
 | 
      
         | 4257 |  |  |     conftest$ac_exeext
 | 
      
         | 4258 |  |  |   if test "${ac_cv_search_zlibVersion+set}" = set; then :
 | 
      
         | 4259 |  |  |   break
 | 
      
         | 4260 |  |  | fi
 | 
      
         | 4261 |  |  | done
 | 
      
         | 4262 |  |  | if test "${ac_cv_search_zlibVersion+set}" = set; then :
 | 
      
         | 4263 |  |  |  
 | 
      
         | 4264 |  |  | else
 | 
      
         | 4265 |  |  |   ac_cv_search_zlibVersion=no
 | 
      
         | 4266 |  |  | fi
 | 
      
         | 4267 |  |  | rm conftest.$ac_ext
 | 
      
         | 4268 |  |  | LIBS=$ac_func_search_save_LIBS
 | 
      
         | 4269 |  |  | fi
 | 
      
         | 4270 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_zlibVersion" >&5
 | 
      
         | 4271 |  |  | $as_echo "$ac_cv_search_zlibVersion" >&6; }
 | 
      
         | 4272 |  |  | ac_res=$ac_cv_search_zlibVersion
 | 
      
         | 4273 |  |  | if test "$ac_res" != no; then :
 | 
      
         | 4274 |  |  |   test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
 | 
      
         | 4275 |  |  |   for ac_header in zlib.h
 | 
      
         | 4276 |  |  | do :
 | 
      
         | 4277 |  |  |   ac_fn_c_check_header_mongrel "$LINENO" "zlib.h" "ac_cv_header_zlib_h" "$ac_includes_default"
 | 
      
         | 4278 |  |  | if test "x$ac_cv_header_zlib_h" = x""yes; then :
 | 
      
         | 4279 |  |  |   cat >>confdefs.h <<_ACEOF
 | 
      
         | 4280 |  |  | #define HAVE_ZLIB_H 1
 | 
      
         | 4281 |  |  | _ACEOF
 | 
      
         | 4282 |  |  |  
 | 
      
         | 4283 |  |  | fi
 | 
      
         | 4284 |  |  |  
 | 
      
         | 4285 |  |  | done
 | 
      
         | 4286 |  |  |  
 | 
      
         | 4287 |  |  | fi
 | 
      
         | 4288 |  |  |  
 | 
      
         | 4289 |  |  |     if test "$with_zlib" = "yes" -a "$ac_cv_header_zlib_h" != "yes"; then
 | 
      
         | 4290 |  |  |       as_fn_error "zlib (libz) library was explicitly requested but not found" "$LINENO" 5
 | 
      
         | 4291 |  |  |     fi
 | 
      
         | 4292 |  |  |   fi
 | 
      
         | 4293 |  |  |  
 | 
      
         | 4294 |  |  |  
 | 
      
         | 4295 |  |  | . ${srcdir}/../../bfd/configure.host
 | 
      
         | 4296 |  |  |  
 | 
      
         | 4297 |  |  |  
 | 
      
         | 4298 |  |  |  
 | 
      
         | 4299 |  |  | USE_MAINTAINER_MODE=no
 | 
      
         | 4300 |  |  | # Check whether --enable-maintainer-mode was given.
 | 
      
         | 4301 |  |  | if test "${enable_maintainer_mode+set}" = set; then :
 | 
      
         | 4302 |  |  |   enableval=$enable_maintainer_mode; case "${enableval}" in
 | 
      
         | 4303 |  |  |   yes)  MAINT="" USE_MAINTAINER_MODE=yes ;;
 | 
      
         | 4304 |  |  |   no)   MAINT="#" ;;
 | 
      
         | 4305 |  |  |   *)    as_fn_error "\"--enable-maintainer-mode does not take a value\"" "$LINENO" 5; MAINT="#" ;;
 | 
      
         | 4306 |  |  | esac
 | 
      
         | 4307 |  |  | if test x"$silent" != x"yes" && test x"$MAINT" = x""; then
 | 
      
         | 4308 |  |  |   echo "Setting maintainer mode" 6>&1
 | 
      
         | 4309 |  |  | fi
 | 
      
         | 4310 |  |  | else
 | 
      
         | 4311 |  |  |   MAINT="#"
 | 
      
         | 4312 |  |  | fi
 | 
      
         | 4313 |  |  |  
 | 
      
         | 4314 |  |  |  
 | 
      
         | 4315 |  |  |  
 | 
      
         | 4316 |  |  | # Check whether --enable-sim-bswap was given.
 | 
      
         | 4317 |  |  | if test "${enable_sim_bswap+set}" = set; then :
 | 
      
         | 4318 |  |  |   enableval=$enable_sim_bswap; case "${enableval}" in
 | 
      
         | 4319 |  |  |   yes)  sim_bswap="-DWITH_BSWAP=1 -DUSE_BSWAP=1";;
 | 
      
         | 4320 |  |  |   no)   sim_bswap="-DWITH_BSWAP=0";;
 | 
      
         | 4321 |  |  |   *)    as_fn_error "\"--enable-sim-bswap does not take a value\"" "$LINENO" 5; sim_bswap="";;
 | 
      
         | 4322 |  |  | esac
 | 
      
         | 4323 |  |  | if test x"$silent" != x"yes" && test x"$sim_bswap" != x""; then
 | 
      
         | 4324 |  |  |   echo "Setting bswap flags = $sim_bswap" 6>&1
 | 
      
         | 4325 |  |  | fi
 | 
      
         | 4326 |  |  | else
 | 
      
         | 4327 |  |  |   sim_bswap=""
 | 
      
         | 4328 |  |  | fi
 | 
      
         | 4329 |  |  |  
 | 
      
         | 4330 |  |  |  
 | 
      
         | 4331 |  |  |  
 | 
      
         | 4332 |  |  | # Check whether --enable-sim-cflags was given.
 | 
      
         | 4333 |  |  | if test "${enable_sim_cflags+set}" = set; then :
 | 
      
         | 4334 |  |  |   enableval=$enable_sim_cflags; case "${enableval}" in
 | 
      
         | 4335 |  |  |   yes)   sim_cflags="-O2 -fomit-frame-pointer";;
 | 
      
         | 4336 |  |  |   trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
 | 
      
         | 4337 |  |  |   no)    sim_cflags="";;
 | 
      
         | 4338 |  |  |   *)     sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
 | 
      
         | 4339 |  |  | esac
 | 
      
         | 4340 |  |  | if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
 | 
      
         | 4341 |  |  |   echo "Setting sim cflags = $sim_cflags" 6>&1
 | 
      
         | 4342 |  |  | fi
 | 
      
         | 4343 |  |  | else
 | 
      
         | 4344 |  |  |   sim_cflags=""
 | 
      
         | 4345 |  |  | fi
 | 
      
         | 4346 |  |  |  
 | 
      
         | 4347 |  |  |  
 | 
      
         | 4348 |  |  |  
 | 
      
         | 4349 |  |  | # Check whether --enable-sim-debug was given.
 | 
      
         | 4350 |  |  | if test "${enable_sim_debug+set}" = set; then :
 | 
      
         | 4351 |  |  |   enableval=$enable_sim_debug; case "${enableval}" in
 | 
      
         | 4352 |  |  |   yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
 | 
      
         | 4353 |  |  |   no)  sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
 | 
      
         | 4354 |  |  |   *)   sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
 | 
      
         | 4355 |  |  | esac
 | 
      
         | 4356 |  |  | if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
 | 
      
         | 4357 |  |  |   echo "Setting sim debug = $sim_debug" 6>&1
 | 
      
         | 4358 |  |  | fi
 | 
      
         | 4359 |  |  | else
 | 
      
         | 4360 |  |  |   sim_debug=""
 | 
      
         | 4361 |  |  | fi
 | 
      
         | 4362 |  |  |  
 | 
      
         | 4363 |  |  |  
 | 
      
         | 4364 |  |  |  
 | 
      
         | 4365 |  |  | # Check whether --enable-sim-stdio was given.
 | 
      
         | 4366 |  |  | if test "${enable_sim_stdio+set}" = set; then :
 | 
      
         | 4367 |  |  |   enableval=$enable_sim_stdio; case "${enableval}" in
 | 
      
         | 4368 |  |  |   yes)  sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
 | 
      
         | 4369 |  |  |   no)   sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
 | 
      
         | 4370 |  |  |   *)    as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
 | 
      
         | 4371 |  |  | esac
 | 
      
         | 4372 |  |  | if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
 | 
      
         | 4373 |  |  |   echo "Setting stdio flags = $sim_stdio" 6>&1
 | 
      
         | 4374 |  |  | fi
 | 
      
         | 4375 |  |  | else
 | 
      
         | 4376 |  |  |   sim_stdio=""
 | 
      
         | 4377 |  |  | fi
 | 
      
         | 4378 |  |  |  
 | 
      
         | 4379 |  |  |  
 | 
      
         | 4380 |  |  |  
 | 
      
         | 4381 |  |  | # Check whether --enable-sim-trace was given.
 | 
      
         | 4382 |  |  | if test "${enable_sim_trace+set}" = set; then :
 | 
      
         | 4383 |  |  |   enableval=$enable_sim_trace; case "${enableval}" in
 | 
      
         | 4384 |  |  |   yes)  sim_trace="-DTRACE=1 -DWITH_TRACE=-1";;
 | 
      
         | 4385 |  |  |   no)   sim_trace="-DTRACE=0 -DWITH_TRACE=0";;
 | 
      
         | 4386 |  |  |   [-0-9]*)
 | 
      
         | 4387 |  |  |         sim_trace="-DTRACE='(${enableval})' -DWITH_TRACE='(${enableval})'";;
 | 
      
         | 4388 |  |  |   [a-z]*)
 | 
      
         | 4389 |  |  |         sim_trace=""
 | 
      
         | 4390 |  |  |         for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
 | 
      
         | 4391 |  |  |           if test x"$sim_trace" = x; then
 | 
      
         | 4392 |  |  |             sim_trace="-DWITH_TRACE='(TRACE_$x"
 | 
      
         | 4393 |  |  |           else
 | 
      
         | 4394 |  |  |             sim_trace="${sim_trace}|TRACE_$x"
 | 
      
         | 4395 |  |  |           fi
 | 
      
         | 4396 |  |  |         done
 | 
      
         | 4397 |  |  |         sim_trace="$sim_trace)'" ;;
 | 
      
         | 4398 |  |  | esac
 | 
      
         | 4399 |  |  | if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
 | 
      
         | 4400 |  |  |   echo "Setting sim trace = $sim_trace" 6>&1
 | 
      
         | 4401 |  |  | fi
 | 
      
         | 4402 |  |  | else
 | 
      
         | 4403 |  |  |   sim_trace=""
 | 
      
         | 4404 |  |  | fi
 | 
      
         | 4405 |  |  |  
 | 
      
         | 4406 |  |  |  
 | 
      
         | 4407 |  |  |  
 | 
      
         | 4408 |  |  | # Check whether --enable-sim-profile was given.
 | 
      
         | 4409 |  |  | if test "${enable_sim_profile+set}" = set; then :
 | 
      
         | 4410 |  |  |   enableval=$enable_sim_profile; case "${enableval}" in
 | 
      
         | 4411 |  |  |   yes)  sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
 | 
      
         | 4412 |  |  |   no)   sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
 | 
      
         | 4413 |  |  |   [-0-9]*)
 | 
      
         | 4414 |  |  |         sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
 | 
      
         | 4415 |  |  |   [a-z]*)
 | 
      
         | 4416 |  |  |         sim_profile=""
 | 
      
         | 4417 |  |  |         for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
 | 
      
         | 4418 |  |  |           if test x"$sim_profile" = x; then
 | 
      
         | 4419 |  |  |             sim_profile="-DWITH_PROFILE='(PROFILE_$x"
 | 
      
         | 4420 |  |  |           else
 | 
      
         | 4421 |  |  |             sim_profile="${sim_profile}|PROFILE_$x"
 | 
      
         | 4422 |  |  |           fi
 | 
      
         | 4423 |  |  |         done
 | 
      
         | 4424 |  |  |         sim_profile="$sim_profile)'" ;;
 | 
      
         | 4425 |  |  | esac
 | 
      
         | 4426 |  |  | if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
 | 
      
         | 4427 |  |  |   echo "Setting sim profile = $sim_profile" 6>&1
 | 
      
         | 4428 |  |  | fi
 | 
      
         | 4429 |  |  | else
 | 
      
         | 4430 |  |  |   sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
 | 
      
         | 4431 |  |  | fi
 | 
      
         | 4432 |  |  |  
 | 
      
         | 4433 |  |  |  
 | 
      
         | 4434 |  |  |  
 | 
      
         | 4435 |  |  |  
 | 
      
         | 4436 |  |  | # Check whether --with-pkgversion was given.
 | 
      
         | 4437 |  |  | if test "${with_pkgversion+set}" = set; then :
 | 
      
         | 4438 |  |  |   withval=$with_pkgversion; case "$withval" in
 | 
      
         | 4439 |  |  |       yes) as_fn_error "package version not specified" "$LINENO" 5 ;;
 | 
      
         | 4440 |  |  |       no)  PKGVERSION= ;;
 | 
      
         | 4441 |  |  |       *)   PKGVERSION="($withval) " ;;
 | 
      
         | 4442 |  |  |      esac
 | 
      
         | 4443 |  |  | else
 | 
      
         | 4444 |  |  |   PKGVERSION="(GDB) "
 | 
      
         | 4445 |  |  |  
 | 
      
         | 4446 |  |  | fi
 | 
      
         | 4447 |  |  |  
 | 
      
         | 4448 |  |  |  
 | 
      
         | 4449 |  |  |  
 | 
      
         | 4450 |  |  |  
 | 
      
         | 4451 |  |  |  
 | 
      
         | 4452 |  |  | # Check whether --with-bugurl was given.
 | 
      
         | 4453 |  |  | if test "${with_bugurl+set}" = set; then :
 | 
      
         | 4454 |  |  |   withval=$with_bugurl; case "$withval" in
 | 
      
         | 4455 |  |  |       yes) as_fn_error "bug URL not specified" "$LINENO" 5 ;;
 | 
      
         | 4456 |  |  |       no)  BUGURL=
 | 
      
         | 4457 |  |  |            ;;
 | 
      
         | 4458 |  |  |       *)   BUGURL="$withval"
 | 
      
         | 4459 |  |  |            ;;
 | 
      
         | 4460 |  |  |      esac
 | 
      
         | 4461 |  |  | else
 | 
      
         | 4462 |  |  |   BUGURL="http://www.gnu.org/software/gdb/bugs/"
 | 
      
         | 4463 |  |  |  
 | 
      
         | 4464 |  |  | fi
 | 
      
         | 4465 |  |  |  
 | 
      
         | 4466 |  |  |   case ${BUGURL} in
 | 
      
         | 4467 |  |  |   "")
 | 
      
         | 4468 |  |  |     REPORT_BUGS_TO=
 | 
      
         | 4469 |  |  |     REPORT_BUGS_TEXI=
 | 
      
         | 4470 |  |  |     ;;
 | 
      
         | 4471 |  |  |   *)
 | 
      
         | 4472 |  |  |     REPORT_BUGS_TO="<$BUGURL>"
 | 
      
         | 4473 |  |  |     REPORT_BUGS_TEXI=@uref{`echo "$BUGURL" | sed 's/@/@@/g'`}
 | 
      
         | 4474 |  |  |     ;;
 | 
      
         | 4475 |  |  |   esac;
 | 
      
         | 4476 |  |  |  
 | 
      
         | 4477 |  |  |  
 | 
      
         | 4478 |  |  |  
 | 
      
         | 4479 |  |  |  
 | 
      
         | 4480 |  |  | cat >>confdefs.h <<_ACEOF
 | 
      
         | 4481 |  |  | #define PKGVERSION "$PKGVERSION"
 | 
      
         | 4482 |  |  | _ACEOF
 | 
      
         | 4483 |  |  |  
 | 
      
         | 4484 |  |  |  
 | 
      
         | 4485 |  |  | cat >>confdefs.h <<_ACEOF
 | 
      
         | 4486 |  |  | #define REPORT_BUGS_TO "$REPORT_BUGS_TO"
 | 
      
         | 4487 |  |  | _ACEOF
 | 
      
         | 4488 |  |  |  
 | 
      
         | 4489 |  |  |  
 | 
      
         | 4490 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5
 | 
      
         | 4491 |  |  | $as_echo_n "checking return type of signal handlers... " >&6; }
 | 
      
         | 4492 |  |  | if test "${ac_cv_type_signal+set}" = set; then :
 | 
      
         | 4493 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 4494 |  |  | else
 | 
      
         | 4495 |  |  |   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 4496 |  |  | /* end confdefs.h.  */
 | 
      
         | 4497 |  |  | #include 
 | 
      
         | 4498 |  |  | #include 
 | 
      
         | 4499 |  |  |  
 | 
      
         | 4500 |  |  | int
 | 
      
         | 4501 |  |  | main ()
 | 
      
         | 4502 |  |  | {
 | 
      
         | 4503 |  |  | return *(signal (0, 0)) (0) == 1;
 | 
      
         | 4504 |  |  |   ;
 | 
      
         | 4505 |  |  |   return 0;
 | 
      
         | 4506 |  |  | }
 | 
      
         | 4507 |  |  | _ACEOF
 | 
      
         | 4508 |  |  | if ac_fn_c_try_compile "$LINENO"; then :
 | 
      
         | 4509 |  |  |   ac_cv_type_signal=int
 | 
      
         | 4510 |  |  | else
 | 
      
         | 4511 |  |  |   ac_cv_type_signal=void
 | 
      
         | 4512 |  |  | fi
 | 
      
         | 4513 |  |  | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 | 
      
         | 4514 |  |  | fi
 | 
      
         | 4515 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_signal" >&5
 | 
      
         | 4516 |  |  | $as_echo "$ac_cv_type_signal" >&6; }
 | 
      
         | 4517 |  |  |  
 | 
      
         | 4518 |  |  | cat >>confdefs.h <<_ACEOF
 | 
      
         | 4519 |  |  | #define RETSIGTYPE $ac_cv_type_signal
 | 
      
         | 4520 |  |  | _ACEOF
 | 
      
         | 4521 |  |  |  
 | 
      
         | 4522 |  |  |  
 | 
      
         | 4523 |  |  |  
 | 
      
         | 4524 |  |  |  
 | 
      
         | 4525 |  |  |  
 | 
      
         | 4526 |  |  | sim_link_files=
 | 
      
         | 4527 |  |  | sim_link_links=
 | 
      
         | 4528 |  |  |  
 | 
      
         | 4529 |  |  | sim_link_links=tconfig.h
 | 
      
         | 4530 |  |  | if test -f ${srcdir}/tconfig.in
 | 
      
         | 4531 |  |  | then
 | 
      
         | 4532 |  |  |   sim_link_files=tconfig.in
 | 
      
         | 4533 |  |  | else
 | 
      
         | 4534 |  |  |   sim_link_files=../common/tconfig.in
 | 
      
         | 4535 |  |  | fi
 | 
      
         | 4536 |  |  |  
 | 
      
         | 4537 |  |  | # targ-vals.def points to the libc macro description file.
 | 
      
         | 4538 |  |  | case "${target}" in
 | 
      
         | 4539 |  |  | *-*-*) TARG_VALS_DEF=../common/nltvals.def ;;
 | 
      
         | 4540 |  |  | esac
 | 
      
         | 4541 |  |  | sim_link_files="${sim_link_files} ${TARG_VALS_DEF}"
 | 
      
         | 4542 |  |  | sim_link_links="${sim_link_links} targ-vals.def"
 | 
      
         | 4543 |  |  |  
 | 
      
         | 4544 |  |  |  
 | 
      
         | 4545 |  |  |  
 | 
      
         | 4546 |  |  | wire_endian="BIG_ENDIAN"
 | 
      
         | 4547 |  |  | default_endian=""
 | 
      
         | 4548 |  |  | # Check whether --enable-sim-endian was given.
 | 
      
         | 4549 |  |  | if test "${enable_sim_endian+set}" = set; then :
 | 
      
         | 4550 |  |  |   enableval=$enable_sim_endian; case "${enableval}" in
 | 
      
         | 4551 |  |  |   b*|B*) sim_endian="-DWITH_TARGET_BYTE_ORDER=BIG_ENDIAN";;
 | 
      
         | 4552 |  |  |   l*|L*) sim_endian="-DWITH_TARGET_BYTE_ORDER=LITTLE_ENDIAN";;
 | 
      
         | 4553 |  |  |   yes)   if test x"$wire_endian" != x; then
 | 
      
         | 4554 |  |  |            sim_endian="-DWITH_TARGET_BYTE_ORDER=${wire_endian}"
 | 
      
         | 4555 |  |  |          else
 | 
      
         | 4556 |  |  |            if test x"$default_endian" != x; then
 | 
      
         | 4557 |  |  |              sim_endian="-DWITH_TARGET_BYTE_ORDER=${default_endian}"
 | 
      
         | 4558 |  |  |            else
 | 
      
         | 4559 |  |  |              echo "No hard-wired endian for target $target" 1>&6
 | 
      
         | 4560 |  |  |              sim_endian="-DWITH_TARGET_BYTE_ORDER=0"
 | 
      
         | 4561 |  |  |            fi
 | 
      
         | 4562 |  |  |          fi;;
 | 
      
         | 4563 |  |  |   no)    if test x"$default_endian" != x; then
 | 
      
         | 4564 |  |  |            sim_endian="-DWITH_DEFAULT_TARGET_BYTE_ORDER=${default_endian}"
 | 
      
         | 4565 |  |  |          else
 | 
      
         | 4566 |  |  |            if test x"$wire_endian" != x; then
 | 
      
         | 4567 |  |  |              sim_endian="-DWITH_DEFAULT_TARGET_BYTE_ORDER=${wire_endian}"
 | 
      
         | 4568 |  |  |            else
 | 
      
         | 4569 |  |  |              echo "No default endian for target $target" 1>&6
 | 
      
         | 4570 |  |  |              sim_endian="-DWITH_DEFAULT_TARGET_BYTE_ORDER=0"
 | 
      
         | 4571 |  |  |            fi
 | 
      
         | 4572 |  |  |          fi;;
 | 
      
         | 4573 |  |  |   *)     as_fn_error "\"Unknown value $enableval for --enable-sim-endian\"" "$LINENO" 5; sim_endian="";;
 | 
      
         | 4574 |  |  | esac
 | 
      
         | 4575 |  |  | if test x"$silent" != x"yes" && test x"$sim_endian" != x""; then
 | 
      
         | 4576 |  |  |   echo "Setting endian flags = $sim_endian" 6>&1
 | 
      
         | 4577 |  |  | fi
 | 
      
         | 4578 |  |  | else
 | 
      
         | 4579 |  |  |   if test x"$default_endian" != x; then
 | 
      
         | 4580 |  |  |   sim_endian="-DWITH_DEFAULT_TARGET_BYTE_ORDER=${default_endian}"
 | 
      
         | 4581 |  |  | else
 | 
      
         | 4582 |  |  |   if test x"$wire_endian" != x; then
 | 
      
         | 4583 |  |  |     sim_endian="-DWITH_TARGET_BYTE_ORDER=${wire_endian}"
 | 
      
         | 4584 |  |  |   else
 | 
      
         | 4585 |  |  |     sim_endian=
 | 
      
         | 4586 |  |  |   fi
 | 
      
         | 4587 |  |  | fi
 | 
      
         | 4588 |  |  | fi
 | 
      
         | 4589 |  |  |  
 | 
      
         | 4590 |  |  | wire_alignment="STRICT_ALIGNMENT"
 | 
      
         | 4591 |  |  | default_alignment=""
 | 
      
         | 4592 |  |  |  
 | 
      
         | 4593 |  |  | # Check whether --enable-sim-alignment was given.
 | 
      
         | 4594 |  |  | if test "${enable_sim_alignment+set}" = set; then :
 | 
      
         | 4595 |  |  |   enableval=$enable_sim_alignment; case "${enableval}" in
 | 
      
         | 4596 |  |  |   strict | STRICT)       sim_alignment="-DWITH_ALIGNMENT=STRICT_ALIGNMENT";;
 | 
      
         | 4597 |  |  |   nonstrict | NONSTRICT) sim_alignment="-DWITH_ALIGNMENT=NONSTRICT_ALIGNMENT";;
 | 
      
         | 4598 |  |  |   forced | FORCED)       sim_alignment="-DWITH_ALIGNMENT=FORCED_ALIGNMENT";;
 | 
      
         | 4599 |  |  |   yes) if test x"$wire_alignment" != x; then
 | 
      
         | 4600 |  |  |          sim_alignment="-DWITH_ALIGNMENT=${wire_alignment}"
 | 
      
         | 4601 |  |  |        else
 | 
      
         | 4602 |  |  |          if test x"$default_alignment" != x; then
 | 
      
         | 4603 |  |  |            sim_alignment="-DWITH_ALIGNMENT=${default_alignment}"
 | 
      
         | 4604 |  |  |          else
 | 
      
         | 4605 |  |  |            echo "No hard-wired alignment for target $target" 1>&6
 | 
      
         | 4606 |  |  |            sim_alignment="-DWITH_ALIGNMENT=0"
 | 
      
         | 4607 |  |  |          fi
 | 
      
         | 4608 |  |  |        fi;;
 | 
      
         | 4609 |  |  |   no)  if test x"$default_alignment" != x; then
 | 
      
         | 4610 |  |  |          sim_alignment="-DWITH_DEFAULT_ALIGNMENT=${default_alignment}"
 | 
      
         | 4611 |  |  |        else
 | 
      
         | 4612 |  |  |          if test x"$wire_alignment" != x; then
 | 
      
         | 4613 |  |  |            sim_alignment="-DWITH_DEFAULT_ALIGNMENT=${wire_alignment}"
 | 
      
         | 4614 |  |  |          else
 | 
      
         | 4615 |  |  |            echo "No default alignment for target $target" 1>&6
 | 
      
         | 4616 |  |  |            sim_alignment="-DWITH_DEFAULT_ALIGNMENT=0"
 | 
      
         | 4617 |  |  |          fi
 | 
      
         | 4618 |  |  |        fi;;
 | 
      
         | 4619 |  |  |   *)   as_fn_error "\"Unknown value $enableval passed to --enable-sim-alignment\"" "$LINENO" 5; sim_alignment="";;
 | 
      
         | 4620 |  |  | esac
 | 
      
         | 4621 |  |  | if test x"$silent" != x"yes" && test x"$sim_alignment" != x""; then
 | 
      
         | 4622 |  |  |   echo "Setting alignment flags = $sim_alignment" 6>&1
 | 
      
         | 4623 |  |  | fi
 | 
      
         | 4624 |  |  | else
 | 
      
         | 4625 |  |  |   if test x"$default_alignment" != x; then
 | 
      
         | 4626 |  |  |   sim_alignment="-DWITH_DEFAULT_ALIGNMENT=${default_alignment}"
 | 
      
         | 4627 |  |  | else
 | 
      
         | 4628 |  |  |   if test x"$wire_alignment" != x; then
 | 
      
         | 4629 |  |  |     sim_alignment="-DWITH_ALIGNMENT=${wire_alignment}"
 | 
      
         | 4630 |  |  |   else
 | 
      
         | 4631 |  |  |     sim_alignment=
 | 
      
         | 4632 |  |  |   fi
 | 
      
         | 4633 |  |  | fi
 | 
      
         | 4634 |  |  | fi
 | 
      
         | 4635 |  |  |  
 | 
      
         | 4636 |  |  |  
 | 
      
         | 4637 |  |  | # Check whether --enable-sim-hostendian was given.
 | 
      
         | 4638 |  |  | if test "${enable_sim_hostendian+set}" = set; then :
 | 
      
         | 4639 |  |  |   enableval=$enable_sim_hostendian; case "${enableval}" in
 | 
      
         | 4640 |  |  |   no)    sim_hostendian="-DWITH_HOST_BYTE_ORDER=0";;
 | 
      
         | 4641 |  |  |   b*|B*) sim_hostendian="-DWITH_HOST_BYTE_ORDER=BIG_ENDIAN";;
 | 
      
         | 4642 |  |  |   l*|L*) sim_hostendian="-DWITH_HOST_BYTE_ORDER=LITTLE_ENDIAN";;
 | 
      
         | 4643 |  |  |   *)     as_fn_error "\"Unknown value $enableval for --enable-sim-hostendian\"" "$LINENO" 5; sim_hostendian="";;
 | 
      
         | 4644 |  |  | esac
 | 
      
         | 4645 |  |  | if test x"$silent" != x"yes" && test x"$sim_hostendian" != x""; then
 | 
      
         | 4646 |  |  |   echo "Setting hostendian flags = $sim_hostendian" 6>&1
 | 
      
         | 4647 |  |  | fi
 | 
      
         | 4648 |  |  | else
 | 
      
         | 4649 |  |  |  
 | 
      
         | 4650 |  |  | if test "x$cross_compiling" = "xno"; then
 | 
      
         | 4651 |  |  |    { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5
 | 
      
         | 4652 |  |  | $as_echo_n "checking whether byte ordering is bigendian... " >&6; }
 | 
      
         | 4653 |  |  | if test "${ac_cv_c_bigendian+set}" = set; then :
 | 
      
         | 4654 |  |  |   $as_echo_n "(cached) " >&6
 | 
      
         | 4655 |  |  | else
 | 
      
         | 4656 |  |  |   ac_cv_c_bigendian=unknown
 | 
      
         | 4657 |  |  |     # See if we're dealing with a universal compiler.
 | 
      
         | 4658 |  |  |     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 4659 |  |  | /* end confdefs.h.  */
 | 
      
         | 4660 |  |  | #ifndef __APPLE_CC__
 | 
      
         | 4661 |  |  |                not a universal capable compiler
 | 
      
         | 4662 |  |  |              #endif
 | 
      
         | 4663 |  |  |              typedef int dummy;
 | 
      
         | 4664 |  |  |  
 | 
      
         | 4665 |  |  | _ACEOF
 | 
      
         | 4666 |  |  | if ac_fn_c_try_compile "$LINENO"; then :
 | 
      
         | 4667 |  |  |  
 | 
      
         | 4668 |  |  |         # Check for potential -arch flags.  It is not universal unless
 | 
      
         | 4669 |  |  |         # there are at least two -arch flags with different values.
 | 
      
         | 4670 |  |  |         ac_arch=
 | 
      
         | 4671 |  |  |         ac_prev=
 | 
      
         | 4672 |  |  |         for ac_word in $CC $CFLAGS $CPPFLAGS $LDFLAGS; do
 | 
      
         | 4673 |  |  |          if test -n "$ac_prev"; then
 | 
      
         | 4674 |  |  |            case $ac_word in
 | 
      
         | 4675 |  |  |              i?86 | x86_64 | ppc | ppc64)
 | 
      
         | 4676 |  |  |                if test -z "$ac_arch" || test "$ac_arch" = "$ac_word"; then
 | 
      
         | 4677 |  |  |                  ac_arch=$ac_word
 | 
      
         | 4678 |  |  |                else
 | 
      
         | 4679 |  |  |                  ac_cv_c_bigendian=universal
 | 
      
         | 4680 |  |  |                  break
 | 
      
         | 4681 |  |  |                fi
 | 
      
         | 4682 |  |  |                ;;
 | 
      
         | 4683 |  |  |            esac
 | 
      
         | 4684 |  |  |            ac_prev=
 | 
      
         | 4685 |  |  |          elif test "x$ac_word" = "x-arch"; then
 | 
      
         | 4686 |  |  |            ac_prev=arch
 | 
      
         | 4687 |  |  |          fi
 | 
      
         | 4688 |  |  |        done
 | 
      
         | 4689 |  |  | fi
 | 
      
         | 4690 |  |  | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 | 
      
         | 4691 |  |  |     if test $ac_cv_c_bigendian = unknown; then
 | 
      
         | 4692 |  |  |       # See if sys/param.h defines the BYTE_ORDER macro.
 | 
      
         | 4693 |  |  |       cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 4694 |  |  | /* end confdefs.h.  */
 | 
      
         | 4695 |  |  | #include 
 | 
      
         | 4696 |  |  |              #include 
 | 
      
         | 4697 |  |  |  
 | 
      
         | 4698 |  |  | int
 | 
      
         | 4699 |  |  | main ()
 | 
      
         | 4700 |  |  | {
 | 
      
         | 4701 |  |  | #if ! (defined BYTE_ORDER && defined BIG_ENDIAN \
 | 
      
         | 4702 |  |  |                      && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \
 | 
      
         | 4703 |  |  |                      && LITTLE_ENDIAN)
 | 
      
         | 4704 |  |  |               bogus endian macros
 | 
      
         | 4705 |  |  |              #endif
 | 
      
         | 4706 |  |  |  
 | 
      
         | 4707 |  |  |   ;
 | 
      
         | 4708 |  |  |   return 0;
 | 
      
         | 4709 |  |  | }
 | 
      
         | 4710 |  |  | _ACEOF
 | 
      
         | 4711 |  |  | if ac_fn_c_try_compile "$LINENO"; then :
 | 
      
         | 4712 |  |  |   # It does; now see whether it defined to BIG_ENDIAN or not.
 | 
      
         | 4713 |  |  |          cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 4714 |  |  | /* end confdefs.h.  */
 | 
      
         | 4715 |  |  | #include 
 | 
      
         | 4716 |  |  |                 #include 
 | 
      
         | 4717 |  |  |  
 | 
      
         | 4718 |  |  | int
 | 
      
         | 4719 |  |  | main ()
 | 
      
         | 4720 |  |  | {
 | 
      
         | 4721 |  |  | #if BYTE_ORDER != BIG_ENDIAN
 | 
      
         | 4722 |  |  |                  not big endian
 | 
      
         | 4723 |  |  |                 #endif
 | 
      
         | 4724 |  |  |  
 | 
      
         | 4725 |  |  |   ;
 | 
      
         | 4726 |  |  |   return 0;
 | 
      
         | 4727 |  |  | }
 | 
      
         | 4728 |  |  | _ACEOF
 | 
      
         | 4729 |  |  | if ac_fn_c_try_compile "$LINENO"; then :
 | 
      
         | 4730 |  |  |   ac_cv_c_bigendian=yes
 | 
      
         | 4731 |  |  | else
 | 
      
         | 4732 |  |  |   ac_cv_c_bigendian=no
 | 
      
         | 4733 |  |  | fi
 | 
      
         | 4734 |  |  | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 | 
      
         | 4735 |  |  | fi
 | 
      
         | 4736 |  |  | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 | 
      
         | 4737 |  |  |     fi
 | 
      
         | 4738 |  |  |     if test $ac_cv_c_bigendian = unknown; then
 | 
      
         | 4739 |  |  |       # See if  defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris).
 | 
      
         | 4740 |  |  |       cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 4741 |  |  | /* end confdefs.h.  */
 | 
      
         | 4742 |  |  | #include 
 | 
      
         | 4743 |  |  |  
 | 
      
         | 4744 |  |  | int
 | 
      
         | 4745 |  |  | main ()
 | 
      
         | 4746 |  |  | {
 | 
      
         | 4747 |  |  | #if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN)
 | 
      
         | 4748 |  |  |               bogus endian macros
 | 
      
         | 4749 |  |  |              #endif
 | 
      
         | 4750 |  |  |  
 | 
      
         | 4751 |  |  |   ;
 | 
      
         | 4752 |  |  |   return 0;
 | 
      
         | 4753 |  |  | }
 | 
      
         | 4754 |  |  | _ACEOF
 | 
      
         | 4755 |  |  | if ac_fn_c_try_compile "$LINENO"; then :
 | 
      
         | 4756 |  |  |   # It does; now see whether it defined to _BIG_ENDIAN or not.
 | 
      
         | 4757 |  |  |          cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 4758 |  |  | /* end confdefs.h.  */
 | 
      
         | 4759 |  |  | #include 
 | 
      
         | 4760 |  |  |  
 | 
      
         | 4761 |  |  | int
 | 
      
         | 4762 |  |  | main ()
 | 
      
         | 4763 |  |  | {
 | 
      
         | 4764 |  |  | #ifndef _BIG_ENDIAN
 | 
      
         | 4765 |  |  |                  not big endian
 | 
      
         | 4766 |  |  |                 #endif
 | 
      
         | 4767 |  |  |  
 | 
      
         | 4768 |  |  |   ;
 | 
      
         | 4769 |  |  |   return 0;
 | 
      
         | 4770 |  |  | }
 | 
      
         | 4771 |  |  | _ACEOF
 | 
      
         | 4772 |  |  | if ac_fn_c_try_compile "$LINENO"; then :
 | 
      
         | 4773 |  |  |   ac_cv_c_bigendian=yes
 | 
      
         | 4774 |  |  | else
 | 
      
         | 4775 |  |  |   ac_cv_c_bigendian=no
 | 
      
         | 4776 |  |  | fi
 | 
      
         | 4777 |  |  | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 | 
      
         | 4778 |  |  | fi
 | 
      
         | 4779 |  |  | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 | 
      
         | 4780 |  |  |     fi
 | 
      
         | 4781 |  |  |     if test $ac_cv_c_bigendian = unknown; then
 | 
      
         | 4782 |  |  |       # Compile a test program.
 | 
      
         | 4783 |  |  |       if test "$cross_compiling" = yes; then :
 | 
      
         | 4784 |  |  |   # Try to guess by grepping values from an object file.
 | 
      
         | 4785 |  |  |          cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 4786 |  |  | /* end confdefs.h.  */
 | 
      
         | 4787 |  |  | short int ascii_mm[] =
 | 
      
         | 4788 |  |  |                   { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 };
 | 
      
         | 4789 |  |  |                 short int ascii_ii[] =
 | 
      
         | 4790 |  |  |                   { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 };
 | 
      
         | 4791 |  |  |                 int use_ascii (int i) {
 | 
      
         | 4792 |  |  |                   return ascii_mm[i] + ascii_ii[i];
 | 
      
         | 4793 |  |  |                 }
 | 
      
         | 4794 |  |  |                 short int ebcdic_ii[] =
 | 
      
         | 4795 |  |  |                   { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 };
 | 
      
         | 4796 |  |  |                 short int ebcdic_mm[] =
 | 
      
         | 4797 |  |  |                   { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 };
 | 
      
         | 4798 |  |  |                 int use_ebcdic (int i) {
 | 
      
         | 4799 |  |  |                   return ebcdic_mm[i] + ebcdic_ii[i];
 | 
      
         | 4800 |  |  |                 }
 | 
      
         | 4801 |  |  |                 extern int foo;
 | 
      
         | 4802 |  |  |  
 | 
      
         | 4803 |  |  | int
 | 
      
         | 4804 |  |  | main ()
 | 
      
         | 4805 |  |  | {
 | 
      
         | 4806 |  |  | return use_ascii (foo) == use_ebcdic (foo);
 | 
      
         | 4807 |  |  |   ;
 | 
      
         | 4808 |  |  |   return 0;
 | 
      
         | 4809 |  |  | }
 | 
      
         | 4810 |  |  | _ACEOF
 | 
      
         | 4811 |  |  | if ac_fn_c_try_compile "$LINENO"; then :
 | 
      
         | 4812 |  |  |   if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then
 | 
      
         | 4813 |  |  |               ac_cv_c_bigendian=yes
 | 
      
         | 4814 |  |  |             fi
 | 
      
         | 4815 |  |  |             if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then
 | 
      
         | 4816 |  |  |               if test "$ac_cv_c_bigendian" = unknown; then
 | 
      
         | 4817 |  |  |                 ac_cv_c_bigendian=no
 | 
      
         | 4818 |  |  |               else
 | 
      
         | 4819 |  |  |                 # finding both strings is unlikely to happen, but who knows?
 | 
      
         | 4820 |  |  |                 ac_cv_c_bigendian=unknown
 | 
      
         | 4821 |  |  |               fi
 | 
      
         | 4822 |  |  |             fi
 | 
      
         | 4823 |  |  | fi
 | 
      
         | 4824 |  |  | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 | 
      
         | 4825 |  |  | else
 | 
      
         | 4826 |  |  |   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 | 
      
         | 4827 |  |  | /* end confdefs.h.  */
 | 
      
         | 4828 |  |  | $ac_includes_default
 | 
      
         | 4829 |  |  | int
 | 
      
         | 4830 |  |  | main ()
 | 
      
         | 4831 |  |  | {
 | 
      
         | 4832 |  |  |  
 | 
      
         | 4833 |  |  |              /* Are we little or big endian?  From Harbison&Steele.  */
 | 
      
         | 4834 |  |  |              union
 | 
      
         | 4835 |  |  |              {
 | 
      
         | 4836 |  |  |                long int l;
 | 
      
         | 4837 |  |  |                char c[sizeof (long int)];
 | 
      
         | 4838 |  |  |              } u;
 | 
      
         | 4839 |  |  |              u.l = 1;
 | 
      
         | 4840 |  |  |              return u.c[sizeof (long int) - 1] == 1;
 | 
      
         | 4841 |  |  |  
 | 
      
         | 4842 |  |  |   ;
 | 
      
         | 4843 |  |  |   return 0;
 | 
      
         | 4844 |  |  | }
 | 
      
         | 4845 |  |  | _ACEOF
 | 
      
         | 4846 |  |  | if ac_fn_c_try_run "$LINENO"; then :
 | 
      
         | 4847 |  |  |   ac_cv_c_bigendian=no
 | 
      
         | 4848 |  |  | else
 | 
      
         | 4849 |  |  |   ac_cv_c_bigendian=yes
 | 
      
         | 4850 |  |  | fi
 | 
      
         | 4851 |  |  | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
 | 
      
         | 4852 |  |  |   conftest.$ac_objext conftest.beam conftest.$ac_ext
 | 
      
         | 4853 |  |  | fi
 | 
      
         | 4854 |  |  |  
 | 
      
         | 4855 |  |  |     fi
 | 
      
         | 4856 |  |  | fi
 | 
      
         | 4857 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bigendian" >&5
 | 
      
         | 4858 |  |  | $as_echo "$ac_cv_c_bigendian" >&6; }
 | 
      
         | 4859 |  |  |  case $ac_cv_c_bigendian in #(
 | 
      
         | 4860 |  |  |    yes)
 | 
      
         | 4861 |  |  |      $as_echo "#define WORDS_BIGENDIAN 1" >>confdefs.h
 | 
      
         | 4862 |  |  | ;; #(
 | 
      
         | 4863 |  |  |    no)
 | 
      
         | 4864 |  |  |       ;; #(
 | 
      
         | 4865 |  |  |    universal)
 | 
      
         | 4866 |  |  |  
 | 
      
         | 4867 |  |  | $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
 | 
      
         | 4868 |  |  |  
 | 
      
         | 4869 |  |  |      ;; #(
 | 
      
         | 4870 |  |  |    *)
 | 
      
         | 4871 |  |  |      as_fn_error "unknown endianness
 | 
      
         | 4872 |  |  |  presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;;
 | 
      
         | 4873 |  |  |  esac
 | 
      
         | 4874 |  |  |  
 | 
      
         | 4875 |  |  |   if test $ac_cv_c_bigendian = yes; then
 | 
      
         | 4876 |  |  |     sim_hostendian="-DWITH_HOST_BYTE_ORDER=BIG_ENDIAN"
 | 
      
         | 4877 |  |  |   else
 | 
      
         | 4878 |  |  |     sim_hostendian="-DWITH_HOST_BYTE_ORDER=LITTLE_ENDIAN"
 | 
      
         | 4879 |  |  |   fi
 | 
      
         | 4880 |  |  | else
 | 
      
         | 4881 |  |  |   sim_hostendian="-DWITH_HOST_BYTE_ORDER=0"
 | 
      
         | 4882 |  |  | fi
 | 
      
         | 4883 |  |  | fi
 | 
      
         | 4884 |  |  |  
 | 
      
         | 4885 |  |  |  
 | 
      
         | 4886 |  |  | default_sim_scache="16384"
 | 
      
         | 4887 |  |  | # Check whether --enable-sim-scache was given.
 | 
      
         | 4888 |  |  | if test "${enable_sim_scache+set}" = set; then :
 | 
      
         | 4889 |  |  |   enableval=$enable_sim_scache; case "${enableval}" in
 | 
      
         | 4890 |  |  |   yes)  sim_scache="-DWITH_SCACHE=${default_sim_scache}";;
 | 
      
         | 4891 |  |  |   no)   sim_scache="-DWITH_SCACHE=0" ;;
 | 
      
         | 4892 |  |  |   [0-9]*) sim_scache="-DWITH_SCACHE=${enableval}";;
 | 
      
         | 4893 |  |  |   *)    as_fn_error "\"Bad value $enableval passed to --enable-sim-scache\"" "$LINENO" 5;
 | 
      
         | 4894 |  |  |         sim_scache="";;
 | 
      
         | 4895 |  |  | esac
 | 
      
         | 4896 |  |  | if test x"$silent" != x"yes" && test x"$sim_scache" != x""; then
 | 
      
         | 4897 |  |  |   echo "Setting scache size = $sim_scache" 6>&1
 | 
      
         | 4898 |  |  | fi
 | 
      
         | 4899 |  |  | else
 | 
      
         | 4900 |  |  |   sim_scache="-DWITH_SCACHE=${default_sim_scache}"
 | 
      
         | 4901 |  |  | fi
 | 
      
         | 4902 |  |  |  
 | 
      
         | 4903 |  |  |  
 | 
      
         | 4904 |  |  |  
 | 
      
         | 4905 |  |  | default_sim_default_model="m32r/d"
 | 
      
         | 4906 |  |  | # Check whether --enable-sim-default-model was given.
 | 
      
         | 4907 |  |  | if test "${enable_sim_default_model+set}" = set; then :
 | 
      
         | 4908 |  |  |   enableval=$enable_sim_default_model; case "${enableval}" in
 | 
      
         | 4909 |  |  |   yes|no) as_fn_error "\"Missing argument to --enable-sim-default-model\"" "$LINENO" 5;;
 | 
      
         | 4910 |  |  |   *)    sim_default_model="-DWITH_DEFAULT_MODEL='\"${enableval}\"'";;
 | 
      
         | 4911 |  |  | esac
 | 
      
         | 4912 |  |  | if test x"$silent" != x"yes" && test x"$sim_default_model" != x""; then
 | 
      
         | 4913 |  |  |   echo "Setting default model = $sim_default_model" 6>&1
 | 
      
         | 4914 |  |  | fi
 | 
      
         | 4915 |  |  | else
 | 
      
         | 4916 |  |  |   sim_default_model="-DWITH_DEFAULT_MODEL='\"${default_sim_default_model}\"'"
 | 
      
         | 4917 |  |  | fi
 | 
      
         | 4918 |  |  |  
 | 
      
         | 4919 |  |  |  
 | 
      
         | 4920 |  |  |  
 | 
      
         | 4921 |  |  | # Check whether --enable-sim-environment was given.
 | 
      
         | 4922 |  |  | if test "${enable_sim_environment+set}" = set; then :
 | 
      
         | 4923 |  |  |   enableval=$enable_sim_environment; case "${enableval}" in
 | 
      
         | 4924 |  |  |   all | ALL)             sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
 | 
      
         | 4925 |  |  |   user | USER)           sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
 | 
      
         | 4926 |  |  |   virtual | VIRTUAL)     sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
 | 
      
         | 4927 |  |  |   operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
 | 
      
         | 4928 |  |  |   *)   as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
 | 
      
         | 4929 |  |  |        sim_environment="";;
 | 
      
         | 4930 |  |  | esac
 | 
      
         | 4931 |  |  | if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
 | 
      
         | 4932 |  |  |   echo "Setting sim environment = $sim_environment" 6>&1
 | 
      
         | 4933 |  |  | fi
 | 
      
         | 4934 |  |  | else
 | 
      
         | 4935 |  |  |   sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
 | 
      
         | 4936 |  |  | fi
 | 
      
         | 4937 |  |  |  
 | 
      
         | 4938 |  |  |  
 | 
      
         | 4939 |  |  | default_sim_inline=""
 | 
      
         | 4940 |  |  | # Check whether --enable-sim-inline was given.
 | 
      
         | 4941 |  |  | if test "${enable_sim_inline+set}" = set; then :
 | 
      
         | 4942 |  |  |   enableval=$enable_sim_inline; sim_inline=""
 | 
      
         | 4943 |  |  | case "$enableval" in
 | 
      
         | 4944 |  |  |   no)           sim_inline="-DDEFAULT_INLINE=0";;
 | 
      
         | 4945 |  |  |   0)            sim_inline="-DDEFAULT_INLINE=0";;
 | 
      
         | 4946 |  |  |   yes | 2)      sim_inline="-DDEFAULT_INLINE=ALL_C_INLINE";;
 | 
      
         | 4947 |  |  |   1)            sim_inline="-DDEFAULT_INLINE=INLINE_LOCALS";;
 | 
      
         | 4948 |  |  |   *) for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
 | 
      
         | 4949 |  |  |        new_flag=""
 | 
      
         | 4950 |  |  |        case "$x" in
 | 
      
         | 4951 |  |  |          *_INLINE=*)    new_flag="-D$x";;
 | 
      
         | 4952 |  |  |          *=*)           new_flag=`echo "$x" | sed -e "s/=/_INLINE=/" -e "s/^/-D/"`;;
 | 
      
         | 4953 |  |  |          *_INLINE)      new_flag="-D$x=ALL_C_INLINE";;
 | 
      
         | 4954 |  |  |          *)             new_flag="-D$x""_INLINE=ALL_C_INLINE";;
 | 
      
         | 4955 |  |  |        esac
 | 
      
         | 4956 |  |  |        if test x"$sim_inline" = x""; then
 | 
      
         | 4957 |  |  |          sim_inline="$new_flag"
 | 
      
         | 4958 |  |  |        else
 | 
      
         | 4959 |  |  |          sim_inline="$sim_inline $new_flag"
 | 
      
         | 4960 |  |  |        fi
 | 
      
         | 4961 |  |  |      done;;
 | 
      
         | 4962 |  |  | esac
 | 
      
         | 4963 |  |  | if test x"$silent" != x"yes" && test x"$sim_inline" != x""; then
 | 
      
         | 4964 |  |  |   echo "Setting inline flags = $sim_inline" 6>&1
 | 
      
         | 4965 |  |  | fi
 | 
      
         | 4966 |  |  | else
 | 
      
         | 4967 |  |  |  
 | 
      
         | 4968 |  |  | if test "x$cross_compiling" = "xno"; then
 | 
      
         | 4969 |  |  |   if test x"$GCC" != "x" -a x"${default_sim_inline}" != "x" ; then
 | 
      
         | 4970 |  |  |     sim_inline="${default_sim_inline}"
 | 
      
         | 4971 |  |  |     if test x"$silent" != x"yes"; then
 | 
      
         | 4972 |  |  |       echo "Setting inline flags = $sim_inline" 6>&1
 | 
      
         | 4973 |  |  |     fi
 | 
      
         | 4974 |  |  |   else
 | 
      
         | 4975 |  |  |     sim_inline=""
 | 
      
         | 4976 |  |  |   fi
 | 
      
         | 4977 |  |  | else
 | 
      
         | 4978 |  |  |   sim_inline="-DDEFAULT_INLINE=0"
 | 
      
         | 4979 |  |  | fi
 | 
      
         | 4980 |  |  | fi
 | 
      
         | 4981 |  |  |  
 | 
      
         | 4982 |  |  |  
 | 
      
         | 4983 |  |  | cgen_maint=no
 | 
      
         | 4984 |  |  | cgen=guile
 | 
      
         | 4985 |  |  | cgendir='$(srcdir)/../../cgen'
 | 
      
         | 4986 |  |  | # Check whether --enable-cgen-maint was given.
 | 
      
         | 4987 |  |  | if test "${enable_cgen_maint+set}" = set; then :
 | 
      
         | 4988 |  |  |   enableval=$enable_cgen_maint; case "${enableval}" in
 | 
      
         | 4989 |  |  |   yes)  cgen_maint=yes ;;
 | 
      
         | 4990 |  |  |   no)   cgen_maint=no ;;
 | 
      
         | 4991 |  |  |   *)
 | 
      
         | 4992 |  |  |         # argument is cgen install directory (not implemented yet).
 | 
      
         | 4993 |  |  |         # Having a `share' directory might be more appropriate for the .scm,
 | 
      
         | 4994 |  |  |         # .cpu, etc. files.
 | 
      
         | 4995 |  |  |         cgendir=${cgen_maint}/lib/cgen
 | 
      
         | 4996 |  |  |         cgen=guile
 | 
      
         | 4997 |  |  |         ;;
 | 
      
         | 4998 |  |  | esac
 | 
      
         | 4999 |  |  | fi
 | 
      
         | 5000 |  |  | if test x${cgen_maint} != xno ; then
 | 
      
         | 5001 |  |  |   CGEN_MAINT=''
 | 
      
         | 5002 |  |  | else
 | 
      
         | 5003 |  |  |   CGEN_MAINT='#'
 | 
      
         | 5004 |  |  | fi
 | 
      
         | 5005 |  |  |  
 | 
      
         | 5006 |  |  |  
 | 
      
         | 5007 |  |  |  
 | 
      
         | 5008 |  |  |  
 | 
      
         | 5009 |  |  |  
 | 
      
         | 5010 |  |  |   case "${target_alias}" in
 | 
      
         | 5011 |  |  |   m32r*-linux*)
 | 
      
         | 5012 |  |  |     traps_obj=traps-linux.o
 | 
      
         | 5013 |  |  |     sim_extra_cflags="-DM32R_LINUX"
 | 
      
         | 5014 |  |  |     ;;
 | 
      
         | 5015 |  |  |   *)
 | 
      
         | 5016 |  |  |     traps_obj=traps.o
 | 
      
         | 5017 |  |  |     sim_extra_cflags="-DM32R_ELF"
 | 
      
         | 5018 |  |  |     ;;
 | 
      
         | 5019 |  |  |   esac
 | 
      
         | 5020 |  |  |  
 | 
      
         | 5021 |  |  |  
 | 
      
         | 5022 |  |  |  
 | 
      
         | 5023 |  |  |  
 | 
      
         | 5024 |  |  |  
 | 
      
         | 5025 |  |  | ac_sources="$sim_link_files"
 | 
      
         | 5026 |  |  | ac_dests="$sim_link_links"
 | 
      
         | 5027 |  |  | while test -n "$ac_sources"; do
 | 
      
         | 5028 |  |  |   set $ac_dests; ac_dest=$1; shift; ac_dests=$*
 | 
      
         | 5029 |  |  |   set $ac_sources; ac_source=$1; shift; ac_sources=$*
 | 
      
         | 5030 |  |  |   ac_config_links_1="$ac_config_links_1 $ac_dest:$ac_source"
 | 
      
         | 5031 |  |  | done
 | 
      
         | 5032 |  |  | ac_config_links="$ac_config_links $ac_config_links_1"
 | 
      
         | 5033 |  |  |  
 | 
      
         | 5034 |  |  | cgen_breaks=""
 | 
      
         | 5035 |  |  | if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then
 | 
      
         | 5036 |  |  | cgen_breaks="break cgen_rtx_error";
 | 
      
         | 5037 |  |  | fi
 | 
      
         | 5038 |  |  |  
 | 
      
         | 5039 |  |  | ac_config_files="$ac_config_files Makefile.sim:Makefile.in"
 | 
      
         | 5040 |  |  |  
 | 
      
         | 5041 |  |  | ac_config_files="$ac_config_files Make-common.sim:../common/Make-common.in"
 | 
      
         | 5042 |  |  |  
 | 
      
         | 5043 |  |  | ac_config_files="$ac_config_files .gdbinit:../common/gdbinit.in"
 | 
      
         | 5044 |  |  |  
 | 
      
         | 5045 |  |  | ac_config_commands="$ac_config_commands Makefile"
 | 
      
         | 5046 |  |  |  
 | 
      
         | 5047 |  |  | ac_config_commands="$ac_config_commands stamp-h"
 | 
      
         | 5048 |  |  |  
 | 
      
         | 5049 |  |  | cat >confcache <<\_ACEOF
 | 
      
         | 5050 |  |  | # This file is a shell script that caches the results of configure
 | 
      
         | 5051 |  |  | # tests run on this system so they can be shared between configure
 | 
      
         | 5052 |  |  | # scripts and configure runs, see configure's option --config-cache.
 | 
      
         | 5053 |  |  | # It is not useful on other systems.  If it contains results you don't
 | 
      
         | 5054 |  |  | # want to keep, you may remove or edit it.
 | 
      
         | 5055 |  |  | #
 | 
      
         | 5056 |  |  | # config.status only pays attention to the cache file if you give it
 | 
      
         | 5057 |  |  | # the --recheck option to rerun configure.
 | 
      
         | 5058 |  |  | #
 | 
      
         | 5059 |  |  | # `ac_cv_env_foo' variables (set or unset) will be overridden when
 | 
      
         | 5060 |  |  | # loading this file, other *unset* `ac_cv_foo' will be assigned the
 | 
      
         | 5061 |  |  | # following values.
 | 
      
         | 5062 |  |  |  
 | 
      
         | 5063 |  |  | _ACEOF
 | 
      
         | 5064 |  |  |  
 | 
      
         | 5065 |  |  | # The following way of writing the cache mishandles newlines in values,
 | 
      
         | 5066 |  |  | # but we know of no workaround that is simple, portable, and efficient.
 | 
      
         | 5067 |  |  | # So, we kill variables containing newlines.
 | 
      
         | 5068 |  |  | # Ultrix sh set writes to stderr and can't be redirected directly,
 | 
      
         | 5069 |  |  | # and sets the high bit in the cache file unless we assign to the vars.
 | 
      
         | 5070 |  |  | (
 | 
      
         | 5071 |  |  |   for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
 | 
      
         | 5072 |  |  |     eval ac_val=\$$ac_var
 | 
      
         | 5073 |  |  |     case $ac_val in #(
 | 
      
         | 5074 |  |  |     *${as_nl}*)
 | 
      
         | 5075 |  |  |       case $ac_var in #(
 | 
      
         | 5076 |  |  |       *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
 | 
      
         | 5077 |  |  | $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
 | 
      
         | 5078 |  |  |       esac
 | 
      
         | 5079 |  |  |       case $ac_var in #(
 | 
      
         | 5080 |  |  |       _ | IFS | as_nl) ;; #(
 | 
      
         | 5081 |  |  |       BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
 | 
      
         | 5082 |  |  |       *) { eval $ac_var=; unset $ac_var;} ;;
 | 
      
         | 5083 |  |  |       esac ;;
 | 
      
         | 5084 |  |  |     esac
 | 
      
         | 5085 |  |  |   done
 | 
      
         | 5086 |  |  |  
 | 
      
         | 5087 |  |  |   (set) 2>&1 |
 | 
      
         | 5088 |  |  |     case $as_nl`(ac_space=' '; set) 2>&1` in #(
 | 
      
         | 5089 |  |  |     *${as_nl}ac_space=\ *)
 | 
      
         | 5090 |  |  |       # `set' does not quote correctly, so add quotes: double-quote
 | 
      
         | 5091 |  |  |       # substitution turns \\\\ into \\, and sed turns \\ into \.
 | 
      
         | 5092 |  |  |       sed -n \
 | 
      
         | 5093 |  |  |         "s/'/'\\\\''/g;
 | 
      
         | 5094 |  |  |           s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
 | 
      
         | 5095 |  |  |       ;; #(
 | 
      
         | 5096 |  |  |     *)
 | 
      
         | 5097 |  |  |       # `set' quotes correctly as required by POSIX, so do not add quotes.
 | 
      
         | 5098 |  |  |       sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
 | 
      
         | 5099 |  |  |       ;;
 | 
      
         | 5100 |  |  |     esac |
 | 
      
         | 5101 |  |  |     sort
 | 
      
         | 5102 |  |  | ) |
 | 
      
         | 5103 |  |  |   sed '
 | 
      
         | 5104 |  |  |      /^ac_cv_env_/b end
 | 
      
         | 5105 |  |  |      t clear
 | 
      
         | 5106 |  |  |      :clear
 | 
      
         | 5107 |  |  |      s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
 | 
      
         | 5108 |  |  |      t end
 | 
      
         | 5109 |  |  |      s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
 | 
      
         | 5110 |  |  |      :end' >>confcache
 | 
      
         | 5111 |  |  | if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
 | 
      
         | 5112 |  |  |   if test -w "$cache_file"; then
 | 
      
         | 5113 |  |  |     test "x$cache_file" != "x/dev/null" &&
 | 
      
         | 5114 |  |  |       { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
 | 
      
         | 5115 |  |  | $as_echo "$as_me: updating cache $cache_file" >&6;}
 | 
      
         | 5116 |  |  |     cat confcache >$cache_file
 | 
      
         | 5117 |  |  |   else
 | 
      
         | 5118 |  |  |     { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
 | 
      
         | 5119 |  |  | $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
 | 
      
         | 5120 |  |  |   fi
 | 
      
         | 5121 |  |  | fi
 | 
      
         | 5122 |  |  | rm -f confcache
 | 
      
         | 5123 |  |  |  
 | 
      
         | 5124 |  |  | test "x$prefix" = xNONE && prefix=$ac_default_prefix
 | 
      
         | 5125 |  |  | # Let make expand exec_prefix.
 | 
      
         | 5126 |  |  | test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
 | 
      
         | 5127 |  |  |  
 | 
      
         | 5128 |  |  | DEFS=-DHAVE_CONFIG_H
 | 
      
         | 5129 |  |  |  
 | 
      
         | 5130 |  |  | ac_libobjs=
 | 
      
         | 5131 |  |  | ac_ltlibobjs=
 | 
      
         | 5132 |  |  | for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
 | 
      
         | 5133 |  |  |   # 1. Remove the extension, and $U if already installed.
 | 
      
         | 5134 |  |  |   ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
 | 
      
         | 5135 |  |  |   ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
 | 
      
         | 5136 |  |  |   # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
 | 
      
         | 5137 |  |  |   #    will be set to the directory where LIBOBJS objects are built.
 | 
      
         | 5138 |  |  |   as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
 | 
      
         | 5139 |  |  |   as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
 | 
      
         | 5140 |  |  | done
 | 
      
         | 5141 |  |  | LIBOBJS=$ac_libobjs
 | 
      
         | 5142 |  |  |  
 | 
      
         | 5143 |  |  | LTLIBOBJS=$ac_ltlibobjs
 | 
      
         | 5144 |  |  |  
 | 
      
         | 5145 |  |  |  
 | 
      
         | 5146 |  |  |  
 | 
      
         | 5147 |  |  |  
 | 
      
         | 5148 |  |  | : ${CONFIG_STATUS=./config.status}
 | 
      
         | 5149 |  |  | ac_write_fail=0
 | 
      
         | 5150 |  |  | ac_clean_files_save=$ac_clean_files
 | 
      
         | 5151 |  |  | ac_clean_files="$ac_clean_files $CONFIG_STATUS"
 | 
      
         | 5152 |  |  | { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
 | 
      
         | 5153 |  |  | $as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
 | 
      
         | 5154 |  |  | as_write_fail=0
 | 
      
         | 5155 |  |  | cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
 | 
      
         | 5156 |  |  | #! $SHELL
 | 
      
         | 5157 |  |  | # Generated by $as_me.
 | 
      
         | 5158 |  |  | # Run this file to recreate the current configuration.
 | 
      
         | 5159 |  |  | # Compiler output produced by configure, useful for debugging
 | 
      
         | 5160 |  |  | # configure, is in config.log if it exists.
 | 
      
         | 5161 |  |  |  
 | 
      
         | 5162 |  |  | debug=false
 | 
      
         | 5163 |  |  | ac_cs_recheck=false
 | 
      
         | 5164 |  |  | ac_cs_silent=false
 | 
      
         | 5165 |  |  |  
 | 
      
         | 5166 |  |  | SHELL=\${CONFIG_SHELL-$SHELL}
 | 
      
         | 5167 |  |  | export SHELL
 | 
      
         | 5168 |  |  | _ASEOF
 | 
      
         | 5169 |  |  | cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
 | 
      
         | 5170 |  |  | ## -------------------- ##
 | 
      
         | 5171 |  |  | ## M4sh Initialization. ##
 | 
      
         | 5172 |  |  | ## -------------------- ##
 | 
      
         | 5173 |  |  |  
 | 
      
         | 5174 |  |  | # Be more Bourne compatible
 | 
      
         | 5175 |  |  | DUALCASE=1; export DUALCASE # for MKS sh
 | 
      
         | 5176 |  |  | if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
 | 
      
         | 5177 |  |  |   emulate sh
 | 
      
         | 5178 |  |  |   NULLCMD=:
 | 
      
         | 5179 |  |  |   # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
 | 
      
         | 5180 |  |  |   # is contrary to our usage.  Disable this feature.
 | 
      
         | 5181 |  |  |   alias -g '${1+"$@"}'='"$@"'
 | 
      
         | 5182 |  |  |   setopt NO_GLOB_SUBST
 | 
      
         | 5183 |  |  | else
 | 
      
         | 5184 |  |  |   case `(set -o) 2>/dev/null` in #(
 | 
      
         | 5185 |  |  |   *posix*) :
 | 
      
         | 5186 |  |  |     set -o posix ;; #(
 | 
      
         | 5187 |  |  |   *) :
 | 
      
         | 5188 |  |  |      ;;
 | 
      
         | 5189 |  |  | esac
 | 
      
         | 5190 |  |  | fi
 | 
      
         | 5191 |  |  |  
 | 
      
         | 5192 |  |  |  
 | 
      
         | 5193 |  |  | as_nl='
 | 
      
         | 5194 |  |  | '
 | 
      
         | 5195 |  |  | export as_nl
 | 
      
         | 5196 |  |  | # Printing a long string crashes Solaris 7 /usr/bin/printf.
 | 
      
         | 5197 |  |  | as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
 | 
      
         | 5198 |  |  | as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
 | 
      
         | 5199 |  |  | as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
 | 
      
         | 5200 |  |  | # Prefer a ksh shell builtin over an external printf program on Solaris,
 | 
      
         | 5201 |  |  | # but without wasting forks for bash or zsh.
 | 
      
         | 5202 |  |  | if test -z "$BASH_VERSION$ZSH_VERSION" \
 | 
      
         | 5203 |  |  |     && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
 | 
      
         | 5204 |  |  |   as_echo='print -r --'
 | 
      
         | 5205 |  |  |   as_echo_n='print -rn --'
 | 
      
         | 5206 |  |  | elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
 | 
      
         | 5207 |  |  |   as_echo='printf %s\n'
 | 
      
         | 5208 |  |  |   as_echo_n='printf %s'
 | 
      
         | 5209 |  |  | else
 | 
      
         | 5210 |  |  |   if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
 | 
      
         | 5211 |  |  |     as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
 | 
      
         | 5212 |  |  |     as_echo_n='/usr/ucb/echo -n'
 | 
      
         | 5213 |  |  |   else
 | 
      
         | 5214 |  |  |     as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
 | 
      
         | 5215 |  |  |     as_echo_n_body='eval
 | 
      
         | 5216 |  |  |       arg=$1;
 | 
      
         | 5217 |  |  |       case $arg in #(
 | 
      
         | 5218 |  |  |       *"$as_nl"*)
 | 
      
         | 5219 |  |  |         expr "X$arg" : "X\\(.*\\)$as_nl";
 | 
      
         | 5220 |  |  |         arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
 | 
      
         | 5221 |  |  |       esac;
 | 
      
         | 5222 |  |  |       expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
 | 
      
         | 5223 |  |  |     '
 | 
      
         | 5224 |  |  |     export as_echo_n_body
 | 
      
         | 5225 |  |  |     as_echo_n='sh -c $as_echo_n_body as_echo'
 | 
      
         | 5226 |  |  |   fi
 | 
      
         | 5227 |  |  |   export as_echo_body
 | 
      
         | 5228 |  |  |   as_echo='sh -c $as_echo_body as_echo'
 | 
      
         | 5229 |  |  | fi
 | 
      
         | 5230 |  |  |  
 | 
      
         | 5231 |  |  | # The user is always right.
 | 
      
         | 5232 |  |  | if test "${PATH_SEPARATOR+set}" != set; then
 | 
      
         | 5233 |  |  |   PATH_SEPARATOR=:
 | 
      
         | 5234 |  |  |   (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
 | 
      
         | 5235 |  |  |     (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
 | 
      
         | 5236 |  |  |       PATH_SEPARATOR=';'
 | 
      
         | 5237 |  |  |   }
 | 
      
         | 5238 |  |  | fi
 | 
      
         | 5239 |  |  |  
 | 
      
         | 5240 |  |  |  
 | 
      
         | 5241 |  |  | # IFS
 | 
      
         | 5242 |  |  | # We need space, tab and new line, in precisely that order.  Quoting is
 | 
      
         | 5243 |  |  | # there to prevent editors from complaining about space-tab.
 | 
      
         | 5244 |  |  | # (If _AS_PATH_WALK were called with IFS unset, it would disable word
 | 
      
         | 5245 |  |  | # splitting by setting IFS to empty value.)
 | 
      
         | 5246 |  |  | IFS=" ""        $as_nl"
 | 
      
         | 5247 |  |  |  
 | 
      
         | 5248 |  |  | # Find who we are.  Look in the path if we contain no directory separator.
 | 
      
         | 5249 |  |  | case $0 in #((
 | 
      
         | 5250 |  |  |   *[\\/]* ) as_myself=$0 ;;
 | 
      
         | 5251 |  |  |   *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 | 
      
         | 5252 |  |  | for as_dir in $PATH
 | 
      
         | 5253 |  |  | do
 | 
      
         | 5254 |  |  |   IFS=$as_save_IFS
 | 
      
         | 5255 |  |  |   test -z "$as_dir" && as_dir=.
 | 
      
         | 5256 |  |  |     test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 | 
      
         | 5257 |  |  |   done
 | 
      
         | 5258 |  |  | IFS=$as_save_IFS
 | 
      
         | 5259 |  |  |  
 | 
      
         | 5260 |  |  |      ;;
 | 
      
         | 5261 |  |  | esac
 | 
      
         | 5262 |  |  | # We did not find ourselves, most probably we were run as `sh COMMAND'
 | 
      
         | 5263 |  |  | # in which case we are not to be found in the path.
 | 
      
         | 5264 |  |  | if test "x$as_myself" = x; then
 | 
      
         | 5265 |  |  |   as_myself=$0
 | 
      
         | 5266 |  |  | fi
 | 
      
         | 5267 |  |  | if test ! -f "$as_myself"; then
 | 
      
         | 5268 |  |  |   $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 | 
      
         | 5269 |  |  |   exit 1
 | 
      
         | 5270 |  |  | fi
 | 
      
         | 5271 |  |  |  
 | 
      
         | 5272 |  |  | # Unset variables that we do not need and which cause bugs (e.g. in
 | 
      
         | 5273 |  |  | # pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
 | 
      
         | 5274 |  |  | # suppresses any "Segmentation fault" message there.  '((' could
 | 
      
         | 5275 |  |  | # trigger a bug in pdksh 5.2.14.
 | 
      
         | 5276 |  |  | for as_var in BASH_ENV ENV MAIL MAILPATH
 | 
      
         | 5277 |  |  | do eval test x\${$as_var+set} = xset \
 | 
      
         | 5278 |  |  |   && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
 | 
      
         | 5279 |  |  | done
 | 
      
         | 5280 |  |  | PS1='$ '
 | 
      
         | 5281 |  |  | PS2='> '
 | 
      
         | 5282 |  |  | PS4='+ '
 | 
      
         | 5283 |  |  |  
 | 
      
         | 5284 |  |  | # NLS nuisances.
 | 
      
         | 5285 |  |  | LC_ALL=C
 | 
      
         | 5286 |  |  | export LC_ALL
 | 
      
         | 5287 |  |  | LANGUAGE=C
 | 
      
         | 5288 |  |  | export LANGUAGE
 | 
      
         | 5289 |  |  |  
 | 
      
         | 5290 |  |  | # CDPATH.
 | 
      
         | 5291 |  |  | (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 | 
      
         | 5292 |  |  |  
 | 
      
         | 5293 |  |  |  
 | 
      
         | 5294 |  |  | # as_fn_error ERROR [LINENO LOG_FD]
 | 
      
         | 5295 |  |  | # ---------------------------------
 | 
      
         | 5296 |  |  | # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 | 
      
         | 5297 |  |  | # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
 | 
      
         | 5298 |  |  | # script with status $?, using 1 if that was 0.
 | 
      
         | 5299 |  |  | as_fn_error ()
 | 
      
         | 5300 |  |  | {
 | 
      
         | 5301 |  |  |   as_status=$?; test $as_status -eq 0 && as_status=1
 | 
      
         | 5302 |  |  |   if test "$3"; then
 | 
      
         | 5303 |  |  |     as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 | 
      
         | 5304 |  |  |     $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
 | 
      
         | 5305 |  |  |   fi
 | 
      
         | 5306 |  |  |   $as_echo "$as_me: error: $1" >&2
 | 
      
         | 5307 |  |  |   as_fn_exit $as_status
 | 
      
         | 5308 |  |  | } # as_fn_error
 | 
      
         | 5309 |  |  |  
 | 
      
         | 5310 |  |  |  
 | 
      
         | 5311 |  |  | # as_fn_set_status STATUS
 | 
      
         | 5312 |  |  | # -----------------------
 | 
      
         | 5313 |  |  | # Set $? to STATUS, without forking.
 | 
      
         | 5314 |  |  | as_fn_set_status ()
 | 
      
         | 5315 |  |  | {
 | 
      
         | 5316 |  |  |   return $1
 | 
      
         | 5317 |  |  | } # as_fn_set_status
 | 
      
         | 5318 |  |  |  
 | 
      
         | 5319 |  |  | # as_fn_exit STATUS
 | 
      
         | 5320 |  |  | # -----------------
 | 
      
         | 5321 |  |  | # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
 | 
      
         | 5322 |  |  | as_fn_exit ()
 | 
      
         | 5323 |  |  | {
 | 
      
         | 5324 |  |  |   set +e
 | 
      
         | 5325 |  |  |   as_fn_set_status $1
 | 
      
         | 5326 |  |  |   exit $1
 | 
      
         | 5327 |  |  | } # as_fn_exit
 | 
      
         | 5328 |  |  |  
 | 
      
         | 5329 |  |  | # as_fn_unset VAR
 | 
      
         | 5330 |  |  | # ---------------
 | 
      
         | 5331 |  |  | # Portably unset VAR.
 | 
      
         | 5332 |  |  | as_fn_unset ()
 | 
      
         | 5333 |  |  | {
 | 
      
         | 5334 |  |  |   { eval $1=; unset $1;}
 | 
      
         | 5335 |  |  | }
 | 
      
         | 5336 |  |  | as_unset=as_fn_unset
 | 
      
         | 5337 |  |  | # as_fn_append VAR VALUE
 | 
      
         | 5338 |  |  | # ----------------------
 | 
      
         | 5339 |  |  | # Append the text in VALUE to the end of the definition contained in VAR. Take
 | 
      
         | 5340 |  |  | # advantage of any shell optimizations that allow amortized linear growth over
 | 
      
         | 5341 |  |  | # repeated appends, instead of the typical quadratic growth present in naive
 | 
      
         | 5342 |  |  | # implementations.
 | 
      
         | 5343 |  |  | if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
 | 
      
         | 5344 |  |  |   eval 'as_fn_append ()
 | 
      
         | 5345 |  |  |   {
 | 
      
         | 5346 |  |  |     eval $1+=\$2
 | 
      
         | 5347 |  |  |   }'
 | 
      
         | 5348 |  |  | else
 | 
      
         | 5349 |  |  |   as_fn_append ()
 | 
      
         | 5350 |  |  |   {
 | 
      
         | 5351 |  |  |     eval $1=\$$1\$2
 | 
      
         | 5352 |  |  |   }
 | 
      
         | 5353 |  |  | fi # as_fn_append
 | 
      
         | 5354 |  |  |  
 | 
      
         | 5355 |  |  | # as_fn_arith ARG...
 | 
      
         | 5356 |  |  | # ------------------
 | 
      
         | 5357 |  |  | # Perform arithmetic evaluation on the ARGs, and store the result in the
 | 
      
         | 5358 |  |  | # global $as_val. Take advantage of shells that can avoid forks. The arguments
 | 
      
         | 5359 |  |  | # must be portable across $(()) and expr.
 | 
      
         | 5360 |  |  | if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
 | 
      
         | 5361 |  |  |   eval 'as_fn_arith ()
 | 
      
         | 5362 |  |  |   {
 | 
      
         | 5363 |  |  |     as_val=$(( $* ))
 | 
      
         | 5364 |  |  |   }'
 | 
      
         | 5365 |  |  | else
 | 
      
         | 5366 |  |  |   as_fn_arith ()
 | 
      
         | 5367 |  |  |   {
 | 
      
         | 5368 |  |  |     as_val=`expr "$@" || test $? -eq 1`
 | 
      
         | 5369 |  |  |   }
 | 
      
         | 5370 |  |  | fi # as_fn_arith
 | 
      
         | 5371 |  |  |  
 | 
      
         | 5372 |  |  |  
 | 
      
         | 5373 |  |  | if expr a : '\(a\)' >/dev/null 2>&1 &&
 | 
      
         | 5374 |  |  |    test "X`expr 00001 : '.*\(...\)'`" = X001; then
 | 
      
         | 5375 |  |  |   as_expr=expr
 | 
      
         | 5376 |  |  | else
 | 
      
         | 5377 |  |  |   as_expr=false
 | 
      
         | 5378 |  |  | fi
 | 
      
         | 5379 |  |  |  
 | 
      
         | 5380 |  |  | if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
 | 
      
         | 5381 |  |  |   as_basename=basename
 | 
      
         | 5382 |  |  | else
 | 
      
         | 5383 |  |  |   as_basename=false
 | 
      
         | 5384 |  |  | fi
 | 
      
         | 5385 |  |  |  
 | 
      
         | 5386 |  |  | if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
 | 
      
         | 5387 |  |  |   as_dirname=dirname
 | 
      
         | 5388 |  |  | else
 | 
      
         | 5389 |  |  |   as_dirname=false
 | 
      
         | 5390 |  |  | fi
 | 
      
         | 5391 |  |  |  
 | 
      
         | 5392 |  |  | as_me=`$as_basename -- "$0" ||
 | 
      
         | 5393 |  |  | $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
 | 
      
         | 5394 |  |  |          X"$0" : 'X\(//\)$' \| \
 | 
      
         | 5395 |  |  |          X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 | 
      
         | 5396 |  |  | $as_echo X/"$0" |
 | 
      
         | 5397 |  |  |     sed '/^.*\/\([^/][^/]*\)\/*$/{
 | 
      
         | 5398 |  |  |             s//\1/
 | 
      
         | 5399 |  |  |             q
 | 
      
         | 5400 |  |  |           }
 | 
      
         | 5401 |  |  |           /^X\/\(\/\/\)$/{
 | 
      
         | 5402 |  |  |             s//\1/
 | 
      
         | 5403 |  |  |             q
 | 
      
         | 5404 |  |  |           }
 | 
      
         | 5405 |  |  |           /^X\/\(\/\).*/{
 | 
      
         | 5406 |  |  |             s//\1/
 | 
      
         | 5407 |  |  |             q
 | 
      
         | 5408 |  |  |           }
 | 
      
         | 5409 |  |  |           s/.*/./; q'`
 | 
      
         | 5410 |  |  |  
 | 
      
         | 5411 |  |  | # Avoid depending upon Character Ranges.
 | 
      
         | 5412 |  |  | as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 | 
      
         | 5413 |  |  | as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 | 
      
         | 5414 |  |  | as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 | 
      
         | 5415 |  |  | as_cr_digits='0123456789'
 | 
      
         | 5416 |  |  | as_cr_alnum=$as_cr_Letters$as_cr_digits
 | 
      
         | 5417 |  |  |  
 | 
      
         | 5418 |  |  | ECHO_C= ECHO_N= ECHO_T=
 | 
      
         | 5419 |  |  | case `echo -n x` in #(((((
 | 
      
         | 5420 |  |  | -n*)
 | 
      
         | 5421 |  |  |   case `echo 'xy\c'` in
 | 
      
         | 5422 |  |  |   *c*) ECHO_T=' ';;     # ECHO_T is single tab character.
 | 
      
         | 5423 |  |  |   xy)  ECHO_C='\c';;
 | 
      
         | 5424 |  |  |   *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
 | 
      
         | 5425 |  |  |        ECHO_T=' ';;
 | 
      
         | 5426 |  |  |   esac;;
 | 
      
         | 5427 |  |  | *)
 | 
      
         | 5428 |  |  |   ECHO_N='-n';;
 | 
      
         | 5429 |  |  | esac
 | 
      
         | 5430 |  |  |  
 | 
      
         | 5431 |  |  | rm -f conf$$ conf$$.exe conf$$.file
 | 
      
         | 5432 |  |  | if test -d conf$$.dir; then
 | 
      
         | 5433 |  |  |   rm -f conf$$.dir/conf$$.file
 | 
      
         | 5434 |  |  | else
 | 
      
         | 5435 |  |  |   rm -f conf$$.dir
 | 
      
         | 5436 |  |  |   mkdir conf$$.dir 2>/dev/null
 | 
      
         | 5437 |  |  | fi
 | 
      
         | 5438 |  |  | if (echo >conf$$.file) 2>/dev/null; then
 | 
      
         | 5439 |  |  |   if ln -s conf$$.file conf$$ 2>/dev/null; then
 | 
      
         | 5440 |  |  |     as_ln_s='ln -s'
 | 
      
         | 5441 |  |  |     # ... but there are two gotchas:
 | 
      
         | 5442 |  |  |     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 | 
      
         | 5443 |  |  |     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 | 
      
         | 5444 |  |  |     # In both cases, we have to default to `cp -p'.
 | 
      
         | 5445 |  |  |     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
 | 
      
         | 5446 |  |  |       as_ln_s='cp -p'
 | 
      
         | 5447 |  |  |   elif ln conf$$.file conf$$ 2>/dev/null; then
 | 
      
         | 5448 |  |  |     as_ln_s=ln
 | 
      
         | 5449 |  |  |   else
 | 
      
         | 5450 |  |  |     as_ln_s='cp -p'
 | 
      
         | 5451 |  |  |   fi
 | 
      
         | 5452 |  |  | else
 | 
      
         | 5453 |  |  |   as_ln_s='cp -p'
 | 
      
         | 5454 |  |  | fi
 | 
      
         | 5455 |  |  | rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
 | 
      
         | 5456 |  |  | rmdir conf$$.dir 2>/dev/null
 | 
      
         | 5457 |  |  |  
 | 
      
         | 5458 |  |  |  
 | 
      
         | 5459 |  |  | # as_fn_mkdir_p
 | 
      
         | 5460 |  |  | # -------------
 | 
      
         | 5461 |  |  | # Create "$as_dir" as a directory, including parents if necessary.
 | 
      
         | 5462 |  |  | as_fn_mkdir_p ()
 | 
      
         | 5463 |  |  | {
 | 
      
         | 5464 |  |  |  
 | 
      
         | 5465 |  |  |   case $as_dir in #(
 | 
      
         | 5466 |  |  |   -*) as_dir=./$as_dir;;
 | 
      
         | 5467 |  |  |   esac
 | 
      
         | 5468 |  |  |   test -d "$as_dir" || eval $as_mkdir_p || {
 | 
      
         | 5469 |  |  |     as_dirs=
 | 
      
         | 5470 |  |  |     while :; do
 | 
      
         | 5471 |  |  |       case $as_dir in #(
 | 
      
         | 5472 |  |  |       *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
 | 
      
         | 5473 |  |  |       *) as_qdir=$as_dir;;
 | 
      
         | 5474 |  |  |       esac
 | 
      
         | 5475 |  |  |       as_dirs="'$as_qdir' $as_dirs"
 | 
      
         | 5476 |  |  |       as_dir=`$as_dirname -- "$as_dir" ||
 | 
      
         | 5477 |  |  | $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 | 
      
         | 5478 |  |  |          X"$as_dir" : 'X\(//\)[^/]' \| \
 | 
      
         | 5479 |  |  |          X"$as_dir" : 'X\(//\)$' \| \
 | 
      
         | 5480 |  |  |          X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
 | 
      
         | 5481 |  |  | $as_echo X"$as_dir" |
 | 
      
         | 5482 |  |  |     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 | 
      
         | 5483 |  |  |             s//\1/
 | 
      
         | 5484 |  |  |             q
 | 
      
         | 5485 |  |  |           }
 | 
      
         | 5486 |  |  |           /^X\(\/\/\)[^/].*/{
 | 
      
         | 5487 |  |  |             s//\1/
 | 
      
         | 5488 |  |  |             q
 | 
      
         | 5489 |  |  |           }
 | 
      
         | 5490 |  |  |           /^X\(\/\/\)$/{
 | 
      
         | 5491 |  |  |             s//\1/
 | 
      
         | 5492 |  |  |             q
 | 
      
         | 5493 |  |  |           }
 | 
      
         | 5494 |  |  |           /^X\(\/\).*/{
 | 
      
         | 5495 |  |  |             s//\1/
 | 
      
         | 5496 |  |  |             q
 | 
      
         | 5497 |  |  |           }
 | 
      
         | 5498 |  |  |           s/.*/./; q'`
 | 
      
         | 5499 |  |  |       test -d "$as_dir" && break
 | 
      
         | 5500 |  |  |     done
 | 
      
         | 5501 |  |  |     test -z "$as_dirs" || eval "mkdir $as_dirs"
 | 
      
         | 5502 |  |  |   } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
 | 
      
         | 5503 |  |  |  
 | 
      
         | 5504 |  |  |  
 | 
      
         | 5505 |  |  | } # as_fn_mkdir_p
 | 
      
         | 5506 |  |  | if mkdir -p . 2>/dev/null; then
 | 
      
         | 5507 |  |  |   as_mkdir_p='mkdir -p "$as_dir"'
 | 
      
         | 5508 |  |  | else
 | 
      
         | 5509 |  |  |   test -d ./-p && rmdir ./-p
 | 
      
         | 5510 |  |  |   as_mkdir_p=false
 | 
      
         | 5511 |  |  | fi
 | 
      
         | 5512 |  |  |  
 | 
      
         | 5513 |  |  | if test -x / >/dev/null 2>&1; then
 | 
      
         | 5514 |  |  |   as_test_x='test -x'
 | 
      
         | 5515 |  |  | else
 | 
      
         | 5516 |  |  |   if ls -dL / >/dev/null 2>&1; then
 | 
      
         | 5517 |  |  |     as_ls_L_option=L
 | 
      
         | 5518 |  |  |   else
 | 
      
         | 5519 |  |  |     as_ls_L_option=
 | 
      
         | 5520 |  |  |   fi
 | 
      
         | 5521 |  |  |   as_test_x='
 | 
      
         | 5522 |  |  |     eval sh -c '\''
 | 
      
         | 5523 |  |  |       if test -d "$1"; then
 | 
      
         | 5524 |  |  |         test -d "$1/.";
 | 
      
         | 5525 |  |  |       else
 | 
      
         | 5526 |  |  |         case $1 in #(
 | 
      
         | 5527 |  |  |         -*)set "./$1";;
 | 
      
         | 5528 |  |  |         esac;
 | 
      
         | 5529 |  |  |         case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
 | 
      
         | 5530 |  |  |         ???[sx]*):;;*)false;;esac;fi
 | 
      
         | 5531 |  |  |     '\'' sh
 | 
      
         | 5532 |  |  |   '
 | 
      
         | 5533 |  |  | fi
 | 
      
         | 5534 |  |  | as_executable_p=$as_test_x
 | 
      
         | 5535 |  |  |  
 | 
      
         | 5536 |  |  | # Sed expression to map a string onto a valid CPP name.
 | 
      
         | 5537 |  |  | as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 | 
      
         | 5538 |  |  |  
 | 
      
         | 5539 |  |  | # Sed expression to map a string onto a valid variable name.
 | 
      
         | 5540 |  |  | as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
 | 
      
         | 5541 |  |  |  
 | 
      
         | 5542 |  |  |  
 | 
      
         | 5543 |  |  | exec 6>&1
 | 
      
         | 5544 |  |  | ## ----------------------------------- ##
 | 
      
         | 5545 |  |  | ## Main body of $CONFIG_STATUS script. ##
 | 
      
         | 5546 |  |  | ## ----------------------------------- ##
 | 
      
         | 5547 |  |  | _ASEOF
 | 
      
         | 5548 |  |  | test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
 | 
      
         | 5549 |  |  |  
 | 
      
         | 5550 |  |  | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 | 
      
         | 5551 |  |  | # Save the log message, to keep $0 and so on meaningful, and to
 | 
      
         | 5552 |  |  | # report actual input values of CONFIG_FILES etc. instead of their
 | 
      
         | 5553 |  |  | # values after options handling.
 | 
      
         | 5554 |  |  | ac_log="
 | 
      
         | 5555 |  |  | This file was extended by $as_me, which was
 | 
      
         | 5556 |  |  | generated by GNU Autoconf 2.64.  Invocation command line was
 | 
      
         | 5557 |  |  |  
 | 
      
         | 5558 |  |  |   CONFIG_FILES    = $CONFIG_FILES
 | 
      
         | 5559 |  |  |   CONFIG_HEADERS  = $CONFIG_HEADERS
 | 
      
         | 5560 |  |  |   CONFIG_LINKS    = $CONFIG_LINKS
 | 
      
         | 5561 |  |  |   CONFIG_COMMANDS = $CONFIG_COMMANDS
 | 
      
         | 5562 |  |  |   $ $0 $@
 | 
      
         | 5563 |  |  |  
 | 
      
         | 5564 |  |  | on `(hostname || uname -n) 2>/dev/null | sed 1q`
 | 
      
         | 5565 |  |  | "
 | 
      
         | 5566 |  |  |  
 | 
      
         | 5567 |  |  | _ACEOF
 | 
      
         | 5568 |  |  |  
 | 
      
         | 5569 |  |  | case $ac_config_files in *"
 | 
      
         | 5570 |  |  | "*) set x $ac_config_files; shift; ac_config_files=$*;;
 | 
      
         | 5571 |  |  | esac
 | 
      
         | 5572 |  |  |  
 | 
      
         | 5573 |  |  | case $ac_config_headers in *"
 | 
      
         | 5574 |  |  | "*) set x $ac_config_headers; shift; ac_config_headers=$*;;
 | 
      
         | 5575 |  |  | esac
 | 
      
         | 5576 |  |  |  
 | 
      
         | 5577 |  |  |  
 | 
      
         | 5578 |  |  | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 | 
      
         | 5579 |  |  | # Files that config.status was made for.
 | 
      
         | 5580 |  |  | config_files="$ac_config_files"
 | 
      
         | 5581 |  |  | config_headers="$ac_config_headers"
 | 
      
         | 5582 |  |  | config_links="$ac_config_links"
 | 
      
         | 5583 |  |  | config_commands="$ac_config_commands"
 | 
      
         | 5584 |  |  |  
 | 
      
         | 5585 |  |  | _ACEOF
 | 
      
         | 5586 |  |  |  
 | 
      
         | 5587 |  |  | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 | 
      
         | 5588 |  |  | ac_cs_usage="\
 | 
      
         | 5589 |  |  | \`$as_me' instantiates files and other configuration actions
 | 
      
         | 5590 |  |  | from templates according to the current configuration.  Unless the files
 | 
      
         | 5591 |  |  | and actions are specified as TAGs, all are instantiated by default.
 | 
      
         | 5592 |  |  |  
 | 
      
         | 5593 |  |  | Usage: $0 [OPTION]... [TAG]...
 | 
      
         | 5594 |  |  |  
 | 
      
         | 5595 |  |  |   -h, --help       print this help, then exit
 | 
      
         | 5596 |  |  |   -V, --version    print version number and configuration settings, then exit
 | 
      
         | 5597 |  |  |   -q, --quiet, --silent
 | 
      
         | 5598 |  |  |                    do not print progress messages
 | 
      
         | 5599 |  |  |   -d, --debug      don't remove temporary files
 | 
      
         | 5600 |  |  |       --recheck    update $as_me by reconfiguring in the same conditions
 | 
      
         | 5601 |  |  |       --file=FILE[:TEMPLATE]
 | 
      
         | 5602 |  |  |                    instantiate the configuration file FILE
 | 
      
         | 5603 |  |  |       --header=FILE[:TEMPLATE]
 | 
      
         | 5604 |  |  |                    instantiate the configuration header FILE
 | 
      
         | 5605 |  |  |  
 | 
      
         | 5606 |  |  | Configuration files:
 | 
      
         | 5607 |  |  | $config_files
 | 
      
         | 5608 |  |  |  
 | 
      
         | 5609 |  |  | Configuration headers:
 | 
      
         | 5610 |  |  | $config_headers
 | 
      
         | 5611 |  |  |  
 | 
      
         | 5612 |  |  | Configuration links:
 | 
      
         | 5613 |  |  | $config_links
 | 
      
         | 5614 |  |  |  
 | 
      
         | 5615 |  |  | Configuration commands:
 | 
      
         | 5616 |  |  | $config_commands
 | 
      
         | 5617 |  |  |  
 | 
      
         | 5618 |  |  | Report bugs to the package provider."
 | 
      
         | 5619 |  |  |  
 | 
      
         | 5620 |  |  | _ACEOF
 | 
      
         | 5621 |  |  | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 | 
      
         | 5622 |  |  | ac_cs_version="\\
 | 
      
         | 5623 |  |  | config.status
 | 
      
         | 5624 |  |  | configured by $0, generated by GNU Autoconf 2.64,
 | 
      
         | 5625 |  |  |   with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
 | 
      
         | 5626 |  |  |  
 | 
      
         | 5627 |  |  | Copyright (C) 2009 Free Software Foundation, Inc.
 | 
      
         | 5628 |  |  | This config.status script is free software; the Free Software Foundation
 | 
      
         | 5629 |  |  | gives unlimited permission to copy, distribute and modify it."
 | 
      
         | 5630 |  |  |  
 | 
      
         | 5631 |  |  | ac_pwd='$ac_pwd'
 | 
      
         | 5632 |  |  | srcdir='$srcdir'
 | 
      
         | 5633 |  |  | INSTALL='$INSTALL'
 | 
      
         | 5634 |  |  | test -n "\$AWK" || AWK=awk
 | 
      
         | 5635 |  |  | _ACEOF
 | 
      
         | 5636 |  |  |  
 | 
      
         | 5637 |  |  | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 | 
      
         | 5638 |  |  | # The default lists apply if the user does not specify any file.
 | 
      
         | 5639 |  |  | ac_need_defaults=:
 | 
      
         | 5640 |  |  | while test $# != 0
 | 
      
         | 5641 |  |  | do
 | 
      
         | 5642 |  |  |   case $1 in
 | 
      
         | 5643 |  |  |   --*=*)
 | 
      
         | 5644 |  |  |     ac_option=`expr "X$1" : 'X\([^=]*\)='`
 | 
      
         | 5645 |  |  |     ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
 | 
      
         | 5646 |  |  |     ac_shift=:
 | 
      
         | 5647 |  |  |     ;;
 | 
      
         | 5648 |  |  |   *)
 | 
      
         | 5649 |  |  |     ac_option=$1
 | 
      
         | 5650 |  |  |     ac_optarg=$2
 | 
      
         | 5651 |  |  |     ac_shift=shift
 | 
      
         | 5652 |  |  |     ;;
 | 
      
         | 5653 |  |  |   esac
 | 
      
         | 5654 |  |  |  
 | 
      
         | 5655 |  |  |   case $ac_option in
 | 
      
         | 5656 |  |  |   # Handling of the options.
 | 
      
         | 5657 |  |  |   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
 | 
      
         | 5658 |  |  |     ac_cs_recheck=: ;;
 | 
      
         | 5659 |  |  |   --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
 | 
      
         | 5660 |  |  |     $as_echo "$ac_cs_version"; exit ;;
 | 
      
         | 5661 |  |  |   --debug | --debu | --deb | --de | --d | -d )
 | 
      
         | 5662 |  |  |     debug=: ;;
 | 
      
         | 5663 |  |  |   --file | --fil | --fi | --f )
 | 
      
         | 5664 |  |  |     $ac_shift
 | 
      
         | 5665 |  |  |     case $ac_optarg in
 | 
      
         | 5666 |  |  |     *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
 | 
      
         | 5667 |  |  |     esac
 | 
      
         | 5668 |  |  |     as_fn_append CONFIG_FILES " '$ac_optarg'"
 | 
      
         | 5669 |  |  |     ac_need_defaults=false;;
 | 
      
         | 5670 |  |  |   --header | --heade | --head | --hea )
 | 
      
         | 5671 |  |  |     $ac_shift
 | 
      
         | 5672 |  |  |     case $ac_optarg in
 | 
      
         | 5673 |  |  |     *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
 | 
      
         | 5674 |  |  |     esac
 | 
      
         | 5675 |  |  |     as_fn_append CONFIG_HEADERS " '$ac_optarg'"
 | 
      
         | 5676 |  |  |     ac_need_defaults=false;;
 | 
      
         | 5677 |  |  |   --he | --h)
 | 
      
         | 5678 |  |  |     # Conflict between --help and --header
 | 
      
         | 5679 |  |  |     as_fn_error "ambiguous option: \`$1'
 | 
      
         | 5680 |  |  | Try \`$0 --help' for more information.";;
 | 
      
         | 5681 |  |  |   --help | --hel | -h )
 | 
      
         | 5682 |  |  |     $as_echo "$ac_cs_usage"; exit ;;
 | 
      
         | 5683 |  |  |   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 | 
      
         | 5684 |  |  |   | -silent | --silent | --silen | --sile | --sil | --si | --s)
 | 
      
         | 5685 |  |  |     ac_cs_silent=: ;;
 | 
      
         | 5686 |  |  |  
 | 
      
         | 5687 |  |  |   # This is an error.
 | 
      
         | 5688 |  |  |   -*) as_fn_error "unrecognized option: \`$1'
 | 
      
         | 5689 |  |  | Try \`$0 --help' for more information." ;;
 | 
      
         | 5690 |  |  |  
 | 
      
         | 5691 |  |  |   *) as_fn_append ac_config_targets " $1"
 | 
      
         | 5692 |  |  |      ac_need_defaults=false ;;
 | 
      
         | 5693 |  |  |  
 | 
      
         | 5694 |  |  |   esac
 | 
      
         | 5695 |  |  |   shift
 | 
      
         | 5696 |  |  | done
 | 
      
         | 5697 |  |  |  
 | 
      
         | 5698 |  |  | ac_configure_extra_args=
 | 
      
         | 5699 |  |  |  
 | 
      
         | 5700 |  |  | if $ac_cs_silent; then
 | 
      
         | 5701 |  |  |   exec 6>/dev/null
 | 
      
         | 5702 |  |  |   ac_configure_extra_args="$ac_configure_extra_args --silent"
 | 
      
         | 5703 |  |  | fi
 | 
      
         | 5704 |  |  |  
 | 
      
         | 5705 |  |  | _ACEOF
 | 
      
         | 5706 |  |  | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 | 
      
         | 5707 |  |  | if \$ac_cs_recheck; then
 | 
      
         | 5708 |  |  |   set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
 | 
      
         | 5709 |  |  |   shift
 | 
      
         | 5710 |  |  |   \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
 | 
      
         | 5711 |  |  |   CONFIG_SHELL='$SHELL'
 | 
      
         | 5712 |  |  |   export CONFIG_SHELL
 | 
      
         | 5713 |  |  |   exec "\$@"
 | 
      
         | 5714 |  |  | fi
 | 
      
         | 5715 |  |  |  
 | 
      
         | 5716 |  |  | _ACEOF
 | 
      
         | 5717 |  |  | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 | 
      
         | 5718 |  |  | exec 5>>config.log
 | 
      
         | 5719 |  |  | {
 | 
      
         | 5720 |  |  |   echo
 | 
      
         | 5721 |  |  |   sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
 | 
      
         | 5722 |  |  | ## Running $as_me. ##
 | 
      
         | 5723 |  |  | _ASBOX
 | 
      
         | 5724 |  |  |   $as_echo "$ac_log"
 | 
      
         | 5725 |  |  | } >&5
 | 
      
         | 5726 |  |  |  
 | 
      
         | 5727 |  |  | _ACEOF
 | 
      
         | 5728 |  |  | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 | 
      
         | 5729 |  |  | _ACEOF
 | 
      
         | 5730 |  |  |  
 | 
      
         | 5731 |  |  | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 | 
      
         | 5732 |  |  |  
 | 
      
         | 5733 |  |  | # Handling of arguments.
 | 
      
         | 5734 |  |  | for ac_config_target in $ac_config_targets
 | 
      
         | 5735 |  |  | do
 | 
      
         | 5736 |  |  |   case $ac_config_target in
 | 
      
         | 5737 |  |  |     "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.in" ;;
 | 
      
         | 5738 |  |  |     "$ac_config_links_1") CONFIG_LINKS="$CONFIG_LINKS $ac_config_links_1" ;;
 | 
      
         | 5739 |  |  |     "Makefile.sim") CONFIG_FILES="$CONFIG_FILES Makefile.sim:Makefile.in" ;;
 | 
      
         | 5740 |  |  |     "Make-common.sim") CONFIG_FILES="$CONFIG_FILES Make-common.sim:../common/Make-common.in" ;;
 | 
      
         | 5741 |  |  |     ".gdbinit") CONFIG_FILES="$CONFIG_FILES .gdbinit:../common/gdbinit.in" ;;
 | 
      
         | 5742 |  |  |     "Makefile") CONFIG_COMMANDS="$CONFIG_COMMANDS Makefile" ;;
 | 
      
         | 5743 |  |  |     "stamp-h") CONFIG_COMMANDS="$CONFIG_COMMANDS stamp-h" ;;
 | 
      
         | 5744 |  |  |  
 | 
      
         | 5745 |  |  |   *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
 | 
      
         | 5746 |  |  |   esac
 | 
      
         | 5747 |  |  | done
 | 
      
         | 5748 |  |  |  
 | 
      
         | 5749 |  |  |  
 | 
      
         | 5750 |  |  | # If the user did not use the arguments to specify the items to instantiate,
 | 
      
         | 5751 |  |  | # then the envvar interface is used.  Set only those that are not.
 | 
      
         | 5752 |  |  | # We use the long form for the default assignment because of an extremely
 | 
      
         | 5753 |  |  | # bizarre bug on SunOS 4.1.3.
 | 
      
         | 5754 |  |  | if $ac_need_defaults; then
 | 
      
         | 5755 |  |  |   test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
 | 
      
         | 5756 |  |  |   test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
 | 
      
         | 5757 |  |  |   test "${CONFIG_LINKS+set}" = set || CONFIG_LINKS=$config_links
 | 
      
         | 5758 |  |  |   test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
 | 
      
         | 5759 |  |  | fi
 | 
      
         | 5760 |  |  |  
 | 
      
         | 5761 |  |  | # Have a temporary directory for convenience.  Make it in the build tree
 | 
      
         | 5762 |  |  | # simply because there is no reason against having it here, and in addition,
 | 
      
         | 5763 |  |  | # creating and moving files from /tmp can sometimes cause problems.
 | 
      
         | 5764 |  |  | # Hook for its removal unless debugging.
 | 
      
         | 5765 |  |  | # Note that there is a small window in which the directory will not be cleaned:
 | 
      
         | 5766 |  |  | # after its creation but before its name has been assigned to `$tmp'.
 | 
      
         | 5767 |  |  | $debug ||
 | 
      
         | 5768 |  |  | {
 | 
      
         | 5769 |  |  |   tmp=
 | 
      
         | 5770 |  |  |   trap 'exit_status=$?
 | 
      
         | 5771 |  |  |   { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
 | 
      
         | 5772 |  |  | ' 0
 | 
      
         | 5773 |  |  |   trap 'as_fn_exit 1' 1 2 13 15
 | 
      
         | 5774 |  |  | }
 | 
      
         | 5775 |  |  | # Create a (secure) tmp directory for tmp files.
 | 
      
         | 5776 |  |  |  
 | 
      
         | 5777 |  |  | {
 | 
      
         | 5778 |  |  |   tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
 | 
      
         | 5779 |  |  |   test -n "$tmp" && test -d "$tmp"
 | 
      
         | 5780 |  |  | }  ||
 | 
      
         | 5781 |  |  | {
 | 
      
         | 5782 |  |  |   tmp=./conf$$-$RANDOM
 | 
      
         | 5783 |  |  |   (umask 077 && mkdir "$tmp")
 | 
      
         | 5784 |  |  | } || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
 | 
      
         | 5785 |  |  |  
 | 
      
         | 5786 |  |  | # Set up the scripts for CONFIG_FILES section.
 | 
      
         | 5787 |  |  | # No need to generate them if there are no CONFIG_FILES.
 | 
      
         | 5788 |  |  | # This happens for instance with `./config.status config.h'.
 | 
      
         | 5789 |  |  | if test -n "$CONFIG_FILES"; then
 | 
      
         | 5790 |  |  |  
 | 
      
         | 5791 |  |  |  
 | 
      
         | 5792 |  |  | ac_cr=`echo X | tr X '\015'`
 | 
      
         | 5793 |  |  | # On cygwin, bash can eat \r inside `` if the user requested igncr.
 | 
      
         | 5794 |  |  | # But we know of no other shell where ac_cr would be empty at this
 | 
      
         | 5795 |  |  | # point, so we can use a bashism as a fallback.
 | 
      
         | 5796 |  |  | if test "x$ac_cr" = x; then
 | 
      
         | 5797 |  |  |   eval ac_cr=\$\'\\r\'
 | 
      
         | 5798 |  |  | fi
 | 
      
         | 5799 |  |  | ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null`
 | 
      
         | 5800 |  |  | if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
 | 
      
         | 5801 |  |  |   ac_cs_awk_cr='\r'
 | 
      
         | 5802 |  |  | else
 | 
      
         | 5803 |  |  |   ac_cs_awk_cr=$ac_cr
 | 
      
         | 5804 |  |  | fi
 | 
      
         | 5805 |  |  |  
 | 
      
         | 5806 |  |  | echo 'BEGIN {' >"$tmp/subs1.awk" &&
 | 
      
         | 5807 |  |  | _ACEOF
 | 
      
         | 5808 |  |  |  
 | 
      
         | 5809 |  |  |  
 | 
      
         | 5810 |  |  | {
 | 
      
         | 5811 |  |  |   echo "cat >conf$$subs.awk <<_ACEOF" &&
 | 
      
         | 5812 |  |  |   echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
 | 
      
         | 5813 |  |  |   echo "_ACEOF"
 | 
      
         | 5814 |  |  | } >conf$$subs.sh ||
 | 
      
         | 5815 |  |  |   as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
 | 
      
         | 5816 |  |  | ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
 | 
      
         | 5817 |  |  | ac_delim='%!_!# '
 | 
      
         | 5818 |  |  | for ac_last_try in false false false false false :; do
 | 
      
         | 5819 |  |  |   . ./conf$$subs.sh ||
 | 
      
         | 5820 |  |  |     as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
 | 
      
         | 5821 |  |  |  
 | 
      
         | 5822 |  |  |   ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
 | 
      
         | 5823 |  |  |   if test $ac_delim_n = $ac_delim_num; then
 | 
      
         | 5824 |  |  |     break
 | 
      
         | 5825 |  |  |   elif $ac_last_try; then
 | 
      
         | 5826 |  |  |     as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
 | 
      
         | 5827 |  |  |   else
 | 
      
         | 5828 |  |  |     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
 | 
      
         | 5829 |  |  |   fi
 | 
      
         | 5830 |  |  | done
 | 
      
         | 5831 |  |  | rm -f conf$$subs.sh
 | 
      
         | 5832 |  |  |  
 | 
      
         | 5833 |  |  | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 | 
      
         | 5834 |  |  | cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&
 | 
      
         | 5835 |  |  | _ACEOF
 | 
      
         | 5836 |  |  | sed -n '
 | 
      
         | 5837 |  |  | h
 | 
      
         | 5838 |  |  | s/^/S["/; s/!.*/"]=/
 | 
      
         | 5839 |  |  | p
 | 
      
         | 5840 |  |  | g
 | 
      
         | 5841 |  |  | s/^[^!]*!//
 | 
      
         | 5842 |  |  | :repl
 | 
      
         | 5843 |  |  | t repl
 | 
      
         | 5844 |  |  | s/'"$ac_delim"'$//
 | 
      
         | 5845 |  |  | t delim
 | 
      
         | 5846 |  |  | :nl
 | 
      
         | 5847 |  |  | h
 | 
      
         | 5848 |  |  | s/\(.\{148\}\).*/\1/
 | 
      
         | 5849 |  |  | t more1
 | 
      
         | 5850 |  |  | s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
 | 
      
         | 5851 |  |  | p
 | 
      
         | 5852 |  |  | n
 | 
      
         | 5853 |  |  | b repl
 | 
      
         | 5854 |  |  | :more1
 | 
      
         | 5855 |  |  | s/["\\]/\\&/g; s/^/"/; s/$/"\\/
 | 
      
         | 5856 |  |  | p
 | 
      
         | 5857 |  |  | g
 | 
      
         | 5858 |  |  | s/.\{148\}//
 | 
      
         | 5859 |  |  | t nl
 | 
      
         | 5860 |  |  | :delim
 | 
      
         | 5861 |  |  | h
 | 
      
         | 5862 |  |  | s/\(.\{148\}\).*/\1/
 | 
      
         | 5863 |  |  | t more2
 | 
      
         | 5864 |  |  | s/["\\]/\\&/g; s/^/"/; s/$/"/
 | 
      
         | 5865 |  |  | p
 | 
      
         | 5866 |  |  | b
 | 
      
         | 5867 |  |  | :more2
 | 
      
         | 5868 |  |  | s/["\\]/\\&/g; s/^/"/; s/$/"\\/
 | 
      
         | 5869 |  |  | p
 | 
      
         | 5870 |  |  | g
 | 
      
         | 5871 |  |  | s/.\{148\}//
 | 
      
         | 5872 |  |  | t delim
 | 
      
         | 5873 |  |  | ' 
 | 
      
         | 5874 |  |  | /^[^""]/{
 | 
      
         | 5875 |  |  |   N
 | 
      
         | 5876 |  |  |   s/\n//
 | 
      
         | 5877 |  |  | }
 | 
      
         | 5878 |  |  | ' >>$CONFIG_STATUS || ac_write_fail=1
 | 
      
         | 5879 |  |  | rm -f conf$$subs.awk
 | 
      
         | 5880 |  |  | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 | 
      
         | 5881 |  |  | _ACAWK
 | 
      
         | 5882 |  |  | cat >>"\$tmp/subs1.awk" <<_ACAWK &&
 | 
      
         | 5883 |  |  |   for (key in S) S_is_set[key] = 1
 | 
      
         | 5884 |  |  |   FS = ""
 | 
      
         | 5885 |  |  |  
 | 
      
         | 5886 |  |  | }
 | 
      
         | 5887 |  |  | {
 | 
      
         | 5888 |  |  |   line = $ 0
 | 
      
         | 5889 |  |  |   nfields = split(line, field, "@")
 | 
      
         | 5890 |  |  |   substed = 0
 | 
      
         | 5891 |  |  |   len = length(field[1])
 | 
      
         | 5892 |  |  |   for (i = 2; i < nfields; i++) {
 | 
      
         | 5893 |  |  |     key = field[i]
 | 
      
         | 5894 |  |  |     keylen = length(key)
 | 
      
         | 5895 |  |  |     if (S_is_set[key]) {
 | 
      
         | 5896 |  |  |       value = S[key]
 | 
      
         | 5897 |  |  |       line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
 | 
      
         | 5898 |  |  |       len += length(value) + length(field[++i])
 | 
      
         | 5899 |  |  |       substed = 1
 | 
      
         | 5900 |  |  |     } else
 | 
      
         | 5901 |  |  |       len += 1 + keylen
 | 
      
         | 5902 |  |  |   }
 | 
      
         | 5903 |  |  |  
 | 
      
         | 5904 |  |  |   print line
 | 
      
         | 5905 |  |  | }
 | 
      
         | 5906 |  |  |  
 | 
      
         | 5907 |  |  | _ACAWK
 | 
      
         | 5908 |  |  | _ACEOF
 | 
      
         | 5909 |  |  | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 | 
      
         | 5910 |  |  | if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
 | 
      
         | 5911 |  |  |   sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
 | 
      
         | 5912 |  |  | else
 | 
      
         | 5913 |  |  |   cat
 | 
      
         | 5914 |  |  | fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
 | 
      
         | 5915 |  |  |   || as_fn_error "could not setup config files machinery" "$LINENO" 5
 | 
      
         | 5916 |  |  | _ACEOF
 | 
      
         | 5917 |  |  |  
 | 
      
         | 5918 |  |  | # VPATH may cause trouble with some makes, so we remove $(srcdir),
 | 
      
         | 5919 |  |  | # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
 | 
      
         | 5920 |  |  | # trailing colons and then remove the whole line if VPATH becomes empty
 | 
      
         | 5921 |  |  | # (actually we leave an empty line to preserve line numbers).
 | 
      
         | 5922 |  |  | if test "x$srcdir" = x.; then
 | 
      
         | 5923 |  |  |   ac_vpsub='/^[  ]*VPATH[        ]*=/{
 | 
      
         | 5924 |  |  | s/:*\$(srcdir):*/:/
 | 
      
         | 5925 |  |  | s/:*\${srcdir}:*/:/
 | 
      
         | 5926 |  |  | s/:*@srcdir@:*/:/
 | 
      
         | 5927 |  |  | s/^\([^=]*=[     ]*\):*/\1/
 | 
      
         | 5928 |  |  | s/:*$//
 | 
      
         | 5929 |  |  | s/^[^=]*=[       ]*$//
 | 
      
         | 5930 |  |  | }'
 | 
      
         | 5931 |  |  | fi
 | 
      
         | 5932 |  |  |  
 | 
      
         | 5933 |  |  | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 | 
      
         | 5934 |  |  | fi # test -n "$CONFIG_FILES"
 | 
      
         | 5935 |  |  |  
 | 
      
         | 5936 |  |  | # Set up the scripts for CONFIG_HEADERS section.
 | 
      
         | 5937 |  |  | # No need to generate them if there are no CONFIG_HEADERS.
 | 
      
         | 5938 |  |  | # This happens for instance with `./config.status Makefile'.
 | 
      
         | 5939 |  |  | if test -n "$CONFIG_HEADERS"; then
 | 
      
         | 5940 |  |  | cat >"$tmp/defines.awk" <<\_ACAWK ||
 | 
      
         | 5941 |  |  | BEGIN {
 | 
      
         | 5942 |  |  | _ACEOF
 | 
      
         | 5943 |  |  |  
 | 
      
         | 5944 |  |  | # Transform confdefs.h into an awk script `defines.awk', embedded as
 | 
      
         | 5945 |  |  | # here-document in config.status, that substitutes the proper values into
 | 
      
         | 5946 |  |  | # config.h.in to produce config.h.
 | 
      
         | 5947 |  |  |  
 | 
      
         | 5948 |  |  | # Create a delimiter string that does not exist in confdefs.h, to ease
 | 
      
         | 5949 |  |  | # handling of long lines.
 | 
      
         | 5950 |  |  | ac_delim='%!_!# '
 | 
      
         | 5951 |  |  | for ac_last_try in false false :; do
 | 
      
         | 5952 |  |  |   ac_t=`sed -n "/$ac_delim/p" confdefs.h`
 | 
      
         | 5953 |  |  |   if test -z "$ac_t"; then
 | 
      
         | 5954 |  |  |     break
 | 
      
         | 5955 |  |  |   elif $ac_last_try; then
 | 
      
         | 5956 |  |  |     as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5
 | 
      
         | 5957 |  |  |   else
 | 
      
         | 5958 |  |  |     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
 | 
      
         | 5959 |  |  |   fi
 | 
      
         | 5960 |  |  | done
 | 
      
         | 5961 |  |  |  
 | 
      
         | 5962 |  |  | # For the awk script, D is an array of macro values keyed by name,
 | 
      
         | 5963 |  |  | # likewise P contains macro parameters if any.  Preserve backslash
 | 
      
         | 5964 |  |  | # newline sequences.
 | 
      
         | 5965 |  |  |  
 | 
      
         | 5966 |  |  | ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
 | 
      
         | 5967 |  |  | sed -n '
 | 
      
         | 5968 |  |  | s/.\{148\}/&'"$ac_delim"'/g
 | 
      
         | 5969 |  |  | t rset
 | 
      
         | 5970 |  |  | :rset
 | 
      
         | 5971 |  |  | s/^[     ]*#[    ]*define[       ][      ]*/ /
 | 
      
         | 5972 |  |  | t def
 | 
      
         | 5973 |  |  | d
 | 
      
         | 5974 |  |  | :def
 | 
      
         | 5975 |  |  | s/\\$//
 | 
      
         | 5976 |  |  | t bsnl
 | 
      
         | 5977 |  |  | s/["\\]/\\&/g
 | 
      
         | 5978 |  |  | s/^ \('"$ac_word_re"'\)\(([^()]*)\)[     ]*\(.*\)/P["\1"]="\2"\
 | 
      
         | 5979 |  |  | D["\1"]=" \3"/p
 | 
      
         | 5980 |  |  | s/^ \('"$ac_word_re"'\)[         ]*\(.*\)/D["\1"]=" \2"/p
 | 
      
         | 5981 |  |  | d
 | 
      
         | 5982 |  |  | :bsnl
 | 
      
         | 5983 |  |  | s/["\\]/\\&/g
 | 
      
         | 5984 |  |  | s/^ \('"$ac_word_re"'\)\(([^()]*)\)[     ]*\(.*\)/P["\1"]="\2"\
 | 
      
         | 5985 |  |  | D["\1"]=" \3\\\\\\n"\\/p
 | 
      
         | 5986 |  |  | t cont
 | 
      
         | 5987 |  |  | s/^ \('"$ac_word_re"'\)[         ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p
 | 
      
         | 5988 |  |  | t cont
 | 
      
         | 5989 |  |  | d
 | 
      
         | 5990 |  |  | :cont
 | 
      
         | 5991 |  |  | n
 | 
      
         | 5992 |  |  | s/.\{148\}/&'"$ac_delim"'/g
 | 
      
         | 5993 |  |  | t clear
 | 
      
         | 5994 |  |  | :clear
 | 
      
         | 5995 |  |  | s/\\$//
 | 
      
         | 5996 |  |  | t bsnlc
 | 
      
         | 5997 |  |  | s/["\\]/\\&/g; s/^/"/; s/$/"/p
 | 
      
         | 5998 |  |  | d
 | 
      
         | 5999 |  |  | :bsnlc
 | 
      
         | 6000 |  |  | s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p
 | 
      
         | 6001 |  |  | b cont
 | 
      
         | 6002 |  |  | ' 
 | 
      
         | 6003 |  |  | s/'"$ac_delim"'/"\\\
 | 
      
         | 6004 |  |  | "/g' >>$CONFIG_STATUS || ac_write_fail=1
 | 
      
         | 6005 |  |  |  
 | 
      
         | 6006 |  |  | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 | 
      
         | 6007 |  |  |   for (key in D) D_is_set[key] = 1
 | 
      
         | 6008 |  |  |   FS = ""
 | 
      
         | 6009 |  |  | }
 | 
      
         | 6010 |  |  | /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ {
 | 
      
         | 6011 |  |  |   line = \$ 0
 | 
      
         | 6012 |  |  |   split(line, arg, " ")
 | 
      
         | 6013 |  |  |   if (arg[1] == "#") {
 | 
      
         | 6014 |  |  |     defundef = arg[2]
 | 
      
         | 6015 |  |  |     mac1 = arg[3]
 | 
      
         | 6016 |  |  |   } else {
 | 
      
         | 6017 |  |  |     defundef = substr(arg[1], 2)
 | 
      
         | 6018 |  |  |     mac1 = arg[2]
 | 
      
         | 6019 |  |  |   }
 | 
      
         | 6020 |  |  |   split(mac1, mac2, "(") #)
 | 
      
         | 6021 |  |  |   macro = mac2[1]
 | 
      
         | 6022 |  |  |   prefix = substr(line, 1, index(line, defundef) - 1)
 | 
      
         | 6023 |  |  |   if (D_is_set[macro]) {
 | 
      
         | 6024 |  |  |     # Preserve the white space surrounding the "#".
 | 
      
         | 6025 |  |  |     print prefix "define", macro P[macro] D[macro]
 | 
      
         | 6026 |  |  |     next
 | 
      
         | 6027 |  |  |   } else {
 | 
      
         | 6028 |  |  |     # Replace #undef with comments.  This is necessary, for example,
 | 
      
         | 6029 |  |  |     # in the case of _POSIX_SOURCE, which is predefined and required
 | 
      
         | 6030 |  |  |     # on some systems where configure will not decide to define it.
 | 
      
         | 6031 |  |  |     if (defundef == "undef") {
 | 
      
         | 6032 |  |  |       print "/*", prefix defundef, macro, "*/"
 | 
      
         | 6033 |  |  |       next
 | 
      
         | 6034 |  |  |     }
 | 
      
         | 6035 |  |  |   }
 | 
      
         | 6036 |  |  | }
 | 
      
         | 6037 |  |  | { print }
 | 
      
         | 6038 |  |  | _ACAWK
 | 
      
         | 6039 |  |  | _ACEOF
 | 
      
         | 6040 |  |  | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 | 
      
         | 6041 |  |  |   as_fn_error "could not setup config headers machinery" "$LINENO" 5
 | 
      
         | 6042 |  |  | fi # test -n "$CONFIG_HEADERS"
 | 
      
         | 6043 |  |  |  
 | 
      
         | 6044 |  |  |  
 | 
      
         | 6045 |  |  | eval set X "  :F $CONFIG_FILES  :H $CONFIG_HEADERS  :L $CONFIG_LINKS  :C $CONFIG_COMMANDS"
 | 
      
         | 6046 |  |  | shift
 | 
      
         | 6047 |  |  | for ac_tag
 | 
      
         | 6048 |  |  | do
 | 
      
         | 6049 |  |  |   case $ac_tag in
 | 
      
         | 6050 |  |  |   :[FHLC]) ac_mode=$ac_tag; continue;;
 | 
      
         | 6051 |  |  |   esac
 | 
      
         | 6052 |  |  |   case $ac_mode$ac_tag in
 | 
      
         | 6053 |  |  |   :[FHL]*:*);;
 | 
      
         | 6054 |  |  |   :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
 | 
      
         | 6055 |  |  |   :[FH]-) ac_tag=-:-;;
 | 
      
         | 6056 |  |  |   :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
 | 
      
         | 6057 |  |  |   esac
 | 
      
         | 6058 |  |  |   ac_save_IFS=$IFS
 | 
      
         | 6059 |  |  |   IFS=:
 | 
      
         | 6060 |  |  |   set x $ac_tag
 | 
      
         | 6061 |  |  |   IFS=$ac_save_IFS
 | 
      
         | 6062 |  |  |   shift
 | 
      
         | 6063 |  |  |   ac_file=$1
 | 
      
         | 6064 |  |  |   shift
 | 
      
         | 6065 |  |  |  
 | 
      
         | 6066 |  |  |   case $ac_mode in
 | 
      
         | 6067 |  |  |   :L) ac_source=$1;;
 | 
      
         | 6068 |  |  |   :[FH])
 | 
      
         | 6069 |  |  |     ac_file_inputs=
 | 
      
         | 6070 |  |  |     for ac_f
 | 
      
         | 6071 |  |  |     do
 | 
      
         | 6072 |  |  |       case $ac_f in
 | 
      
         | 6073 |  |  |       -) ac_f="$tmp/stdin";;
 | 
      
         | 6074 |  |  |       *) # Look for the file first in the build tree, then in the source tree
 | 
      
         | 6075 |  |  |          # (if the path is not absolute).  The absolute path cannot be DOS-style,
 | 
      
         | 6076 |  |  |          # because $ac_f cannot contain `:'.
 | 
      
         | 6077 |  |  |          test -f "$ac_f" ||
 | 
      
         | 6078 |  |  |            case $ac_f in
 | 
      
         | 6079 |  |  |            [\\/$]*) false;;
 | 
      
         | 6080 |  |  |            *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
 | 
      
         | 6081 |  |  |            esac ||
 | 
      
         | 6082 |  |  |            as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
 | 
      
         | 6083 |  |  |       esac
 | 
      
         | 6084 |  |  |       case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
 | 
      
         | 6085 |  |  |       as_fn_append ac_file_inputs " '$ac_f'"
 | 
      
         | 6086 |  |  |     done
 | 
      
         | 6087 |  |  |  
 | 
      
         | 6088 |  |  |     # Let's still pretend it is `configure' which instantiates (i.e., don't
 | 
      
         | 6089 |  |  |     # use $as_me), people would be surprised to read:
 | 
      
         | 6090 |  |  |     #    /* config.h.  Generated by config.status.  */
 | 
      
         | 6091 |  |  |     configure_input='Generated from '`
 | 
      
         | 6092 |  |  |           $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
 | 
      
         | 6093 |  |  |         `' by configure.'
 | 
      
         | 6094 |  |  |     if test x"$ac_file" != x-; then
 | 
      
         | 6095 |  |  |       configure_input="$ac_file.  $configure_input"
 | 
      
         | 6096 |  |  |       { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
 | 
      
         | 6097 |  |  | $as_echo "$as_me: creating $ac_file" >&6;}
 | 
      
         | 6098 |  |  |     fi
 | 
      
         | 6099 |  |  |     # Neutralize special characters interpreted by sed in replacement strings.
 | 
      
         | 6100 |  |  |     case $configure_input in #(
 | 
      
         | 6101 |  |  |     *\&* | *\|* | *\\* )
 | 
      
         | 6102 |  |  |        ac_sed_conf_input=`$as_echo "$configure_input" |
 | 
      
         | 6103 |  |  |        sed 's/[\\\\&|]/\\\\&/g'`;; #(
 | 
      
         | 6104 |  |  |     *) ac_sed_conf_input=$configure_input;;
 | 
      
         | 6105 |  |  |     esac
 | 
      
         | 6106 |  |  |  
 | 
      
         | 6107 |  |  |     case $ac_tag in
 | 
      
         | 6108 |  |  |     *:-:* | *:-) cat >"$tmp/stdin" \
 | 
      
         | 6109 |  |  |       || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
 | 
      
         | 6110 |  |  |     esac
 | 
      
         | 6111 |  |  |     ;;
 | 
      
         | 6112 |  |  |   esac
 | 
      
         | 6113 |  |  |  
 | 
      
         | 6114 |  |  |   ac_dir=`$as_dirname -- "$ac_file" ||
 | 
      
         | 6115 |  |  | $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 | 
      
         | 6116 |  |  |          X"$ac_file" : 'X\(//\)[^/]' \| \
 | 
      
         | 6117 |  |  |          X"$ac_file" : 'X\(//\)$' \| \
 | 
      
         | 6118 |  |  |          X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
 | 
      
         | 6119 |  |  | $as_echo X"$ac_file" |
 | 
      
         | 6120 |  |  |     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 | 
      
         | 6121 |  |  |             s//\1/
 | 
      
         | 6122 |  |  |             q
 | 
      
         | 6123 |  |  |           }
 | 
      
         | 6124 |  |  |           /^X\(\/\/\)[^/].*/{
 | 
      
         | 6125 |  |  |             s//\1/
 | 
      
         | 6126 |  |  |             q
 | 
      
         | 6127 |  |  |           }
 | 
      
         | 6128 |  |  |           /^X\(\/\/\)$/{
 | 
      
         | 6129 |  |  |             s//\1/
 | 
      
         | 6130 |  |  |             q
 | 
      
         | 6131 |  |  |           }
 | 
      
         | 6132 |  |  |           /^X\(\/\).*/{
 | 
      
         | 6133 |  |  |             s//\1/
 | 
      
         | 6134 |  |  |             q
 | 
      
         | 6135 |  |  |           }
 | 
      
         | 6136 |  |  |           s/.*/./; q'`
 | 
      
         | 6137 |  |  |   as_dir="$ac_dir"; as_fn_mkdir_p
 | 
      
         | 6138 |  |  |   ac_builddir=.
 | 
      
         | 6139 |  |  |  
 | 
      
         | 6140 |  |  | case "$ac_dir" in
 | 
      
         | 6141 |  |  | .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
 | 
      
         | 6142 |  |  | *)
 | 
      
         | 6143 |  |  |   ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
 | 
      
         | 6144 |  |  |   # A ".." for each directory in $ac_dir_suffix.
 | 
      
         | 6145 |  |  |   ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
 | 
      
         | 6146 |  |  |   case $ac_top_builddir_sub in
 | 
      
         | 6147 |  |  |   "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
 | 
      
         | 6148 |  |  |   *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
 | 
      
         | 6149 |  |  |   esac ;;
 | 
      
         | 6150 |  |  | esac
 | 
      
         | 6151 |  |  | ac_abs_top_builddir=$ac_pwd
 | 
      
         | 6152 |  |  | ac_abs_builddir=$ac_pwd$ac_dir_suffix
 | 
      
         | 6153 |  |  | # for backward compatibility:
 | 
      
         | 6154 |  |  | ac_top_builddir=$ac_top_build_prefix
 | 
      
         | 6155 |  |  |  
 | 
      
         | 6156 |  |  | case $srcdir in
 | 
      
         | 6157 |  |  |   .)  # We are building in place.
 | 
      
         | 6158 |  |  |     ac_srcdir=.
 | 
      
         | 6159 |  |  |     ac_top_srcdir=$ac_top_builddir_sub
 | 
      
         | 6160 |  |  |     ac_abs_top_srcdir=$ac_pwd ;;
 | 
      
         | 6161 |  |  |   [\\/]* | ?:[\\/]* )  # Absolute name.
 | 
      
         | 6162 |  |  |     ac_srcdir=$srcdir$ac_dir_suffix;
 | 
      
         | 6163 |  |  |     ac_top_srcdir=$srcdir
 | 
      
         | 6164 |  |  |     ac_abs_top_srcdir=$srcdir ;;
 | 
      
         | 6165 |  |  |   *) # Relative name.
 | 
      
         | 6166 |  |  |     ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
 | 
      
         | 6167 |  |  |     ac_top_srcdir=$ac_top_build_prefix$srcdir
 | 
      
         | 6168 |  |  |     ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
 | 
      
         | 6169 |  |  | esac
 | 
      
         | 6170 |  |  | ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
 | 
      
         | 6171 |  |  |  
 | 
      
         | 6172 |  |  |  
 | 
      
         | 6173 |  |  |   case $ac_mode in
 | 
      
         | 6174 |  |  |   :F)
 | 
      
         | 6175 |  |  |   #
 | 
      
         | 6176 |  |  |   # CONFIG_FILE
 | 
      
         | 6177 |  |  |   #
 | 
      
         | 6178 |  |  |  
 | 
      
         | 6179 |  |  |   case $INSTALL in
 | 
      
         | 6180 |  |  |   [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
 | 
      
         | 6181 |  |  |   *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
 | 
      
         | 6182 |  |  |   esac
 | 
      
         | 6183 |  |  | _ACEOF
 | 
      
         | 6184 |  |  |  
 | 
      
         | 6185 |  |  | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 | 
      
         | 6186 |  |  | # If the template does not know about datarootdir, expand it.
 | 
      
         | 6187 |  |  | # FIXME: This hack should be removed a few years after 2.60.
 | 
      
         | 6188 |  |  | ac_datarootdir_hack=; ac_datarootdir_seen=
 | 
      
         | 6189 |  |  | ac_sed_dataroot='
 | 
      
         | 6190 |  |  | /datarootdir/ {
 | 
      
         | 6191 |  |  |   p
 | 
      
         | 6192 |  |  |   q
 | 
      
         | 6193 |  |  | }
 | 
      
         | 6194 |  |  | /@datadir@/p
 | 
      
         | 6195 |  |  | /@docdir@/p
 | 
      
         | 6196 |  |  | /@infodir@/p
 | 
      
         | 6197 |  |  | /@localedir@/p
 | 
      
         | 6198 |  |  | /@mandir@/p'
 | 
      
         | 6199 |  |  | case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
 | 
      
         | 6200 |  |  | *datarootdir*) ac_datarootdir_seen=yes;;
 | 
      
         | 6201 |  |  | *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
 | 
      
         | 6202 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
 | 
      
         | 6203 |  |  | $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
 | 
      
         | 6204 |  |  | _ACEOF
 | 
      
         | 6205 |  |  | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 | 
      
         | 6206 |  |  |   ac_datarootdir_hack='
 | 
      
         | 6207 |  |  |   s&@datadir@&$datadir&g
 | 
      
         | 6208 |  |  |   s&@docdir@&$docdir&g
 | 
      
         | 6209 |  |  |   s&@infodir@&$infodir&g
 | 
      
         | 6210 |  |  |   s&@localedir@&$localedir&g
 | 
      
         | 6211 |  |  |   s&@mandir@&$mandir&g
 | 
      
         | 6212 |  |  |   s&\\\${datarootdir}&$datarootdir&g' ;;
 | 
      
         | 6213 |  |  | esac
 | 
      
         | 6214 |  |  | _ACEOF
 | 
      
         | 6215 |  |  |  
 | 
      
         | 6216 |  |  | # Neutralize VPATH when `$srcdir' = `.'.
 | 
      
         | 6217 |  |  | # Shell code in configure.ac might set extrasub.
 | 
      
         | 6218 |  |  | # FIXME: do we really want to maintain this feature?
 | 
      
         | 6219 |  |  | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 | 
      
         | 6220 |  |  | ac_sed_extra="$ac_vpsub
 | 
      
         | 6221 |  |  | $extrasub
 | 
      
         | 6222 |  |  | _ACEOF
 | 
      
         | 6223 |  |  | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 | 
      
         | 6224 |  |  | :t
 | 
      
         | 6225 |  |  | /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
 | 
      
         | 6226 |  |  | s|@configure_input@|$ac_sed_conf_input|;t t
 | 
      
         | 6227 |  |  | s&@top_builddir@&$ac_top_builddir_sub&;t t
 | 
      
         | 6228 |  |  | s&@top_build_prefix@&$ac_top_build_prefix&;t t
 | 
      
         | 6229 |  |  | s&@srcdir@&$ac_srcdir&;t t
 | 
      
         | 6230 |  |  | s&@abs_srcdir@&$ac_abs_srcdir&;t t
 | 
      
         | 6231 |  |  | s&@top_srcdir@&$ac_top_srcdir&;t t
 | 
      
         | 6232 |  |  | s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
 | 
      
         | 6233 |  |  | s&@builddir@&$ac_builddir&;t t
 | 
      
         | 6234 |  |  | s&@abs_builddir@&$ac_abs_builddir&;t t
 | 
      
         | 6235 |  |  | s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
 | 
      
         | 6236 |  |  | s&@INSTALL@&$ac_INSTALL&;t t
 | 
      
         | 6237 |  |  | $ac_datarootdir_hack
 | 
      
         | 6238 |  |  | "
 | 
      
         | 6239 |  |  | eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
 | 
      
         | 6240 |  |  |   || as_fn_error "could not create $ac_file" "$LINENO" 5
 | 
      
         | 6241 |  |  |  
 | 
      
         | 6242 |  |  | test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
 | 
      
         | 6243 |  |  |   { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
 | 
      
         | 6244 |  |  |   { ac_out=`sed -n '/^[  ]*datarootdir[  ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
 | 
      
         | 6245 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 | 
      
         | 6246 |  |  | which seems to be undefined.  Please make sure it is defined." >&5
 | 
      
         | 6247 |  |  | $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 | 
      
         | 6248 |  |  | which seems to be undefined.  Please make sure it is defined." >&2;}
 | 
      
         | 6249 |  |  |  
 | 
      
         | 6250 |  |  |   rm -f "$tmp/stdin"
 | 
      
         | 6251 |  |  |   case $ac_file in
 | 
      
         | 6252 |  |  |   -) cat "$tmp/out" && rm -f "$tmp/out";;
 | 
      
         | 6253 |  |  |   *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
 | 
      
         | 6254 |  |  |   esac \
 | 
      
         | 6255 |  |  |   || as_fn_error "could not create $ac_file" "$LINENO" 5
 | 
      
         | 6256 |  |  |  ;;
 | 
      
         | 6257 |  |  |   :H)
 | 
      
         | 6258 |  |  |   #
 | 
      
         | 6259 |  |  |   # CONFIG_HEADER
 | 
      
         | 6260 |  |  |   #
 | 
      
         | 6261 |  |  |   if test x"$ac_file" != x-; then
 | 
      
         | 6262 |  |  |     {
 | 
      
         | 6263 |  |  |       $as_echo "/* $configure_input  */" \
 | 
      
         | 6264 |  |  |       && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
 | 
      
         | 6265 |  |  |     } >"$tmp/config.h" \
 | 
      
         | 6266 |  |  |       || as_fn_error "could not create $ac_file" "$LINENO" 5
 | 
      
         | 6267 |  |  |     if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
 | 
      
         | 6268 |  |  |       { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
 | 
      
         | 6269 |  |  | $as_echo "$as_me: $ac_file is unchanged" >&6;}
 | 
      
         | 6270 |  |  |     else
 | 
      
         | 6271 |  |  |       rm -f "$ac_file"
 | 
      
         | 6272 |  |  |       mv "$tmp/config.h" "$ac_file" \
 | 
      
         | 6273 |  |  |         || as_fn_error "could not create $ac_file" "$LINENO" 5
 | 
      
         | 6274 |  |  |     fi
 | 
      
         | 6275 |  |  |   else
 | 
      
         | 6276 |  |  |     $as_echo "/* $configure_input  */" \
 | 
      
         | 6277 |  |  |       && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
 | 
      
         | 6278 |  |  |       || as_fn_error "could not create -" "$LINENO" 5
 | 
      
         | 6279 |  |  |   fi
 | 
      
         | 6280 |  |  |  ;;
 | 
      
         | 6281 |  |  |   :L)
 | 
      
         | 6282 |  |  |   #
 | 
      
         | 6283 |  |  |   # CONFIG_LINK
 | 
      
         | 6284 |  |  |   #
 | 
      
         | 6285 |  |  |  
 | 
      
         | 6286 |  |  |   if test "$ac_source" = "$ac_file" && test "$srcdir" = '.'; then
 | 
      
         | 6287 |  |  |     :
 | 
      
         | 6288 |  |  |   else
 | 
      
         | 6289 |  |  |     # Prefer the file from the source tree if names are identical.
 | 
      
         | 6290 |  |  |     if test "$ac_source" = "$ac_file" || test ! -r "$ac_source"; then
 | 
      
         | 6291 |  |  |       ac_source=$srcdir/$ac_source
 | 
      
         | 6292 |  |  |     fi
 | 
      
         | 6293 |  |  |  
 | 
      
         | 6294 |  |  |     { $as_echo "$as_me:${as_lineno-$LINENO}: linking $ac_source to $ac_file" >&5
 | 
      
         | 6295 |  |  | $as_echo "$as_me: linking $ac_source to $ac_file" >&6;}
 | 
      
         | 6296 |  |  |  
 | 
      
         | 6297 |  |  |     if test ! -r "$ac_source"; then
 | 
      
         | 6298 |  |  |       as_fn_error "$ac_source: file not found" "$LINENO" 5
 | 
      
         | 6299 |  |  |     fi
 | 
      
         | 6300 |  |  |     rm -f "$ac_file"
 | 
      
         | 6301 |  |  |  
 | 
      
         | 6302 |  |  |     # Try a relative symlink, then a hard link, then a copy.
 | 
      
         | 6303 |  |  |     case $srcdir in
 | 
      
         | 6304 |  |  |     [\\/$]* | ?:[\\/]* ) ac_rel_source=$ac_source ;;
 | 
      
         | 6305 |  |  |         *) ac_rel_source=$ac_top_build_prefix$ac_source ;;
 | 
      
         | 6306 |  |  |     esac
 | 
      
         | 6307 |  |  |     ln -s "$ac_rel_source" "$ac_file" 2>/dev/null ||
 | 
      
         | 6308 |  |  |       ln "$ac_source" "$ac_file" 2>/dev/null ||
 | 
      
         | 6309 |  |  |       cp -p "$ac_source" "$ac_file" ||
 | 
      
         | 6310 |  |  |       as_fn_error "cannot link or copy $ac_source to $ac_file" "$LINENO" 5
 | 
      
         | 6311 |  |  |   fi
 | 
      
         | 6312 |  |  |  ;;
 | 
      
         | 6313 |  |  |   :C)  { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
 | 
      
         | 6314 |  |  | $as_echo "$as_me: executing $ac_file commands" >&6;}
 | 
      
         | 6315 |  |  |  ;;
 | 
      
         | 6316 |  |  |   esac
 | 
      
         | 6317 |  |  |  
 | 
      
         | 6318 |  |  |  
 | 
      
         | 6319 |  |  |   case $ac_file$ac_mode in
 | 
      
         | 6320 |  |  |     "Makefile":C) echo "Merging Makefile.sim+Make-common.sim into Makefile ..."
 | 
      
         | 6321 |  |  |  rm -f Makesim1.tmp Makesim2.tmp Makefile
 | 
      
         | 6322 |  |  |  sed -n -e '/^## COMMON_PRE_/,/^## End COMMON_PRE_/ p' Makesim1.tmp
 | 
      
         | 6323 |  |  |  sed -n -e '/^## COMMON_POST_/,/^## End COMMON_POST_/ p' Makesim2.tmp
 | 
      
         | 6324 |  |  |  sed -e '/^## COMMON_PRE_/ r Makesim1.tmp' \
 | 
      
         | 6325 |  |  |         -e '/^## COMMON_POST_/ r Makesim2.tmp' \
 | 
      
         | 6326 |  |  |         Makefile
 | 
      
         | 6327 |  |  |  rm -f Makefile.sim Make-common.sim Makesim1.tmp Makesim2.tmp
 | 
      
         | 6328 |  |  |  ;;
 | 
      
         | 6329 |  |  |     "stamp-h":C) echo > stamp-h ;;
 | 
      
         | 6330 |  |  |  
 | 
      
         | 6331 |  |  |   esac
 | 
      
         | 6332 |  |  | done # for ac_tag
 | 
      
         | 6333 |  |  |  
 | 
      
         | 6334 |  |  |  
 | 
      
         | 6335 |  |  | as_fn_exit 0
 | 
      
         | 6336 |  |  | _ACEOF
 | 
      
         | 6337 |  |  | ac_clean_files=$ac_clean_files_save
 | 
      
         | 6338 |  |  |  
 | 
      
         | 6339 |  |  | test $ac_write_fail = 0 ||
 | 
      
         | 6340 |  |  |   as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5
 | 
      
         | 6341 |  |  |  
 | 
      
         | 6342 |  |  |  
 | 
      
         | 6343 |  |  | # configure is writing to config.log, and then calls config.status.
 | 
      
         | 6344 |  |  | # config.status does its own redirection, appending to config.log.
 | 
      
         | 6345 |  |  | # Unfortunately, on DOS this fails, as config.log is still kept open
 | 
      
         | 6346 |  |  | # by configure, so config.status won't be able to write to it; its
 | 
      
         | 6347 |  |  | # output is simply discarded.  So we exec the FD to /dev/null,
 | 
      
         | 6348 |  |  | # effectively closing config.log, so it can be properly (re)opened and
 | 
      
         | 6349 |  |  | # appended to by config.status.  When coming back to configure, we
 | 
      
         | 6350 |  |  | # need to make the FD available again.
 | 
      
         | 6351 |  |  | if test "$no_create" != yes; then
 | 
      
         | 6352 |  |  |   ac_cs_success=:
 | 
      
         | 6353 |  |  |   ac_config_status_args=
 | 
      
         | 6354 |  |  |   test "$silent" = yes &&
 | 
      
         | 6355 |  |  |     ac_config_status_args="$ac_config_status_args --quiet"
 | 
      
         | 6356 |  |  |   exec 5>/dev/null
 | 
      
         | 6357 |  |  |   $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
 | 
      
         | 6358 |  |  |   exec 5>>config.log
 | 
      
         | 6359 |  |  |   # Use ||, not &&, to avoid exiting from the if with $? = 1, which
 | 
      
         | 6360 |  |  |   # would make configure fail if this is the last instruction.
 | 
      
         | 6361 |  |  |   $ac_cs_success || as_fn_exit $?
 | 
      
         | 6362 |  |  | fi
 | 
      
         | 6363 |  |  | if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
 | 
      
         | 6364 |  |  |   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
 | 
      
         | 6365 |  |  | $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
 | 
      
         | 6366 |  |  | fi
 | 
      
         | 6367 |  |  |  
 | 
      
         | 6368 |  |  |  
 |