(linenum→info "unix/slp.c:2238")

glibc/2.7/configure

    1: #! /bin/sh
    2: # From configure.in CVSid.
    3: # Guess values for system-dependent variables and create Makefiles.
    4: # Generated by GNU Autoconf 2.61 for GNU C Library (see version.h).
    5: #
    6: # Report bugs to <glibc>.
    7: #
    8: # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
    9: # 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   10: # This configure script is free software; the Free Software Foundation
   11: # gives unlimited permission to copy, distribute and modify it.
   12: ## --------------------- ##
   13: ## M4sh Initialization.  ##
   14: ## --------------------- ##
   15: 
   16: # Be more Bourne compatible
   17: DUALCASE=1; export DUALCASE # for MKS sh
   18: if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
   19:   emulate sh
   20:   NULLCMD=:
   21:   # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
   22:   # is contrary to our usage.  Disable this feature.
   23:   alias -g '${1+"$@"}'='"$@"'
   24:   setopt NO_GLOB_SUBST
   25: else
   26:   case `(set -o) 2>/dev/null` in
   27:   *posix*) set -o posix ;;
   28: esac
   29: 
   30: fi
   31: 
   32: 
   33: 
   34: 
   35: # PATH needs CR
   36: # Avoid depending upon Character Ranges.
   37: as_cr_letters='abcdefghijklmnopqrstuvwxyz'
   38: as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
   39: as_cr_Letters=$as_cr_letters$as_cr_LETTERS
   40: as_cr_digits='0123456789'
   41: as_cr_alnum=$as_cr_Letters$as_cr_digits
   42: 
   43: # The user is always right.
   44: if test "${PATH_SEPARATOR+set}" != set; then
   45:   echo "#! /bin/sh" >conf$$.sh
   46:   echo  "exit 0"   >>conf$$.sh
   47:   chmod +x conf$$.sh
   48:   if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
   49:     PATH_SEPARATOR=';'
   50:   else
   51:     PATH_SEPARATOR=:
   52:   fi
   53:   rm -f conf$$.sh
   54: fi
   55: 
   56: # Support unset when possible.
   57: if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
   58:   as_unset=unset
   59: else
   60:   as_unset=false
   61: fi
   62: 
   63: 
   64: # IFS
   65: # We need space, tab and new line, in precisely that order.  Quoting is
   66: # there to prevent editors from complaining about space-tab.
   67: # (If _AS_PATH_WALK were called with IFS unset, it would disable word
   68: # splitting by setting IFS to empty value.)
   69: as_nl='
   70: '
   71: IFS=" ""        $as_nl"
   72: 
   73: # Find who we are.  Look in the path if we contain no directory separator.
   74: case $0 in
   75:   *[\\/]* ) as_myself=$0 ;;
   76:   *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
   77: for as_dir in $PATH
   78: do
   79:   IFS=$as_save_IFS
   80:   test -z "$as_dir" && as_dir=.
   81:   test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
   82: done
   83: IFS=$as_save_IFS
   84: 
   85:      ;;
   86: esac
   87: # We did not find ourselves, most probably we were run as `sh COMMAND'
   88: # in which case we are not to be found in the path.
   89: if test "x$as_myself" = x; then
   90:   as_myself=$0
   91: fi
   92: if test ! -f "$as_myself"; then
   93:   echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
   94:   { (exit 1); exit 1; }
   95: fi
   96: 
   97: # Work around bugs in pre-3.0 UWIN ksh.
   98: for as_var in ENV MAIL MAILPATH
   99: do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
  100: done
  101: PS1='$ '
  102: PS2='> '
  103: PS4='+ '
  104: 
  105: # NLS nuisances.
  106: for as_var in \
  107:   LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
  108:   LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
  109:   LC_TELEPHONE LC_TIME
  110: do
  111:   if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
  112:     eval $as_var=C; export $as_var
  113:   else
  114:     ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
  115:   fi
  116: done
  117: 
  118: # Required to use basename.
  119: if expr a : '\(a\)' >/dev/null 2>&1 &&
  120:    test "X`expr 00001 : '.*\(...\)'`" = X001; then
  121:   as_expr=expr
  122: else
  123:   as_expr=false
  124: fi
  125: 
  126: if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
  127:   as_basename=basename
  128: else
  129:   as_basename=false
  130: fi
  131: 
  132: 
  133: # Name of the executable.
  134: as_me=`$as_basename -- "$0" ||
  135: $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
  136:          X"$0" : 'X\(//\)$' \| \
  137:          X"$0" : 'X\(/\)' \| . 2>/dev/null ||
  138: echo X/"$0" |
  139:     sed '/^.*\/\([^/][^/]*\)\/*$/{
  140:             s//\1/
  141:             q
  142:           }
  143:           /^X\/\(\/\/\)$/{
  144:             s//\1/
  145:             q
  146:           }
  147:           /^X\/\(\/\).*/{
  148:             s//\1/
  149:             q
  150:           }
  151:           s/.*/./; q'`
  152: 
  153: # CDPATH.
  154: $as_unset CDPATH
  155: 
  156: 
  157: if test "x$CONFIG_SHELL" = x; then
  158:   if (eval ":") 2>/dev/null; then
  159:   as_have_required=yes
  160: else
  161:   as_have_required=no
  162: fi
  163: 
  164:   if test $as_have_required = yes &&     (eval ":
  165: (as_func_return () {
  166:   (exit \$1)
  167: }
  168: as_func_success () {
  169:   as_func_return 0
  170: }
  171: as_func_failure () {
  172:   as_func_return 1
  173: }
  174: as_func_ret_success () {
  175:   return 0
  176: }
  177: as_func_ret_failure () {
  178:   return 1
  179: }
  180: 
  181: exitcode=0
  182: if as_func_success; then
  183:   :
  184: else
  185:   exitcode=1
  186:   echo as_func_success failed.
  187: fi
  188: 
  189: if as_func_failure; then
  190:   exitcode=1
  191:   echo as_func_failure succeeded.
  192: fi
  193: 
  194: if as_func_ret_success; then
  195:   :
  196: else
  197:   exitcode=1
  198:   echo as_func_ret_success failed.
  199: fi
  200: 
  201: if as_func_ret_failure; then
  202:   exitcode=1
  203:   echo as_func_ret_failure succeeded.
  204: fi
  205: 
  206: if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
  207:   :
  208: else
  209:   exitcode=1
  210:   echo positional parameters were not saved.
  211: fi
  212: 
  213: test \$exitcode = 0) || { (exit 1); exit 1; }
  214: 
  215: (
  216:   as_lineno_1=\$LINENO
  217:   as_lineno_2=\$LINENO
  218:   test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" &&
  219:   test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; }
  220: ") 2> /dev/null; then
  221:   :
  222: else
  223:   as_candidate_shells=
  224:     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  225: for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
  226: do
  227:   IFS=$as_save_IFS
  228:   test -z "$as_dir" && as_dir=.
  229:   case $as_dir in
  230:          /*)
  231:            for as_base in sh bash ksh sh5; do
  232:              as_candidate_shells="$as_candidate_shells $as_dir/$as_base"
  233:            done;;
  234:        esac
  235: done
  236: IFS=$as_save_IFS
  237: 
  238: 
  239:       for as_shell in $as_candidate_shells $SHELL; do
  240:          # Try only shells that exist, to save several forks.
  241:          if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
  242:                 { ("$as_shell") 2> /dev/null <<\_ASEOF
  243: if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
  244:   emulate sh
  245:   NULLCMD=:
  246:   # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
  247:   # is contrary to our usage.  Disable this feature.
  248:   alias -g '${1+"$@"}'='"$@"'
  249:   setopt NO_GLOB_SUBST
  250: else
  251:   case `(set -o) 2>/dev/null` in
  252:   *posix*) set -o posix ;;
  253: esac
  254: 
  255: fi
  256: 
  257: 
  258: :
  259: _ASEOF
  260: }; then
  261:   CONFIG_SHELL=$as_shell
  262:                as_have_required=yes
  263:                if { "$as_shell" 2> /dev/null <<\_ASEOF
  264: if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
  265:   emulate sh
  266:   NULLCMD=:
  267:   # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
  268:   # is contrary to our usage.  Disable this feature.
  269:   alias -g '${1+"$@"}'='"$@"'
  270:   setopt NO_GLOB_SUBST
  271: else
  272:   case `(set -o) 2>/dev/null` in
  273:   *posix*) set -o posix ;;
  274: esac
  275: 
  276: fi
  277: 
  278: 
  279: :
  280: (as_func_return () {
  281:   (exit $1)
  282: }
  283: as_func_success () {
  284:   as_func_return 0
  285: }
  286: as_func_failure () {
  287:   as_func_return 1
  288: }
  289: as_func_ret_success () {
  290:   return 0
  291: }
  292: as_func_ret_failure () {
  293:   return 1
  294: }
  295: 
  296: exitcode=0
  297: if as_func_success; then
  298:   :
  299: else
  300:   exitcode=1
  301:   echo as_func_success failed.
  302: fi
  303: 
  304: if as_func_failure; then
  305:   exitcode=1
  306:   echo as_func_failure succeeded.
  307: fi
  308: 
  309: if as_func_ret_success; then
  310:   :
  311: else
  312:   exitcode=1
  313:   echo as_func_ret_success failed.
  314: fi
  315: 
  316: if as_func_ret_failure; then
  317:   exitcode=1
  318:   echo as_func_ret_failure succeeded.
  319: fi
  320: 
  321: if ( set x; as_func_ret_success y && test x = "$1" ); then
  322:   :
  323: else
  324:   exitcode=1
  325:   echo positional parameters were not saved.
  326: fi
  327: 
  328: test $exitcode = 0) || { (exit 1); exit 1; }
  329: 
  330: (
  331:   as_lineno_1=$LINENO
  332:   as_lineno_2=$LINENO
  333:   test "x$as_lineno_1" != "x$as_lineno_2" &&
  334:   test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; }
  335: 
  336: _ASEOF
  337: }; then
  338:   break
  339: fi
  340: 
  341: fi
  342: 
  343:       done
  344: 
  345:       if test "x$CONFIG_SHELL" != x; then
  346:   for as_var in BASH_ENV ENV
  347:         do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
  348:         done
  349:         export CONFIG_SHELL
  350:         exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
  351: fi
  352: 
  353: 
  354:     if test $as_have_required = no; then
  355:   echo This script requires a shell more modern than all the
  356:       echo shells that I found on your system.  Please install a
  357:       echo modern shell, or manually run the script under such a
  358:       echo shell if you do have one.
  359:       { (exit 1); exit 1; }
  360: fi
  361: 
  362: 
  363: fi
  364: 
  365: fi
  366: 
  367: 
  368: 
  369: (eval "as_func_return () {
  370:   (exit \$1)
  371: }
  372: as_func_success () {
  373:   as_func_return 0
  374: }
  375: as_func_failure () {
  376:   as_func_return 1
  377: }
  378: as_func_ret_success () {
  379:   return 0
  380: }
  381: as_func_ret_failure () {
  382:   return 1
  383: }
  384: 
  385: exitcode=0
  386: if as_func_success; then
  387:   :
  388: else
  389:   exitcode=1
  390:   echo as_func_success failed.
  391: fi
  392: 
  393: if as_func_failure; then
  394:   exitcode=1
  395:   echo as_func_failure succeeded.
  396: fi
  397: 
  398: if as_func_ret_success; then
  399:   :
  400: else
  401:   exitcode=1
  402:   echo as_func_ret_success failed.
  403: fi
  404: 
  405: if as_func_ret_failure; then
  406:   exitcode=1
  407:   echo as_func_ret_failure succeeded.
  408: fi
  409: 
  410: if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
  411:   :
  412: else
  413:   exitcode=1
  414:   echo positional parameters were not saved.
  415: fi
  416: 
  417: test \$exitcode = 0") || {
  418:   echo No shell found that supports shell functions.
  419:   echo Please tell autoconf@gnu.org about your system,
  420:   echo including any error possibly output before this
  421:   echo message
  422: }
  423: 
  424: 
  425: 
  426:   as_lineno_1=$LINENO
  427:   as_lineno_2=$LINENO
  428:   test "x$as_lineno_1" != "x$as_lineno_2" &&
  429:   test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
  430: 
  431:   # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
  432:   # uniformly replaced by the line number.  The first 'sed' inserts a
  433:   # line-number line after each line using $LINENO; the second 'sed'
  434:   # does the real work.  The second script uses 'N' to pair each
  435:   # line-number line with the line containing $LINENO, and appends
  436:   # trailing '-' during substitution so that $LINENO is not a special
  437:   # case at line end.
  438:   # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
  439:   # scripts with optimization help from Paolo Bonzini.  Blame Lee
  440:   # E. McMahon (1931-1989) for sed's syntax.  :-)
  441:   sed -n '
  442:     p
  443:     /[$]LINENO/=
  444:   ' <$as_myself |
  445:     sed '
  446:       s/[$]LINENO.*/&-/
  447:       t lineno
  448:       b
  449:       :lineno
  450:       N
  451:       :loop
  452:       s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
  453:       t loop
  454:       s/-\n.*//
  455:     ' >$as_me.lineno &&
  456:   chmod +x "$as_me.lineno" ||
  457:     { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
  458:    { (exit 1); exit 1; }; }
  459: 
  460:   # Don't try to exec as it changes $[0], causing all sort of problems
  461:   # (the dirname of $[0] is not the place where we might find the
  462:   # original and so on.  Autoconf is especially sensitive to this).
  463:   . "./$as_me.lineno"
  464:   # Exit status is that of the last command.
  465:   exit
  466: }
  467: 
  468: 
  469: if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
  470:   as_dirname=dirname
  471: else
  472:   as_dirname=false
  473: fi
  474: 
  475: ECHO_C= ECHO_N= ECHO_T=
  476: case `echo -n x` in
  477: -n*)
  478:   case `echo 'x\c'` in
  479:   *c*) ECHO_T=' ';;     # ECHO_T is single tab character.
  480:   *)   ECHO_C='\c';;
  481:   esac;;
  482: *)
  483:   ECHO_N='-n';;
  484: esac
  485: 
  486: if expr a : '\(a\)' >/dev/null 2>&1 &&
  487:    test "X`expr 00001 : '.*\(...\)'`" = X001; then
  488:   as_expr=expr
  489: else
  490:   as_expr=false
  491: fi
  492: 
  493: rm -f conf$$ conf$$.exe conf$$.file
  494: if test -d conf$$.dir; then
  495:   rm -f conf$$.dir/conf$$.file
  496: else
  497:   rm -f conf$$.dir
  498:   mkdir conf$$.dir
  499: fi
  500: echo >conf$$.file
  501: if ln -s conf$$.file conf$$ 2>/dev/null; then
  502:   as_ln_s='ln -s'
  503:   # ... but there are two gotchas:
  504:   # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
  505:   # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
  506:   # In both cases, we have to default to `cp -p'.
  507:   ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
  508:     as_ln_s='cp -p'
  509: elif ln conf$$.file conf$$ 2>/dev/null; then
  510:   as_ln_s=ln
  511: else
  512:   as_ln_s='cp -p'
  513: fi
  514: rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
  515: rmdir conf$$.dir 2>/dev/null
  516: 
  517: if mkdir -p . 2>/dev/null; then
  518:   as_mkdir_p=:
  519: else
  520:   test -d ./-p && rmdir ./-p
  521:   as_mkdir_p=false
  522: fi
  523: 
  524: if test -x / >/dev/null 2>&1; then
  525:   as_test_x='test -x'
  526: else
  527:   if ls -dL / >/dev/null 2>&1; then
  528:     as_ls_L_option=L
  529:   else
  530:     as_ls_L_option=
  531:   fi
  532:   as_test_x='
  533:     eval sh -c '\''
  534:       if test -d "$1"; then
  535:         test -d "$1/.";
  536:       else
  537:         case $1 in
  538:         -*)set "./$1";;
  539:         esac;
  540:         case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
  541:         ???[sx]*):;;*)false;;esac;fi
  542:     '\'' sh
  543:   '
  544: fi
  545: as_executable_p=$as_test_x
  546: 
  547: # Sed expression to map a string onto a valid CPP name.
  548: as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  549: 
  550: # Sed expression to map a string onto a valid variable name.
  551: as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  552: 
  553: 
  554: 
  555: exec 7<&0 </dev/null 6>&1
  556: 
  557: # Name of the host.
  558: # hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
  559: # so uname gets run too.
  560: ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
  561: 
  562: #
  563: # Initializations.
  564: #
  565: ac_default_prefix=/usr/local
  566: ac_clean_files=
  567: ac_config_libobj_dir=.
  568: LIBOBJS=
  569: cross_compiling=no
  570: subdirs=
  571: MFLAGS=
  572: MAKEFLAGS=
  573: SHELL=${CONFIG_SHELL-/bin/sh}
  574: 
  575: # Identity of this package.
  576: PACKAGE_NAME='GNU C Library'
  577: PACKAGE_TARNAME='c-library'
  578: PACKAGE_VERSION='(see version.h)'
  579: PACKAGE_STRING='GNU C Library (see version.h)'
  580: PACKAGE_BUGREPORT='glibc'
  581: 
  582: ac_unique_file="include/features.h"
  583: # Factoring default headers for most tests.
  584: ac_includes_default="\
  585: #include <stdio.h>
  586: #ifdef HAVE_SYS_TYPES_H
  587: # include <sys/types.h>
  588: #endif
  589: #ifdef HAVE_SYS_STAT_H
  590: # include <sys/stat.h>
  591: #endif
  592: #ifdef STDC_HEADERS
  593: # include <stdlib.h>
  594: # include <stddef.h>
  595: #else
  596: # ifdef HAVE_STDLIB_H
  597: #  include <stdlib.h>
  598: # endif
  599: #endif
  600: #ifdef HAVE_STRING_H
  601: # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  602: #  include <memory.h>
  603: # endif
  604: # include <string.h>
  605: #endif
  606: #ifdef HAVE_STRINGS_H
  607: # include <strings.h>
  608: #endif
  609: #ifdef HAVE_INTTYPES_H
  610: # include <inttypes.h>
  611: #endif
  612: #ifdef HAVE_STDINT_H
  613: # include <stdint.h>
  614: #endif
  615: #ifdef HAVE_UNISTD_H
  616: # include <unistd.h>
  617: #endif"
  618: 
  619: ac_subst_vars='SHELL
  620: PATH_SEPARATOR
  621: PACKAGE_NAME
  622: PACKAGE_TARNAME
  623: PACKAGE_VERSION
  624: PACKAGE_STRING
  625: PACKAGE_BUGREPORT
  626: exec_prefix
  627: prefix
  628: program_transform_name
  629: bindir
  630: sbindir
  631: libexecdir
  632: datarootdir
  633: datadir
  634: sysconfdir
  635: sharedstatedir
  636: localstatedir
  637: includedir
  638: oldincludedir
  639: docdir
  640: infodir
  641: htmldir
  642: dvidir
  643: pdfdir
  644: psdir
  645: libdir
  646: localedir
  647: mandir
  648: DEFS
  649: ECHO_C
  650: ECHO_N
  651: ECHO_T
  652: LIBS
  653: build_alias
  654: host_alias
  655: target_alias
  656: with_fp
  657: with_cvs
  658: enable_check_abi
  659: oldest_abi
  660: bindnow
  661: force_install
  662: all_warnings
  663: build
  664: build_cpu
  665: build_vendor
  666: build_os
  667: host
  668: host_cpu
  669: host_vendor
  670: host_os
  671: subdirs
  672: add_ons
  673: add_on_subdirs
  674: base_machine
  675: submachine
  676: sysnames
  677: sysdeps_add_ons
  678: INSTALL_PROGRAM
  679: INSTALL_SCRIPT
  680: INSTALL_DATA
  681: LN_S
  682: CC
  683: CFLAGS
  684: LDFLAGS
  685: CPPFLAGS
  686: ac_ct_CC
  687: OBJEXT
  688: BUILD_CC
  689: cross_compiling
  690: CPP
  691: CXX
  692: CXXFLAGS
  693: ac_ct_CXX
  694: AR
  695: OBJDUMP
  696: RANLIB
  697: MIG
  698: AS
  699: LD
  700: PWD_P
  701: MAKE
  702: MSGFMT
  703: MAKEINFO
  704: SED
  705: AUTOCONF
  706: SYSINCLUDES
  707: CXX_SYSINCLUDES
  708: libc_cv_gcc_static_libgcc
  709: BASH_SHELL
  710: libc_cv_have_bash2
  711: KSH
  712: libc_cv_have_ksh
  713: AWK
  714: PERL
  715: INSTALL_INFO
  716: BISON
  717: VERSIONING
  718: libc_cv_cc_with_libunwind
  719: libc_cv_Bgroup
  720: libc_cv_libgcc_s_suffix
  721: libc_cv_as_needed
  722: ASFLAGS_config
  723: libc_cv_z_combreloc
  724: libc_cv_z_execstack
  725: libc_cv_fpie
  726: libc_cv_hashstyle
  727: fno_unit_at_a_time
  728: libc_cv_ssp
  729: libc_cv_gnu89_inline
  730: libc_cv_have_initfini
  731: no_whole_archive
  732: exceptions
  733: LIBGD
  734: have_libaudit
  735: have_libcap
  736: have_selinux
  737: GREP
  738: EGREP
  739: sizeof_long_double
  740: libc_cv_gcc_unwind_find_fde
  741: uname_sysname
  742: uname_release
  743: uname_version
  744: old_glibc_headers
  745: libc_cv_slibdir
  746: libc_cv_localedir
  747: libc_cv_sysconfdir
  748: libc_cv_rootsbindir
  749: libc_cv_forced_unwind
  750: use_ldconfig
  751: ldd_rewrite_script
  752: elf
  753: xcoff
  754: static
  755: shared
  756: pic_default
  757: profile
  758: omitfp
  759: bounded
  760: static_nss
  761: nopic_initfini
  762: DEFINES
  763: mach_interface_list
  764: VERSION
  765: RELEASE
  766: LIBOBJS
  767: LTLIBOBJS'
  768: ac_subst_files=''
  769:       ac_precious_vars='build_alias
  770: host_alias
  771: target_alias
  772: CC
  773: CFLAGS
  774: LDFLAGS
  775: LIBS
  776: CPPFLAGS
  777: CPP
  778: CXX
  779: CXXFLAGS
  780: CCC'
  781: ac_subdirs_all=''
  782: 
  783: # Initialize some variables set by options.
  784: ac_init_help=
  785: ac_init_version=false
  786: # The variables have the same names as the options, with
  787: # dashes changed to underlines.
  788: cache_file=/dev/null
  789: exec_prefix=NONE
  790: no_create=
  791: no_recursion=
  792: prefix=NONE
  793: program_prefix=NONE
  794: program_suffix=NONE
  795: program_transform_name=s,x,x,
  796: silent=
  797: site=
  798: srcdir=
  799: verbose=
  800: x_includes=NONE
  801: x_libraries=NONE
  802: 
  803: # Installation directory options.
  804: # These are left unexpanded so users can "make install exec_prefix=/foo"
  805: # and all the variables that are supposed to be based on exec_prefix
  806: # by default will actually change.
  807: # Use braces instead of parens because sh, perl, etc. also accept them.
  808: # (The list follows the same order as the GNU Coding Standards.)
  809: bindir='${exec_prefix}/bin'
  810: sbindir='${exec_prefix}/sbin'
  811: libexecdir='${exec_prefix}/libexec'
  812: datarootdir='${prefix}/share'
  813: datadir='${datarootdir}'
  814: sysconfdir='${prefix}/etc'
  815: sharedstatedir='${prefix}/com'
  816: localstatedir='${prefix}/var'
  817: includedir='${prefix}/include'
  818: oldincludedir='/usr/include'
  819: docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
  820: infodir='${datarootdir}/info'
  821: htmldir='${docdir}'
  822: dvidir='${docdir}'
  823: pdfdir='${docdir}'
  824: psdir='${docdir}'
  825: libdir='${exec_prefix}/lib'
  826: localedir='${datarootdir}/locale'
  827: mandir='${datarootdir}/man'
  828: 
  829: ac_prev=
  830: ac_dashdash=
  831: for ac_option
  832: do
  833:   # If the previous option needs an argument, assign it.
  834:   if test -n "$ac_prev"; then
  835:     eval $ac_prev=\$ac_option
  836:     ac_prev=
  837:     continue
  838:   fi
  839: 
  840:   case $ac_option in
  841:   *=*)  ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
  842:   *)    ac_optarg=yes ;;
  843:   esac
  844: 
  845:   # Accept the important Cygnus configure options, so we can diagnose typos.
  846: 
  847:   case $ac_dashdash$ac_option in
  848:   --)
  849:     ac_dashdash=yes ;;
  850: 
  851:   -bindir | --bindir | --bindi | --bind | --bin | --bi)
  852:     ac_prev=bindir ;;
  853:   -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
  854:     bindir=$ac_optarg ;;
  855: 
  856:   -build | --build | --buil | --bui | --bu)
  857:     ac_prev=build_alias ;;
  858:   -build=* | --build=* | --buil=* | --bui=* | --bu=*)
  859:     build_alias=$ac_optarg ;;
  860: 
  861:   -cache-file | --cache-file | --cache-fil | --cache-fi \
  862:   | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
  863:     ac_prev=cache_file ;;
  864:   -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
  865:   | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
  866:     cache_file=$ac_optarg ;;
  867: 
  868:   --config-cache | -C)
  869:     cache_file=config.cache ;;
  870: 
  871:   -datadir | --datadir | --datadi | --datad)
  872:     ac_prev=datadir ;;
  873:   -datadir=* | --datadir=* | --datadi=* | --datad=*)
  874:     datadir=$ac_optarg ;;
  875: 
  876:   -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
  877:   | --dataroo | --dataro | --datar)
  878:     ac_prev=datarootdir ;;
  879:   -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
  880:   | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
  881:     datarootdir=$ac_optarg ;;
  882: 
  883:   -disable-* | --disable-*)
  884:     ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
  885:     # Reject names that are not valid shell variable names.
  886:     expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
  887:       { echo "$as_me: error: invalid feature name: $ac_feature" >&2
  888:    { (exit 1); exit 1; }; }
  889:     ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
  890:     eval enable_$ac_feature=no ;;
  891: 
  892:   -docdir | --docdir | --docdi | --doc | --do)
  893:     ac_prev=docdir ;;
  894:   -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
  895:     docdir=$ac_optarg ;;
  896: