|
|
1.1 root 1: #! /bin/sh
2: # Guess values for system-dependent variables and create Makefiles.
1.1.1.5 ! root 3: # Generated by GNU Autoconf 2.69 for GNU Mach 1.4.
! 4: #
! 5: # Report bugs to <[email protected]>.
! 6: #
! 7: #
! 8: # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
! 9: #
1.1 root 10: #
11: # This configure script is free software; the Free Software Foundation
12: # gives unlimited permission to copy, distribute and modify it.
1.1.1.5 ! root 13: ## -------------------- ##
! 14: ## M4sh Initialization. ##
! 15: ## -------------------- ##
! 16:
! 17: # Be more Bourne compatible
! 18: DUALCASE=1; export DUALCASE # for MKS sh
! 19: if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
! 20: emulate sh
! 21: NULLCMD=:
! 22: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
! 23: # is contrary to our usage. Disable this feature.
! 24: alias -g '${1+"$@"}'='"$@"'
! 25: setopt NO_GLOB_SUBST
! 26: else
! 27: case `(set -o) 2>/dev/null` in #(
! 28: *posix*) :
! 29: set -o posix ;; #(
! 30: *) :
! 31: ;;
! 32: esac
! 33: fi
! 34:
! 35:
! 36: as_nl='
! 37: '
! 38: export as_nl
! 39: # Printing a long string crashes Solaris 7 /usr/bin/printf.
! 40: as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
! 41: as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
! 42: as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
! 43: # Prefer a ksh shell builtin over an external printf program on Solaris,
! 44: # but without wasting forks for bash or zsh.
! 45: if test -z "$BASH_VERSION$ZSH_VERSION" \
! 46: && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
! 47: as_echo='print -r --'
! 48: as_echo_n='print -rn --'
! 49: elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
! 50: as_echo='printf %s\n'
! 51: as_echo_n='printf %s'
! 52: else
! 53: if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
! 54: as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
! 55: as_echo_n='/usr/ucb/echo -n'
! 56: else
! 57: as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
! 58: as_echo_n_body='eval
! 59: arg=$1;
! 60: case $arg in #(
! 61: *"$as_nl"*)
! 62: expr "X$arg" : "X\\(.*\\)$as_nl";
! 63: arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
! 64: esac;
! 65: expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
! 66: '
! 67: export as_echo_n_body
! 68: as_echo_n='sh -c $as_echo_n_body as_echo'
! 69: fi
! 70: export as_echo_body
! 71: as_echo='sh -c $as_echo_body as_echo'
! 72: fi
! 73:
! 74: # The user is always right.
! 75: if test "${PATH_SEPARATOR+set}" != set; then
! 76: PATH_SEPARATOR=:
! 77: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
! 78: (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
! 79: PATH_SEPARATOR=';'
! 80: }
! 81: fi
! 82:
! 83:
! 84: # IFS
! 85: # We need space, tab and new line, in precisely that order. Quoting is
! 86: # there to prevent editors from complaining about space-tab.
! 87: # (If _AS_PATH_WALK were called with IFS unset, it would disable word
! 88: # splitting by setting IFS to empty value.)
! 89: IFS=" "" $as_nl"
! 90:
! 91: # Find who we are. Look in the path if we contain no directory separator.
! 92: as_myself=
! 93: case $0 in #((
! 94: *[\\/]* ) as_myself=$0 ;;
! 95: *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 96: for as_dir in $PATH
! 97: do
! 98: IFS=$as_save_IFS
! 99: test -z "$as_dir" && as_dir=.
! 100: test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
! 101: done
! 102: IFS=$as_save_IFS
! 103:
! 104: ;;
! 105: esac
! 106: # We did not find ourselves, most probably we were run as `sh COMMAND'
! 107: # in which case we are not to be found in the path.
! 108: if test "x$as_myself" = x; then
! 109: as_myself=$0
! 110: fi
! 111: if test ! -f "$as_myself"; then
! 112: $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
! 113: exit 1
! 114: fi
! 115:
! 116: # Unset variables that we do not need and which cause bugs (e.g. in
! 117: # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
! 118: # suppresses any "Segmentation fault" message there. '((' could
! 119: # trigger a bug in pdksh 5.2.14.
! 120: for as_var in BASH_ENV ENV MAIL MAILPATH
! 121: do eval test x\${$as_var+set} = xset \
! 122: && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
! 123: done
! 124: PS1='$ '
! 125: PS2='> '
! 126: PS4='+ '
! 127:
! 128: # NLS nuisances.
! 129: LC_ALL=C
! 130: export LC_ALL
! 131: LANGUAGE=C
! 132: export LANGUAGE
! 133:
! 134: # CDPATH.
! 135: (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
! 136:
! 137: # Use a proper internal environment variable to ensure we don't fall
! 138: # into an infinite loop, continuously re-executing ourselves.
! 139: if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
! 140: _as_can_reexec=no; export _as_can_reexec;
! 141: # We cannot yet assume a decent shell, so we have to provide a
! 142: # neutralization value for shells without unset; and this also
! 143: # works around shells that cannot unset nonexistent variables.
! 144: # Preserve -v and -x to the replacement shell.
! 145: BASH_ENV=/dev/null
! 146: ENV=/dev/null
! 147: (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
! 148: case $- in # ((((
! 149: *v*x* | *x*v* ) as_opts=-vx ;;
! 150: *v* ) as_opts=-v ;;
! 151: *x* ) as_opts=-x ;;
! 152: * ) as_opts= ;;
! 153: esac
! 154: exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
! 155: # Admittedly, this is quite paranoid, since all the known shells bail
! 156: # out after a failed `exec'.
! 157: $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
! 158: as_fn_exit 255
! 159: fi
! 160: # We don't want this to propagate to other subprocesses.
! 161: { _as_can_reexec=; unset _as_can_reexec;}
! 162: if test "x$CONFIG_SHELL" = x; then
! 163: as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
! 164: emulate sh
! 165: NULLCMD=:
! 166: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
! 167: # is contrary to our usage. Disable this feature.
! 168: alias -g '\${1+\"\$@\"}'='\"\$@\"'
! 169: setopt NO_GLOB_SUBST
! 170: else
! 171: case \`(set -o) 2>/dev/null\` in #(
! 172: *posix*) :
! 173: set -o posix ;; #(
! 174: *) :
! 175: ;;
! 176: esac
! 177: fi
! 178: "
! 179: as_required="as_fn_return () { (exit \$1); }
! 180: as_fn_success () { as_fn_return 0; }
! 181: as_fn_failure () { as_fn_return 1; }
! 182: as_fn_ret_success () { return 0; }
! 183: as_fn_ret_failure () { return 1; }
! 184:
! 185: exitcode=0
! 186: as_fn_success || { exitcode=1; echo as_fn_success failed.; }
! 187: as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
! 188: as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
! 189: as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
! 190: if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
! 191:
! 192: else
! 193: exitcode=1; echo positional parameters were not saved.
! 194: fi
! 195: test x\$exitcode = x0 || exit 1
! 196: test -x / || exit 1"
! 197: as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
! 198: as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
! 199: eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
! 200: test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
! 201: if (eval "$as_required") 2>/dev/null; then :
! 202: as_have_required=yes
! 203: else
! 204: as_have_required=no
! 205: fi
! 206: if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
! 207:
! 208: else
! 209: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 210: as_found=false
! 211: for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
! 212: do
! 213: IFS=$as_save_IFS
! 214: test -z "$as_dir" && as_dir=.
! 215: as_found=:
! 216: case $as_dir in #(
! 217: /*)
! 218: for as_base in sh bash ksh sh5; do
! 219: # Try only shells that exist, to save several forks.
! 220: as_shell=$as_dir/$as_base
! 221: if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
! 222: { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
! 223: CONFIG_SHELL=$as_shell as_have_required=yes
! 224: if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
! 225: break 2
! 226: fi
! 227: fi
! 228: done;;
! 229: esac
! 230: as_found=false
! 231: done
! 232: $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
! 233: { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
! 234: CONFIG_SHELL=$SHELL as_have_required=yes
! 235: fi; }
! 236: IFS=$as_save_IFS
! 237:
! 238:
! 239: if test "x$CONFIG_SHELL" != x; then :
! 240: export CONFIG_SHELL
! 241: # We cannot yet assume a decent shell, so we have to provide a
! 242: # neutralization value for shells without unset; and this also
! 243: # works around shells that cannot unset nonexistent variables.
! 244: # Preserve -v and -x to the replacement shell.
! 245: BASH_ENV=/dev/null
! 246: ENV=/dev/null
! 247: (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
! 248: case $- in # ((((
! 249: *v*x* | *x*v* ) as_opts=-vx ;;
! 250: *v* ) as_opts=-v ;;
! 251: *x* ) as_opts=-x ;;
! 252: * ) as_opts= ;;
! 253: esac
! 254: exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
! 255: # Admittedly, this is quite paranoid, since all the known shells bail
! 256: # out after a failed `exec'.
! 257: $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
! 258: exit 255
! 259: fi
! 260:
! 261: if test x$as_have_required = xno; then :
! 262: $as_echo "$0: This script requires a shell more modern than all"
! 263: $as_echo "$0: the shells that I found on your system."
! 264: if test x${ZSH_VERSION+set} = xset ; then
! 265: $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
! 266: $as_echo "$0: be upgraded to zsh 4.3.4 or later."
! 267: else
! 268: $as_echo "$0: Please tell [email protected] and [email protected]
! 269: $0: about your system, including any error possibly output
! 270: $0: before this message. Then install a modern shell, or
! 271: $0: manually run the script under such a shell if you do
! 272: $0: have one."
! 273: fi
! 274: exit 1
! 275: fi
! 276: fi
! 277: fi
! 278: SHELL=${CONFIG_SHELL-/bin/sh}
! 279: export SHELL
! 280: # Unset more variables known to interfere with behavior of common tools.
! 281: CLICOLOR_FORCE= GREP_OPTIONS=
! 282: unset CLICOLOR_FORCE GREP_OPTIONS
! 283:
! 284: ## --------------------- ##
! 285: ## M4sh Shell Functions. ##
! 286: ## --------------------- ##
! 287: # as_fn_unset VAR
! 288: # ---------------
! 289: # Portably unset VAR.
! 290: as_fn_unset ()
! 291: {
! 292: { eval $1=; unset $1;}
! 293: }
! 294: as_unset=as_fn_unset
! 295:
! 296: # as_fn_set_status STATUS
! 297: # -----------------------
! 298: # Set $? to STATUS, without forking.
! 299: as_fn_set_status ()
! 300: {
! 301: return $1
! 302: } # as_fn_set_status
! 303:
! 304: # as_fn_exit STATUS
! 305: # -----------------
! 306: # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
! 307: as_fn_exit ()
! 308: {
! 309: set +e
! 310: as_fn_set_status $1
! 311: exit $1
! 312: } # as_fn_exit
! 313:
! 314: # as_fn_mkdir_p
! 315: # -------------
! 316: # Create "$as_dir" as a directory, including parents if necessary.
! 317: as_fn_mkdir_p ()
! 318: {
! 319:
! 320: case $as_dir in #(
! 321: -*) as_dir=./$as_dir;;
! 322: esac
! 323: test -d "$as_dir" || eval $as_mkdir_p || {
! 324: as_dirs=
! 325: while :; do
! 326: case $as_dir in #(
! 327: *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
! 328: *) as_qdir=$as_dir;;
! 329: esac
! 330: as_dirs="'$as_qdir' $as_dirs"
! 331: as_dir=`$as_dirname -- "$as_dir" ||
! 332: $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
! 333: X"$as_dir" : 'X\(//\)[^/]' \| \
! 334: X"$as_dir" : 'X\(//\)$' \| \
! 335: X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
! 336: $as_echo X"$as_dir" |
! 337: sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
! 338: s//\1/
! 339: q
! 340: }
! 341: /^X\(\/\/\)[^/].*/{
! 342: s//\1/
! 343: q
! 344: }
! 345: /^X\(\/\/\)$/{
! 346: s//\1/
! 347: q
! 348: }
! 349: /^X\(\/\).*/{
! 350: s//\1/
! 351: q
! 352: }
! 353: s/.*/./; q'`
! 354: test -d "$as_dir" && break
! 355: done
! 356: test -z "$as_dirs" || eval "mkdir $as_dirs"
! 357: } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
! 358:
! 359:
! 360: } # as_fn_mkdir_p
! 361:
! 362: # as_fn_executable_p FILE
! 363: # -----------------------
! 364: # Test if FILE is an executable regular file.
! 365: as_fn_executable_p ()
! 366: {
! 367: test -f "$1" && test -x "$1"
! 368: } # as_fn_executable_p
! 369: # as_fn_append VAR VALUE
! 370: # ----------------------
! 371: # Append the text in VALUE to the end of the definition contained in VAR. Take
! 372: # advantage of any shell optimizations that allow amortized linear growth over
! 373: # repeated appends, instead of the typical quadratic growth present in naive
! 374: # implementations.
! 375: if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
! 376: eval 'as_fn_append ()
! 377: {
! 378: eval $1+=\$2
! 379: }'
! 380: else
! 381: as_fn_append ()
! 382: {
! 383: eval $1=\$$1\$2
! 384: }
! 385: fi # as_fn_append
! 386:
! 387: # as_fn_arith ARG...
! 388: # ------------------
! 389: # Perform arithmetic evaluation on the ARGs, and store the result in the
! 390: # global $as_val. Take advantage of shells that can avoid forks. The arguments
! 391: # must be portable across $(()) and expr.
! 392: if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
! 393: eval 'as_fn_arith ()
! 394: {
! 395: as_val=$(( $* ))
! 396: }'
! 397: else
! 398: as_fn_arith ()
! 399: {
! 400: as_val=`expr "$@" || test $? -eq 1`
! 401: }
! 402: fi # as_fn_arith
! 403:
! 404:
! 405: # as_fn_error STATUS ERROR [LINENO LOG_FD]
! 406: # ----------------------------------------
! 407: # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
! 408: # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
! 409: # script with STATUS, using 1 if that was 0.
! 410: as_fn_error ()
! 411: {
! 412: as_status=$1; test $as_status -eq 0 && as_status=1
! 413: if test "$4"; then
! 414: as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
! 415: $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
! 416: fi
! 417: $as_echo "$as_me: error: $2" >&2
! 418: as_fn_exit $as_status
! 419: } # as_fn_error
! 420:
! 421: if expr a : '\(a\)' >/dev/null 2>&1 &&
! 422: test "X`expr 00001 : '.*\(...\)'`" = X001; then
! 423: as_expr=expr
! 424: else
! 425: as_expr=false
! 426: fi
! 427:
! 428: if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
! 429: as_basename=basename
! 430: else
! 431: as_basename=false
! 432: fi
! 433:
! 434: if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
! 435: as_dirname=dirname
! 436: else
! 437: as_dirname=false
! 438: fi
! 439:
! 440: as_me=`$as_basename -- "$0" ||
! 441: $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
! 442: X"$0" : 'X\(//\)$' \| \
! 443: X"$0" : 'X\(/\)' \| . 2>/dev/null ||
! 444: $as_echo X/"$0" |
! 445: sed '/^.*\/\([^/][^/]*\)\/*$/{
! 446: s//\1/
! 447: q
! 448: }
! 449: /^X\/\(\/\/\)$/{
! 450: s//\1/
! 451: q
! 452: }
! 453: /^X\/\(\/\).*/{
! 454: s//\1/
! 455: q
! 456: }
! 457: s/.*/./; q'`
! 458:
! 459: # Avoid depending upon Character Ranges.
! 460: as_cr_letters='abcdefghijklmnopqrstuvwxyz'
! 461: as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
! 462: as_cr_Letters=$as_cr_letters$as_cr_LETTERS
! 463: as_cr_digits='0123456789'
! 464: as_cr_alnum=$as_cr_Letters$as_cr_digits
! 465:
! 466:
! 467: as_lineno_1=$LINENO as_lineno_1a=$LINENO
! 468: as_lineno_2=$LINENO as_lineno_2a=$LINENO
! 469: eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
! 470: test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
! 471: # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-)
! 472: sed -n '
! 473: p
! 474: /[$]LINENO/=
! 475: ' <$as_myself |
! 476: sed '
! 477: s/[$]LINENO.*/&-/
! 478: t lineno
! 479: b
! 480: :lineno
! 481: N
! 482: :loop
! 483: s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
! 484: t loop
! 485: s/-\n.*//
! 486: ' >$as_me.lineno &&
! 487: chmod +x "$as_me.lineno" ||
! 488: { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
! 489:
! 490: # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
! 491: # already done that, so ensure we don't try to do so again and fall
! 492: # in an infinite loop. This has already happened in practice.
! 493: _as_can_reexec=no; export _as_can_reexec
! 494: # Don't try to exec as it changes $[0], causing all sort of problems
! 495: # (the dirname of $[0] is not the place where we might find the
! 496: # original and so on. Autoconf is especially sensitive to this).
! 497: . "./$as_me.lineno"
! 498: # Exit status is that of the last command.
! 499: exit
! 500: }
! 501:
! 502: ECHO_C= ECHO_N= ECHO_T=
! 503: case `echo -n x` in #(((((
! 504: -n*)
! 505: case `echo 'xy\c'` in
! 506: *c*) ECHO_T=' ';; # ECHO_T is single tab character.
! 507: xy) ECHO_C='\c';;
! 508: *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
! 509: ECHO_T=' ';;
! 510: esac;;
! 511: *)
! 512: ECHO_N='-n';;
! 513: esac
1.1 root 514:
1.1.1.5 ! root 515: rm -f conf$$ conf$$.exe conf$$.file
! 516: if test -d conf$$.dir; then
! 517: rm -f conf$$.dir/conf$$.file
! 518: else
! 519: rm -f conf$$.dir
! 520: mkdir conf$$.dir 2>/dev/null
! 521: fi
! 522: if (echo >conf$$.file) 2>/dev/null; then
! 523: if ln -s conf$$.file conf$$ 2>/dev/null; then
! 524: as_ln_s='ln -s'
! 525: # ... but there are two gotchas:
! 526: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
! 527: # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
! 528: # In both cases, we have to default to `cp -pR'.
! 529: ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
! 530: as_ln_s='cp -pR'
! 531: elif ln conf$$.file conf$$ 2>/dev/null; then
! 532: as_ln_s=ln
! 533: else
! 534: as_ln_s='cp -pR'
! 535: fi
! 536: else
! 537: as_ln_s='cp -pR'
! 538: fi
! 539: rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
! 540: rmdir conf$$.dir 2>/dev/null
! 541:
! 542: if mkdir -p . 2>/dev/null; then
! 543: as_mkdir_p='mkdir -p "$as_dir"'
! 544: else
! 545: test -d ./-p && rmdir ./-p
! 546: as_mkdir_p=false
! 547: fi
! 548:
! 549: as_test_x='test -x'
! 550: as_executable_p=as_fn_executable_p
! 551:
! 552: # Sed expression to map a string onto a valid CPP name.
! 553: as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
! 554:
! 555: # Sed expression to map a string onto a valid variable name.
! 556: as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
! 557:
! 558:
! 559: test -n "$DJDIR" || exec 7<&0 </dev/null
! 560: exec 6>&1
! 561:
! 562: # Name of the host.
! 563: # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
! 564: # so uname gets run too.
! 565: ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
! 566:
! 567: #
! 568: # Initializations.
! 569: #
1.1 root 570: ac_default_prefix=/usr/local
1.1.1.5 ! root 571: ac_clean_files=
! 572: ac_config_libobj_dir=.
! 573: LIBOBJS=
! 574: cross_compiling=no
! 575: subdirs=
! 576: MFLAGS=
! 577: MAKEFLAGS=
! 578:
! 579: # Identity of this package.
! 580: PACKAGE_NAME='GNU Mach'
! 581: PACKAGE_TARNAME='gnumach'
! 582: PACKAGE_VERSION='1.4'
! 583: PACKAGE_STRING='GNU Mach 1.4'
! 584: PACKAGE_BUGREPORT='[email protected]'
! 585: PACKAGE_URL=''
! 586:
! 587: ac_unique_file="kern/ipc_kobject.c"
! 588: ac_subst_vars='am__EXEEXT_FALSE
! 589: am__EXEEXT_TRUE
! 590: LTLIBOBJS
! 591: LIBOBJS
! 592: disable_smashing_stack_protector_FALSE
! 593: disable_smashing_stack_protector_TRUE
! 594: CODE_linux_FALSE
! 595: CODE_linux_TRUE
! 596: device_driver_group_scsi_FALSE
! 597: device_driver_group_scsi_TRUE
! 598: device_driver_group_pcmcia_FALSE
! 599: device_driver_group_pcmcia_TRUE
! 600: device_driver_group_net_FALSE
! 601: device_driver_group_net_TRUE
! 602: device_driver_orinoco_cs_FALSE
! 603: device_driver_orinoco_cs_TRUE
! 604: device_driver_xirc2ps_cs_FALSE
! 605: device_driver_xirc2ps_cs_TRUE
! 606: device_driver_smc91c92_cs_FALSE
! 607: device_driver_smc91c92_cs_TRUE
! 608: device_driver_pcnet_cs_FALSE
! 609: device_driver_pcnet_cs_TRUE
! 610: device_driver_nmclan_cs_FALSE
! 611: device_driver_nmclan_cs_TRUE
! 612: device_driver_fmvj18x_cs_FALSE
! 613: device_driver_fmvj18x_cs_TRUE
! 614: device_driver_axnet_cs_FALSE
! 615: device_driver_axnet_cs_TRUE
! 616: device_driver_3c589_cs_FALSE
! 617: device_driver_3c589_cs_TRUE
! 618: device_driver_3c574_cs_FALSE
! 619: device_driver_3c574_cs_TRUE
! 620: device_driver_pcmcia_isa_FALSE
! 621: device_driver_pcmcia_isa_TRUE
! 622: device_driver_i82365_FALSE
! 623: device_driver_i82365_TRUE
! 624: device_driver_znet_FALSE
! 625: device_driver_znet_TRUE
! 626: device_driver_yellowfin_FALSE
! 627: device_driver_yellowfin_TRUE
! 628: device_driver_winbond_840_FALSE
! 629: device_driver_winbond_840_TRUE
! 630: device_driver_wd_FALSE
! 631: device_driver_wd_TRUE
! 632: device_driver_wavelan_FALSE
! 633: device_driver_wavelan_TRUE
! 634: device_driver_via_rhine_FALSE
! 635: device_driver_via_rhine_TRUE
! 636: device_driver_tulip_FALSE
! 637: device_driver_tulip_TRUE
! 638: device_driver_tlan_FALSE
! 639: device_driver_tlan_TRUE
! 640: device_driver_sundance_FALSE
! 641: device_driver_sundance_TRUE
! 642: device_driver_starfire_FALSE
! 643: device_driver_starfire_TRUE
! 644: device_driver_smc_ultra32_FALSE
! 645: device_driver_smc_ultra32_TRUE
! 646: device_driver_smc_ultra_FALSE
! 647: device_driver_smc_ultra_TRUE
! 648: device_driver_sk_g16_FALSE
! 649: device_driver_sk_g16_TRUE
! 650: device_driver_sis900_FALSE
! 651: device_driver_sis900_TRUE
! 652: device_driver_seeq8005_FALSE
! 653: device_driver_seeq8005_TRUE
! 654: device_driver_rtl8139_FALSE
! 655: device_driver_rtl8139_TRUE
! 656: device_driver_pcnet32_FALSE
! 657: device_driver_pcnet32_TRUE
! 658: device_driver_ns820_FALSE
! 659: device_driver_ns820_TRUE
! 660: device_driver_ni65_FALSE
! 661: device_driver_ni65_TRUE
! 662: device_driver_ni52_FALSE
! 663: device_driver_ni52_TRUE
! 664: device_driver_ne2k_pci_FALSE
! 665: device_driver_ne2k_pci_TRUE
! 666: device_driver_ne_FALSE
! 667: device_driver_ne_TRUE
! 668: device_driver_natsemi_FALSE
! 669: device_driver_natsemi_TRUE
! 670: device_driver_myson803_FALSE
! 671: device_driver_myson803_TRUE
! 672: device_driver_lance_FALSE
! 673: device_driver_lance_TRUE
! 674: device_driver_intel_gige_FALSE
! 675: device_driver_intel_gige_TRUE
! 676: device_driver_hp100_FALSE
! 677: device_driver_hp100_TRUE
! 678: device_driver_hp_FALSE
! 679: device_driver_hp_TRUE
! 680: device_driver_hp_plus_FALSE
! 681: device_driver_hp_plus_TRUE
! 682: device_driver_hamachi_FALSE
! 683: device_driver_hamachi_TRUE
! 684: device_driver_fmv18x_FALSE
! 685: device_driver_fmv18x_TRUE
! 686: device_driver_ewrk3_FALSE
! 687: device_driver_ewrk3_TRUE
! 688: device_driver_eth16i_FALSE
! 689: device_driver_eth16i_TRUE
! 690: device_driver_epic100_FALSE
! 691: device_driver_epic100_TRUE
! 692: device_driver_eexpress_FALSE
! 693: device_driver_eexpress_TRUE
! 694: device_driver_eepro100_FALSE
! 695: device_driver_eepro100_TRUE
! 696: device_driver_eepro_FALSE
! 697: device_driver_eepro_TRUE
! 698: device_driver_e2100_FALSE
! 699: device_driver_e2100_TRUE
! 700: device_driver_depca_FALSE
! 701: device_driver_depca_TRUE
! 702: device_driver_de620_FALSE
! 703: device_driver_de620_TRUE
! 704: device_driver_de600_FALSE
! 705: device_driver_de600_TRUE
! 706: device_driver_de4x5_FALSE
! 707: device_driver_de4x5_TRUE
! 708: device_driver_atp_FALSE
! 709: device_driver_atp_TRUE
! 710: device_driver_at1700_FALSE
! 711: device_driver_at1700_TRUE
! 712: device_driver_apricot_FALSE
! 713: device_driver_apricot_TRUE
! 714: device_driver_ac3200_FALSE
! 715: device_driver_ac3200_TRUE
! 716: device_driver_3c515_FALSE
! 717: device_driver_3c515_TRUE
! 718: device_driver_3c59x_FALSE
! 719: device_driver_3c59x_TRUE
! 720: device_driver_3c509_FALSE
! 721: device_driver_3c509_TRUE
! 722: device_driver_3c507_FALSE
! 723: device_driver_3c507_TRUE
! 724: device_driver_3c505_FALSE
! 725: device_driver_3c505_TRUE
! 726: device_driver_3c503_FALSE
! 727: device_driver_3c503_TRUE
! 728: device_driver_3c501_FALSE
! 729: device_driver_3c501_TRUE
! 730: device_driver_wd7000_FALSE
! 731: device_driver_wd7000_TRUE
! 732: device_driver_ultrastor_FALSE
! 733: device_driver_ultrastor_TRUE
! 734: device_driver_u14_34f_FALSE
! 735: device_driver_u14_34f_TRUE
! 736: device_driver_tmscsim_FALSE
! 737: device_driver_tmscsim_TRUE
! 738: device_driver_t128_FALSE
! 739: device_driver_t128_TRUE
! 740: device_driver_sym53c8xx_FALSE
! 741: device_driver_sym53c8xx_TRUE
! 742: device_driver_seagate_FALSE
! 743: device_driver_seagate_TRUE
! 744: device_driver_qlogicisp_FALSE
! 745: device_driver_qlogicisp_TRUE
! 746: device_driver_qlogicfas_FALSE
! 747: device_driver_qlogicfas_TRUE
! 748: device_driver_ppa_FALSE
! 749: device_driver_ppa_TRUE
! 750: device_driver_pas16_FALSE
! 751: device_driver_pas16_TRUE
! 752: device_driver_ncr53c8xx_FALSE
! 753: device_driver_ncr53c8xx_TRUE
! 754: device_driver_in2000_FALSE
! 755: device_driver_in2000_TRUE
! 756: device_driver_gdth_FALSE
! 757: device_driver_gdth_TRUE
! 758: device_driver_g_NCR5380_FALSE
! 759: device_driver_g_NCR5380_TRUE
! 760: device_driver_fdomain_FALSE
! 761: device_driver_fdomain_TRUE
! 762: device_driver_eata_pio_FALSE
! 763: device_driver_eata_pio_TRUE
! 764: device_driver_eata_dma_FALSE
! 765: device_driver_eata_dma_TRUE
! 766: device_driver_eata_FALSE
! 767: device_driver_eata_TRUE
! 768: device_driver_dtc_FALSE
! 769: device_driver_dtc_TRUE
! 770: device_driver_aic7xxx_FALSE
! 771: device_driver_aic7xxx_TRUE
! 772: device_driver_aha1740_FALSE
! 773: device_driver_aha1740_TRUE
! 774: device_driver_aha1542_FALSE
! 775: device_driver_aha1542_TRUE
! 776: device_driver_aha152x_FALSE
! 777: device_driver_aha152x_TRUE
! 778: device_driver_advansys_FALSE
! 779: device_driver_advansys_TRUE
! 780: device_driver_NCR53c406a_FALSE
! 781: device_driver_NCR53c406a_TRUE
! 782: device_driver_BusLogic_FALSE
! 783: device_driver_BusLogic_TRUE
! 784: device_driver_AM53C974_FALSE
! 785: device_driver_AM53C974_TRUE
! 786: device_driver_53c78xx_FALSE
! 787: device_driver_53c78xx_TRUE
! 788: device_driver_ide_FALSE
! 789: device_driver_ide_TRUE
! 790: device_driver_floppy_FALSE
! 791: device_driver_floppy_TRUE
! 792: enable_kmsg_FALSE
! 793: enable_kmsg_TRUE
! 794: enable_kdb_FALSE
! 795: enable_kdb_TRUE
! 796: enable_pae_FALSE
! 797: enable_pae_TRUE
! 798: enable_lpr_FALSE
! 799: enable_lpr_TRUE
! 800: PLATFORM_at_FALSE
! 801: PLATFORM_at_TRUE
! 802: HOST_ix86_FALSE
! 803: HOST_ix86_TRUE
! 804: enable_ring1_FALSE
! 805: enable_ring1_TRUE
! 806: enable_pv_descriptors_FALSE
! 807: enable_pv_descriptors_TRUE
! 808: enable_pv_pagetables_FALSE
! 809: enable_pv_pagetables_TRUE
! 810: enable_pseudo_phys_FALSE
! 811: enable_pseudo_phys_TRUE
! 812: PLATFORM_xen_FALSE
! 813: PLATFORM_xen_TRUE
! 814: PATCH
! 815: GZIP
! 816: MIG
! 817: NM
! 818: LD
! 819: AR
! 820: RANLIB
! 821: CPP
! 822: am__fastdepCCAS_FALSE
! 823: am__fastdepCCAS_TRUE
! 824: CCASDEPMODE
! 825: CCASFLAGS
! 826: CCAS
! 827: am__fastdepCC_FALSE
! 828: am__fastdepCC_TRUE
! 829: CCDEPMODE
! 830: am__nodep
! 831: AMDEPBACKSLASH
! 832: AMDEP_FALSE
! 833: AMDEP_TRUE
! 834: am__quote
! 835: am__include
! 836: DEPDIR
! 837: OBJEXT
! 838: EXEEXT
! 839: ac_ct_CC
! 840: CPPFLAGS
! 841: LDFLAGS
! 842: CFLAGS
! 843: CC
! 844: systype
! 845: host_platform
! 846: host_os
! 847: host_vendor
! 848: host_cpu
! 849: host
! 850: build_os
! 851: build_vendor
! 852: build_cpu
! 853: build
! 854: AM_BACKSLASH
! 855: AM_DEFAULT_VERBOSITY
! 856: AM_DEFAULT_V
! 857: AM_V
! 858: am__untar
! 859: am__tar
! 860: AMTAR
! 861: am__leading_dot
! 862: SET_MAKE
! 863: AWK
! 864: mkdir_p
! 865: MKDIR_P
! 866: INSTALL_STRIP_PROGRAM
! 867: STRIP
! 868: install_sh
! 869: MAKEINFO
! 870: AUTOHEADER
! 871: AUTOMAKE
! 872: AUTOCONF
! 873: ACLOCAL
! 874: VERSION
! 875: PACKAGE
! 876: CYGPATH_W
! 877: am__isrc
! 878: INSTALL_DATA
! 879: INSTALL_SCRIPT
! 880: INSTALL_PROGRAM
! 881: target_alias
! 882: host_alias
! 883: build_alias
! 884: LIBS
! 885: ECHO_T
! 886: ECHO_N
! 887: ECHO_C
! 888: DEFS
! 889: mandir
! 890: localedir
! 891: libdir
! 892: psdir
! 893: pdfdir
! 894: dvidir
! 895: htmldir
! 896: infodir
! 897: docdir
! 898: oldincludedir
! 899: includedir
! 900: localstatedir
! 901: sharedstatedir
! 902: sysconfdir
! 903: datadir
! 904: datarootdir
! 905: libexecdir
! 906: sbindir
! 907: bindir
! 908: program_transform_name
! 909: prefix
! 910: exec_prefix
! 911: PACKAGE_URL
! 912: PACKAGE_BUGREPORT
! 913: PACKAGE_STRING
! 914: PACKAGE_VERSION
! 915: PACKAGE_TARNAME
! 916: PACKAGE_NAME
! 917: PATH_SEPARATOR
! 918: SHELL'
! 919: ac_subst_files=''
! 920: ac_user_opts='
! 921: enable_option_checking
! 922: enable_silent_rules
! 923: enable_platform
! 924: enable_dependency_tracking
! 925: enable_device_drivers
! 926: enable_pseudo_phys
! 927: enable_pv_pagetables
! 928: enable_pv_descriptors
! 929: enable_ring1
! 930: enable_lpr
! 931: enable_pae
! 932: enable_kdb
! 933: enable_kmsg
! 934: enable_floppy
! 935: enable_ide
! 936: enable_ide_forcedma
! 937: enable_scsi_group
! 938: enable_53c78xx
! 939: enable_AM53C974
! 940: enable_BusLogic
! 941: enable_flashpoint
! 942: enable_NCR53c406a
! 943: enable_advansys
! 944: enable_aha152x
! 945: enable_aha1542
! 946: enable_aha1740
! 947: enable_aic7xxx
! 948: enable_dtc
! 949: enable_eata
! 950: enable_eata_dma
! 951: enable_eata_pio
! 952: enable_fdomain
! 953: enable_g_NCR5380
! 954: enable_gdth
! 955: enable_in2000
! 956: enable_ncr53c8xx
! 957: enable_pas16
! 958: enable_ppa
! 959: enable_qlogicfas
! 960: enable_qlogicisp
! 961: enable_seagate
! 962: enable_sym53c8xx
! 963: enable_t128
! 964: enable_tmscsim
! 965: enable_u14_34f
! 966: enable_ultrastor
! 967: enable_wd7000
! 968: enable_net_group
! 969: enable_3c501
! 970: enable_3c503
! 971: enable_3c505
! 972: enable_3c507
! 973: enable_3c509
! 974: enable_3c59x
! 975: enable_3c515
! 976: enable_ac3200
! 977: enable_apricot
! 978: enable_at1700
! 979: enable_atp
! 980: enable_de4x5
! 981: enable_de600
! 982: enable_de620
! 983: enable_depca
! 984: enable_e2100
! 985: enable_eepro
! 986: enable_eepro100
! 987: enable_eexpress
! 988: enable_epic100
! 989: enable_eth16i
! 990: enable_ewrk3
! 991: enable_fmv18x
! 992: enable_hamachi
! 993: enable_hp_plus
! 994: enable_hp
! 995: enable_hp100
! 996: enable_intel_gige
! 997: enable_lance
! 998: enable_myson803
! 999: enable_natsemi
! 1000: enable_ne
! 1001: enable_ne2k_pci
! 1002: enable_ni52
! 1003: enable_ni65
! 1004: enable_ns820
! 1005: enable_pcnet32
! 1006: enable_rtl8139
! 1007: enable_seeq8005
! 1008: enable_sis900
! 1009: enable_sk_g16
! 1010: enable_smc_ultra
! 1011: enable_smc_ultra32
! 1012: enable_starfire
! 1013: enable_sundance
! 1014: enable_tlan
! 1015: enable_tulip
! 1016: enable_via_rhine
! 1017: enable_wavelan
! 1018: enable_wd
! 1019: enable_winbond_840
! 1020: enable_yellowfin
! 1021: enable_znet
! 1022: enable_pcmcia_group
! 1023: enable_i82365
! 1024: enable_pcmcia_isa
! 1025: enable_3c574_cs
! 1026: enable_3c589_cs
! 1027: enable_axnet_cs
! 1028: enable_fmvj18x_cs
! 1029: enable_nmclan_cs
! 1030: enable_pcnet_cs
! 1031: enable_smc91c92_cs
! 1032: enable_xirc2ps_cs
! 1033: enable_wireless_group
! 1034: enable_orinoco_cs
! 1035: '
! 1036: ac_precious_vars='build_alias
! 1037: host_alias
! 1038: target_alias
! 1039: CC
! 1040: CFLAGS
! 1041: LDFLAGS
! 1042: LIBS
! 1043: CPPFLAGS
! 1044: CCAS
! 1045: CCASFLAGS
! 1046: CPP'
! 1047:
1.1 root 1048:
1049: # Initialize some variables set by options.
1.1.1.5 ! root 1050: ac_init_help=
! 1051: ac_init_version=false
! 1052: ac_unrecognized_opts=
! 1053: ac_unrecognized_sep=
1.1 root 1054: # The variables have the same names as the options, with
1055: # dashes changed to underlines.
1.1.1.5 ! root 1056: cache_file=/dev/null
1.1 root 1057: exec_prefix=NONE
1058: no_create=
1059: no_recursion=
1060: prefix=NONE
1061: program_prefix=NONE
1062: program_suffix=NONE
1063: program_transform_name=s,x,x,
1064: silent=
1065: site=
1066: srcdir=
1067: verbose=
1068: x_includes=NONE
1069: x_libraries=NONE
1.1.1.5 ! root 1070:
! 1071: # Installation directory options.
! 1072: # These are left unexpanded so users can "make install exec_prefix=/foo"
! 1073: # and all the variables that are supposed to be based on exec_prefix
! 1074: # by default will actually change.
! 1075: # Use braces instead of parens because sh, perl, etc. also accept them.
! 1076: # (The list follows the same order as the GNU Coding Standards.)
1.1 root 1077: bindir='${exec_prefix}/bin'
1078: sbindir='${exec_prefix}/sbin'
1079: libexecdir='${exec_prefix}/libexec'
1.1.1.5 ! root 1080: datarootdir='${prefix}/share'
! 1081: datadir='${datarootdir}'
1.1 root 1082: sysconfdir='${prefix}/etc'
1083: sharedstatedir='${prefix}/com'
1084: localstatedir='${prefix}/var'
1085: includedir='${prefix}/include'
1086: oldincludedir='/usr/include'
1.1.1.5 ! root 1087: docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
! 1088: infodir='${datarootdir}/info'
! 1089: htmldir='${docdir}'
! 1090: dvidir='${docdir}'
! 1091: pdfdir='${docdir}'
! 1092: psdir='${docdir}'
! 1093: libdir='${exec_prefix}/lib'
! 1094: localedir='${datarootdir}/locale'
! 1095: mandir='${datarootdir}/man'
1.1 root 1096:
1097: ac_prev=
1.1.1.5 ! root 1098: ac_dashdash=
1.1 root 1099: for ac_option
1100: do
1101: # If the previous option needs an argument, assign it.
1102: if test -n "$ac_prev"; then
1.1.1.5 ! root 1103: eval $ac_prev=\$ac_option
1.1 root 1104: ac_prev=
1105: continue
1106: fi
1107:
1.1.1.5 ! root 1108: case $ac_option in
! 1109: *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
! 1110: *=) ac_optarg= ;;
! 1111: *) ac_optarg=yes ;;
1.1 root 1112: esac
1113:
1114: # Accept the important Cygnus configure options, so we can diagnose typos.
1115:
1.1.1.5 ! root 1116: case $ac_dashdash$ac_option in
! 1117: --)
! 1118: ac_dashdash=yes ;;
1.1 root 1119:
1120: -bindir | --bindir | --bindi | --bind | --bin | --bi)
1121: ac_prev=bindir ;;
1122: -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
1.1.1.5 ! root 1123: bindir=$ac_optarg ;;
1.1 root 1124:
1125: -build | --build | --buil | --bui | --bu)
1.1.1.5 ! root 1126: ac_prev=build_alias ;;
1.1 root 1127: -build=* | --build=* | --buil=* | --bui=* | --bu=*)
1.1.1.5 ! root 1128: build_alias=$ac_optarg ;;
1.1 root 1129:
1130: -cache-file | --cache-file | --cache-fil | --cache-fi \
1131: | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
1132: ac_prev=cache_file ;;
1133: -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
1134: | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
1.1.1.5 ! root 1135: cache_file=$ac_optarg ;;
1.1 root 1136:
1.1.1.5 ! root 1137: --config-cache | -C)
! 1138: cache_file=config.cache ;;
! 1139:
! 1140: -datadir | --datadir | --datadi | --datad)
1.1 root 1141: ac_prev=datadir ;;
1.1.1.5 ! root 1142: -datadir=* | --datadir=* | --datadi=* | --datad=*)
! 1143: datadir=$ac_optarg ;;
! 1144:
! 1145: -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
! 1146: | --dataroo | --dataro | --datar)
! 1147: ac_prev=datarootdir ;;
! 1148: -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
! 1149: | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
! 1150: datarootdir=$ac_optarg ;;
1.1 root 1151:
1152: -disable-* | --disable-*)
1.1.1.5 ! root 1153: ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
1.1 root 1154: # Reject names that are not valid shell variable names.
1.1.1.5 ! root 1155: expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
! 1156: as_fn_error $? "invalid feature name: $ac_useropt"
! 1157: ac_useropt_orig=$ac_useropt
! 1158: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
! 1159: case $ac_user_opts in
! 1160: *"
! 1161: "enable_$ac_useropt"
! 1162: "*) ;;
! 1163: *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
! 1164: ac_unrecognized_sep=', ';;
! 1165: esac
! 1166: eval enable_$ac_useropt=no ;;
! 1167:
! 1168: -docdir | --docdir | --docdi | --doc | --do)
! 1169: ac_prev=docdir ;;
! 1170: -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
! 1171: docdir=$ac_optarg ;;
! 1172:
! 1173: -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
! 1174: ac_prev=dvidir ;;
! 1175: -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
! 1176: dvidir=$ac_optarg ;;
1.1 root 1177:
1178: -enable-* | --enable-*)
1.1.1.5 ! root 1179: ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
1.1 root 1180: # Reject names that are not valid shell variable names.
1.1.1.5 ! root 1181: expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
! 1182: as_fn_error $? "invalid feature name: $ac_useropt"
! 1183: ac_useropt_orig=$ac_useropt
! 1184: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
! 1185: case $ac_user_opts in
! 1186: *"
! 1187: "enable_$ac_useropt"
! 1188: "*) ;;
! 1189: *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
! 1190: ac_unrecognized_sep=', ';;
1.1 root 1191: esac
1.1.1.5 ! root 1192: eval enable_$ac_useropt=\$ac_optarg ;;
1.1 root 1193:
1194: -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
1195: | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
1196: | --exec | --exe | --ex)
1197: ac_prev=exec_prefix ;;
1198: -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
1199: | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
1200: | --exec=* | --exe=* | --ex=*)
1.1.1.5 ! root 1201: exec_prefix=$ac_optarg ;;
1.1 root 1202:
1203: -gas | --gas | --ga | --g)
1204: # Obsolete; use --with-gas.
1205: with_gas=yes ;;
1206:
1.1.1.5 ! root 1207: -help | --help | --hel | --he | -h)
! 1208: ac_init_help=long ;;
! 1209: -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
! 1210: ac_init_help=recursive ;;
! 1211: -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
! 1212: ac_init_help=short ;;
1.1 root 1213:
1214: -host | --host | --hos | --ho)
1.1.1.5 ! root 1215: ac_prev=host_alias ;;
1.1 root 1216: -host=* | --host=* | --hos=* | --ho=*)
1.1.1.5 ! root 1217: host_alias=$ac_optarg ;;
! 1218:
! 1219: -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
! 1220: ac_prev=htmldir ;;
! 1221: -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
! 1222: | --ht=*)
! 1223: htmldir=$ac_optarg ;;
1.1 root 1224:
1225: -includedir | --includedir | --includedi | --included | --include \
1226: | --includ | --inclu | --incl | --inc)
1227: ac_prev=includedir ;;
1228: -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
1229: | --includ=* | --inclu=* | --incl=* | --inc=*)
1.1.1.5 ! root 1230: includedir=$ac_optarg ;;
1.1 root 1231:
1232: -infodir | --infodir | --infodi | --infod | --info | --inf)
1233: ac_prev=infodir ;;
1234: -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
1.1.1.5 ! root 1235: infodir=$ac_optarg ;;
1.1 root 1236:
1237: -libdir | --libdir | --libdi | --libd)
1238: ac_prev=libdir ;;
1239: -libdir=* | --libdir=* | --libdi=* | --libd=*)
1.1.1.5 ! root 1240: libdir=$ac_optarg ;;
1.1 root 1241:
1242: -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
1243: | --libexe | --libex | --libe)
1244: ac_prev=libexecdir ;;
1245: -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
1246: | --libexe=* | --libex=* | --libe=*)
1.1.1.5 ! root 1247: libexecdir=$ac_optarg ;;
! 1248:
! 1249: -localedir | --localedir | --localedi | --localed | --locale)
! 1250: ac_prev=localedir ;;
! 1251: -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
! 1252: localedir=$ac_optarg ;;
1.1 root 1253:
1254: -localstatedir | --localstatedir | --localstatedi | --localstated \
1.1.1.5 ! root 1255: | --localstate | --localstat | --localsta | --localst | --locals)
1.1 root 1256: ac_prev=localstatedir ;;
1257: -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
1.1.1.5 ! root 1258: | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
! 1259: localstatedir=$ac_optarg ;;
1.1 root 1260:
1261: -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
1262: ac_prev=mandir ;;
1263: -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
1.1.1.5 ! root 1264: mandir=$ac_optarg ;;
1.1 root 1265:
1266: -nfp | --nfp | --nf)
1267: # Obsolete; use --without-fp.
1268: with_fp=no ;;
1269:
1270: -no-create | --no-create | --no-creat | --no-crea | --no-cre \
1.1.1.5 ! root 1271: | --no-cr | --no-c | -n)
1.1 root 1272: no_create=yes ;;
1273:
1274: -no-recursion | --no-recursion | --no-recursio | --no-recursi \
1275: | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
1276: no_recursion=yes ;;
1277:
1278: -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
1279: | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
1280: | --oldin | --oldi | --old | --ol | --o)
1281: ac_prev=oldincludedir ;;
1282: -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
1283: | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
1284: | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
1.1.1.5 ! root 1285: oldincludedir=$ac_optarg ;;
1.1 root 1286:
1287: -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
1288: ac_prev=prefix ;;
1289: -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
1.1.1.5 ! root 1290: prefix=$ac_optarg ;;
1.1 root 1291:
1292: -program-prefix | --program-prefix | --program-prefi | --program-pref \
1293: | --program-pre | --program-pr | --program-p)
1294: ac_prev=program_prefix ;;
1295: -program-prefix=* | --program-prefix=* | --program-prefi=* \
1296: | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
1.1.1.5 ! root 1297: program_prefix=$ac_optarg ;;
1.1 root 1298:
1299: -program-suffix | --program-suffix | --program-suffi | --program-suff \
1300: | --program-suf | --program-su | --program-s)
1301: ac_prev=program_suffix ;;
1302: -program-suffix=* | --program-suffix=* | --program-suffi=* \
1303: | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
1.1.1.5 ! root 1304: program_suffix=$ac_optarg ;;
1.1 root 1305:
1306: -program-transform-name | --program-transform-name \
1307: | --program-transform-nam | --program-transform-na \
1308: | --program-transform-n | --program-transform- \
1309: | --program-transform | --program-transfor \
1310: | --program-transfo | --program-transf \
1311: | --program-trans | --program-tran \
1312: | --progr-tra | --program-tr | --program-t)
1313: ac_prev=program_transform_name ;;
1314: -program-transform-name=* | --program-transform-name=* \
1315: | --program-transform-nam=* | --program-transform-na=* \
1316: | --program-transform-n=* | --program-transform-=* \
1317: | --program-transform=* | --program-transfor=* \
1318: | --program-transfo=* | --program-transf=* \
1319: | --program-trans=* | --program-tran=* \
1320: | --progr-tra=* | --program-tr=* | --program-t=*)
1.1.1.5 ! root 1321: program_transform_name=$ac_optarg ;;
! 1322:
! 1323: -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
! 1324: ac_prev=pdfdir ;;
! 1325: -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
! 1326: pdfdir=$ac_optarg ;;
! 1327:
! 1328: -psdir | --psdir | --psdi | --psd | --ps)
! 1329: ac_prev=psdir ;;
! 1330: -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
! 1331: psdir=$ac_optarg ;;
1.1 root 1332:
1333: -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1334: | -silent | --silent | --silen | --sile | --sil)
1335: silent=yes ;;
1336:
1337: -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
1338: ac_prev=sbindir ;;
1339: -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
1340: | --sbi=* | --sb=*)
1.1.1.5 ! root 1341: sbindir=$ac_optarg ;;
1.1 root 1342:
1343: -sharedstatedir | --sharedstatedir | --sharedstatedi \
1344: | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
1345: | --sharedst | --shareds | --shared | --share | --shar \
1346: | --sha | --sh)
1347: ac_prev=sharedstatedir ;;
1348: -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
1349: | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
1350: | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
1351: | --sha=* | --sh=*)
1.1.1.5 ! root 1352: sharedstatedir=$ac_optarg ;;
1.1 root 1353:
1354: -site | --site | --sit)
1355: ac_prev=site ;;
1356: -site=* | --site=* | --sit=*)
1.1.1.5 ! root 1357: site=$ac_optarg ;;
1.1 root 1358:
1359: -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
1360: ac_prev=srcdir ;;
1361: -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
1.1.1.5 ! root 1362: srcdir=$ac_optarg ;;
1.1 root 1363:
1364: -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
1365: | --syscon | --sysco | --sysc | --sys | --sy)
1366: ac_prev=sysconfdir ;;
1367: -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
1368: | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
1.1.1.5 ! root 1369: sysconfdir=$ac_optarg ;;
1.1 root 1370:
1371: -target | --target | --targe | --targ | --tar | --ta | --t)
1.1.1.5 ! root 1372: ac_prev=target_alias ;;
1.1 root 1373: -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
1.1.1.5 ! root 1374: target_alias=$ac_optarg ;;
1.1 root 1375:
1376: -v | -verbose | --verbose | --verbos | --verbo | --verb)
1377: verbose=yes ;;
1378:
1.1.1.5 ! root 1379: -version | --version | --versio | --versi | --vers | -V)
! 1380: ac_init_version=: ;;
1.1 root 1381:
1382: -with-* | --with-*)
1.1.1.5 ! root 1383: ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1.1 root 1384: # Reject names that are not valid shell variable names.
1.1.1.5 ! root 1385: expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
! 1386: as_fn_error $? "invalid package name: $ac_useropt"
! 1387: ac_useropt_orig=$ac_useropt
! 1388: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
! 1389: case $ac_user_opts in
! 1390: *"
! 1391: "with_$ac_useropt"
! 1392: "*) ;;
! 1393: *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
! 1394: ac_unrecognized_sep=', ';;
1.1 root 1395: esac
1.1.1.5 ! root 1396: eval with_$ac_useropt=\$ac_optarg ;;
1.1 root 1397:
1398: -without-* | --without-*)
1.1.1.5 ! root 1399: ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1.1 root 1400: # Reject names that are not valid shell variable names.
1.1.1.5 ! root 1401: expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
! 1402: as_fn_error $? "invalid package name: $ac_useropt"
! 1403: ac_useropt_orig=$ac_useropt
! 1404: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
! 1405: case $ac_user_opts in
! 1406: *"
! 1407: "with_$ac_useropt"
! 1408: "*) ;;
! 1409: *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
! 1410: ac_unrecognized_sep=', ';;
! 1411: esac
! 1412: eval with_$ac_useropt=no ;;
1.1 root 1413:
1414: --x)
1415: # Obsolete; use --with-x.
1416: with_x=yes ;;
1417:
1418: -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
1419: | --x-incl | --x-inc | --x-in | --x-i)
1420: ac_prev=x_includes ;;
1421: -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
1422: | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
1.1.1.5 ! root 1423: x_includes=$ac_optarg ;;
1.1 root 1424:
1425: -x-libraries | --x-libraries | --x-librarie | --x-librari \
1426: | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
1427: ac_prev=x_libraries ;;
1428: -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
1429: | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
1.1.1.5 ! root 1430: x_libraries=$ac_optarg ;;
1.1 root 1431:
1.1.1.5 ! root 1432: -*) as_fn_error $? "unrecognized option: \`$ac_option'
! 1433: Try \`$0 --help' for more information"
1.1 root 1434: ;;
1435:
1.1.1.5 ! root 1436: *=*)
! 1437: ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
! 1438: # Reject names that are not valid shell variable names.
! 1439: case $ac_envvar in #(
! 1440: '' | [0-9]* | *[!_$as_cr_alnum]* )
! 1441: as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
! 1442: esac
! 1443: eval $ac_envvar=\$ac_optarg
! 1444: export $ac_envvar ;;
! 1445:
1.1 root 1446: *)
1.1.1.5 ! root 1447: # FIXME: should be removed in autoconf 3.0.
! 1448: $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
! 1449: expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
! 1450: $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
! 1451: : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
1.1 root 1452: ;;
1453:
1454: esac
1455: done
1456:
1457: if test -n "$ac_prev"; then
1.1.1.5 ! root 1458: ac_option=--`echo $ac_prev | sed 's/_/-/g'`
! 1459: as_fn_error $? "missing argument to $ac_option"
1.1 root 1460: fi
1461:
1.1.1.5 ! root 1462: if test -n "$ac_unrecognized_opts"; then
! 1463: case $enable_option_checking in
! 1464: no) ;;
! 1465: fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
! 1466: *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
! 1467: esac
1.1 root 1468: fi
1469:
1.1.1.5 ! root 1470: # Check all directory arguments for consistency.
! 1471: for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
! 1472: datadir sysconfdir sharedstatedir localstatedir includedir \
! 1473: oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
! 1474: libdir localedir mandir
1.1 root 1475: do
1.1.1.5 ! root 1476: eval ac_val=\$$ac_var
! 1477: # Remove trailing slashes.
! 1478: case $ac_val in
! 1479: */ )
! 1480: ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
! 1481: eval $ac_var=\$ac_val;;
! 1482: esac
! 1483: # Be sure to have absolute directory names.
! 1484: case $ac_val in
! 1485: [\\/$]* | ?:[\\/]* ) continue;;
! 1486: NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
1.1 root 1487: esac
1.1.1.5 ! root 1488: as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
1.1 root 1489: done
1490:
1.1.1.5 ! root 1491: # There might be people who depend on the old broken behavior: `$host'
! 1492: # used to hold the argument of --host etc.
! 1493: # FIXME: To remove some day.
! 1494: build=$build_alias
! 1495: host=$host_alias
! 1496: target=$target_alias
! 1497:
! 1498: # FIXME: To remove some day.
! 1499: if test "x$host_alias" != x; then
! 1500: if test "x$build_alias" = x; then
! 1501: cross_compiling=maybe
! 1502: elif test "x$build_alias" != "x$host_alias"; then
! 1503: cross_compiling=yes
! 1504: fi
! 1505: fi
! 1506:
! 1507: ac_tool_prefix=
! 1508: test -n "$host_alias" && ac_tool_prefix=$host_alias-
! 1509:
! 1510: test "$silent" = yes && exec 6>/dev/null
! 1511:
! 1512:
! 1513: ac_pwd=`pwd` && test -n "$ac_pwd" &&
! 1514: ac_ls_di=`ls -di .` &&
! 1515: ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
! 1516: as_fn_error $? "working directory cannot be determined"
! 1517: test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
! 1518: as_fn_error $? "pwd does not report name of working directory"
1.1 root 1519:
1520:
1521: # Find the source files, if location was not specified.
1522: if test -z "$srcdir"; then
1523: ac_srcdir_defaulted=yes
1.1.1.5 ! root 1524: # Try the directory containing this script, then the parent directory.
! 1525: ac_confdir=`$as_dirname -- "$as_myself" ||
! 1526: $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
! 1527: X"$as_myself" : 'X\(//\)[^/]' \| \
! 1528: X"$as_myself" : 'X\(//\)$' \| \
! 1529: X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
! 1530: $as_echo X"$as_myself" |
! 1531: sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
! 1532: s//\1/
! 1533: q
! 1534: }
! 1535: /^X\(\/\/\)[^/].*/{
! 1536: s//\1/
! 1537: q
! 1538: }
! 1539: /^X\(\/\/\)$/{
! 1540: s//\1/
! 1541: q
! 1542: }
! 1543: /^X\(\/\).*/{
! 1544: s//\1/
! 1545: q
! 1546: }
! 1547: s/.*/./; q'`
1.1 root 1548: srcdir=$ac_confdir
1.1.1.5 ! root 1549: if test ! -r "$srcdir/$ac_unique_file"; then
1.1 root 1550: srcdir=..
1551: fi
1552: else
1553: ac_srcdir_defaulted=no
1554: fi
1.1.1.5 ! root 1555: if test ! -r "$srcdir/$ac_unique_file"; then
! 1556: test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
! 1557: as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
! 1558: fi
! 1559: ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
! 1560: ac_abs_confdir=`(
! 1561: cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
! 1562: pwd)`
! 1563: # When building in place, set srcdir=.
! 1564: if test "$ac_abs_confdir" = "$ac_pwd"; then
! 1565: srcdir=.
! 1566: fi
! 1567: # Remove unnecessary trailing slashes from srcdir.
! 1568: # Double slashes in file names in object file debugging info
! 1569: # mess up M-x gdb in Emacs.
! 1570: case $srcdir in
! 1571: */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
! 1572: esac
! 1573: for ac_var in $ac_precious_vars; do
! 1574: eval ac_env_${ac_var}_set=\${${ac_var}+set}
! 1575: eval ac_env_${ac_var}_value=\$${ac_var}
! 1576: eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
! 1577: eval ac_cv_env_${ac_var}_value=\$${ac_var}
1.1 root 1578: done
1579:
1.1.1.5 ! root 1580: #
! 1581: # Report the --help message.
! 1582: #
! 1583: if test "$ac_init_help" = "long"; then
! 1584: # Omit some internal or obsolete options to make the list less imposing.
! 1585: # This message is too long to be a string in the A/UX 3.1 sh.
! 1586: cat <<_ACEOF
! 1587: \`configure' configures GNU Mach 1.4 to adapt to many kinds of systems.
1.1 root 1588:
1.1.1.5 ! root 1589: Usage: $0 [OPTION]... [VAR=VALUE]...
1.1.1.2 root 1590:
1.1.1.5 ! root 1591: To assign environment variables (e.g., CC, CFLAGS...), specify them as
! 1592: VAR=VALUE. See below for descriptions of some of the useful variables.
1.1.1.4 root 1593:
1.1.1.5 ! root 1594: Defaults for the options are specified in brackets.
1.1.1.4 root 1595:
1.1.1.5 ! root 1596: Configuration:
! 1597: -h, --help display this help and exit
! 1598: --help=short display options specific to this package
! 1599: --help=recursive display the short help of all the included packages
! 1600: -V, --version display version information and exit
! 1601: -q, --quiet, --silent do not print \`checking ...' messages
! 1602: --cache-file=FILE cache test results in FILE [disabled]
! 1603: -C, --config-cache alias for \`--cache-file=config.cache'
! 1604: -n, --no-create do not create output files
! 1605: --srcdir=DIR find the sources in DIR [configure dir or \`..']
1.1 root 1606:
1.1.1.5 ! root 1607: Installation directories:
! 1608: --prefix=PREFIX install architecture-independent files in PREFIX
! 1609: [$ac_default_prefix]
! 1610: --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
! 1611: [PREFIX]
1.1 root 1612:
1.1.1.5 ! root 1613: By default, \`make install' will install all the files in
! 1614: \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
! 1615: an installation prefix other than \`$ac_default_prefix' using \`--prefix',
! 1616: for instance \`--prefix=\$HOME'.
! 1617:
! 1618: For better control, use the options below.
! 1619:
! 1620: Fine tuning of the installation directories:
! 1621: --bindir=DIR user executables [EPREFIX/bin]
! 1622: --sbindir=DIR system admin executables [EPREFIX/sbin]
! 1623: --libexecdir=DIR program executables [EPREFIX/libexec]
! 1624: --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
! 1625: --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
! 1626: --localstatedir=DIR modifiable single-machine data [PREFIX/var]
! 1627: --libdir=DIR object code libraries [EPREFIX/lib]
! 1628: --includedir=DIR C header files [PREFIX/include]
! 1629: --oldincludedir=DIR C header files for non-gcc [/usr/include]
! 1630: --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
! 1631: --datadir=DIR read-only architecture-independent data [DATAROOTDIR]
! 1632: --infodir=DIR info documentation [DATAROOTDIR/info]
! 1633: --localedir=DIR locale-dependent data [DATAROOTDIR/locale]
! 1634: --mandir=DIR man documentation [DATAROOTDIR/man]
! 1635: --docdir=DIR documentation root [DATAROOTDIR/doc/gnumach]
! 1636: --htmldir=DIR html documentation [DOCDIR]
! 1637: --dvidir=DIR dvi documentation [DOCDIR]
! 1638: --pdfdir=DIR pdf documentation [DOCDIR]
! 1639: --psdir=DIR ps documentation [DOCDIR]
! 1640: _ACEOF
! 1641:
! 1642: cat <<\_ACEOF
! 1643:
! 1644: Program names:
! 1645: --program-prefix=PREFIX prepend PREFIX to installed program names
! 1646: --program-suffix=SUFFIX append SUFFIX to installed program names
! 1647: --program-transform-name=PROGRAM run sed PROGRAM on installed program names
! 1648:
! 1649: System types:
! 1650: --build=BUILD configure for building on BUILD [guessed]
! 1651: --host=HOST cross-compile to build programs to run on HOST [BUILD]
! 1652: _ACEOF
! 1653: fi
! 1654:
! 1655: if test -n "$ac_init_help"; then
! 1656: case $ac_init_help in
! 1657: short | recursive ) echo "Configuration of GNU Mach 1.4:";;
! 1658: esac
! 1659: cat <<\_ACEOF
1.1 root 1660:
1.1.1.5 ! root 1661: Optional Features:
! 1662: --disable-option-checking ignore unrecognized --enable/--with options
! 1663: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
! 1664: --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
! 1665: --enable-silent-rules less verbose build output (undo: "make V=1")
! 1666: --disable-silent-rules verbose build output (undo: "make V=0")
! 1667: --enable-platform=PLATFORM
! 1668: specify the platform to build a kernel for. Defaults
! 1669: to `at' for `i?86'. The other possibility is `xen'.
! 1670: --enable-dependency-tracking
! 1671: do not reject slow dependency extractors
! 1672: --disable-dependency-tracking
! 1673: speeds up one-time build
! 1674: --enable-device-drivers=WHICH
! 1675: specify WHICH (on `ix86-at' one of `default',
! 1676: `qemu', `none') to preset a certain subset of all
! 1677: available device drivers, as indicated by the
! 1678: below-metioned ``enabled ...'' comments; you can
! 1679: then still use further `--enable-*' or `--disable-*'
! 1680: options to refine the selection of drivers to
! 1681: include in order to choose only those you actually
! 1682: want to have enabled
! 1683: --disable-pseudo-phys Pseudo physical pages support
! 1684: --disable-pv-pagetables Paravirtualized page tables support
! 1685: --disable-pv-descriptors
! 1686: Paravirtualized segment descriptors support
! 1687: --disable-ring1 ring1 kernel support
! 1688: --enable-lpr lpr device; on ix86-at enabled by default
! 1689: --enable-pae PAE support (ix86-only); on ix86-at disabled by
! 1690: default, on ix86-xen enabled by default
! 1691: --enable-kdb enable use of in-kernel debugger
! 1692: --disable-kmsg disable use of kmsg device
! 1693: --enable-floppy Linux device driver for PC floppy; on ix86-at
! 1694: enabled by default and for qemu
! 1695: --enable-ide Linux device driver for IDE disk controllers; on
! 1696: ix86-at enabled by default and for qemu
! 1697: --enable-ide-forcedma enable forced use of DMA on IDE
! 1698: --enable-scsi-group SCSI drivers
! 1699: --enable-53c78xx Linux device driver for SCSI controller NCR 53C7,8xx
! 1700: --enable-AM53C974 Linux device driver for SCSI controller AM53/79C974
! 1701: (am53c974, am79c974); on ix86-at enabled by default
! 1702: --enable-BusLogic Linux device driver for SCSI controller BusLogic; on
! 1703: ix86-at enabled by default
! 1704: --enable-flashpoint SCSI flashpoint
! 1705: --enable-NCR53c406a Linux device driver for SCSI controller NCR53c406a
! 1706: chip
! 1707: --enable-advansys Linux device driver for SCSI controller AdvanSys; on
! 1708: ix86-at enabled by default
! 1709: --enable-aha152x Linux device driver for SCSI controller Adaptec
! 1710: AHA-152x/2825 (aha152x, aha2825); on ix86-at enabled
! 1711: by default
! 1712: --enable-aha1542 Linux device driver for SCSI controller Adaptec
! 1713: AHA-1542; on ix86-at enabled by default
! 1714: --enable-aha1740 Linux device driver for SCSI controller Adaptec
! 1715: AHA-1740; on ix86-at enabled by default
! 1716: --enable-aic7xxx Linux device driver for SCSI controller Adaptec
! 1717: AIC7xxx
! 1718: --enable-dtc Linux device driver for SCSI controller DTC3180/3280
! 1719: (dtc3180, dtc3280); on ix86-at enabled by default
! 1720: --enable-eata Linux device driver for SCSI controller EATA
! 1721: ISA/EISA/PCI (DPT and generic EATA/DMA-compliant
! 1722: boards); on ix86-at enabled by default
! 1723: --enable-eata_dma Linux device driver for SCSI controller EATA-DMA
! 1724: (DPT, NEC, AT&T, SNI, AST, Olivetti, Alphatronix)
! 1725: --enable-eata_pio Linux device driver for SCSI controller EATA-PIO
! 1726: (old DPT PM2001, PM2012A); on ix86-at enabled by
! 1727: default
! 1728: --enable-fdomain Linux device driver for SCSI controller Future
! 1729: Domain 16xx; on ix86-at enabled by default
! 1730: --enable-g_NCR5380 Linux device driver for SCSI controller Generic
! 1731: NCR5380/53c400 (ncr5380, ncr53c400)
! 1732: --enable-gdth Linux device driver for GDT SCSI Disk Array
! 1733: Controller
! 1734: --enable-in2000 Linux device driver for SCSI controller Always IN
! 1735: 2000; on ix86-at enabled by default
! 1736: --enable-ncr53c8xx Linux device driver for SCSI controller NCR53C8XX
! 1737: (ncr53c8xx, dc390f, dc390u, dc390w); on ix86-at
! 1738: enabled by default
! 1739: --enable-pas16 Linux device driver for SCSI controller PAS16; on
! 1740: ix86-at enabled by default
! 1741: --enable-ppa Linux device driver for IOMEGA Parallel Port ZIP
! 1742: drive; on ix86-at enabled by default
! 1743: --enable-qlogicfas Linux device driver for SCSI controller Qlogic FAS;
! 1744: on ix86-at enabled by default
! 1745: --enable-qlogicisp Linux device driver for SCSI controller Qlogic ISP;
! 1746: on ix86-at enabled by default
! 1747: --enable-seagate Linux device driver for SCSI controller Seagate
! 1748: ST02, Future Domain TMC-8xx; on ix86-at enabled by
! 1749: default
! 1750: --enable-sym53c8xx Linux device driver for SCSI controller Symbios
! 1751: 53C8XX; on ix86-at enabled by default
! 1752: --enable-t128 Linux device driver for SCSI controller Trantor
! 1753: T128/T128F/T228 (t128, t128f, t228); on ix86-at
! 1754: enabled by default
! 1755: --enable-tmscsim Linux device driver for SCSI controller Tekram
! 1756: DC-390(T) (dc390, dc390t); on ix86-at enabled by
! 1757: default
! 1758: --enable-u14-34f Linux device driver for SCSI controller UltraStor
! 1759: 14F/34F; on ix86-at enabled by default
! 1760: --enable-ultrastor Linux device driver for SCSI controller UltraStor;
! 1761: on ix86-at enabled by default
! 1762: --enable-wd7000 Linux device driver for SCSI controller WD 7000; on
! 1763: ix86-at enabled by default
! 1764: --enable-net-group Network drivers
! 1765: --enable-3c501 Linux device driver for Ethernet controller 3COM 501
! 1766: (3c501) / Etherlink I; on ix86-at enabled by default
! 1767: --enable-3c503 Linux device driver for Ethernet controller 3Com 503
! 1768: (3c503) / Etherlink II; on ix86-at enabled by
! 1769: default
! 1770: --enable-3c505 Linux device driver for Ethernet controller 3Com 505
! 1771: (3c505, elplus); on ix86-at enabled by default
! 1772: --enable-3c507 Linux device driver for Ethernet controller 3Com 507
! 1773: (3c507, el16); on ix86-at enabled by default
! 1774: --enable-3c509 Linux device driver for Ethernet controller 3Com
! 1775: 509/579 (3c509, 3c579) / Etherlink III; on ix86-at
! 1776: enabled by default
! 1777: --enable-3c59x Linux device driver for Ethernet controller 3Com
! 1778: 59x/90x (3c59x, 3c590, 3c592, 3c595, 3c597, 3c90x,
! 1779: 3c900, 3c905) "Vortex/Boomerang"; on ix86-at enabled
! 1780: by default
! 1781: --enable-3c515 Linux device driver for Ethernet controller 3Com 515
! 1782: ISA Fast EtherLink; on ix86-at enabled by default
! 1783: --enable-ac3200 Linux device driver for Ethernet controller Ansel
! 1784: Communications EISA 3200; on ix86-at enabled by
! 1785: default
! 1786: --enable-apricot Linux device driver for Ethernet controller Apricot
! 1787: XEN-II on board ethernet; on ix86-at enabled by
! 1788: default
! 1789: --enable-at1700 Linux device driver for Ethernet controller AT1700
! 1790: (Fujitsu 86965); on ix86-at enabled by default
! 1791: --enable-atp Linux device driver for Ethernet controller
! 1792: AT-LAN-TEC/RealTek pocket adaptor
! 1793: --enable-de4x5 Linux device driver for Ethernet controller DE4x5
! 1794: (de4x5, de425, de434, de435, de450, de500); on
! 1795: ix86-at enabled by default
! 1796: --enable-de600 Linux device driver for Ethernet controller D-Link
! 1797: DE-600; on ix86-at enabled by default
! 1798: --enable-de620 Linux device driver for Ethernet controller D-Link
! 1799: DE-620; on ix86-at enabled by default
! 1800: --enable-depca Linux device driver for Ethernet controller DEPCA
! 1801: (de100, de101, de200, de201, de202, de210, de422);
! 1802: on ix86-at enabled by default
! 1803: --enable-e2100 Linux device driver for Ethernet controller
! 1804: Cabletron E21xx; on ix86-at enabled by default
! 1805: --enable-eepro Linux device driver for Ethernet controller
! 1806: EtherExpressPro; on ix86-at enabled by default
! 1807: --enable-eepro100 Linux device driver for Ethernet controller Intel
! 1808: EtherExpressPro PCI 10+/100B/100+; on ix86-at
! 1809: enabled by default
! 1810: --enable-eexpress Linux device driver for Ethernet controller
! 1811: EtherExpress 16; on ix86-at enabled by default
! 1812: --enable-epic100 Linux device driver for Ethernet controller SMC
! 1813: 83c170/175 EPIC/100 (epic, epic100) / EtherPower II;
! 1814: on ix86-at enabled by default
! 1815: --enable-eth16i Linux device driver for Ethernet controller ICL
! 1816: EtherTeam 16i/32 (eth16i, eth32); on ix86-at enabled
! 1817: by default
! 1818: --enable-ewrk3 Linux device driver for Ethernet controller
! 1819: EtherWORKS 3 (ewrk3, de203, de204, de205); on
! 1820: ix86-at enabled by default
! 1821: --enable-fmv18x Linux device driver for Ethernet controller
! 1822: FMV-181/182/183/184; on ix86-at enabled by default
! 1823: --enable-hamachi Linux device driver for Ethernet controller Packet
! 1824: Engines "Hamachi" GNIC-2 Gigabit Ethernet; on
! 1825: ix86-at enabled by default
! 1826: --enable-hp-plus Linux device driver for Ethernet controller HP
! 1827: PCLAN+ (27247B and 27252A); on ix86-at enabled by
! 1828: default
! 1829: --enable-hp Linux device driver for Ethernet controller HP PCLAN
! 1830: (27245 and other 27xxx series); on ix86-at enabled
! 1831: by default
! 1832: --enable-hp100 Linux device driver for Ethernet controller HP
! 1833: 10/100VG PCLAN (ISA, EISA, PCI) (hp100, hpj2577,
! 1834: hpj2573, hpj2585, hp27248b); on ix86-at enabled by
! 1835: default
! 1836: --enable-intel-gige Linux device driver for Ethernet controller Intel
! 1837: PCI Gigabit Ethernet; on ix86-at enabled by default
! 1838: --enable-lance Linux device driver for Ethernet controller AMD
! 1839: LANCE and PCnet (at1500, ne2100); on ix86-at enabled
! 1840: by default
! 1841: --enable-myson803 Linux device driver for Ethernet controller Myson
! 1842: MTD803 Ethernet adapter series; on ix86-at enabled
! 1843: by default
! 1844: --enable-natsemi Linux device driver for Ethernet controller National
! 1845: Semiconductor DP8381x series PCI Ethernet; on
! 1846: ix86-at enabled by default
! 1847: --enable-ne Linux device driver for Ethernet controller
! 1848: NE2000/NE1000 ISA (ne, ne1000, ne2000); on ix86-at
! 1849: enabled by default and for qemu
! 1850: --enable-ne2k-pci Linux device driver for Ethernet controller PCI
! 1851: NE2000; on ix86-at enabled by default
! 1852: --enable-ni52 Linux device driver for Ethernet controller NI5210;
! 1853: on ix86-at enabled by default
! 1854: --enable-ni65 Linux device driver for Ethernet controller NI6510;
! 1855: on ix86-at enabled by default
! 1856: --enable-ns820 Linux device driver for Ethernet controller National
! 1857: Semiconductor DP8382x series PCI Ethernet; on
! 1858: ix86-at enabled by default
! 1859: --enable-pcnet32 Linux device driver for Ethernet controller AMD PCI
! 1860: PCnet32 (PCI bus NE2100 cards); on ix86-at enabled
! 1861: by default
! 1862: --enable-rtl8139 Linux device driver for Ethernet controller RealTek
! 1863: 8129/8139 (rtl8129, rtl8139) (not 8019/8029!); on
! 1864: ix86-at enabled by default
! 1865: --enable-seeq8005 Linux device driver for Ethernet controller
! 1866: Seeq8005; on ix86-at enabled by default
! 1867: --enable-sis900 Linux device driver for Ethernet controller SiS 900;
! 1868: on ix86-at enabled by default
! 1869: --enable-sk_g16 Linux device driver for Ethernet controller
! 1870: Schneider & Koch G16; on ix86-at enabled by default
! 1871: --enable-smc-ultra Linux device driver for Ethernet controller SMC
! 1872: Ultra; on ix86-at enabled by default
! 1873: --enable-smc-ultra32 Linux device driver for Ethernet controller SMC
! 1874: Ultra32; on ix86-at enabled by default
! 1875: --enable-starfire Linux device driver for Ethernet controller Adaptec
! 1876: Starfire network adapter; on ix86-at enabled by
! 1877: default
! 1878: --enable-sundance Linux device driver for Ethernet controller Sundance
! 1879: ST201 "Alta" PCI Ethernet; on ix86-at enabled by
! 1880: default
! 1881: --enable-tlan Linux device driver for Ethernet controller TI
! 1882: ThunderLAN; on ix86-at enabled by default
! 1883: --enable-tulip Linux device driver for Ethernet controller DECchip
! 1884: Tulip (dc21x4x) PCI (elcp, tulip); on ix86-at
! 1885: enabled by default
! 1886: --enable-via-rhine Linux device driver for Ethernet controller VIA
! 1887: Rhine; on ix86-at enabled by default
! 1888: --enable-wavelan Linux device driver for Ethernet controller AT&T
! 1889: WaveLAN & DEC RoamAbout DS
! 1890: --enable-wd Linux device driver for Ethernet controller WD80x3;
! 1891: on ix86-at enabled by default
! 1892: --enable-winbond-840 Linux device driver for Ethernet controller Winbond
! 1893: W89c840 PCI Ethernet; on ix86-at enabled by default
! 1894: --enable-yellowfin Linux device driver for Ethernet controller Packet
! 1895: Engines Yellowfin Gigabit-NIC; on ix86-at enabled by
! 1896: default
! 1897: --enable-znet Linux device driver for Ethernet controller Zenith
! 1898: Z-Note (znet, znote); on ix86-at enabled by default
! 1899: --enable-pcmcia-group PCMCIA drivers
! 1900: --enable-i82365 Linux device driver for Intel 82365 PC Card
! 1901: controller; on ix86-at enabled by default
! 1902: --enable-pcmcia-isa isa bus support in the pcmcia core; on ix86-at
! 1903: enabled by default
! 1904: --enable-3c574_cs Linux device driver for 3Com 3c574 ``RoadRunner''
! 1905: PCMCIA Ethernet; on ix86-at enabled by default
! 1906: --enable-3c589_cs Linux device driver for 3Com 3c589 PCMCIA Ethernet
! 1907: card; on ix86-at enabled by default
! 1908: --enable-axnet_cs Linux device driver for Asix AX88190-based PCMCIA
! 1909: Ethernet adapters; on ix86-at enabled by default
! 1910: --enable-fmvj18x_cs Linux device driver for fmvj18x chipset based PCMCIA
! 1911: Ethernet cards; on ix86-at enabled by default
! 1912: --enable-nmclan_cs Linux device driver for New Media Ethernet LAN
! 1913: PCMCIA cards; on ix86-at enabled by default
! 1914: --enable-pcnet_cs Linux device driver for NS8390-based PCMCIA cards;
! 1915: on ix86-at enabled by default
! 1916: --enable-smc91c92_cs Linux device driver for SMC91c92-based PCMCIA cards;
! 1917: on ix86-at enabled by default
! 1918: --enable-xirc2ps_cs Linux device driver for Xircom CreditCard and
! 1919: Realport PCMCIA ethernet; on ix86-at enabled by
! 1920: default
! 1921: --enable-wireless-group Wireless drivers
! 1922: --enable-orinoco_cs Linux device driver for Hermes or Prism 2 PCMCIA
! 1923: Wireless adapters (Orinoco); on ix86-at enabled by
! 1924: default
! 1925:
! 1926: Some influential environment variables:
! 1927: CC C compiler command
! 1928: CFLAGS C compiler flags
! 1929: LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
! 1930: nonstandard directory <lib dir>
! 1931: LIBS libraries to pass to the linker, e.g. -l<library>
! 1932: CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
! 1933: you have headers in a nonstandard directory <include dir>
! 1934: CCAS assembler compiler command (defaults to CC)
! 1935: CCASFLAGS assembler compiler flags (defaults to CFLAGS)
! 1936: CPP C preprocessor
! 1937:
! 1938: Use these variables to override the choices made by `configure' or to help
! 1939: it to find libraries and programs with nonstandard names/locations.
! 1940:
! 1941: Report bugs to <[email protected]>.
! 1942: General help using GNU software: <http://www.gnu.org/gethelp/>.
! 1943: _ACEOF
! 1944: ac_status=$?
! 1945: fi
! 1946:
! 1947: if test "$ac_init_help" = "recursive"; then
! 1948: # If there are subdirs, report their specific --help.
! 1949: for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
! 1950: test -d "$ac_dir" ||
! 1951: { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
! 1952: continue
! 1953: ac_builddir=.
1.1 root 1954:
1.1.1.5 ! root 1955: case "$ac_dir" in
! 1956: .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
! 1957: *)
! 1958: ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
! 1959: # A ".." for each directory in $ac_dir_suffix.
! 1960: ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
! 1961: case $ac_top_builddir_sub in
! 1962: "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
! 1963: *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1.1 root 1964: esac ;;
1965: esac
1.1.1.5 ! root 1966: ac_abs_top_builddir=$ac_pwd
! 1967: ac_abs_builddir=$ac_pwd$ac_dir_suffix
! 1968: # for backward compatibility:
! 1969: ac_top_builddir=$ac_top_build_prefix
! 1970:
! 1971: case $srcdir in
! 1972: .) # We are building in place.
! 1973: ac_srcdir=.
! 1974: ac_top_srcdir=$ac_top_builddir_sub
! 1975: ac_abs_top_srcdir=$ac_pwd ;;
! 1976: [\\/]* | ?:[\\/]* ) # Absolute name.
! 1977: ac_srcdir=$srcdir$ac_dir_suffix;
! 1978: ac_top_srcdir=$srcdir
! 1979: ac_abs_top_srcdir=$srcdir ;;
! 1980: *) # Relative name.
! 1981: ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
! 1982: ac_top_srcdir=$ac_top_build_prefix$srcdir
! 1983: ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
! 1984: esac
! 1985: ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1.1 root 1986:
1.1.1.5 ! root 1987: cd "$ac_dir" || { ac_status=$?; continue; }
! 1988: # Check for guested configure.
! 1989: if test -f "$ac_srcdir/configure.gnu"; then
! 1990: echo &&
! 1991: $SHELL "$ac_srcdir/configure.gnu" --help=recursive
! 1992: elif test -f "$ac_srcdir/configure"; then
! 1993: echo &&
! 1994: $SHELL "$ac_srcdir/configure" --help=recursive
! 1995: else
! 1996: $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
! 1997: fi || ac_status=$?
! 1998: cd "$ac_pwd" || { ac_status=$?; break; }
! 1999: done
! 2000: fi
1.1 root 2001:
1.1.1.5 ! root 2002: test -n "$ac_init_help" && exit $ac_status
! 2003: if $ac_init_version; then
! 2004: cat <<\_ACEOF
! 2005: GNU Mach configure 1.4
! 2006: generated by GNU Autoconf 2.69
! 2007:
! 2008: Copyright (C) 2012 Free Software Foundation, Inc.
! 2009: This configure script is free software; the Free Software Foundation
! 2010: gives unlimited permission to copy, distribute and modify it.
! 2011: _ACEOF
! 2012: exit
! 2013: fi
! 2014:
! 2015: ## ------------------------ ##
! 2016: ## Autoconf initialization. ##
! 2017: ## ------------------------ ##
! 2018:
! 2019: # ac_fn_c_try_compile LINENO
! 2020: # --------------------------
! 2021: # Try to compile conftest.$ac_ext, and return whether this succeeded.
! 2022: ac_fn_c_try_compile ()
! 2023: {
! 2024: as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
! 2025: rm -f conftest.$ac_objext
! 2026: if { { ac_try="$ac_compile"
! 2027: case "(($ac_try" in
! 2028: *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
! 2029: *) ac_try_echo=$ac_try;;
1.1 root 2030: esac
1.1.1.5 ! root 2031: eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
! 2032: $as_echo "$ac_try_echo"; } >&5
! 2033: (eval "$ac_compile") 2>conftest.err
! 2034: ac_status=$?
! 2035: if test -s conftest.err; then
! 2036: grep -v '^ *+' conftest.err >conftest.er1
! 2037: cat conftest.er1 >&5
! 2038: mv -f conftest.er1 conftest.err
! 2039: fi
! 2040: $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
! 2041: test $ac_status = 0; } && {
! 2042: test -z "$ac_c_werror_flag" ||
! 2043: test ! -s conftest.err
! 2044: } && test -s conftest.$ac_objext; then :
! 2045: ac_retval=0
! 2046: else
! 2047: $as_echo "$as_me: failed program was:" >&5
! 2048: sed 's/^/| /' conftest.$ac_ext >&5
! 2049:
! 2050: ac_retval=1
! 2051: fi
! 2052: eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
! 2053: as_fn_set_status $ac_retval
1.1 root 2054:
1.1.1.5 ! root 2055: } # ac_fn_c_try_compile
! 2056:
! 2057: # ac_fn_c_try_cpp LINENO
! 2058: # ----------------------
! 2059: # Try to preprocess conftest.$ac_ext, and return whether this succeeded.
! 2060: ac_fn_c_try_cpp ()
! 2061: {
! 2062: as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
! 2063: if { { ac_try="$ac_cpp conftest.$ac_ext"
! 2064: case "(($ac_try" in
! 2065: *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
! 2066: *) ac_try_echo=$ac_try;;
1.1.1.2 root 2067: esac
1.1.1.5 ! root 2068: eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
! 2069: $as_echo "$ac_try_echo"; } >&5
! 2070: (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
! 2071: ac_status=$?
! 2072: if test -s conftest.err; then
! 2073: grep -v '^ *+' conftest.err >conftest.er1
! 2074: cat conftest.er1 >&5
! 2075: mv -f conftest.er1 conftest.err
! 2076: fi
! 2077: $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
! 2078: test $ac_status = 0; } > conftest.i && {
! 2079: test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
! 2080: test ! -s conftest.err
! 2081: }; then :
! 2082: ac_retval=0
! 2083: else
! 2084: $as_echo "$as_me: failed program was:" >&5
! 2085: sed 's/^/| /' conftest.$ac_ext >&5
1.1.1.2 root 2086:
1.1.1.5 ! root 2087: ac_retval=1
! 2088: fi
! 2089: eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
! 2090: as_fn_set_status $ac_retval
1.1 root 2091:
1.1.1.5 ! root 2092: } # ac_fn_c_try_cpp
! 2093: cat >config.log <<_ACEOF
! 2094: This file contains any messages produced by compilers while
! 2095: running configure, to aid debugging if configure makes a mistake.
1.1 root 2096:
1.1.1.5 ! root 2097: It was created by GNU Mach $as_me 1.4, which was
! 2098: generated by GNU Autoconf 2.69. Invocation command line was
1.1 root 2099:
1.1.1.5 ! root 2100: $ $0 $@
1.1 root 2101:
1.1.1.5 ! root 2102: _ACEOF
! 2103: exec 5>>config.log
! 2104: {
! 2105: cat <<_ASUNAME
! 2106: ## --------- ##
! 2107: ## Platform. ##
! 2108: ## --------- ##
! 2109:
! 2110: hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
! 2111: uname -m = `(uname -m) 2>/dev/null || echo unknown`
! 2112: uname -r = `(uname -r) 2>/dev/null || echo unknown`
! 2113: uname -s = `(uname -s) 2>/dev/null || echo unknown`
! 2114: uname -v = `(uname -v) 2>/dev/null || echo unknown`
! 2115:
! 2116: /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
! 2117: /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
! 2118:
! 2119: /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
! 2120: /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
! 2121: /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
! 2122: /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown`
! 2123: /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
! 2124: /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
! 2125: /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
1.1 root 2126:
1.1.1.5 ! root 2127: _ASUNAME
1.1.1.2 root 2128:
1.1.1.5 ! root 2129: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 2130: for as_dir in $PATH
! 2131: do
! 2132: IFS=$as_save_IFS
! 2133: test -z "$as_dir" && as_dir=.
! 2134: $as_echo "PATH: $as_dir"
! 2135: done
! 2136: IFS=$as_save_IFS
1.1.1.2 root 2137:
1.1.1.5 ! root 2138: } >&5
1.1.1.2 root 2139:
1.1.1.5 ! root 2140: cat >&5 <<_ACEOF
1.1.1.3 root 2141:
1.1.1.4 root 2142:
1.1.1.5 ! root 2143: ## ----------- ##
! 2144: ## Core tests. ##
! 2145: ## ----------- ##
1.1.1.3 root 2146:
1.1.1.5 ! root 2147: _ACEOF
1.1.1.3 root 2148:
2149:
1.1.1.5 ! root 2150: # Keep a trace of the command line.
! 2151: # Strip out --no-create and --no-recursion so they do not pile up.
! 2152: # Strip out --silent because we don't want to record it for future runs.
! 2153: # Also quote any args containing shell meta-characters.
! 2154: # Make two passes to allow for proper duplicate-argument suppression.
! 2155: ac_configure_args=
! 2156: ac_configure_args0=
! 2157: ac_configure_args1=
! 2158: ac_must_keep_next=false
! 2159: for ac_pass in 1 2
! 2160: do
! 2161: for ac_arg
! 2162: do
! 2163: case $ac_arg in
! 2164: -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
! 2165: -q | -quiet | --quiet | --quie | --qui | --qu | --q \
! 2166: | -silent | --silent | --silen | --sile | --sil)
! 2167: continue ;;
! 2168: *\'*)
! 2169: ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
! 2170: esac
! 2171: case $ac_pass in
! 2172: 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
! 2173: 2)
! 2174: as_fn_append ac_configure_args1 " '$ac_arg'"
! 2175: if test $ac_must_keep_next = true; then
! 2176: ac_must_keep_next=false # Got value, back to normal.
! 2177: else
! 2178: case $ac_arg in
! 2179: *=* | --config-cache | -C | -disable-* | --disable-* \
! 2180: | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
! 2181: | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
! 2182: | -with-* | --with-* | -without-* | --without-* | --x)
! 2183: case "$ac_configure_args0 " in
! 2184: "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
! 2185: esac
! 2186: ;;
! 2187: -* ) ac_must_keep_next=true ;;
! 2188: esac
! 2189: fi
! 2190: as_fn_append ac_configure_args " '$ac_arg'"
1.1.1.3 root 2191: ;;
2192: esac
2193: done
1.1.1.5 ! root 2194: done
! 2195: { ac_configure_args0=; unset ac_configure_args0;}
! 2196: { ac_configure_args1=; unset ac_configure_args1;}
1.1.1.3 root 2197:
1.1.1.5 ! root 2198: # When interrupted or exit'd, cleanup temporary files, and complete
! 2199: # config.log. We remove comments because anyway the quotes in there
! 2200: # would cause problems or look ugly.
! 2201: # WARNING: Use '\'' to represent an apostrophe within the trap.
! 2202: # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
! 2203: trap 'exit_status=$?
! 2204: # Save into config.log some information that might help in debugging.
! 2205: {
! 2206: echo
! 2207:
! 2208: $as_echo "## ---------------- ##
! 2209: ## Cache variables. ##
! 2210: ## ---------------- ##"
! 2211: echo
! 2212: # The following way of writing the cache mishandles newlines in values,
! 2213: (
! 2214: for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
! 2215: eval ac_val=\$$ac_var
! 2216: case $ac_val in #(
! 2217: *${as_nl}*)
! 2218: case $ac_var in #(
! 2219: *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
! 2220: $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
! 2221: esac
! 2222: case $ac_var in #(
! 2223: _ | IFS | as_nl) ;; #(
! 2224: BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
! 2225: *) { eval $ac_var=; unset $ac_var;} ;;
! 2226: esac ;;
! 2227: esac
! 2228: done
! 2229: (set) 2>&1 |
! 2230: case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
! 2231: *${as_nl}ac_space=\ *)
! 2232: sed -n \
! 2233: "s/'\''/'\''\\\\'\'''\''/g;
! 2234: s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
! 2235: ;; #(
! 2236: *)
! 2237: sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
! 2238: ;;
! 2239: esac |
! 2240: sort
! 2241: )
! 2242: echo
! 2243:
! 2244: $as_echo "## ----------------- ##
! 2245: ## Output variables. ##
! 2246: ## ----------------- ##"
! 2247: echo
! 2248: for ac_var in $ac_subst_vars
! 2249: do
! 2250: eval ac_val=\$$ac_var
! 2251: case $ac_val in
! 2252: *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
! 2253: esac
! 2254: $as_echo "$ac_var='\''$ac_val'\''"
! 2255: done | sort
! 2256: echo
! 2257:
! 2258: if test -n "$ac_subst_files"; then
! 2259: $as_echo "## ------------------- ##
! 2260: ## File substitutions. ##
! 2261: ## ------------------- ##"
! 2262: echo
! 2263: for ac_var in $ac_subst_files
! 2264: do
! 2265: eval ac_val=\$$ac_var
! 2266: case $ac_val in
! 2267: *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
! 2268: esac
! 2269: $as_echo "$ac_var='\''$ac_val'\''"
! 2270: done | sort
! 2271: echo
! 2272: fi
1.1.1.3 root 2273:
1.1.1.5 ! root 2274: if test -s confdefs.h; then
! 2275: $as_echo "## ----------- ##
! 2276: ## confdefs.h. ##
! 2277: ## ----------- ##"
! 2278: echo
! 2279: cat confdefs.h
! 2280: echo
! 2281: fi
! 2282: test "$ac_signal" != 0 &&
! 2283: $as_echo "$as_me: caught signal $ac_signal"
! 2284: $as_echo "$as_me: exit $exit_status"
! 2285: } >&5
! 2286: rm -f core *.core core.conftest.* &&
! 2287: rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
! 2288: exit $exit_status
! 2289: ' 0
! 2290: for ac_signal in 1 2 13 15; do
! 2291: trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
! 2292: done
! 2293: ac_signal=0
1.1.1.3 root 2294:
1.1.1.5 ! root 2295: # confdefs.h avoids OS command line length limits that DEFS can exceed.
! 2296: rm -f -r conftest* confdefs.h
1.1.1.4 root 2297:
1.1.1.5 ! root 2298: $as_echo "/* confdefs.h */" > confdefs.h
1.1.1.3 root 2299:
1.1.1.5 ! root 2300: # Predefined preprocessor variables.
! 2301:
! 2302: cat >>confdefs.h <<_ACEOF
! 2303: #define PACKAGE_NAME "$PACKAGE_NAME"
! 2304: _ACEOF
! 2305:
! 2306: cat >>confdefs.h <<_ACEOF
! 2307: #define PACKAGE_TARNAME "$PACKAGE_TARNAME"
! 2308: _ACEOF
! 2309:
! 2310: cat >>confdefs.h <<_ACEOF
! 2311: #define PACKAGE_VERSION "$PACKAGE_VERSION"
! 2312: _ACEOF
! 2313:
! 2314: cat >>confdefs.h <<_ACEOF
! 2315: #define PACKAGE_STRING "$PACKAGE_STRING"
! 2316: _ACEOF
! 2317:
! 2318: cat >>confdefs.h <<_ACEOF
! 2319: #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
! 2320: _ACEOF
! 2321:
! 2322: cat >>confdefs.h <<_ACEOF
! 2323: #define PACKAGE_URL "$PACKAGE_URL"
! 2324: _ACEOF
! 2325:
! 2326:
! 2327: # Let the site file select an alternate cache file if it wants to.
! 2328: # Prefer an explicitly selected file to automatically selected ones.
! 2329: ac_site_file1=NONE
! 2330: ac_site_file2=NONE
! 2331: if test -n "$CONFIG_SITE"; then
! 2332: # We do not want a PATH search for config.site.
! 2333: case $CONFIG_SITE in #((
! 2334: -*) ac_site_file1=./$CONFIG_SITE;;
! 2335: */*) ac_site_file1=$CONFIG_SITE;;
! 2336: *) ac_site_file1=./$CONFIG_SITE;;
! 2337: esac
! 2338: elif test "x$prefix" != xNONE; then
! 2339: ac_site_file1=$prefix/share/config.site
! 2340: ac_site_file2=$prefix/etc/config.site
! 2341: else
! 2342: ac_site_file1=$ac_default_prefix/share/config.site
! 2343: ac_site_file2=$ac_default_prefix/etc/config.site
! 2344: fi
! 2345: for ac_site_file in "$ac_site_file1" "$ac_site_file2"
! 2346: do
! 2347: test "x$ac_site_file" = xNONE && continue
! 2348: if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
! 2349: { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
! 2350: $as_echo "$as_me: loading site script $ac_site_file" >&6;}
! 2351: sed 's/^/| /' "$ac_site_file" >&5
! 2352: . "$ac_site_file" \
! 2353: || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
! 2354: $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
! 2355: as_fn_error $? "failed to load site script $ac_site_file
! 2356: See \`config.log' for more details" "$LINENO" 5; }
! 2357: fi
! 2358: done
! 2359:
! 2360: if test -r "$cache_file"; then
! 2361: # Some versions of bash will fail to source /dev/null (special files
! 2362: # actually), so we avoid doing that. DJGPP emulates it as a regular file.
! 2363: if test /dev/null != "$cache_file" && test -f "$cache_file"; then
! 2364: { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
! 2365: $as_echo "$as_me: loading cache $cache_file" >&6;}
! 2366: case $cache_file in
! 2367: [\\/]* | ?:[\\/]* ) . "$cache_file";;
! 2368: *) . "./$cache_file";;
! 2369: esac
! 2370: fi
! 2371: else
! 2372: { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
! 2373: $as_echo "$as_me: creating cache $cache_file" >&6;}
! 2374: >$cache_file
! 2375: fi
! 2376:
! 2377: # Check that the precious variables saved in the cache have kept the same
! 2378: # value.
! 2379: ac_cache_corrupted=false
! 2380: for ac_var in $ac_precious_vars; do
! 2381: eval ac_old_set=\$ac_cv_env_${ac_var}_set
! 2382: eval ac_new_set=\$ac_env_${ac_var}_set
! 2383: eval ac_old_val=\$ac_cv_env_${ac_var}_value
! 2384: eval ac_new_val=\$ac_env_${ac_var}_value
! 2385: case $ac_old_set,$ac_new_set in
! 2386: set,)
! 2387: { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
! 2388: $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
! 2389: ac_cache_corrupted=: ;;
! 2390: ,set)
! 2391: { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
! 2392: $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
! 2393: ac_cache_corrupted=: ;;
! 2394: ,);;
! 2395: *)
! 2396: if test "x$ac_old_val" != "x$ac_new_val"; then
! 2397: # differences in whitespace do not lead to failure.
! 2398: ac_old_val_w=`echo x $ac_old_val`
! 2399: ac_new_val_w=`echo x $ac_new_val`
! 2400: if test "$ac_old_val_w" != "$ac_new_val_w"; then
! 2401: { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
! 2402: $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
! 2403: ac_cache_corrupted=:
! 2404: else
! 2405: { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
! 2406: $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
! 2407: eval $ac_var=\$ac_old_val
! 2408: fi
! 2409: { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5
! 2410: $as_echo "$as_me: former value: \`$ac_old_val'" >&2;}
! 2411: { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5
! 2412: $as_echo "$as_me: current value: \`$ac_new_val'" >&2;}
! 2413: fi;;
! 2414: esac
! 2415: # Pass precious variables to config.status.
! 2416: if test "$ac_new_set" = set; then
! 2417: case $ac_new_val in
! 2418: *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
! 2419: *) ac_arg=$ac_var=$ac_new_val ;;
! 2420: esac
! 2421: case " $ac_configure_args " in
! 2422: *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
! 2423: *) as_fn_append ac_configure_args " '$ac_arg'" ;;
! 2424: esac
! 2425: fi
! 2426: done
! 2427: if $ac_cache_corrupted; then
! 2428: { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
! 2429: $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
! 2430: { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
! 2431: $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
! 2432: as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
! 2433: fi
! 2434: ## -------------------- ##
! 2435: ## Main body of script. ##
! 2436: ## -------------------- ##
! 2437:
! 2438: ac_ext=c
! 2439: ac_cpp='$CPP $CPPFLAGS'
! 2440: ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
! 2441: ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
! 2442: ac_compiler_gnu=$ac_cv_c_compiler_gnu
! 2443:
! 2444:
! 2445:
! 2446:
! 2447: ac_aux_dir=
! 2448: for ac_dir in build-aux "$srcdir"/build-aux; do
! 2449: if test -f "$ac_dir/install-sh"; then
! 2450: ac_aux_dir=$ac_dir
! 2451: ac_install_sh="$ac_aux_dir/install-sh -c"
! 2452: break
! 2453: elif test -f "$ac_dir/install.sh"; then
! 2454: ac_aux_dir=$ac_dir
! 2455: ac_install_sh="$ac_aux_dir/install.sh -c"
! 2456: break
! 2457: elif test -f "$ac_dir/shtool"; then
! 2458: ac_aux_dir=$ac_dir
! 2459: ac_install_sh="$ac_aux_dir/shtool install -c"
! 2460: break
! 2461: fi
! 2462: done
! 2463: if test -z "$ac_aux_dir"; then
! 2464: as_fn_error $? "cannot find install-sh, install.sh, or shtool in build-aux \"$srcdir\"/build-aux" "$LINENO" 5
! 2465: fi
! 2466:
! 2467: # These three variables are undocumented and unsupported,
! 2468: # and are intended to be withdrawn in a future Autoconf release.
! 2469: # They can cause serious problems if a builder's source tree is in a directory
! 2470: # whose full name contains unusual characters.
! 2471: ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var.
! 2472: ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
! 2473: ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
! 2474:
! 2475:
! 2476:
! 2477: am__api_version='1.13'
! 2478:
! 2479: # Find a good install program. We prefer a C program (faster),
! 2480: # so one script is as good as another. But avoid the broken or
! 2481: # incompatible versions:
! 2482: # SysV /etc/install, /usr/sbin/install
! 2483: # SunOS /usr/etc/install
! 2484: # IRIX /sbin/install
! 2485: # AIX /bin/install
! 2486: # AmigaOS /C/install, which installs bootblocks on floppy discs
! 2487: # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
! 2488: # AFS /usr/afsws/bin/install, which mishandles nonexistent args
! 2489: # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
! 2490: # OS/2's system install, which has a completely different semantic
! 2491: # ./install, which can be erroneously created by make from ./install.sh.
! 2492: # Reject install programs that cannot install multiple files.
! 2493: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
! 2494: $as_echo_n "checking for a BSD-compatible install... " >&6; }
! 2495: if test -z "$INSTALL"; then
! 2496: if ${ac_cv_path_install+:} false; then :
! 2497: $as_echo_n "(cached) " >&6
! 2498: else
! 2499: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 2500: for as_dir in $PATH
! 2501: do
! 2502: IFS=$as_save_IFS
! 2503: test -z "$as_dir" && as_dir=.
! 2504: # Account for people who put trailing slashes in PATH elements.
! 2505: case $as_dir/ in #((
! 2506: ./ | .// | /[cC]/* | \
! 2507: /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
! 2508: ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
! 2509: /usr/ucb/* ) ;;
! 2510: *)
! 2511: # OSF1 and SCO ODT 3.0 have their own names for install.
! 2512: # Don't use installbsd from OSF since it installs stuff as root
! 2513: # by default.
! 2514: for ac_prog in ginstall scoinst install; do
! 2515: for ac_exec_ext in '' $ac_executable_extensions; do
! 2516: if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
! 2517: if test $ac_prog = install &&
! 2518: grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
! 2519: # AIX install. It has an incompatible calling convention.
! 2520: :
! 2521: elif test $ac_prog = install &&
! 2522: grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
! 2523: # program-specific install script used by HP pwplus--don't use.
! 2524: :
! 2525: else
! 2526: rm -rf conftest.one conftest.two conftest.dir
! 2527: echo one > conftest.one
! 2528: echo two > conftest.two
! 2529: mkdir conftest.dir
! 2530: if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
! 2531: test -s conftest.one && test -s conftest.two &&
! 2532: test -s conftest.dir/conftest.one &&
! 2533: test -s conftest.dir/conftest.two
! 2534: then
! 2535: ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
! 2536: break 3
! 2537: fi
! 2538: fi
! 2539: fi
! 2540: done
! 2541: done
! 2542: ;;
! 2543: esac
! 2544:
! 2545: done
! 2546: IFS=$as_save_IFS
! 2547:
! 2548: rm -rf conftest.one conftest.two conftest.dir
! 2549:
! 2550: fi
! 2551: if test "${ac_cv_path_install+set}" = set; then
! 2552: INSTALL=$ac_cv_path_install
! 2553: else
! 2554: # As a last resort, use the slow shell script. Don't cache a
! 2555: # value for INSTALL within a source directory, because that will
! 2556: # break other packages using the cache if that directory is
! 2557: # removed, or if the value is a relative name.
! 2558: INSTALL=$ac_install_sh
! 2559: fi
! 2560: fi
! 2561: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
! 2562: $as_echo "$INSTALL" >&6; }
! 2563:
! 2564: # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
! 2565: # It thinks the first close brace ends the variable substitution.
! 2566: test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
! 2567:
! 2568: test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
! 2569:
! 2570: test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
! 2571:
! 2572: { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
! 2573: $as_echo_n "checking whether build environment is sane... " >&6; }
! 2574: # Reject unsafe characters in $srcdir or the absolute working directory
! 2575: # name. Accept space and tab only in the latter.
! 2576: am_lf='
! 2577: '
! 2578: case `pwd` in
! 2579: *[\\\"\#\$\&\'\`$am_lf]*)
! 2580: as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
! 2581: esac
! 2582: case $srcdir in
! 2583: *[\\\"\#\$\&\'\`$am_lf\ \ ]*)
! 2584: as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;;
! 2585: esac
! 2586:
! 2587: # Do 'set' in a subshell so we don't clobber the current shell's
! 2588: # arguments. Must try -L first in case configure is actually a
! 2589: # symlink; some systems play weird games with the mod time of symlinks
! 2590: # (eg FreeBSD returns the mod time of the symlink's containing
! 2591: # directory).
! 2592: if (
! 2593: am_has_slept=no
! 2594: for am_try in 1 2; do
! 2595: echo "timestamp, slept: $am_has_slept" > conftest.file
! 2596: set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
! 2597: if test "$*" = "X"; then
! 2598: # -L didn't work.
! 2599: set X `ls -t "$srcdir/configure" conftest.file`
! 2600: fi
! 2601: if test "$*" != "X $srcdir/configure conftest.file" \
! 2602: && test "$*" != "X conftest.file $srcdir/configure"; then
! 2603:
! 2604: # If neither matched, then we have a broken ls. This can happen
! 2605: # if, for instance, CONFIG_SHELL is bash and it inherits a
! 2606: # broken ls alias from the environment. This has actually
! 2607: # happened. Such a system could not be considered "sane".
! 2608: as_fn_error $? "ls -t appears to fail. Make sure there is not a broken
! 2609: alias in your environment" "$LINENO" 5
! 2610: fi
! 2611: if test "$2" = conftest.file || test $am_try -eq 2; then
! 2612: break
! 2613: fi
! 2614: # Just in case.
! 2615: sleep 1
! 2616: am_has_slept=yes
! 2617: done
! 2618: test "$2" = conftest.file
! 2619: )
! 2620: then
! 2621: # Ok.
! 2622: :
! 2623: else
! 2624: as_fn_error $? "newly created file is older than distributed files!
! 2625: Check your system clock" "$LINENO" 5
! 2626: fi
! 2627: { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
! 2628: $as_echo "yes" >&6; }
! 2629: # If we didn't sleep, we still need to ensure time stamps of config.status and
! 2630: # generated files are strictly newer.
! 2631: am_sleep_pid=
! 2632: if grep 'slept: no' conftest.file >/dev/null 2>&1; then
! 2633: ( sleep 1 ) &
! 2634: am_sleep_pid=$!
! 2635: fi
! 2636:
! 2637: rm -f conftest.file
! 2638:
! 2639: test "$program_prefix" != NONE &&
! 2640: program_transform_name="s&^&$program_prefix&;$program_transform_name"
! 2641: # Use a double $ so make ignores it.
! 2642: test "$program_suffix" != NONE &&
! 2643: program_transform_name="s&\$&$program_suffix&;$program_transform_name"
! 2644: # Double any \ or $.
! 2645: # By default was `s,x,x', remove it if useless.
! 2646: ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
! 2647: program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
! 2648:
! 2649: # expand $ac_aux_dir to an absolute path
! 2650: am_aux_dir=`cd $ac_aux_dir && pwd`
! 2651:
! 2652: if test x"${MISSING+set}" != xset; then
! 2653: case $am_aux_dir in
! 2654: *\ * | *\ *)
! 2655: MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
! 2656: *)
! 2657: MISSING="\${SHELL} $am_aux_dir/missing" ;;
! 2658: esac
! 2659: fi
! 2660: # Use eval to expand $SHELL
! 2661: if eval "$MISSING --is-lightweight"; then
! 2662: am_missing_run="$MISSING "
! 2663: else
! 2664: am_missing_run=
! 2665: { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
! 2666: $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
! 2667: fi
! 2668:
! 2669: if test x"${install_sh}" != xset; then
! 2670: case $am_aux_dir in
! 2671: *\ * | *\ *)
! 2672: install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
! 2673: *)
! 2674: install_sh="\${SHELL} $am_aux_dir/install-sh"
! 2675: esac
! 2676: fi
! 2677:
! 2678: # Installed binaries are usually stripped using 'strip' when the user
! 2679: # run "make install-strip". However 'strip' might not be the right
! 2680: # tool to use in cross-compilation environments, therefore Automake
! 2681: # will honor the 'STRIP' environment variable to overrule this program.
! 2682: if test "$cross_compiling" != no; then
! 2683: if test -n "$ac_tool_prefix"; then
! 2684: # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
! 2685: set dummy ${ac_tool_prefix}strip; ac_word=$2
! 2686: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 2687: $as_echo_n "checking for $ac_word... " >&6; }
! 2688: if ${ac_cv_prog_STRIP+:} false; then :
! 2689: $as_echo_n "(cached) " >&6
! 2690: else
! 2691: if test -n "$STRIP"; then
! 2692: ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
! 2693: else
! 2694: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 2695: for as_dir in $PATH
! 2696: do
! 2697: IFS=$as_save_IFS
! 2698: test -z "$as_dir" && as_dir=.
! 2699: for ac_exec_ext in '' $ac_executable_extensions; do
! 2700: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 2701: ac_cv_prog_STRIP="${ac_tool_prefix}strip"
! 2702: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 2703: break 2
! 2704: fi
! 2705: done
! 2706: done
! 2707: IFS=$as_save_IFS
! 2708:
! 2709: fi
! 2710: fi
! 2711: STRIP=$ac_cv_prog_STRIP
! 2712: if test -n "$STRIP"; then
! 2713: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
! 2714: $as_echo "$STRIP" >&6; }
! 2715: else
! 2716: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 2717: $as_echo "no" >&6; }
! 2718: fi
! 2719:
! 2720:
! 2721: fi
! 2722: if test -z "$ac_cv_prog_STRIP"; then
! 2723: ac_ct_STRIP=$STRIP
! 2724: # Extract the first word of "strip", so it can be a program name with args.
! 2725: set dummy strip; ac_word=$2
! 2726: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 2727: $as_echo_n "checking for $ac_word... " >&6; }
! 2728: if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
! 2729: $as_echo_n "(cached) " >&6
! 2730: else
! 2731: if test -n "$ac_ct_STRIP"; then
! 2732: ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
! 2733: else
! 2734: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 2735: for as_dir in $PATH
! 2736: do
! 2737: IFS=$as_save_IFS
! 2738: test -z "$as_dir" && as_dir=.
! 2739: for ac_exec_ext in '' $ac_executable_extensions; do
! 2740: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 2741: ac_cv_prog_ac_ct_STRIP="strip"
! 2742: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 2743: break 2
! 2744: fi
! 2745: done
! 2746: done
! 2747: IFS=$as_save_IFS
! 2748:
! 2749: fi
! 2750: fi
! 2751: ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
! 2752: if test -n "$ac_ct_STRIP"; then
! 2753: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
! 2754: $as_echo "$ac_ct_STRIP" >&6; }
! 2755: else
! 2756: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 2757: $as_echo "no" >&6; }
! 2758: fi
! 2759:
! 2760: if test "x$ac_ct_STRIP" = x; then
! 2761: STRIP=":"
! 2762: else
! 2763: case $cross_compiling:$ac_tool_warned in
! 2764: yes:)
! 2765: { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
! 2766: $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
! 2767: ac_tool_warned=yes ;;
! 2768: esac
! 2769: STRIP=$ac_ct_STRIP
! 2770: fi
! 2771: else
! 2772: STRIP="$ac_cv_prog_STRIP"
! 2773: fi
! 2774:
! 2775: fi
! 2776: INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
! 2777:
! 2778: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
! 2779: $as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
! 2780: if test -z "$MKDIR_P"; then
! 2781: if ${ac_cv_path_mkdir+:} false; then :
! 2782: $as_echo_n "(cached) " >&6
! 2783: else
! 2784: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 2785: for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
! 2786: do
! 2787: IFS=$as_save_IFS
! 2788: test -z "$as_dir" && as_dir=.
! 2789: for ac_prog in mkdir gmkdir; do
! 2790: for ac_exec_ext in '' $ac_executable_extensions; do
! 2791: as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
! 2792: case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
! 2793: 'mkdir (GNU coreutils) '* | \
! 2794: 'mkdir (coreutils) '* | \
! 2795: 'mkdir (fileutils) '4.1*)
! 2796: ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
! 2797: break 3;;
! 2798: esac
! 2799: done
! 2800: done
! 2801: done
! 2802: IFS=$as_save_IFS
! 2803:
! 2804: fi
! 2805:
! 2806: test -d ./--version && rmdir ./--version
! 2807: if test "${ac_cv_path_mkdir+set}" = set; then
! 2808: MKDIR_P="$ac_cv_path_mkdir -p"
! 2809: else
! 2810: # As a last resort, use the slow shell script. Don't cache a
! 2811: # value for MKDIR_P within a source directory, because that will
! 2812: # break other packages using the cache if that directory is
! 2813: # removed, or if the value is a relative name.
! 2814: MKDIR_P="$ac_install_sh -d"
! 2815: fi
! 2816: fi
! 2817: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
! 2818: $as_echo "$MKDIR_P" >&6; }
! 2819:
! 2820: for ac_prog in gawk mawk nawk awk
! 2821: do
! 2822: # Extract the first word of "$ac_prog", so it can be a program name with args.
1.1.1.3 root 2823: set dummy $ac_prog; ac_word=$2
1.1.1.5 ! root 2824: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 2825: $as_echo_n "checking for $ac_word... " >&6; }
! 2826: if ${ac_cv_prog_AWK+:} false; then :
! 2827: $as_echo_n "(cached) " >&6
1.1.1.3 root 2828: else
2829: if test -n "$AWK"; then
2830: ac_cv_prog_AWK="$AWK" # Let the user override the test.
2831: else
1.1.1.5 ! root 2832: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 2833: for as_dir in $PATH
! 2834: do
! 2835: IFS=$as_save_IFS
! 2836: test -z "$as_dir" && as_dir=.
! 2837: for ac_exec_ext in '' $ac_executable_extensions; do
! 2838: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 2839: ac_cv_prog_AWK="$ac_prog"
! 2840: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 2841: break 2
! 2842: fi
! 2843: done
! 2844: done
! 2845: IFS=$as_save_IFS
! 2846:
! 2847: fi
! 2848: fi
! 2849: AWK=$ac_cv_prog_AWK
! 2850: if test -n "$AWK"; then
! 2851: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
! 2852: $as_echo "$AWK" >&6; }
! 2853: else
! 2854: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 2855: $as_echo "no" >&6; }
! 2856: fi
! 2857:
! 2858:
! 2859: test -n "$AWK" && break
! 2860: done
! 2861:
! 2862: { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
! 2863: $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
! 2864: set x ${MAKE-make}
! 2865: ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
! 2866: if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
! 2867: $as_echo_n "(cached) " >&6
! 2868: else
! 2869: cat >conftest.make <<\_ACEOF
! 2870: SHELL = /bin/sh
! 2871: all:
! 2872: @echo '@@@%%%=$(MAKE)=@@@%%%'
! 2873: _ACEOF
! 2874: # GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
! 2875: case `${MAKE-make} -f conftest.make 2>/dev/null` in
! 2876: *@@@%%%=?*=@@@%%%*)
! 2877: eval ac_cv_prog_make_${ac_make}_set=yes;;
! 2878: *)
! 2879: eval ac_cv_prog_make_${ac_make}_set=no;;
! 2880: esac
! 2881: rm -f conftest.make
! 2882: fi
! 2883: if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
! 2884: { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
! 2885: $as_echo "yes" >&6; }
! 2886: SET_MAKE=
! 2887: else
! 2888: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 2889: $as_echo "no" >&6; }
! 2890: SET_MAKE="MAKE=${MAKE-make}"
! 2891: fi
! 2892:
! 2893: rm -rf .tst 2>/dev/null
! 2894: mkdir .tst 2>/dev/null
! 2895: if test -d .tst; then
! 2896: am__leading_dot=.
! 2897: else
! 2898: am__leading_dot=_
! 2899: fi
! 2900: rmdir .tst 2>/dev/null
! 2901:
! 2902: # Check whether --enable-silent-rules was given.
! 2903: if test "${enable_silent_rules+set}" = set; then :
! 2904: enableval=$enable_silent_rules;
! 2905: fi
! 2906:
! 2907: case $enable_silent_rules in # (((
! 2908: yes) AM_DEFAULT_VERBOSITY=0;;
! 2909: no) AM_DEFAULT_VERBOSITY=1;;
! 2910: *) AM_DEFAULT_VERBOSITY=1;;
! 2911: esac
! 2912: am_make=${MAKE-make}
! 2913: { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
! 2914: $as_echo_n "checking whether $am_make supports nested variables... " >&6; }
! 2915: if ${am_cv_make_support_nested_variables+:} false; then :
! 2916: $as_echo_n "(cached) " >&6
! 2917: else
! 2918: if $as_echo 'TRUE=$(BAR$(V))
! 2919: BAR0=false
! 2920: BAR1=true
! 2921: V=1
! 2922: am__doit:
! 2923: @$(TRUE)
! 2924: .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
! 2925: am_cv_make_support_nested_variables=yes
! 2926: else
! 2927: am_cv_make_support_nested_variables=no
! 2928: fi
! 2929: fi
! 2930: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
! 2931: $as_echo "$am_cv_make_support_nested_variables" >&6; }
! 2932: if test $am_cv_make_support_nested_variables = yes; then
! 2933: AM_V='$(V)'
! 2934: AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
! 2935: else
! 2936: AM_V=$AM_DEFAULT_VERBOSITY
! 2937: AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
! 2938: fi
! 2939: AM_BACKSLASH='\'
! 2940:
! 2941: if test "`cd $srcdir && pwd`" != "`pwd`"; then
! 2942: # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
! 2943: # is not polluted with repeated "-I."
! 2944: am__isrc=' -I$(srcdir)'
! 2945: # test to see if srcdir already configured
! 2946: if test -f $srcdir/config.status; then
! 2947: as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
! 2948: fi
! 2949: fi
! 2950:
! 2951: # test whether we have cygpath
! 2952: if test -z "$CYGPATH_W"; then
! 2953: if (cygpath --version) >/dev/null 2>/dev/null; then
! 2954: CYGPATH_W='cygpath -w'
! 2955: else
! 2956: CYGPATH_W=echo
! 2957: fi
! 2958: fi
! 2959:
! 2960:
! 2961: # Define the identity of the package.
! 2962: PACKAGE='gnumach'
! 2963: VERSION='1.4'
! 2964:
! 2965:
! 2966: # Some tools Automake needs.
! 2967:
! 2968: ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
! 2969:
! 2970:
! 2971: AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
! 2972:
! 2973:
! 2974: AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
! 2975:
! 2976:
! 2977: AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
! 2978:
! 2979:
! 2980: MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
! 2981:
! 2982: # For better backward compatibility. To be removed once Automake 1.9.x
! 2983: # dies out for good. For more background, see:
! 2984: # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
! 2985: # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
! 2986: mkdir_p='$(MKDIR_P)'
! 2987:
! 2988: # We need awk for the "check" target. The system "awk" is bad on
! 2989: # some platforms.
! 2990: # Always define AMTAR for backward compatibility. Yes, it's still used
! 2991: # in the wild :-( We should find a proper way to deprecate it ...
! 2992: AMTAR='$${TAR-tar}'
! 2993:
! 2994:
! 2995: # We'll loop over all known methods to create a tar archive until one works.
! 2996: _am_tools='gnutar pax cpio none'
! 2997:
! 2998: am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
! 2999:
! 3000:
! 3001:
! 3002:
! 3003:
! 3004:
! 3005:
! 3006: # Check whether --enable-silent-rules was given.
! 3007: if test "${enable_silent_rules+set}" = set; then :
! 3008: enableval=$enable_silent_rules;
! 3009: fi
! 3010:
! 3011: case $enable_silent_rules in # (((
! 3012: yes) AM_DEFAULT_VERBOSITY=0;;
! 3013: no) AM_DEFAULT_VERBOSITY=1;;
! 3014: *) AM_DEFAULT_VERBOSITY=1;;
! 3015: esac
! 3016: am_make=${MAKE-make}
! 3017: { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
! 3018: $as_echo_n "checking whether $am_make supports nested variables... " >&6; }
! 3019: if ${am_cv_make_support_nested_variables+:} false; then :
! 3020: $as_echo_n "(cached) " >&6
! 3021: else
! 3022: if $as_echo 'TRUE=$(BAR$(V))
! 3023: BAR0=false
! 3024: BAR1=true
! 3025: V=1
! 3026: am__doit:
! 3027: @$(TRUE)
! 3028: .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
! 3029: am_cv_make_support_nested_variables=yes
! 3030: else
! 3031: am_cv_make_support_nested_variables=no
! 3032: fi
! 3033: fi
! 3034: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
! 3035: $as_echo "$am_cv_make_support_nested_variables" >&6; }
! 3036: if test $am_cv_make_support_nested_variables = yes; then
! 3037: AM_V='$(V)'
! 3038: AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
! 3039: else
! 3040: AM_V=$AM_DEFAULT_VERBOSITY
! 3041: AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
! 3042: fi
! 3043: AM_BACKSLASH='\'
! 3044:
! 3045:
! 3046: #
! 3047: # Deduce the architecture we're building for.
! 3048: #
! 3049: # TODO: Should we also support constructs like `i686_xen-pc-gnu' or
! 3050: # `i686-pc_xen-gnu'?
! 3051:
! 3052: # Make sure we can run config.sub.
! 3053: $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
! 3054: as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
! 3055:
! 3056: { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
! 3057: $as_echo_n "checking build system type... " >&6; }
! 3058: if ${ac_cv_build+:} false; then :
! 3059: $as_echo_n "(cached) " >&6
! 3060: else
! 3061: ac_build_alias=$build_alias
! 3062: test "x$ac_build_alias" = x &&
! 3063: ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
! 3064: test "x$ac_build_alias" = x &&
! 3065: as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
! 3066: ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
! 3067: as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
! 3068:
! 3069: fi
! 3070: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
! 3071: $as_echo "$ac_cv_build" >&6; }
! 3072: case $ac_cv_build in
! 3073: *-*-*) ;;
! 3074: *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
! 3075: esac
! 3076: build=$ac_cv_build
! 3077: ac_save_IFS=$IFS; IFS='-'
! 3078: set x $ac_cv_build
! 3079: shift
! 3080: build_cpu=$1
! 3081: build_vendor=$2
! 3082: shift; shift
! 3083: # Remember, the first character of IFS is used to create $*,
! 3084: # except with old shells:
! 3085: build_os=$*
! 3086: IFS=$ac_save_IFS
! 3087: case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
! 3088:
! 3089:
! 3090: { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
! 3091: $as_echo_n "checking host system type... " >&6; }
! 3092: if ${ac_cv_host+:} false; then :
! 3093: $as_echo_n "(cached) " >&6
! 3094: else
! 3095: if test "x$host_alias" = x; then
! 3096: ac_cv_host=$ac_cv_build
! 3097: else
! 3098: ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
! 3099: as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
! 3100: fi
! 3101:
! 3102: fi
! 3103: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
! 3104: $as_echo "$ac_cv_host" >&6; }
! 3105: case $ac_cv_host in
! 3106: *-*-*) ;;
! 3107: *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
! 3108: esac
! 3109: host=$ac_cv_host
! 3110: ac_save_IFS=$IFS; IFS='-'
! 3111: set x $ac_cv_host
! 3112: shift
! 3113: host_cpu=$1
! 3114: host_vendor=$2
! 3115: shift; shift
! 3116: # Remember, the first character of IFS is used to create $*,
! 3117: # except with old shells:
! 3118: host_os=$*
! 3119: IFS=$ac_save_IFS
! 3120: case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
! 3121:
! 3122:
! 3123:
! 3124: # Check whether --enable-platform was given.
! 3125: if test "${enable_platform+set}" = set; then :
! 3126: enableval=$enable_platform; host_platform=$enable_platform
! 3127: else
! 3128: host_platform=default
! 3129: fi
! 3130:
! 3131: # Supported configurations.
! 3132: case $host_platform:$host_cpu in
! 3133: default:i?86)
! 3134: host_platform=at;;
! 3135: at:i?86 | xen:i?86)
! 3136: :;;
! 3137: *)
! 3138: as_fn_error $? "unsupported combination of cpu type \`$host_cpu' and platform
! 3139: \`$host_platform'." "$LINENO" 5;;
! 3140: esac
! 3141:
! 3142:
! 3143: # This is used in a few places.
! 3144: case $host_cpu in
! 3145: i?86)
! 3146: systype=i386;;
! 3147: *)
! 3148: systype=$host_cpu;;
! 3149: esac
! 3150:
! 3151:
! 3152: #
! 3153: # Programs.
! 3154: #
! 3155:
! 3156: for ac_prog in gawk mawk nawk awk
! 3157: do
! 3158: # Extract the first word of "$ac_prog", so it can be a program name with args.
! 3159: set dummy $ac_prog; ac_word=$2
! 3160: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 3161: $as_echo_n "checking for $ac_word... " >&6; }
! 3162: if ${ac_cv_prog_AWK+:} false; then :
! 3163: $as_echo_n "(cached) " >&6
! 3164: else
! 3165: if test -n "$AWK"; then
! 3166: ac_cv_prog_AWK="$AWK" # Let the user override the test.
! 3167: else
! 3168: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 3169: for as_dir in $PATH
! 3170: do
! 3171: IFS=$as_save_IFS
! 3172: test -z "$as_dir" && as_dir=.
! 3173: for ac_exec_ext in '' $ac_executable_extensions; do
! 3174: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 3175: ac_cv_prog_AWK="$ac_prog"
! 3176: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 3177: break 2
! 3178: fi
! 3179: done
! 3180: done
! 3181: IFS=$as_save_IFS
! 3182:
! 3183: fi
! 3184: fi
! 3185: AWK=$ac_cv_prog_AWK
! 3186: if test -n "$AWK"; then
! 3187: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
! 3188: $as_echo "$AWK" >&6; }
! 3189: else
! 3190: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 3191: $as_echo "no" >&6; }
! 3192: fi
! 3193:
! 3194:
! 3195: test -n "$AWK" && break
! 3196: done
! 3197:
! 3198: DEPDIR="${am__leading_dot}deps"
! 3199:
! 3200: ac_config_commands="$ac_config_commands depfiles"
! 3201:
! 3202:
! 3203: am_make=${MAKE-make}
! 3204: cat > confinc << 'END'
! 3205: am__doit:
! 3206: @echo this is the am__doit target
! 3207: .PHONY: am__doit
! 3208: END
! 3209: # If we don't find an include directive, just comment out the code.
! 3210: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
! 3211: $as_echo_n "checking for style of include used by $am_make... " >&6; }
! 3212: am__include="#"
! 3213: am__quote=
! 3214: _am_result=none
! 3215: # First try GNU make style include.
! 3216: echo "include confinc" > confmf
! 3217: # Ignore all kinds of additional output from 'make'.
! 3218: case `$am_make -s -f confmf 2> /dev/null` in #(
! 3219: *the\ am__doit\ target*)
! 3220: am__include=include
! 3221: am__quote=
! 3222: _am_result=GNU
! 3223: ;;
! 3224: esac
! 3225: # Now try BSD make style include.
! 3226: if test "$am__include" = "#"; then
! 3227: echo '.include "confinc"' > confmf
! 3228: case `$am_make -s -f confmf 2> /dev/null` in #(
! 3229: *the\ am__doit\ target*)
! 3230: am__include=.include
! 3231: am__quote="\""
! 3232: _am_result=BSD
! 3233: ;;
! 3234: esac
! 3235: fi
! 3236:
! 3237:
! 3238: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
! 3239: $as_echo "$_am_result" >&6; }
! 3240: rm -f confinc confmf
! 3241:
! 3242: # Check whether --enable-dependency-tracking was given.
! 3243: if test "${enable_dependency_tracking+set}" = set; then :
! 3244: enableval=$enable_dependency_tracking;
! 3245: fi
! 3246:
! 3247: if test "x$enable_dependency_tracking" != xno; then
! 3248: am_depcomp="$ac_aux_dir/depcomp"
! 3249: AMDEPBACKSLASH='\'
! 3250: am__nodep='_no'
! 3251: fi
! 3252: if test "x$enable_dependency_tracking" != xno; then
! 3253: AMDEP_TRUE=
! 3254: AMDEP_FALSE='#'
! 3255: else
! 3256: AMDEP_TRUE='#'
! 3257: AMDEP_FALSE=
! 3258: fi
! 3259:
! 3260:
! 3261: ac_ext=c
! 3262: ac_cpp='$CPP $CPPFLAGS'
! 3263: ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
! 3264: ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
! 3265: ac_compiler_gnu=$ac_cv_c_compiler_gnu
! 3266: if test -n "$ac_tool_prefix"; then
! 3267: # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
! 3268: set dummy ${ac_tool_prefix}gcc; ac_word=$2
! 3269: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 3270: $as_echo_n "checking for $ac_word... " >&6; }
! 3271: if ${ac_cv_prog_CC+:} false; then :
! 3272: $as_echo_n "(cached) " >&6
! 3273: else
! 3274: if test -n "$CC"; then
! 3275: ac_cv_prog_CC="$CC" # Let the user override the test.
! 3276: else
! 3277: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 3278: for as_dir in $PATH
! 3279: do
! 3280: IFS=$as_save_IFS
! 3281: test -z "$as_dir" && as_dir=.
! 3282: for ac_exec_ext in '' $ac_executable_extensions; do
! 3283: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 3284: ac_cv_prog_CC="${ac_tool_prefix}gcc"
! 3285: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 3286: break 2
! 3287: fi
! 3288: done
! 3289: done
! 3290: IFS=$as_save_IFS
! 3291:
! 3292: fi
! 3293: fi
! 3294: CC=$ac_cv_prog_CC
! 3295: if test -n "$CC"; then
! 3296: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
! 3297: $as_echo "$CC" >&6; }
! 3298: else
! 3299: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 3300: $as_echo "no" >&6; }
! 3301: fi
! 3302:
! 3303:
! 3304: fi
! 3305: if test -z "$ac_cv_prog_CC"; then
! 3306: ac_ct_CC=$CC
! 3307: # Extract the first word of "gcc", so it can be a program name with args.
! 3308: set dummy gcc; ac_word=$2
! 3309: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 3310: $as_echo_n "checking for $ac_word... " >&6; }
! 3311: if ${ac_cv_prog_ac_ct_CC+:} false; then :
! 3312: $as_echo_n "(cached) " >&6
! 3313: else
! 3314: if test -n "$ac_ct_CC"; then
! 3315: ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
! 3316: else
! 3317: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 3318: for as_dir in $PATH
! 3319: do
! 3320: IFS=$as_save_IFS
! 3321: test -z "$as_dir" && as_dir=.
! 3322: for ac_exec_ext in '' $ac_executable_extensions; do
! 3323: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 3324: ac_cv_prog_ac_ct_CC="gcc"
! 3325: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 3326: break 2
! 3327: fi
! 3328: done
! 3329: done
! 3330: IFS=$as_save_IFS
! 3331:
! 3332: fi
! 3333: fi
! 3334: ac_ct_CC=$ac_cv_prog_ac_ct_CC
! 3335: if test -n "$ac_ct_CC"; then
! 3336: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
! 3337: $as_echo "$ac_ct_CC" >&6; }
! 3338: else
! 3339: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 3340: $as_echo "no" >&6; }
! 3341: fi
! 3342:
! 3343: if test "x$ac_ct_CC" = x; then
! 3344: CC=""
! 3345: else
! 3346: case $cross_compiling:$ac_tool_warned in
! 3347: yes:)
! 3348: { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
! 3349: $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
! 3350: ac_tool_warned=yes ;;
! 3351: esac
! 3352: CC=$ac_ct_CC
! 3353: fi
! 3354: else
! 3355: CC="$ac_cv_prog_CC"
! 3356: fi
! 3357:
! 3358: if test -z "$CC"; then
! 3359: if test -n "$ac_tool_prefix"; then
! 3360: # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
! 3361: set dummy ${ac_tool_prefix}cc; ac_word=$2
! 3362: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 3363: $as_echo_n "checking for $ac_word... " >&6; }
! 3364: if ${ac_cv_prog_CC+:} false; then :
! 3365: $as_echo_n "(cached) " >&6
! 3366: else
! 3367: if test -n "$CC"; then
! 3368: ac_cv_prog_CC="$CC" # Let the user override the test.
! 3369: else
! 3370: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 3371: for as_dir in $PATH
! 3372: do
! 3373: IFS=$as_save_IFS
! 3374: test -z "$as_dir" && as_dir=.
! 3375: for ac_exec_ext in '' $ac_executable_extensions; do
! 3376: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 3377: ac_cv_prog_CC="${ac_tool_prefix}cc"
! 3378: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 3379: break 2
! 3380: fi
! 3381: done
! 3382: done
! 3383: IFS=$as_save_IFS
! 3384:
! 3385: fi
! 3386: fi
! 3387: CC=$ac_cv_prog_CC
! 3388: if test -n "$CC"; then
! 3389: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
! 3390: $as_echo "$CC" >&6; }
! 3391: else
! 3392: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 3393: $as_echo "no" >&6; }
! 3394: fi
! 3395:
! 3396:
! 3397: fi
! 3398: fi
! 3399: if test -z "$CC"; then
! 3400: # Extract the first word of "cc", so it can be a program name with args.
! 3401: set dummy cc; ac_word=$2
! 3402: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 3403: $as_echo_n "checking for $ac_word... " >&6; }
! 3404: if ${ac_cv_prog_CC+:} false; then :
! 3405: $as_echo_n "(cached) " >&6
! 3406: else
! 3407: if test -n "$CC"; then
! 3408: ac_cv_prog_CC="$CC" # Let the user override the test.
! 3409: else
! 3410: ac_prog_rejected=no
! 3411: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 3412: for as_dir in $PATH
! 3413: do
! 3414: IFS=$as_save_IFS
! 3415: test -z "$as_dir" && as_dir=.
! 3416: for ac_exec_ext in '' $ac_executable_extensions; do
! 3417: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 3418: if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
! 3419: ac_prog_rejected=yes
! 3420: continue
! 3421: fi
! 3422: ac_cv_prog_CC="cc"
! 3423: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 3424: break 2
! 3425: fi
! 3426: done
! 3427: done
! 3428: IFS=$as_save_IFS
! 3429:
! 3430: if test $ac_prog_rejected = yes; then
! 3431: # We found a bogon in the path, so make sure we never use it.
! 3432: set dummy $ac_cv_prog_CC
! 3433: shift
! 3434: if test $# != 0; then
! 3435: # We chose a different compiler from the bogus one.
! 3436: # However, it has the same basename, so the bogon will be chosen
! 3437: # first if we set CC to just the basename; use the full file name.
! 3438: shift
! 3439: ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
! 3440: fi
! 3441: fi
! 3442: fi
! 3443: fi
! 3444: CC=$ac_cv_prog_CC
! 3445: if test -n "$CC"; then
! 3446: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
! 3447: $as_echo "$CC" >&6; }
! 3448: else
! 3449: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 3450: $as_echo "no" >&6; }
! 3451: fi
! 3452:
! 3453:
! 3454: fi
! 3455: if test -z "$CC"; then
! 3456: if test -n "$ac_tool_prefix"; then
! 3457: for ac_prog in cl.exe
! 3458: do
! 3459: # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
! 3460: set dummy $ac_tool_prefix$ac_prog; ac_word=$2
! 3461: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 3462: $as_echo_n "checking for $ac_word... " >&6; }
! 3463: if ${ac_cv_prog_CC+:} false; then :
! 3464: $as_echo_n "(cached) " >&6
! 3465: else
! 3466: if test -n "$CC"; then
! 3467: ac_cv_prog_CC="$CC" # Let the user override the test.
! 3468: else
! 3469: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 3470: for as_dir in $PATH
! 3471: do
! 3472: IFS=$as_save_IFS
! 3473: test -z "$as_dir" && as_dir=.
! 3474: for ac_exec_ext in '' $ac_executable_extensions; do
! 3475: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 3476: ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
! 3477: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 3478: break 2
! 3479: fi
! 3480: done
! 3481: done
! 3482: IFS=$as_save_IFS
! 3483:
! 3484: fi
! 3485: fi
! 3486: CC=$ac_cv_prog_CC
! 3487: if test -n "$CC"; then
! 3488: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
! 3489: $as_echo "$CC" >&6; }
! 3490: else
! 3491: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 3492: $as_echo "no" >&6; }
! 3493: fi
! 3494:
! 3495:
! 3496: test -n "$CC" && break
! 3497: done
! 3498: fi
! 3499: if test -z "$CC"; then
! 3500: ac_ct_CC=$CC
! 3501: for ac_prog in cl.exe
! 3502: do
! 3503: # Extract the first word of "$ac_prog", so it can be a program name with args.
! 3504: set dummy $ac_prog; ac_word=$2
! 3505: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 3506: $as_echo_n "checking for $ac_word... " >&6; }
! 3507: if ${ac_cv_prog_ac_ct_CC+:} false; then :
! 3508: $as_echo_n "(cached) " >&6
! 3509: else
! 3510: if test -n "$ac_ct_CC"; then
! 3511: ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
! 3512: else
! 3513: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 3514: for as_dir in $PATH
! 3515: do
! 3516: IFS=$as_save_IFS
! 3517: test -z "$as_dir" && as_dir=.
! 3518: for ac_exec_ext in '' $ac_executable_extensions; do
! 3519: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 3520: ac_cv_prog_ac_ct_CC="$ac_prog"
! 3521: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 3522: break 2
! 3523: fi
! 3524: done
! 3525: done
! 3526: IFS=$as_save_IFS
! 3527:
! 3528: fi
! 3529: fi
! 3530: ac_ct_CC=$ac_cv_prog_ac_ct_CC
! 3531: if test -n "$ac_ct_CC"; then
! 3532: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
! 3533: $as_echo "$ac_ct_CC" >&6; }
! 3534: else
! 3535: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 3536: $as_echo "no" >&6; }
! 3537: fi
! 3538:
! 3539:
! 3540: test -n "$ac_ct_CC" && break
! 3541: done
! 3542:
! 3543: if test "x$ac_ct_CC" = x; then
! 3544: CC=""
! 3545: else
! 3546: case $cross_compiling:$ac_tool_warned in
! 3547: yes:)
! 3548: { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
! 3549: $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
! 3550: ac_tool_warned=yes ;;
! 3551: esac
! 3552: CC=$ac_ct_CC
! 3553: fi
! 3554: fi
! 3555:
! 3556: fi
! 3557:
! 3558:
! 3559: test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
! 3560: $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
! 3561: as_fn_error $? "no acceptable C compiler found in \$PATH
! 3562: See \`config.log' for more details" "$LINENO" 5; }
! 3563:
! 3564: # Provide some information about the compiler.
! 3565: $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
! 3566: set X $ac_compile
! 3567: ac_compiler=$2
! 3568: for ac_option in --version -v -V -qversion; do
! 3569: { { ac_try="$ac_compiler $ac_option >&5"
! 3570: case "(($ac_try" in
! 3571: *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
! 3572: *) ac_try_echo=$ac_try;;
! 3573: esac
! 3574: eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
! 3575: $as_echo "$ac_try_echo"; } >&5
! 3576: (eval "$ac_compiler $ac_option >&5") 2>conftest.err
! 3577: ac_status=$?
! 3578: if test -s conftest.err; then
! 3579: sed '10a\
! 3580: ... rest of stderr output deleted ...
! 3581: 10q' conftest.err >conftest.er1
! 3582: cat conftest.er1 >&5
! 3583: fi
! 3584: rm -f conftest.er1 conftest.err
! 3585: $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
! 3586: test $ac_status = 0; }
! 3587: done
! 3588:
! 3589: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 3590: /* end confdefs.h. */
! 3591:
! 3592: int
! 3593: main ()
! 3594: {
! 3595:
! 3596: ;
! 3597: return 0;
! 3598: }
! 3599: _ACEOF
! 3600: ac_clean_files_save=$ac_clean_files
! 3601: ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
! 3602: # Try to create an executable without -o first, disregard a.out.
! 3603: # It will help us diagnose broken compilers, and finding out an intuition
! 3604: # of exeext.
! 3605: { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
! 3606: $as_echo_n "checking whether the C compiler works... " >&6; }
! 3607: ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
! 3608:
! 3609: # The possible output files:
! 3610: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
! 3611:
! 3612: ac_rmfiles=
! 3613: for ac_file in $ac_files
! 3614: do
! 3615: case $ac_file in
! 3616: *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
! 3617: * ) ac_rmfiles="$ac_rmfiles $ac_file";;
! 3618: esac
! 3619: done
! 3620: rm -f $ac_rmfiles
! 3621:
! 3622: if { { ac_try="$ac_link_default"
! 3623: case "(($ac_try" in
! 3624: *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
! 3625: *) ac_try_echo=$ac_try;;
! 3626: esac
! 3627: eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
! 3628: $as_echo "$ac_try_echo"; } >&5
! 3629: (eval "$ac_link_default") 2>&5
! 3630: ac_status=$?
! 3631: $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
! 3632: test $ac_status = 0; }; then :
! 3633: # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
! 3634: # So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
! 3635: # in a Makefile. We should not override ac_cv_exeext if it was cached,
! 3636: # so that the user can short-circuit this test for compilers unknown to
! 3637: # Autoconf.
! 3638: for ac_file in $ac_files ''
! 3639: do
! 3640: test -f "$ac_file" || continue
! 3641: case $ac_file in
! 3642: *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
! 3643: ;;
! 3644: [ab].out )
! 3645: # We found the default executable, but exeext='' is most
! 3646: # certainly right.
! 3647: break;;
! 3648: *.* )
! 3649: if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
! 3650: then :; else
! 3651: ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
! 3652: fi
! 3653: # We set ac_cv_exeext here because the later test for it is not
! 3654: # safe: cross compilers may not add the suffix if given an `-o'
! 3655: # argument, so we may need to know it at that point already.
! 3656: # Even if this section looks crufty: it has the advantage of
! 3657: # actually working.
! 3658: break;;
! 3659: * )
! 3660: break;;
! 3661: esac
! 3662: done
! 3663: test "$ac_cv_exeext" = no && ac_cv_exeext=
! 3664:
! 3665: else
! 3666: ac_file=''
! 3667: fi
! 3668: if test -z "$ac_file"; then :
! 3669: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 3670: $as_echo "no" >&6; }
! 3671: $as_echo "$as_me: failed program was:" >&5
! 3672: sed 's/^/| /' conftest.$ac_ext >&5
! 3673:
! 3674: { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
! 3675: $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
! 3676: as_fn_error 77 "C compiler cannot create executables
! 3677: See \`config.log' for more details" "$LINENO" 5; }
! 3678: else
! 3679: { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
! 3680: $as_echo "yes" >&6; }
! 3681: fi
! 3682: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
! 3683: $as_echo_n "checking for C compiler default output file name... " >&6; }
! 3684: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
! 3685: $as_echo "$ac_file" >&6; }
! 3686: ac_exeext=$ac_cv_exeext
! 3687:
! 3688: rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
! 3689: ac_clean_files=$ac_clean_files_save
! 3690: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
! 3691: $as_echo_n "checking for suffix of executables... " >&6; }
! 3692: if { { ac_try="$ac_link"
! 3693: case "(($ac_try" in
! 3694: *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
! 3695: *) ac_try_echo=$ac_try;;
! 3696: esac
! 3697: eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
! 3698: $as_echo "$ac_try_echo"; } >&5
! 3699: (eval "$ac_link") 2>&5
! 3700: ac_status=$?
! 3701: $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
! 3702: test $ac_status = 0; }; then :
! 3703: # If both `conftest.exe' and `conftest' are `present' (well, observable)
! 3704: # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
! 3705: # work properly (i.e., refer to `conftest.exe'), while it won't with
! 3706: # `rm'.
! 3707: for ac_file in conftest.exe conftest conftest.*; do
! 3708: test -f "$ac_file" || continue
! 3709: case $ac_file in
! 3710: *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
! 3711: *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
! 3712: break;;
! 3713: * ) break;;
! 3714: esac
! 3715: done
! 3716: else
! 3717: { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
! 3718: $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
! 3719: as_fn_error $? "cannot compute suffix of executables: cannot compile and link
! 3720: See \`config.log' for more details" "$LINENO" 5; }
! 3721: fi
! 3722: rm -f conftest conftest$ac_cv_exeext
! 3723: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
! 3724: $as_echo "$ac_cv_exeext" >&6; }
! 3725:
! 3726: rm -f conftest.$ac_ext
! 3727: EXEEXT=$ac_cv_exeext
! 3728: ac_exeext=$EXEEXT
! 3729: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 3730: /* end confdefs.h. */
! 3731: #include <stdio.h>
! 3732: int
! 3733: main ()
! 3734: {
! 3735: FILE *f = fopen ("conftest.out", "w");
! 3736: return ferror (f) || fclose (f) != 0;
! 3737:
! 3738: ;
! 3739: return 0;
! 3740: }
! 3741: _ACEOF
! 3742: ac_clean_files="$ac_clean_files conftest.out"
! 3743: # Check that the compiler produces executables we can run. If not, either
! 3744: # the compiler is broken, or we cross compile.
! 3745: { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
! 3746: $as_echo_n "checking whether we are cross compiling... " >&6; }
! 3747: if test "$cross_compiling" != yes; then
! 3748: { { ac_try="$ac_link"
! 3749: case "(($ac_try" in
! 3750: *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
! 3751: *) ac_try_echo=$ac_try;;
! 3752: esac
! 3753: eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
! 3754: $as_echo "$ac_try_echo"; } >&5
! 3755: (eval "$ac_link") 2>&5
! 3756: ac_status=$?
! 3757: $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
! 3758: test $ac_status = 0; }
! 3759: if { ac_try='./conftest$ac_cv_exeext'
! 3760: { { case "(($ac_try" in
! 3761: *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
! 3762: *) ac_try_echo=$ac_try;;
! 3763: esac
! 3764: eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
! 3765: $as_echo "$ac_try_echo"; } >&5
! 3766: (eval "$ac_try") 2>&5
! 3767: ac_status=$?
! 3768: $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
! 3769: test $ac_status = 0; }; }; then
! 3770: cross_compiling=no
! 3771: else
! 3772: if test "$cross_compiling" = maybe; then
! 3773: cross_compiling=yes
! 3774: else
! 3775: { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
! 3776: $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
! 3777: as_fn_error $? "cannot run C compiled programs.
! 3778: If you meant to cross compile, use \`--host'.
! 3779: See \`config.log' for more details" "$LINENO" 5; }
! 3780: fi
! 3781: fi
! 3782: fi
! 3783: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
! 3784: $as_echo "$cross_compiling" >&6; }
! 3785:
! 3786: rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
! 3787: ac_clean_files=$ac_clean_files_save
! 3788: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
! 3789: $as_echo_n "checking for suffix of object files... " >&6; }
! 3790: if ${ac_cv_objext+:} false; then :
! 3791: $as_echo_n "(cached) " >&6
! 3792: else
! 3793: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 3794: /* end confdefs.h. */
! 3795:
! 3796: int
! 3797: main ()
! 3798: {
! 3799:
! 3800: ;
! 3801: return 0;
! 3802: }
! 3803: _ACEOF
! 3804: rm -f conftest.o conftest.obj
! 3805: if { { ac_try="$ac_compile"
! 3806: case "(($ac_try" in
! 3807: *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
! 3808: *) ac_try_echo=$ac_try;;
! 3809: esac
! 3810: eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
! 3811: $as_echo "$ac_try_echo"; } >&5
! 3812: (eval "$ac_compile") 2>&5
! 3813: ac_status=$?
! 3814: $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
! 3815: test $ac_status = 0; }; then :
! 3816: for ac_file in conftest.o conftest.obj conftest.*; do
! 3817: test -f "$ac_file" || continue;
! 3818: case $ac_file in
! 3819: *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
! 3820: *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
! 3821: break;;
! 3822: esac
! 3823: done
! 3824: else
! 3825: $as_echo "$as_me: failed program was:" >&5
! 3826: sed 's/^/| /' conftest.$ac_ext >&5
! 3827:
! 3828: { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
! 3829: $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
! 3830: as_fn_error $? "cannot compute suffix of object files: cannot compile
! 3831: See \`config.log' for more details" "$LINENO" 5; }
! 3832: fi
! 3833: rm -f conftest.$ac_cv_objext conftest.$ac_ext
! 3834: fi
! 3835: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
! 3836: $as_echo "$ac_cv_objext" >&6; }
! 3837: OBJEXT=$ac_cv_objext
! 3838: ac_objext=$OBJEXT
! 3839: { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
! 3840: $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
! 3841: if ${ac_cv_c_compiler_gnu+:} false; then :
! 3842: $as_echo_n "(cached) " >&6
! 3843: else
! 3844: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 3845: /* end confdefs.h. */
! 3846:
! 3847: int
! 3848: main ()
! 3849: {
! 3850: #ifndef __GNUC__
! 3851: choke me
! 3852: #endif
! 3853:
! 3854: ;
! 3855: return 0;
! 3856: }
! 3857: _ACEOF
! 3858: if ac_fn_c_try_compile "$LINENO"; then :
! 3859: ac_compiler_gnu=yes
! 3860: else
! 3861: ac_compiler_gnu=no
! 3862: fi
! 3863: rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
! 3864: ac_cv_c_compiler_gnu=$ac_compiler_gnu
! 3865:
! 3866: fi
! 3867: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
! 3868: $as_echo "$ac_cv_c_compiler_gnu" >&6; }
! 3869: if test $ac_compiler_gnu = yes; then
! 3870: GCC=yes
! 3871: else
! 3872: GCC=
! 3873: fi
! 3874: ac_test_CFLAGS=${CFLAGS+set}
! 3875: ac_save_CFLAGS=$CFLAGS
! 3876: { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
! 3877: $as_echo_n "checking whether $CC accepts -g... " >&6; }
! 3878: if ${ac_cv_prog_cc_g+:} false; then :
! 3879: $as_echo_n "(cached) " >&6
! 3880: else
! 3881: ac_save_c_werror_flag=$ac_c_werror_flag
! 3882: ac_c_werror_flag=yes
! 3883: ac_cv_prog_cc_g=no
! 3884: CFLAGS="-g"
! 3885: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 3886: /* end confdefs.h. */
! 3887:
! 3888: int
! 3889: main ()
! 3890: {
! 3891:
! 3892: ;
! 3893: return 0;
! 3894: }
! 3895: _ACEOF
! 3896: if ac_fn_c_try_compile "$LINENO"; then :
! 3897: ac_cv_prog_cc_g=yes
! 3898: else
! 3899: CFLAGS=""
! 3900: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 3901: /* end confdefs.h. */
! 3902:
! 3903: int
! 3904: main ()
! 3905: {
! 3906:
! 3907: ;
! 3908: return 0;
! 3909: }
! 3910: _ACEOF
! 3911: if ac_fn_c_try_compile "$LINENO"; then :
! 3912:
! 3913: else
! 3914: ac_c_werror_flag=$ac_save_c_werror_flag
! 3915: CFLAGS="-g"
! 3916: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 3917: /* end confdefs.h. */
! 3918:
! 3919: int
! 3920: main ()
! 3921: {
! 3922:
! 3923: ;
! 3924: return 0;
! 3925: }
! 3926: _ACEOF
! 3927: if ac_fn_c_try_compile "$LINENO"; then :
! 3928: ac_cv_prog_cc_g=yes
! 3929: fi
! 3930: rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
! 3931: fi
! 3932: rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
! 3933: fi
! 3934: rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
! 3935: ac_c_werror_flag=$ac_save_c_werror_flag
! 3936: fi
! 3937: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
! 3938: $as_echo "$ac_cv_prog_cc_g" >&6; }
! 3939: if test "$ac_test_CFLAGS" = set; then
! 3940: CFLAGS=$ac_save_CFLAGS
! 3941: elif test $ac_cv_prog_cc_g = yes; then
! 3942: if test "$GCC" = yes; then
! 3943: CFLAGS="-g -O2"
! 3944: else
! 3945: CFLAGS="-g"
! 3946: fi
! 3947: else
! 3948: if test "$GCC" = yes; then
! 3949: CFLAGS="-O2"
! 3950: else
! 3951: CFLAGS=
! 3952: fi
! 3953: fi
! 3954: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
! 3955: $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
! 3956: if ${ac_cv_prog_cc_c89+:} false; then :
! 3957: $as_echo_n "(cached) " >&6
! 3958: else
! 3959: ac_cv_prog_cc_c89=no
! 3960: ac_save_CC=$CC
! 3961: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 3962: /* end confdefs.h. */
! 3963: #include <stdarg.h>
! 3964: #include <stdio.h>
! 3965: struct stat;
! 3966: /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
! 3967: struct buf { int x; };
! 3968: FILE * (*rcsopen) (struct buf *, struct stat *, int);
! 3969: static char *e (p, i)
! 3970: char **p;
! 3971: int i;
! 3972: {
! 3973: return p[i];
! 3974: }
! 3975: static char *f (char * (*g) (char **, int), char **p, ...)
! 3976: {
! 3977: char *s;
! 3978: va_list v;
! 3979: va_start (v,p);
! 3980: s = g (p, va_arg (v,int));
! 3981: va_end (v);
! 3982: return s;
! 3983: }
! 3984:
! 3985: /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
! 3986: function prototypes and stuff, but not '\xHH' hex character constants.
! 3987: These don't provoke an error unfortunately, instead are silently treated
! 3988: as 'x'. The following induces an error, until -std is added to get
! 3989: proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
! 3990: array size at least. It's necessary to write '\x00'==0 to get something
! 3991: that's true only with -std. */
! 3992: int osf4_cc_array ['\x00' == 0 ? 1 : -1];
! 3993:
! 3994: /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
! 3995: inside strings and character constants. */
! 3996: #define FOO(x) 'x'
! 3997: int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
! 3998:
! 3999: int test (int i, double x);
! 4000: struct s1 {int (*f) (int a);};
! 4001: struct s2 {int (*f) (double a);};
! 4002: int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
! 4003: int argc;
! 4004: char **argv;
! 4005: int
! 4006: main ()
! 4007: {
! 4008: return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
! 4009: ;
! 4010: return 0;
! 4011: }
! 4012: _ACEOF
! 4013: for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
! 4014: -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
! 4015: do
! 4016: CC="$ac_save_CC $ac_arg"
! 4017: if ac_fn_c_try_compile "$LINENO"; then :
! 4018: ac_cv_prog_cc_c89=$ac_arg
! 4019: fi
! 4020: rm -f core conftest.err conftest.$ac_objext
! 4021: test "x$ac_cv_prog_cc_c89" != "xno" && break
! 4022: done
! 4023: rm -f conftest.$ac_ext
! 4024: CC=$ac_save_CC
! 4025:
! 4026: fi
! 4027: # AC_CACHE_VAL
! 4028: case "x$ac_cv_prog_cc_c89" in
! 4029: x)
! 4030: { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
! 4031: $as_echo "none needed" >&6; } ;;
! 4032: xno)
! 4033: { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
! 4034: $as_echo "unsupported" >&6; } ;;
! 4035: *)
! 4036: CC="$CC $ac_cv_prog_cc_c89"
! 4037: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
! 4038: $as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
! 4039: esac
! 4040: if test "x$ac_cv_prog_cc_c89" != xno; then :
! 4041:
! 4042: fi
! 4043:
! 4044: ac_ext=c
! 4045: ac_cpp='$CPP $CPPFLAGS'
! 4046: ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
! 4047: ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
! 4048: ac_compiler_gnu=$ac_cv_c_compiler_gnu
! 4049:
! 4050: depcc="$CC" am_compiler_list=
! 4051:
! 4052: { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
! 4053: $as_echo_n "checking dependency style of $depcc... " >&6; }
! 4054: if ${am_cv_CC_dependencies_compiler_type+:} false; then :
! 4055: $as_echo_n "(cached) " >&6
! 4056: else
! 4057: if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
! 4058: # We make a subdir and do the tests there. Otherwise we can end up
! 4059: # making bogus files that we don't know about and never remove. For
! 4060: # instance it was reported that on HP-UX the gcc test will end up
! 4061: # making a dummy file named 'D' -- because '-MD' means "put the output
! 4062: # in D".
! 4063: rm -rf conftest.dir
! 4064: mkdir conftest.dir
! 4065: # Copy depcomp to subdir because otherwise we won't find it if we're
! 4066: # using a relative directory.
! 4067: cp "$am_depcomp" conftest.dir
! 4068: cd conftest.dir
! 4069: # We will build objects and dependencies in a subdirectory because
! 4070: # it helps to detect inapplicable dependency modes. For instance
! 4071: # both Tru64's cc and ICC support -MD to output dependencies as a
! 4072: # side effect of compilation, but ICC will put the dependencies in
! 4073: # the current directory while Tru64 will put them in the object
! 4074: # directory.
! 4075: mkdir sub
! 4076:
! 4077: am_cv_CC_dependencies_compiler_type=none
! 4078: if test "$am_compiler_list" = ""; then
! 4079: am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
! 4080: fi
! 4081: am__universal=false
! 4082: case " $depcc " in #(
! 4083: *\ -arch\ *\ -arch\ *) am__universal=true ;;
! 4084: esac
! 4085:
! 4086: for depmode in $am_compiler_list; do
! 4087: # Setup a source with many dependencies, because some compilers
! 4088: # like to wrap large dependency lists on column 80 (with \), and
! 4089: # we should not choose a depcomp mode which is confused by this.
! 4090: #
! 4091: # We need to recreate these files for each test, as the compiler may
! 4092: # overwrite some of them when testing with obscure command lines.
! 4093: # This happens at least with the AIX C compiler.
! 4094: : > sub/conftest.c
! 4095: for i in 1 2 3 4 5 6; do
! 4096: echo '#include "conftst'$i'.h"' >> sub/conftest.c
! 4097: # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
! 4098: # Solaris 10 /bin/sh.
! 4099: echo '/* dummy */' > sub/conftst$i.h
! 4100: done
! 4101: echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
! 4102:
! 4103: # We check with '-c' and '-o' for the sake of the "dashmstdout"
! 4104: # mode. It turns out that the SunPro C++ compiler does not properly
! 4105: # handle '-M -o', and we need to detect this. Also, some Intel
! 4106: # versions had trouble with output in subdirs.
! 4107: am__obj=sub/conftest.${OBJEXT-o}
! 4108: am__minus_obj="-o $am__obj"
! 4109: case $depmode in
! 4110: gcc)
! 4111: # This depmode causes a compiler race in universal mode.
! 4112: test "$am__universal" = false || continue
! 4113: ;;
! 4114: nosideeffect)
! 4115: # After this tag, mechanisms are not by side-effect, so they'll
! 4116: # only be used when explicitly requested.
! 4117: if test "x$enable_dependency_tracking" = xyes; then
! 4118: continue
! 4119: else
! 4120: break
! 4121: fi
! 4122: ;;
! 4123: msvc7 | msvc7msys | msvisualcpp | msvcmsys)
! 4124: # This compiler won't grok '-c -o', but also, the minuso test has
! 4125: # not run yet. These depmodes are late enough in the game, and
! 4126: # so weak that their functioning should not be impacted.
! 4127: am__obj=conftest.${OBJEXT-o}
! 4128: am__minus_obj=
! 4129: ;;
! 4130: none) break ;;
! 4131: esac
! 4132: if depmode=$depmode \
! 4133: source=sub/conftest.c object=$am__obj \
! 4134: depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
! 4135: $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
! 4136: >/dev/null 2>conftest.err &&
! 4137: grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
! 4138: grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
! 4139: grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
! 4140: ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
! 4141: # icc doesn't choke on unknown options, it will just issue warnings
! 4142: # or remarks (even with -Werror). So we grep stderr for any message
! 4143: # that says an option was ignored or not supported.
! 4144: # When given -MP, icc 7.0 and 7.1 complain thusly:
! 4145: # icc: Command line warning: ignoring option '-M'; no argument required
! 4146: # The diagnosis changed in icc 8.0:
! 4147: # icc: Command line remark: option '-MP' not supported
! 4148: if (grep 'ignoring option' conftest.err ||
! 4149: grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
! 4150: am_cv_CC_dependencies_compiler_type=$depmode
! 4151: break
! 4152: fi
! 4153: fi
! 4154: done
! 4155:
! 4156: cd ..
! 4157: rm -rf conftest.dir
! 4158: else
! 4159: am_cv_CC_dependencies_compiler_type=none
! 4160: fi
! 4161:
! 4162: fi
! 4163: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5
! 4164: $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; }
! 4165: CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
! 4166:
! 4167: if
! 4168: test "x$enable_dependency_tracking" != xno \
! 4169: && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
! 4170: am__fastdepCC_TRUE=
! 4171: am__fastdepCC_FALSE='#'
! 4172: else
! 4173: am__fastdepCC_TRUE='#'
! 4174: am__fastdepCC_FALSE=
! 4175: fi
! 4176:
! 4177:
! 4178: # By default we simply use the C compiler to build assembly code.
! 4179:
! 4180: test "${CCAS+set}" = set || CCAS=$CC
! 4181: test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS
! 4182:
! 4183:
! 4184:
! 4185: depcc="$CCAS" am_compiler_list=
! 4186:
! 4187: { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
! 4188: $as_echo_n "checking dependency style of $depcc... " >&6; }
! 4189: if ${am_cv_CCAS_dependencies_compiler_type+:} false; then :
! 4190: $as_echo_n "(cached) " >&6
! 4191: else
! 4192: if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
! 4193: # We make a subdir and do the tests there. Otherwise we can end up
! 4194: # making bogus files that we don't know about and never remove. For
! 4195: # instance it was reported that on HP-UX the gcc test will end up
! 4196: # making a dummy file named 'D' -- because '-MD' means "put the output
! 4197: # in D".
! 4198: rm -rf conftest.dir
! 4199: mkdir conftest.dir
! 4200: # Copy depcomp to subdir because otherwise we won't find it if we're
! 4201: # using a relative directory.
! 4202: cp "$am_depcomp" conftest.dir
! 4203: cd conftest.dir
! 4204: # We will build objects and dependencies in a subdirectory because
! 4205: # it helps to detect inapplicable dependency modes. For instance
! 4206: # both Tru64's cc and ICC support -MD to output dependencies as a
! 4207: # side effect of compilation, but ICC will put the dependencies in
! 4208: # the current directory while Tru64 will put them in the object
! 4209: # directory.
! 4210: mkdir sub
! 4211:
! 4212: am_cv_CCAS_dependencies_compiler_type=none
! 4213: if test "$am_compiler_list" = ""; then
! 4214: am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
! 4215: fi
! 4216: am__universal=false
! 4217:
! 4218:
! 4219: for depmode in $am_compiler_list; do
! 4220: # Setup a source with many dependencies, because some compilers
! 4221: # like to wrap large dependency lists on column 80 (with \), and
! 4222: # we should not choose a depcomp mode which is confused by this.
! 4223: #
! 4224: # We need to recreate these files for each test, as the compiler may
! 4225: # overwrite some of them when testing with obscure command lines.
! 4226: # This happens at least with the AIX C compiler.
! 4227: : > sub/conftest.c
! 4228: for i in 1 2 3 4 5 6; do
! 4229: echo '#include "conftst'$i'.h"' >> sub/conftest.c
! 4230: # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
! 4231: # Solaris 10 /bin/sh.
! 4232: echo '/* dummy */' > sub/conftst$i.h
! 4233: done
! 4234: echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
! 4235:
! 4236: # We check with '-c' and '-o' for the sake of the "dashmstdout"
! 4237: # mode. It turns out that the SunPro C++ compiler does not properly
! 4238: # handle '-M -o', and we need to detect this. Also, some Intel
! 4239: # versions had trouble with output in subdirs.
! 4240: am__obj=sub/conftest.${OBJEXT-o}
! 4241: am__minus_obj="-o $am__obj"
! 4242: case $depmode in
! 4243: gcc)
! 4244: # This depmode causes a compiler race in universal mode.
! 4245: test "$am__universal" = false || continue
! 4246: ;;
! 4247: nosideeffect)
! 4248: # After this tag, mechanisms are not by side-effect, so they'll
! 4249: # only be used when explicitly requested.
! 4250: if test "x$enable_dependency_tracking" = xyes; then
! 4251: continue
! 4252: else
! 4253: break
! 4254: fi
! 4255: ;;
! 4256: msvc7 | msvc7msys | msvisualcpp | msvcmsys)
! 4257: # This compiler won't grok '-c -o', but also, the minuso test has
! 4258: # not run yet. These depmodes are late enough in the game, and
! 4259: # so weak that their functioning should not be impacted.
! 4260: am__obj=conftest.${OBJEXT-o}
! 4261: am__minus_obj=
! 4262: ;;
! 4263: none) break ;;
! 4264: esac
! 4265: if depmode=$depmode \
! 4266: source=sub/conftest.c object=$am__obj \
! 4267: depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
! 4268: $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
! 4269: >/dev/null 2>conftest.err &&
! 4270: grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
! 4271: grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
! 4272: grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
! 4273: ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
! 4274: # icc doesn't choke on unknown options, it will just issue warnings
! 4275: # or remarks (even with -Werror). So we grep stderr for any message
! 4276: # that says an option was ignored or not supported.
! 4277: # When given -MP, icc 7.0 and 7.1 complain thusly:
! 4278: # icc: Command line warning: ignoring option '-M'; no argument required
! 4279: # The diagnosis changed in icc 8.0:
! 4280: # icc: Command line remark: option '-MP' not supported
! 4281: if (grep 'ignoring option' conftest.err ||
! 4282: grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
! 4283: am_cv_CCAS_dependencies_compiler_type=$depmode
! 4284: break
! 4285: fi
! 4286: fi
! 4287: done
! 4288:
! 4289: cd ..
! 4290: rm -rf conftest.dir
! 4291: else
! 4292: am_cv_CCAS_dependencies_compiler_type=none
! 4293: fi
! 4294:
! 4295: fi
! 4296: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CCAS_dependencies_compiler_type" >&5
! 4297: $as_echo "$am_cv_CCAS_dependencies_compiler_type" >&6; }
! 4298: CCASDEPMODE=depmode=$am_cv_CCAS_dependencies_compiler_type
! 4299:
! 4300: if
! 4301: test "x$enable_dependency_tracking" != xno \
! 4302: && test "$am_cv_CCAS_dependencies_compiler_type" = gcc3; then
! 4303: am__fastdepCCAS_TRUE=
! 4304: am__fastdepCCAS_FALSE='#'
! 4305: else
! 4306: am__fastdepCCAS_TRUE='#'
! 4307: am__fastdepCCAS_FALSE=
! 4308: fi
! 4309:
! 4310:
! 4311: ac_ext=c
! 4312: ac_cpp='$CPP $CPPFLAGS'
! 4313: ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
! 4314: ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
! 4315: ac_compiler_gnu=$ac_cv_c_compiler_gnu
! 4316: if test -n "$ac_tool_prefix"; then
! 4317: # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
! 4318: set dummy ${ac_tool_prefix}gcc; ac_word=$2
! 4319: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 4320: $as_echo_n "checking for $ac_word... " >&6; }
! 4321: if ${ac_cv_prog_CC+:} false; then :
! 4322: $as_echo_n "(cached) " >&6
! 4323: else
! 4324: if test -n "$CC"; then
! 4325: ac_cv_prog_CC="$CC" # Let the user override the test.
! 4326: else
! 4327: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 4328: for as_dir in $PATH
! 4329: do
! 4330: IFS=$as_save_IFS
! 4331: test -z "$as_dir" && as_dir=.
! 4332: for ac_exec_ext in '' $ac_executable_extensions; do
! 4333: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 4334: ac_cv_prog_CC="${ac_tool_prefix}gcc"
! 4335: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 4336: break 2
! 4337: fi
! 4338: done
! 4339: done
! 4340: IFS=$as_save_IFS
! 4341:
! 4342: fi
! 4343: fi
! 4344: CC=$ac_cv_prog_CC
! 4345: if test -n "$CC"; then
! 4346: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
! 4347: $as_echo "$CC" >&6; }
! 4348: else
! 4349: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 4350: $as_echo "no" >&6; }
! 4351: fi
! 4352:
! 4353:
! 4354: fi
! 4355: if test -z "$ac_cv_prog_CC"; then
! 4356: ac_ct_CC=$CC
! 4357: # Extract the first word of "gcc", so it can be a program name with args.
! 4358: set dummy gcc; ac_word=$2
! 4359: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 4360: $as_echo_n "checking for $ac_word... " >&6; }
! 4361: if ${ac_cv_prog_ac_ct_CC+:} false; then :
! 4362: $as_echo_n "(cached) " >&6
! 4363: else
! 4364: if test -n "$ac_ct_CC"; then
! 4365: ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
! 4366: else
! 4367: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 4368: for as_dir in $PATH
! 4369: do
! 4370: IFS=$as_save_IFS
! 4371: test -z "$as_dir" && as_dir=.
! 4372: for ac_exec_ext in '' $ac_executable_extensions; do
! 4373: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 4374: ac_cv_prog_ac_ct_CC="gcc"
! 4375: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 4376: break 2
! 4377: fi
! 4378: done
! 4379: done
! 4380: IFS=$as_save_IFS
! 4381:
! 4382: fi
! 4383: fi
! 4384: ac_ct_CC=$ac_cv_prog_ac_ct_CC
! 4385: if test -n "$ac_ct_CC"; then
! 4386: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
! 4387: $as_echo "$ac_ct_CC" >&6; }
! 4388: else
! 4389: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 4390: $as_echo "no" >&6; }
! 4391: fi
! 4392:
! 4393: if test "x$ac_ct_CC" = x; then
! 4394: CC=""
! 4395: else
! 4396: case $cross_compiling:$ac_tool_warned in
! 4397: yes:)
! 4398: { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
! 4399: $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
! 4400: ac_tool_warned=yes ;;
! 4401: esac
! 4402: CC=$ac_ct_CC
! 4403: fi
! 4404: else
! 4405: CC="$ac_cv_prog_CC"
! 4406: fi
! 4407:
! 4408: if test -z "$CC"; then
! 4409: if test -n "$ac_tool_prefix"; then
! 4410: # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
! 4411: set dummy ${ac_tool_prefix}cc; ac_word=$2
! 4412: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 4413: $as_echo_n "checking for $ac_word... " >&6; }
! 4414: if ${ac_cv_prog_CC+:} false; then :
! 4415: $as_echo_n "(cached) " >&6
! 4416: else
! 4417: if test -n "$CC"; then
! 4418: ac_cv_prog_CC="$CC" # Let the user override the test.
! 4419: else
! 4420: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 4421: for as_dir in $PATH
! 4422: do
! 4423: IFS=$as_save_IFS
! 4424: test -z "$as_dir" && as_dir=.
! 4425: for ac_exec_ext in '' $ac_executable_extensions; do
! 4426: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 4427: ac_cv_prog_CC="${ac_tool_prefix}cc"
! 4428: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 4429: break 2
! 4430: fi
! 4431: done
! 4432: done
! 4433: IFS=$as_save_IFS
! 4434:
! 4435: fi
! 4436: fi
! 4437: CC=$ac_cv_prog_CC
! 4438: if test -n "$CC"; then
! 4439: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
! 4440: $as_echo "$CC" >&6; }
! 4441: else
! 4442: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 4443: $as_echo "no" >&6; }
! 4444: fi
! 4445:
! 4446:
! 4447: fi
! 4448: fi
! 4449: if test -z "$CC"; then
! 4450: # Extract the first word of "cc", so it can be a program name with args.
! 4451: set dummy cc; ac_word=$2
! 4452: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 4453: $as_echo_n "checking for $ac_word... " >&6; }
! 4454: if ${ac_cv_prog_CC+:} false; then :
! 4455: $as_echo_n "(cached) " >&6
! 4456: else
! 4457: if test -n "$CC"; then
! 4458: ac_cv_prog_CC="$CC" # Let the user override the test.
! 4459: else
! 4460: ac_prog_rejected=no
! 4461: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 4462: for as_dir in $PATH
! 4463: do
! 4464: IFS=$as_save_IFS
! 4465: test -z "$as_dir" && as_dir=.
! 4466: for ac_exec_ext in '' $ac_executable_extensions; do
! 4467: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 4468: if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
! 4469: ac_prog_rejected=yes
! 4470: continue
! 4471: fi
! 4472: ac_cv_prog_CC="cc"
! 4473: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 4474: break 2
! 4475: fi
! 4476: done
! 4477: done
! 4478: IFS=$as_save_IFS
! 4479:
! 4480: if test $ac_prog_rejected = yes; then
! 4481: # We found a bogon in the path, so make sure we never use it.
! 4482: set dummy $ac_cv_prog_CC
! 4483: shift
! 4484: if test $# != 0; then
! 4485: # We chose a different compiler from the bogus one.
! 4486: # However, it has the same basename, so the bogon will be chosen
! 4487: # first if we set CC to just the basename; use the full file name.
! 4488: shift
! 4489: ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
! 4490: fi
! 4491: fi
! 4492: fi
! 4493: fi
! 4494: CC=$ac_cv_prog_CC
! 4495: if test -n "$CC"; then
! 4496: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
! 4497: $as_echo "$CC" >&6; }
! 4498: else
! 4499: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 4500: $as_echo "no" >&6; }
! 4501: fi
! 4502:
! 4503:
! 4504: fi
! 4505: if test -z "$CC"; then
! 4506: if test -n "$ac_tool_prefix"; then
! 4507: for ac_prog in cl.exe
! 4508: do
! 4509: # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
! 4510: set dummy $ac_tool_prefix$ac_prog; ac_word=$2
! 4511: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 4512: $as_echo_n "checking for $ac_word... " >&6; }
! 4513: if ${ac_cv_prog_CC+:} false; then :
! 4514: $as_echo_n "(cached) " >&6
! 4515: else
! 4516: if test -n "$CC"; then
! 4517: ac_cv_prog_CC="$CC" # Let the user override the test.
! 4518: else
! 4519: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 4520: for as_dir in $PATH
! 4521: do
! 4522: IFS=$as_save_IFS
! 4523: test -z "$as_dir" && as_dir=.
! 4524: for ac_exec_ext in '' $ac_executable_extensions; do
! 4525: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 4526: ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
! 4527: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 4528: break 2
! 4529: fi
! 4530: done
! 4531: done
! 4532: IFS=$as_save_IFS
! 4533:
! 4534: fi
! 4535: fi
! 4536: CC=$ac_cv_prog_CC
! 4537: if test -n "$CC"; then
! 4538: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
! 4539: $as_echo "$CC" >&6; }
! 4540: else
! 4541: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 4542: $as_echo "no" >&6; }
! 4543: fi
! 4544:
! 4545:
! 4546: test -n "$CC" && break
! 4547: done
! 4548: fi
! 4549: if test -z "$CC"; then
! 4550: ac_ct_CC=$CC
! 4551: for ac_prog in cl.exe
! 4552: do
! 4553: # Extract the first word of "$ac_prog", so it can be a program name with args.
! 4554: set dummy $ac_prog; ac_word=$2
! 4555: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 4556: $as_echo_n "checking for $ac_word... " >&6; }
! 4557: if ${ac_cv_prog_ac_ct_CC+:} false; then :
! 4558: $as_echo_n "(cached) " >&6
! 4559: else
! 4560: if test -n "$ac_ct_CC"; then
! 4561: ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
! 4562: else
! 4563: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 4564: for as_dir in $PATH
! 4565: do
! 4566: IFS=$as_save_IFS
! 4567: test -z "$as_dir" && as_dir=.
! 4568: for ac_exec_ext in '' $ac_executable_extensions; do
! 4569: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 4570: ac_cv_prog_ac_ct_CC="$ac_prog"
! 4571: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 4572: break 2
! 4573: fi
! 4574: done
! 4575: done
! 4576: IFS=$as_save_IFS
! 4577:
! 4578: fi
! 4579: fi
! 4580: ac_ct_CC=$ac_cv_prog_ac_ct_CC
! 4581: if test -n "$ac_ct_CC"; then
! 4582: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
! 4583: $as_echo "$ac_ct_CC" >&6; }
! 4584: else
! 4585: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 4586: $as_echo "no" >&6; }
! 4587: fi
! 4588:
! 4589:
! 4590: test -n "$ac_ct_CC" && break
! 4591: done
! 4592:
! 4593: if test "x$ac_ct_CC" = x; then
! 4594: CC=""
! 4595: else
! 4596: case $cross_compiling:$ac_tool_warned in
! 4597: yes:)
! 4598: { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
! 4599: $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
! 4600: ac_tool_warned=yes ;;
! 4601: esac
! 4602: CC=$ac_ct_CC
! 4603: fi
! 4604: fi
! 4605:
! 4606: fi
! 4607:
! 4608:
! 4609: test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
! 4610: $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
! 4611: as_fn_error $? "no acceptable C compiler found in \$PATH
! 4612: See \`config.log' for more details" "$LINENO" 5; }
! 4613:
! 4614: # Provide some information about the compiler.
! 4615: $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
! 4616: set X $ac_compile
! 4617: ac_compiler=$2
! 4618: for ac_option in --version -v -V -qversion; do
! 4619: { { ac_try="$ac_compiler $ac_option >&5"
! 4620: case "(($ac_try" in
! 4621: *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
! 4622: *) ac_try_echo=$ac_try;;
! 4623: esac
! 4624: eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
! 4625: $as_echo "$ac_try_echo"; } >&5
! 4626: (eval "$ac_compiler $ac_option >&5") 2>conftest.err
! 4627: ac_status=$?
! 4628: if test -s conftest.err; then
! 4629: sed '10a\
! 4630: ... rest of stderr output deleted ...
! 4631: 10q' conftest.err >conftest.er1
! 4632: cat conftest.er1 >&5
! 4633: fi
! 4634: rm -f conftest.er1 conftest.err
! 4635: $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
! 4636: test $ac_status = 0; }
! 4637: done
! 4638:
! 4639: { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
! 4640: $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
! 4641: if ${ac_cv_c_compiler_gnu+:} false; then :
! 4642: $as_echo_n "(cached) " >&6
! 4643: else
! 4644: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 4645: /* end confdefs.h. */
! 4646:
! 4647: int
! 4648: main ()
! 4649: {
! 4650: #ifndef __GNUC__
! 4651: choke me
! 4652: #endif
! 4653:
! 4654: ;
! 4655: return 0;
! 4656: }
! 4657: _ACEOF
! 4658: if ac_fn_c_try_compile "$LINENO"; then :
! 4659: ac_compiler_gnu=yes
! 4660: else
! 4661: ac_compiler_gnu=no
! 4662: fi
! 4663: rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
! 4664: ac_cv_c_compiler_gnu=$ac_compiler_gnu
! 4665:
! 4666: fi
! 4667: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
! 4668: $as_echo "$ac_cv_c_compiler_gnu" >&6; }
! 4669: if test $ac_compiler_gnu = yes; then
! 4670: GCC=yes
! 4671: else
! 4672: GCC=
! 4673: fi
! 4674: ac_test_CFLAGS=${CFLAGS+set}
! 4675: ac_save_CFLAGS=$CFLAGS
! 4676: { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
! 4677: $as_echo_n "checking whether $CC accepts -g... " >&6; }
! 4678: if ${ac_cv_prog_cc_g+:} false; then :
! 4679: $as_echo_n "(cached) " >&6
! 4680: else
! 4681: ac_save_c_werror_flag=$ac_c_werror_flag
! 4682: ac_c_werror_flag=yes
! 4683: ac_cv_prog_cc_g=no
! 4684: CFLAGS="-g"
! 4685: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 4686: /* end confdefs.h. */
! 4687:
! 4688: int
! 4689: main ()
! 4690: {
! 4691:
! 4692: ;
! 4693: return 0;
! 4694: }
! 4695: _ACEOF
! 4696: if ac_fn_c_try_compile "$LINENO"; then :
! 4697: ac_cv_prog_cc_g=yes
! 4698: else
! 4699: CFLAGS=""
! 4700: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 4701: /* end confdefs.h. */
! 4702:
! 4703: int
! 4704: main ()
! 4705: {
! 4706:
! 4707: ;
! 4708: return 0;
! 4709: }
! 4710: _ACEOF
! 4711: if ac_fn_c_try_compile "$LINENO"; then :
! 4712:
! 4713: else
! 4714: ac_c_werror_flag=$ac_save_c_werror_flag
! 4715: CFLAGS="-g"
! 4716: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 4717: /* end confdefs.h. */
! 4718:
! 4719: int
! 4720: main ()
! 4721: {
! 4722:
! 4723: ;
! 4724: return 0;
! 4725: }
! 4726: _ACEOF
! 4727: if ac_fn_c_try_compile "$LINENO"; then :
! 4728: ac_cv_prog_cc_g=yes
! 4729: fi
! 4730: rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
! 4731: fi
! 4732: rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
! 4733: fi
! 4734: rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
! 4735: ac_c_werror_flag=$ac_save_c_werror_flag
! 4736: fi
! 4737: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
! 4738: $as_echo "$ac_cv_prog_cc_g" >&6; }
! 4739: if test "$ac_test_CFLAGS" = set; then
! 4740: CFLAGS=$ac_save_CFLAGS
! 4741: elif test $ac_cv_prog_cc_g = yes; then
! 4742: if test "$GCC" = yes; then
! 4743: CFLAGS="-g -O2"
! 4744: else
! 4745: CFLAGS="-g"
! 4746: fi
! 4747: else
! 4748: if test "$GCC" = yes; then
! 4749: CFLAGS="-O2"
! 4750: else
! 4751: CFLAGS=
! 4752: fi
! 4753: fi
! 4754: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
! 4755: $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
! 4756: if ${ac_cv_prog_cc_c89+:} false; then :
! 4757: $as_echo_n "(cached) " >&6
! 4758: else
! 4759: ac_cv_prog_cc_c89=no
! 4760: ac_save_CC=$CC
! 4761: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 4762: /* end confdefs.h. */
! 4763: #include <stdarg.h>
! 4764: #include <stdio.h>
! 4765: struct stat;
! 4766: /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
! 4767: struct buf { int x; };
! 4768: FILE * (*rcsopen) (struct buf *, struct stat *, int);
! 4769: static char *e (p, i)
! 4770: char **p;
! 4771: int i;
! 4772: {
! 4773: return p[i];
! 4774: }
! 4775: static char *f (char * (*g) (char **, int), char **p, ...)
! 4776: {
! 4777: char *s;
! 4778: va_list v;
! 4779: va_start (v,p);
! 4780: s = g (p, va_arg (v,int));
! 4781: va_end (v);
! 4782: return s;
! 4783: }
! 4784:
! 4785: /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
! 4786: function prototypes and stuff, but not '\xHH' hex character constants.
! 4787: These don't provoke an error unfortunately, instead are silently treated
! 4788: as 'x'. The following induces an error, until -std is added to get
! 4789: proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
! 4790: array size at least. It's necessary to write '\x00'==0 to get something
! 4791: that's true only with -std. */
! 4792: int osf4_cc_array ['\x00' == 0 ? 1 : -1];
! 4793:
! 4794: /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
! 4795: inside strings and character constants. */
! 4796: #define FOO(x) 'x'
! 4797: int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
! 4798:
! 4799: int test (int i, double x);
! 4800: struct s1 {int (*f) (int a);};
! 4801: struct s2 {int (*f) (double a);};
! 4802: int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
! 4803: int argc;
! 4804: char **argv;
! 4805: int
! 4806: main ()
! 4807: {
! 4808: return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
! 4809: ;
! 4810: return 0;
! 4811: }
! 4812: _ACEOF
! 4813: for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
! 4814: -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
! 4815: do
! 4816: CC="$ac_save_CC $ac_arg"
! 4817: if ac_fn_c_try_compile "$LINENO"; then :
! 4818: ac_cv_prog_cc_c89=$ac_arg
! 4819: fi
! 4820: rm -f core conftest.err conftest.$ac_objext
! 4821: test "x$ac_cv_prog_cc_c89" != "xno" && break
! 4822: done
! 4823: rm -f conftest.$ac_ext
! 4824: CC=$ac_save_CC
! 4825:
! 4826: fi
! 4827: # AC_CACHE_VAL
! 4828: case "x$ac_cv_prog_cc_c89" in
! 4829: x)
! 4830: { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
! 4831: $as_echo "none needed" >&6; } ;;
! 4832: xno)
! 4833: { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
! 4834: $as_echo "unsupported" >&6; } ;;
! 4835: *)
! 4836: CC="$CC $ac_cv_prog_cc_c89"
! 4837: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
! 4838: $as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
! 4839: esac
! 4840: if test "x$ac_cv_prog_cc_c89" != xno; then :
! 4841:
! 4842: fi
! 4843:
! 4844: ac_ext=c
! 4845: ac_cpp='$CPP $CPPFLAGS'
! 4846: ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
! 4847: ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
! 4848: ac_compiler_gnu=$ac_cv_c_compiler_gnu
! 4849:
! 4850: depcc="$CC" am_compiler_list=
! 4851:
! 4852: { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
! 4853: $as_echo_n "checking dependency style of $depcc... " >&6; }
! 4854: if ${am_cv_CC_dependencies_compiler_type+:} false; then :
! 4855: $as_echo_n "(cached) " >&6
! 4856: else
! 4857: if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
! 4858: # We make a subdir and do the tests there. Otherwise we can end up
! 4859: # making bogus files that we don't know about and never remove. For
! 4860: # instance it was reported that on HP-UX the gcc test will end up
! 4861: # making a dummy file named 'D' -- because '-MD' means "put the output
! 4862: # in D".
! 4863: rm -rf conftest.dir
! 4864: mkdir conftest.dir
! 4865: # Copy depcomp to subdir because otherwise we won't find it if we're
! 4866: # using a relative directory.
! 4867: cp "$am_depcomp" conftest.dir
! 4868: cd conftest.dir
! 4869: # We will build objects and dependencies in a subdirectory because
! 4870: # it helps to detect inapplicable dependency modes. For instance
! 4871: # both Tru64's cc and ICC support -MD to output dependencies as a
! 4872: # side effect of compilation, but ICC will put the dependencies in
! 4873: # the current directory while Tru64 will put them in the object
! 4874: # directory.
! 4875: mkdir sub
! 4876:
! 4877: am_cv_CC_dependencies_compiler_type=none
! 4878: if test "$am_compiler_list" = ""; then
! 4879: am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
! 4880: fi
! 4881: am__universal=false
! 4882: case " $depcc " in #(
! 4883: *\ -arch\ *\ -arch\ *) am__universal=true ;;
! 4884: esac
! 4885:
! 4886: for depmode in $am_compiler_list; do
! 4887: # Setup a source with many dependencies, because some compilers
! 4888: # like to wrap large dependency lists on column 80 (with \), and
! 4889: # we should not choose a depcomp mode which is confused by this.
! 4890: #
! 4891: # We need to recreate these files for each test, as the compiler may
! 4892: # overwrite some of them when testing with obscure command lines.
! 4893: # This happens at least with the AIX C compiler.
! 4894: : > sub/conftest.c
! 4895: for i in 1 2 3 4 5 6; do
! 4896: echo '#include "conftst'$i'.h"' >> sub/conftest.c
! 4897: # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
! 4898: # Solaris 10 /bin/sh.
! 4899: echo '/* dummy */' > sub/conftst$i.h
! 4900: done
! 4901: echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
! 4902:
! 4903: # We check with '-c' and '-o' for the sake of the "dashmstdout"
! 4904: # mode. It turns out that the SunPro C++ compiler does not properly
! 4905: # handle '-M -o', and we need to detect this. Also, some Intel
! 4906: # versions had trouble with output in subdirs.
! 4907: am__obj=sub/conftest.${OBJEXT-o}
! 4908: am__minus_obj="-o $am__obj"
! 4909: case $depmode in
! 4910: gcc)
! 4911: # This depmode causes a compiler race in universal mode.
! 4912: test "$am__universal" = false || continue
! 4913: ;;
! 4914: nosideeffect)
! 4915: # After this tag, mechanisms are not by side-effect, so they'll
! 4916: # only be used when explicitly requested.
! 4917: if test "x$enable_dependency_tracking" = xyes; then
! 4918: continue
! 4919: else
! 4920: break
! 4921: fi
! 4922: ;;
! 4923: msvc7 | msvc7msys | msvisualcpp | msvcmsys)
! 4924: # This compiler won't grok '-c -o', but also, the minuso test has
! 4925: # not run yet. These depmodes are late enough in the game, and
! 4926: # so weak that their functioning should not be impacted.
! 4927: am__obj=conftest.${OBJEXT-o}
! 4928: am__minus_obj=
! 4929: ;;
! 4930: none) break ;;
! 4931: esac
! 4932: if depmode=$depmode \
! 4933: source=sub/conftest.c object=$am__obj \
! 4934: depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
! 4935: $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
! 4936: >/dev/null 2>conftest.err &&
! 4937: grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
! 4938: grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
! 4939: grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
! 4940: ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
! 4941: # icc doesn't choke on unknown options, it will just issue warnings
! 4942: # or remarks (even with -Werror). So we grep stderr for any message
! 4943: # that says an option was ignored or not supported.
! 4944: # When given -MP, icc 7.0 and 7.1 complain thusly:
! 4945: # icc: Command line warning: ignoring option '-M'; no argument required
! 4946: # The diagnosis changed in icc 8.0:
! 4947: # icc: Command line remark: option '-MP' not supported
! 4948: if (grep 'ignoring option' conftest.err ||
! 4949: grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
! 4950: am_cv_CC_dependencies_compiler_type=$depmode
! 4951: break
! 4952: fi
! 4953: fi
! 4954: done
! 4955:
! 4956: cd ..
! 4957: rm -rf conftest.dir
! 4958: else
! 4959: am_cv_CC_dependencies_compiler_type=none
! 4960: fi
! 4961:
! 4962: fi
! 4963: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5
! 4964: $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; }
! 4965: CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
! 4966:
! 4967: if
! 4968: test "x$enable_dependency_tracking" != xno \
! 4969: && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
! 4970: am__fastdepCC_TRUE=
! 4971: am__fastdepCC_FALSE='#'
! 4972: else
! 4973: am__fastdepCC_TRUE='#'
! 4974: am__fastdepCC_FALSE=
! 4975: fi
! 4976:
! 4977:
! 4978: ac_ext=c
! 4979: ac_cpp='$CPP $CPPFLAGS'
! 4980: ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
! 4981: ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
! 4982: ac_compiler_gnu=$ac_cv_c_compiler_gnu
! 4983: { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5
! 4984: $as_echo_n "checking how to run the C preprocessor... " >&6; }
! 4985: # On Suns, sometimes $CPP names a directory.
! 4986: if test -n "$CPP" && test -d "$CPP"; then
! 4987: CPP=
! 4988: fi
! 4989: if test -z "$CPP"; then
! 4990: if ${ac_cv_prog_CPP+:} false; then :
! 4991: $as_echo_n "(cached) " >&6
! 4992: else
! 4993: # Double quotes because CPP needs to be expanded
! 4994: for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
! 4995: do
! 4996: ac_preproc_ok=false
! 4997: for ac_c_preproc_warn_flag in '' yes
! 4998: do
! 4999: # Use a header file that comes with gcc, so configuring glibc
! 5000: # with a fresh cross-compiler works.
! 5001: # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
! 5002: # <limits.h> exists even on freestanding compilers.
! 5003: # On the NeXT, cc -E runs the code through the compiler's parser,
! 5004: # not just through cpp. "Syntax error" is here to catch this case.
! 5005: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 5006: /* end confdefs.h. */
! 5007: #ifdef __STDC__
! 5008: # include <limits.h>
! 5009: #else
! 5010: # include <assert.h>
! 5011: #endif
! 5012: Syntax error
! 5013: _ACEOF
! 5014: if ac_fn_c_try_cpp "$LINENO"; then :
! 5015:
! 5016: else
! 5017: # Broken: fails on valid input.
! 5018: continue
! 5019: fi
! 5020: rm -f conftest.err conftest.i conftest.$ac_ext
! 5021:
! 5022: # OK, works on sane cases. Now check whether nonexistent headers
! 5023: # can be detected and how.
! 5024: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 5025: /* end confdefs.h. */
! 5026: #include <ac_nonexistent.h>
! 5027: _ACEOF
! 5028: if ac_fn_c_try_cpp "$LINENO"; then :
! 5029: # Broken: success on invalid input.
! 5030: continue
! 5031: else
! 5032: # Passes both tests.
! 5033: ac_preproc_ok=:
! 5034: break
! 5035: fi
! 5036: rm -f conftest.err conftest.i conftest.$ac_ext
! 5037:
! 5038: done
! 5039: # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
! 5040: rm -f conftest.i conftest.err conftest.$ac_ext
! 5041: if $ac_preproc_ok; then :
! 5042: break
! 5043: fi
! 5044:
! 5045: done
! 5046: ac_cv_prog_CPP=$CPP
! 5047:
! 5048: fi
! 5049: CPP=$ac_cv_prog_CPP
! 5050: else
! 5051: ac_cv_prog_CPP=$CPP
! 5052: fi
! 5053: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5
! 5054: $as_echo "$CPP" >&6; }
! 5055: ac_preproc_ok=false
! 5056: for ac_c_preproc_warn_flag in '' yes
! 5057: do
! 5058: # Use a header file that comes with gcc, so configuring glibc
! 5059: # with a fresh cross-compiler works.
! 5060: # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
! 5061: # <limits.h> exists even on freestanding compilers.
! 5062: # On the NeXT, cc -E runs the code through the compiler's parser,
! 5063: # not just through cpp. "Syntax error" is here to catch this case.
! 5064: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 5065: /* end confdefs.h. */
! 5066: #ifdef __STDC__
! 5067: # include <limits.h>
! 5068: #else
! 5069: # include <assert.h>
! 5070: #endif
! 5071: Syntax error
! 5072: _ACEOF
! 5073: if ac_fn_c_try_cpp "$LINENO"; then :
! 5074:
! 5075: else
! 5076: # Broken: fails on valid input.
! 5077: continue
! 5078: fi
! 5079: rm -f conftest.err conftest.i conftest.$ac_ext
! 5080:
! 5081: # OK, works on sane cases. Now check whether nonexistent headers
! 5082: # can be detected and how.
! 5083: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 5084: /* end confdefs.h. */
! 5085: #include <ac_nonexistent.h>
! 5086: _ACEOF
! 5087: if ac_fn_c_try_cpp "$LINENO"; then :
! 5088: # Broken: success on invalid input.
! 5089: continue
! 5090: else
! 5091: # Passes both tests.
! 5092: ac_preproc_ok=:
! 5093: break
! 5094: fi
! 5095: rm -f conftest.err conftest.i conftest.$ac_ext
! 5096:
! 5097: done
! 5098: # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
! 5099: rm -f conftest.i conftest.err conftest.$ac_ext
! 5100: if $ac_preproc_ok; then :
! 5101:
! 5102: else
! 5103: { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
! 5104: $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
! 5105: as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
! 5106: See \`config.log' for more details" "$LINENO" 5; }
! 5107: fi
! 5108:
! 5109: ac_ext=c
! 5110: ac_cpp='$CPP $CPPFLAGS'
! 5111: ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
! 5112: ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
! 5113: ac_compiler_gnu=$ac_cv_c_compiler_gnu
! 5114:
! 5115:
! 5116: if test -n "$ac_tool_prefix"; then
! 5117: # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
! 5118: set dummy ${ac_tool_prefix}ranlib; ac_word=$2
! 5119: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 5120: $as_echo_n "checking for $ac_word... " >&6; }
! 5121: if ${ac_cv_prog_RANLIB+:} false; then :
! 5122: $as_echo_n "(cached) " >&6
! 5123: else
! 5124: if test -n "$RANLIB"; then
! 5125: ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
! 5126: else
! 5127: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 5128: for as_dir in $PATH
! 5129: do
! 5130: IFS=$as_save_IFS
! 5131: test -z "$as_dir" && as_dir=.
! 5132: for ac_exec_ext in '' $ac_executable_extensions; do
! 5133: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 5134: ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
! 5135: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 5136: break 2
! 5137: fi
! 5138: done
! 5139: done
! 5140: IFS=$as_save_IFS
! 5141:
! 5142: fi
! 5143: fi
! 5144: RANLIB=$ac_cv_prog_RANLIB
! 5145: if test -n "$RANLIB"; then
! 5146: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5
! 5147: $as_echo "$RANLIB" >&6; }
! 5148: else
! 5149: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 5150: $as_echo "no" >&6; }
! 5151: fi
! 5152:
! 5153:
! 5154: fi
! 5155: if test -z "$ac_cv_prog_RANLIB"; then
! 5156: ac_ct_RANLIB=$RANLIB
! 5157: # Extract the first word of "ranlib", so it can be a program name with args.
! 5158: set dummy ranlib; ac_word=$2
! 5159: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 5160: $as_echo_n "checking for $ac_word... " >&6; }
! 5161: if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
! 5162: $as_echo_n "(cached) " >&6
! 5163: else
! 5164: if test -n "$ac_ct_RANLIB"; then
! 5165: ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
! 5166: else
! 5167: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 5168: for as_dir in $PATH
! 5169: do
! 5170: IFS=$as_save_IFS
! 5171: test -z "$as_dir" && as_dir=.
! 5172: for ac_exec_ext in '' $ac_executable_extensions; do
! 5173: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 5174: ac_cv_prog_ac_ct_RANLIB="ranlib"
! 5175: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 5176: break 2
! 5177: fi
! 5178: done
! 5179: done
! 5180: IFS=$as_save_IFS
! 5181:
! 5182: fi
! 5183: fi
! 5184: ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
! 5185: if test -n "$ac_ct_RANLIB"; then
! 5186: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5
! 5187: $as_echo "$ac_ct_RANLIB" >&6; }
! 5188: else
! 5189: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 5190: $as_echo "no" >&6; }
! 5191: fi
! 5192:
! 5193: if test "x$ac_ct_RANLIB" = x; then
! 5194: RANLIB=":"
! 5195: else
! 5196: case $cross_compiling:$ac_tool_warned in
! 5197: yes:)
! 5198: { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
! 5199: $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
! 5200: ac_tool_warned=yes ;;
! 5201: esac
! 5202: RANLIB=$ac_ct_RANLIB
! 5203: fi
! 5204: else
! 5205: RANLIB="$ac_cv_prog_RANLIB"
! 5206: fi
! 5207:
! 5208: if test -n "$ac_tool_prefix"; then
! 5209: # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
! 5210: set dummy ${ac_tool_prefix}ar; ac_word=$2
! 5211: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 5212: $as_echo_n "checking for $ac_word... " >&6; }
! 5213: if ${ac_cv_prog_AR+:} false; then :
! 5214: $as_echo_n "(cached) " >&6
! 5215: else
! 5216: if test -n "$AR"; then
! 5217: ac_cv_prog_AR="$AR" # Let the user override the test.
! 5218: else
! 5219: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 5220: for as_dir in $PATH
! 5221: do
! 5222: IFS=$as_save_IFS
! 5223: test -z "$as_dir" && as_dir=.
! 5224: for ac_exec_ext in '' $ac_executable_extensions; do
! 5225: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 5226: ac_cv_prog_AR="${ac_tool_prefix}ar"
! 5227: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 5228: break 2
! 5229: fi
! 5230: done
! 5231: done
! 5232: IFS=$as_save_IFS
! 5233:
! 5234: fi
! 5235: fi
! 5236: AR=$ac_cv_prog_AR
! 5237: if test -n "$AR"; then
! 5238: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5
! 5239: $as_echo "$AR" >&6; }
! 5240: else
! 5241: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 5242: $as_echo "no" >&6; }
! 5243: fi
! 5244:
! 5245:
! 5246: fi
! 5247: if test -z "$ac_cv_prog_AR"; then
! 5248: ac_ct_AR=$AR
! 5249: # Extract the first word of "ar", so it can be a program name with args.
! 5250: set dummy ar; ac_word=$2
! 5251: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 5252: $as_echo_n "checking for $ac_word... " >&6; }
! 5253: if ${ac_cv_prog_ac_ct_AR+:} false; then :
! 5254: $as_echo_n "(cached) " >&6
! 5255: else
! 5256: if test -n "$ac_ct_AR"; then
! 5257: ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test.
! 5258: else
! 5259: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 5260: for as_dir in $PATH
! 5261: do
! 5262: IFS=$as_save_IFS
! 5263: test -z "$as_dir" && as_dir=.
! 5264: for ac_exec_ext in '' $ac_executable_extensions; do
! 5265: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 5266: ac_cv_prog_ac_ct_AR="ar"
! 5267: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 5268: break 2
! 5269: fi
! 5270: done
! 5271: done
! 5272: IFS=$as_save_IFS
! 5273:
! 5274: fi
! 5275: fi
! 5276: ac_ct_AR=$ac_cv_prog_ac_ct_AR
! 5277: if test -n "$ac_ct_AR"; then
! 5278: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5
! 5279: $as_echo "$ac_ct_AR" >&6; }
! 5280: else
! 5281: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 5282: $as_echo "no" >&6; }
! 5283: fi
! 5284:
! 5285: if test "x$ac_ct_AR" = x; then
! 5286: AR=""
! 5287: else
! 5288: case $cross_compiling:$ac_tool_warned in
! 5289: yes:)
! 5290: { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
! 5291: $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
! 5292: ac_tool_warned=yes ;;
! 5293: esac
! 5294: AR=$ac_ct_AR
! 5295: fi
! 5296: else
! 5297: AR="$ac_cv_prog_AR"
! 5298: fi
! 5299:
! 5300: if test -n "$ac_tool_prefix"; then
! 5301: # Extract the first word of "${ac_tool_prefix}ld", so it can be a program name with args.
! 5302: set dummy ${ac_tool_prefix}ld; ac_word=$2
! 5303: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 5304: $as_echo_n "checking for $ac_word... " >&6; }
! 5305: if ${ac_cv_prog_LD+:} false; then :
! 5306: $as_echo_n "(cached) " >&6
! 5307: else
! 5308: if test -n "$LD"; then
! 5309: ac_cv_prog_LD="$LD" # Let the user override the test.
! 5310: else
! 5311: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 5312: for as_dir in $PATH
! 5313: do
! 5314: IFS=$as_save_IFS
! 5315: test -z "$as_dir" && as_dir=.
! 5316: for ac_exec_ext in '' $ac_executable_extensions; do
! 5317: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 5318: ac_cv_prog_LD="${ac_tool_prefix}ld"
! 5319: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 5320: break 2
! 5321: fi
! 5322: done
! 5323: done
! 5324: IFS=$as_save_IFS
! 5325:
! 5326: fi
! 5327: fi
! 5328: LD=$ac_cv_prog_LD
! 5329: if test -n "$LD"; then
! 5330: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5
! 5331: $as_echo "$LD" >&6; }
! 5332: else
! 5333: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 5334: $as_echo "no" >&6; }
! 5335: fi
! 5336:
! 5337:
! 5338: fi
! 5339: if test -z "$ac_cv_prog_LD"; then
! 5340: ac_ct_LD=$LD
! 5341: # Extract the first word of "ld", so it can be a program name with args.
! 5342: set dummy ld; ac_word=$2
! 5343: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 5344: $as_echo_n "checking for $ac_word... " >&6; }
! 5345: if ${ac_cv_prog_ac_ct_LD+:} false; then :
! 5346: $as_echo_n "(cached) " >&6
! 5347: else
! 5348: if test -n "$ac_ct_LD"; then
! 5349: ac_cv_prog_ac_ct_LD="$ac_ct_LD" # Let the user override the test.
! 5350: else
! 5351: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 5352: for as_dir in $PATH
! 5353: do
! 5354: IFS=$as_save_IFS
! 5355: test -z "$as_dir" && as_dir=.
! 5356: for ac_exec_ext in '' $ac_executable_extensions; do
! 5357: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 5358: ac_cv_prog_ac_ct_LD="ld"
! 5359: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 5360: break 2
! 5361: fi
! 5362: done
! 5363: done
! 5364: IFS=$as_save_IFS
! 5365:
! 5366: fi
! 5367: fi
! 5368: ac_ct_LD=$ac_cv_prog_ac_ct_LD
! 5369: if test -n "$ac_ct_LD"; then
! 5370: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LD" >&5
! 5371: $as_echo "$ac_ct_LD" >&6; }
! 5372: else
! 5373: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 5374: $as_echo "no" >&6; }
! 5375: fi
! 5376:
! 5377: if test "x$ac_ct_LD" = x; then
! 5378: LD=""
! 5379: else
! 5380: case $cross_compiling:$ac_tool_warned in
! 5381: yes:)
! 5382: { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
! 5383: $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
! 5384: ac_tool_warned=yes ;;
! 5385: esac
! 5386: LD=$ac_ct_LD
! 5387: fi
! 5388: else
! 5389: LD="$ac_cv_prog_LD"
! 5390: fi
! 5391:
! 5392: if test -n "$ac_tool_prefix"; then
! 5393: # Extract the first word of "${ac_tool_prefix}nm", so it can be a program name with args.
! 5394: set dummy ${ac_tool_prefix}nm; ac_word=$2
! 5395: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 5396: $as_echo_n "checking for $ac_word... " >&6; }
! 5397: if ${ac_cv_prog_NM+:} false; then :
! 5398: $as_echo_n "(cached) " >&6
! 5399: else
! 5400: if test -n "$NM"; then
! 5401: ac_cv_prog_NM="$NM" # Let the user override the test.
! 5402: else
! 5403: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 5404: for as_dir in $PATH
! 5405: do
! 5406: IFS=$as_save_IFS
! 5407: test -z "$as_dir" && as_dir=.
! 5408: for ac_exec_ext in '' $ac_executable_extensions; do
! 5409: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 5410: ac_cv_prog_NM="${ac_tool_prefix}nm"
! 5411: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 5412: break 2
! 5413: fi
! 5414: done
! 5415: done
! 5416: IFS=$as_save_IFS
! 5417:
! 5418: fi
! 5419: fi
! 5420: NM=$ac_cv_prog_NM
! 5421: if test -n "$NM"; then
! 5422: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NM" >&5
! 5423: $as_echo "$NM" >&6; }
! 5424: else
! 5425: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 5426: $as_echo "no" >&6; }
! 5427: fi
! 5428:
! 5429:
! 5430: fi
! 5431: if test -z "$ac_cv_prog_NM"; then
! 5432: ac_ct_NM=$NM
! 5433: # Extract the first word of "nm", so it can be a program name with args.
! 5434: set dummy nm; ac_word=$2
! 5435: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 5436: $as_echo_n "checking for $ac_word... " >&6; }
! 5437: if ${ac_cv_prog_ac_ct_NM+:} false; then :
! 5438: $as_echo_n "(cached) " >&6
! 5439: else
! 5440: if test -n "$ac_ct_NM"; then
! 5441: ac_cv_prog_ac_ct_NM="$ac_ct_NM" # Let the user override the test.
! 5442: else
! 5443: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 5444: for as_dir in $PATH
! 5445: do
! 5446: IFS=$as_save_IFS
! 5447: test -z "$as_dir" && as_dir=.
! 5448: for ac_exec_ext in '' $ac_executable_extensions; do
! 5449: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 5450: ac_cv_prog_ac_ct_NM="nm"
! 5451: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 5452: break 2
! 5453: fi
! 5454: done
! 5455: done
! 5456: IFS=$as_save_IFS
! 5457:
! 5458: fi
! 5459: fi
! 5460: ac_ct_NM=$ac_cv_prog_ac_ct_NM
! 5461: if test -n "$ac_ct_NM"; then
! 5462: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NM" >&5
! 5463: $as_echo "$ac_ct_NM" >&6; }
! 5464: else
! 5465: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 5466: $as_echo "no" >&6; }
! 5467: fi
! 5468:
! 5469: if test "x$ac_ct_NM" = x; then
! 5470: NM=""
! 5471: else
! 5472: case $cross_compiling:$ac_tool_warned in
! 5473: yes:)
! 5474: { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
! 5475: $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
! 5476: ac_tool_warned=yes ;;
! 5477: esac
! 5478: NM=$ac_ct_NM
! 5479: fi
! 5480: else
! 5481: NM="$ac_cv_prog_NM"
! 5482: fi
! 5483:
! 5484:
! 5485: if test -n "$ac_tool_prefix"; then
! 5486: # Extract the first word of "${ac_tool_prefix}mig", so it can be a program name with args.
! 5487: set dummy ${ac_tool_prefix}mig; ac_word=$2
! 5488: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 5489: $as_echo_n "checking for $ac_word... " >&6; }
! 5490: if ${ac_cv_prog_MIG+:} false; then :
! 5491: $as_echo_n "(cached) " >&6
! 5492: else
! 5493: if test -n "$MIG"; then
! 5494: ac_cv_prog_MIG="$MIG" # Let the user override the test.
! 5495: else
! 5496: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 5497: for as_dir in $PATH
! 5498: do
! 5499: IFS=$as_save_IFS
! 5500: test -z "$as_dir" && as_dir=.
! 5501: for ac_exec_ext in '' $ac_executable_extensions; do
! 5502: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 5503: ac_cv_prog_MIG="${ac_tool_prefix}mig"
! 5504: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 5505: break 2
! 5506: fi
! 5507: done
! 5508: done
! 5509: IFS=$as_save_IFS
! 5510:
! 5511: fi
! 5512: fi
! 5513: MIG=$ac_cv_prog_MIG
! 5514: if test -n "$MIG"; then
! 5515: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MIG" >&5
! 5516: $as_echo "$MIG" >&6; }
! 5517: else
! 5518: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 5519: $as_echo "no" >&6; }
! 5520: fi
! 5521:
! 5522:
! 5523: fi
! 5524: if test -z "$ac_cv_prog_MIG"; then
! 5525: ac_ct_MIG=$MIG
! 5526: # Extract the first word of "mig", so it can be a program name with args.
! 5527: set dummy mig; ac_word=$2
! 5528: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 5529: $as_echo_n "checking for $ac_word... " >&6; }
! 5530: if ${ac_cv_prog_ac_ct_MIG+:} false; then :
! 5531: $as_echo_n "(cached) " >&6
! 5532: else
! 5533: if test -n "$ac_ct_MIG"; then
! 5534: ac_cv_prog_ac_ct_MIG="$ac_ct_MIG" # Let the user override the test.
! 5535: else
! 5536: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 5537: for as_dir in $PATH
! 5538: do
! 5539: IFS=$as_save_IFS
! 5540: test -z "$as_dir" && as_dir=.
! 5541: for ac_exec_ext in '' $ac_executable_extensions; do
! 5542: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 5543: ac_cv_prog_ac_ct_MIG="mig"
! 5544: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 5545: break 2
! 5546: fi
! 5547: done
! 5548: done
! 5549: IFS=$as_save_IFS
! 5550:
! 5551: fi
! 5552: fi
! 5553: ac_ct_MIG=$ac_cv_prog_ac_ct_MIG
! 5554: if test -n "$ac_ct_MIG"; then
! 5555: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MIG" >&5
! 5556: $as_echo "$ac_ct_MIG" >&6; }
! 5557: else
! 5558: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 5559: $as_echo "no" >&6; }
! 5560: fi
! 5561:
! 5562: if test "x$ac_ct_MIG" = x; then
! 5563: MIG="mig"
! 5564: else
! 5565: case $cross_compiling:$ac_tool_warned in
! 5566: yes:)
! 5567: { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
! 5568: $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
! 5569: ac_tool_warned=yes ;;
! 5570: esac
! 5571: MIG=$ac_ct_MIG
! 5572: fi
! 5573: else
! 5574: MIG="$ac_cv_prog_MIG"
! 5575: fi
! 5576:
! 5577:
! 5578: if test "x$CC" != xcc; then
! 5579: { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC and cc understand -c and -o together" >&5
! 5580: $as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; }
! 5581: else
! 5582: { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether cc understands -c and -o together" >&5
! 5583: $as_echo_n "checking whether cc understands -c and -o together... " >&6; }
! 5584: fi
! 5585: set dummy $CC; ac_cc=`$as_echo "$2" |
! 5586: sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
! 5587: if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then :
! 5588: $as_echo_n "(cached) " >&6
! 5589: else
! 5590: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 5591: /* end confdefs.h. */
! 5592:
! 5593: int
! 5594: main ()
! 5595: {
! 5596:
! 5597: ;
! 5598: return 0;
! 5599: }
! 5600: _ACEOF
! 5601: # Make sure it works both with $CC and with simple cc.
! 5602: # We do the test twice because some compilers refuse to overwrite an
! 5603: # existing .o file with -o, though they will create one.
! 5604: ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
! 5605: rm -f conftest2.*
! 5606: if { { case "(($ac_try" in
! 5607: *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
! 5608: *) ac_try_echo=$ac_try;;
! 5609: esac
! 5610: eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
! 5611: $as_echo "$ac_try_echo"; } >&5
! 5612: (eval "$ac_try") 2>&5
! 5613: ac_status=$?
! 5614: $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
! 5615: test $ac_status = 0; } &&
! 5616: test -f conftest2.$ac_objext && { { case "(($ac_try" in
! 5617: *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
! 5618: *) ac_try_echo=$ac_try;;
! 5619: esac
! 5620: eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
! 5621: $as_echo "$ac_try_echo"; } >&5
! 5622: (eval "$ac_try") 2>&5
! 5623: ac_status=$?
! 5624: $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
! 5625: test $ac_status = 0; };
! 5626: then
! 5627: eval ac_cv_prog_cc_${ac_cc}_c_o=yes
! 5628: if test "x$CC" != xcc; then
! 5629: # Test first that cc exists at all.
! 5630: if { ac_try='cc -c conftest.$ac_ext >&5'
! 5631: { { case "(($ac_try" in
! 5632: *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
! 5633: *) ac_try_echo=$ac_try;;
! 5634: esac
! 5635: eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
! 5636: $as_echo "$ac_try_echo"; } >&5
! 5637: (eval "$ac_try") 2>&5
! 5638: ac_status=$?
! 5639: $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
! 5640: test $ac_status = 0; }; }; then
! 5641: ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
! 5642: rm -f conftest2.*
! 5643: if { { case "(($ac_try" in
! 5644: *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
! 5645: *) ac_try_echo=$ac_try;;
! 5646: esac
! 5647: eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
! 5648: $as_echo "$ac_try_echo"; } >&5
! 5649: (eval "$ac_try") 2>&5
! 5650: ac_status=$?
! 5651: $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
! 5652: test $ac_status = 0; } &&
! 5653: test -f conftest2.$ac_objext && { { case "(($ac_try" in
! 5654: *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
! 5655: *) ac_try_echo=$ac_try;;
! 5656: esac
! 5657: eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
! 5658: $as_echo "$ac_try_echo"; } >&5
! 5659: (eval "$ac_try") 2>&5
! 5660: ac_status=$?
! 5661: $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
! 5662: test $ac_status = 0; };
! 5663: then
! 5664: # cc works too.
! 5665: :
! 5666: else
! 5667: # cc exists but doesn't like -o.
! 5668: eval ac_cv_prog_cc_${ac_cc}_c_o=no
! 5669: fi
! 5670: fi
! 5671: fi
! 5672: else
! 5673: eval ac_cv_prog_cc_${ac_cc}_c_o=no
! 5674: fi
! 5675: rm -f core conftest*
! 5676:
! 5677: fi
! 5678: if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then
! 5679: { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
! 5680: $as_echo "yes" >&6; }
! 5681: else
! 5682: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 5683: $as_echo "no" >&6; }
! 5684:
! 5685: $as_echo "#define NO_MINUS_C_MINUS_O 1" >>confdefs.h
! 5686:
! 5687: fi
! 5688:
! 5689: # FIXME: we rely on the cache variable name because
! 5690: # there is no other way.
! 5691: set dummy $CC
! 5692: am_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
! 5693: eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
! 5694: if test "$am_t" != yes; then
! 5695: # Losing compiler, so override with the script.
! 5696: # FIXME: It is wrong to rewrite CC.
! 5697: # But if we don't then we get into trouble of one sort or another.
! 5698: # A longer-term fix would be to have automake use am__CC in this case,
! 5699: # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
! 5700: CC="$am_aux_dir/compile $CC"
! 5701: fi
! 5702:
! 5703:
! 5704:
! 5705: # Extract the first word of "gzip", so it can be a program name with args.
! 5706: set dummy gzip; ac_word=$2
! 5707: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 5708: $as_echo_n "checking for $ac_word... " >&6; }
! 5709: if ${ac_cv_prog_GZIP+:} false; then :
! 5710: $as_echo_n "(cached) " >&6
! 5711: else
! 5712: if test -n "$GZIP"; then
! 5713: ac_cv_prog_GZIP="$GZIP" # Let the user override the test.
! 5714: else
! 5715: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 5716: for as_dir in $PATH
! 5717: do
! 5718: IFS=$as_save_IFS
! 5719: test -z "$as_dir" && as_dir=.
! 5720: for ac_exec_ext in '' $ac_executable_extensions; do
! 5721: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 5722: ac_cv_prog_GZIP="gzip"
! 5723: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 5724: break 2
! 5725: fi
! 5726: done
! 5727: done
! 5728: IFS=$as_save_IFS
! 5729:
! 5730: test -z "$ac_cv_prog_GZIP" && ac_cv_prog_GZIP="gzip-not-found"
! 5731: fi
! 5732: fi
! 5733: GZIP=$ac_cv_prog_GZIP
! 5734: if test -n "$GZIP"; then
! 5735: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GZIP" >&5
! 5736: $as_echo "$GZIP" >&6; }
! 5737: else
! 5738: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 5739: $as_echo "no" >&6; }
! 5740: fi
! 5741:
! 5742:
! 5743: if test -n "$ac_tool_prefix"; then
! 5744: # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
! 5745: set dummy ${ac_tool_prefix}strip; ac_word=$2
! 5746: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 5747: $as_echo_n "checking for $ac_word... " >&6; }
! 5748: if ${ac_cv_prog_STRIP+:} false; then :
! 5749: $as_echo_n "(cached) " >&6
! 5750: else
! 5751: if test -n "$STRIP"; then
! 5752: ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
! 5753: else
! 5754: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 5755: for as_dir in $PATH
! 5756: do
! 5757: IFS=$as_save_IFS
! 5758: test -z "$as_dir" && as_dir=.
! 5759: for ac_exec_ext in '' $ac_executable_extensions; do
! 5760: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 5761: ac_cv_prog_STRIP="${ac_tool_prefix}strip"
! 5762: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 5763: break 2
! 5764: fi
! 5765: done
! 5766: done
! 5767: IFS=$as_save_IFS
! 5768:
! 5769: fi
! 5770: fi
! 5771: STRIP=$ac_cv_prog_STRIP
! 5772: if test -n "$STRIP"; then
! 5773: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
! 5774: $as_echo "$STRIP" >&6; }
! 5775: else
! 5776: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 5777: $as_echo "no" >&6; }
! 5778: fi
! 5779:
! 5780:
! 5781: fi
! 5782: if test -z "$ac_cv_prog_STRIP"; then
! 5783: ac_ct_STRIP=$STRIP
! 5784: # Extract the first word of "strip", so it can be a program name with args.
! 5785: set dummy strip; ac_word=$2
! 5786: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 5787: $as_echo_n "checking for $ac_word... " >&6; }
! 5788: if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
! 5789: $as_echo_n "(cached) " >&6
! 5790: else
! 5791: if test -n "$ac_ct_STRIP"; then
! 5792: ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
! 5793: else
! 5794: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 5795: for as_dir in $PATH
! 5796: do
! 5797: IFS=$as_save_IFS
! 5798: test -z "$as_dir" && as_dir=.
! 5799: for ac_exec_ext in '' $ac_executable_extensions; do
! 5800: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 5801: ac_cv_prog_ac_ct_STRIP="strip"
! 5802: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 5803: break 2
! 5804: fi
! 5805: done
! 5806: done
! 5807: IFS=$as_save_IFS
! 5808:
! 5809: fi
! 5810: fi
! 5811: ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
! 5812: if test -n "$ac_ct_STRIP"; then
! 5813: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
! 5814: $as_echo "$ac_ct_STRIP" >&6; }
! 5815: else
! 5816: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 5817: $as_echo "no" >&6; }
! 5818: fi
! 5819:
! 5820: if test "x$ac_ct_STRIP" = x; then
! 5821: STRIP=""
! 5822: else
! 5823: case $cross_compiling:$ac_tool_warned in
! 5824: yes:)
! 5825: { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
! 5826: $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
! 5827: ac_tool_warned=yes ;;
! 5828: esac
! 5829: STRIP=$ac_ct_STRIP
! 5830: fi
! 5831: else
! 5832: STRIP="$ac_cv_prog_STRIP"
! 5833: fi
! 5834:
! 5835:
! 5836: # Extract the first word of "patch", so it can be a program name with args.
! 5837: set dummy patch; ac_word=$2
! 5838: { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
! 5839: $as_echo_n "checking for $ac_word... " >&6; }
! 5840: if ${ac_cv_prog_PATCH+:} false; then :
! 5841: $as_echo_n "(cached) " >&6
! 5842: else
! 5843: if test -n "$PATCH"; then
! 5844: ac_cv_prog_PATCH="$PATCH" # Let the user override the test.
! 5845: else
! 5846: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 5847: for as_dir in $PATH
! 5848: do
! 5849: IFS=$as_save_IFS
! 5850: test -z "$as_dir" && as_dir=.
! 5851: for ac_exec_ext in '' $ac_executable_extensions; do
! 5852: if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
! 5853: ac_cv_prog_PATCH="patch"
! 5854: $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
! 5855: break 2
! 5856: fi
! 5857: done
! 5858: done
! 5859: IFS=$as_save_IFS
! 5860:
! 5861: test -z "$ac_cv_prog_PATCH" && ac_cv_prog_PATCH="patch-not-found"
! 5862: fi
! 5863: fi
! 5864: PATCH=$ac_cv_prog_PATCH
! 5865: if test -n "$PATCH"; then
! 5866: { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PATCH" >&5
! 5867: $as_echo "$PATCH" >&6; }
! 5868: else
! 5869: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 5870: $as_echo "no" >&6; }
! 5871: fi
! 5872:
! 5873:
! 5874:
! 5875: #
! 5876: # configure fragments.
! 5877: #
! 5878:
! 5879: # The test suite.
! 5880:
! 5881:
! 5882:
! 5883: #
! 5884: # Tests.
! 5885: #
! 5886:
! 5887: ac_config_files="$ac_config_files tests/test-mbchk"
! 5888:
! 5889:
! 5890:
! 5891:
! 5892: # Default set of device drivers.
! 5893: # Check whether --enable-device-drivers was given.
! 5894: if test "${enable_device_drivers+set}" = set; then :
! 5895: enableval=$enable_device_drivers;
! 5896: fi
! 5897:
! 5898: case $enable_device_drivers in
! 5899: '')
! 5900: enable_device_drivers=default;;
! 5901: no)
! 5902: enable_device_drivers=none;;
! 5903: default | none | qemu)
! 5904: :;;
! 5905: *)
! 5906: as_fn_error $? "invalid choice of
! 5907: \`--enable-device-drivers=$enable_device_drivers'." "$LINENO" 5
! 5908: ;;
! 5909: esac
! 5910:
! 5911: # Platform-specific configuration.
! 5912:
! 5913: # PC AT.
! 5914: # TODO. Currently handled in `i386/configfrag.ac'.
! 5915:
! 5916: # Xen.
! 5917:
! 5918:
! 5919:
! 5920: #
! 5921: # Xen platform.
! 5922: #
! 5923:
! 5924: if [ "$host_platform" = xen ]; then
! 5925:
! 5926: $as_echo "#define MACH_XEN /**/" >>confdefs.h
! 5927:
! 5928:
! 5929: $as_echo "#define MACH_HYP /**/" >>confdefs.h
! 5930:
! 5931: if true; then
! 5932: PLATFORM_xen_TRUE=
! 5933: PLATFORM_xen_FALSE='#'
! 5934: else
! 5935: PLATFORM_xen_TRUE='#'
! 5936: PLATFORM_xen_FALSE=
! 5937: fi
! 5938:
! 5939:
! 5940:
! 5941: # Check whether --enable-pseudo-phys was given.
! 5942: if test "${enable_pseudo_phys+set}" = set; then :
! 5943: enableval=$enable_pseudo_phys;
! 5944: fi
! 5945:
! 5946: if [ x"$enable_pseudo_phys" = xno ]; then
! 5947: if false; then
! 5948: enable_pseudo_phys_TRUE=
! 5949: enable_pseudo_phys_FALSE='#'
! 5950: else
! 5951: enable_pseudo_phys_TRUE='#'
! 5952: enable_pseudo_phys_FALSE=
! 5953: fi
! 5954:
! 5955: else
! 5956:
! 5957: $as_echo "#define MACH_PSEUDO_PHYS /**/" >>confdefs.h
! 5958:
! 5959: if true; then
! 5960: enable_pseudo_phys_TRUE=
! 5961: enable_pseudo_phys_FALSE='#'
! 5962: else
! 5963: enable_pseudo_phys_TRUE='#'
! 5964: enable_pseudo_phys_FALSE=
! 5965: fi
! 5966:
! 5967: fi
! 5968:
! 5969: # Check whether --enable-pv-pagetables was given.
! 5970: if test "${enable_pv_pagetables+set}" = set; then :
! 5971: enableval=$enable_pv_pagetables;
! 5972: fi
! 5973:
! 5974: if [ x"$enable_pv_pagetables" = xno ]; then
! 5975: if false; then
! 5976: enable_pv_pagetables_TRUE=
! 5977: enable_pv_pagetables_FALSE='#'
! 5978: else
! 5979: enable_pv_pagetables_TRUE='#'
! 5980: enable_pv_pagetables_FALSE=
! 5981: fi
! 5982:
! 5983: else
! 5984:
! 5985: $as_echo "#define MACH_PV_PAGETABLES /**/" >>confdefs.h
! 5986:
! 5987: if true; then
! 5988: enable_pv_pagetables_TRUE=
! 5989: enable_pv_pagetables_FALSE='#'
! 5990: else
! 5991: enable_pv_pagetables_TRUE='#'
! 5992: enable_pv_pagetables_FALSE=
! 5993: fi
! 5994:
! 5995: fi
! 5996:
! 5997: # Check whether --enable-pv-descriptors was given.
! 5998: if test "${enable_pv_descriptors+set}" = set; then :
! 5999: enableval=$enable_pv_descriptors;
! 6000: fi
! 6001:
! 6002: if [ x"$enable_pv_descriptors" = xno ]; then
! 6003: if false; then
! 6004: enable_pv_descriptors_TRUE=
! 6005: enable_pv_descriptors_FALSE='#'
! 6006: else
! 6007: enable_pv_descriptors_TRUE='#'
! 6008: enable_pv_descriptors_FALSE=
! 6009: fi
! 6010:
! 6011: else
! 6012:
! 6013: $as_echo "#define MACH_PV_DESCRIPTORS /**/" >>confdefs.h
! 6014:
! 6015: if true; then
! 6016: enable_pv_descriptors_TRUE=
! 6017: enable_pv_descriptors_FALSE='#'
! 6018: else
! 6019: enable_pv_descriptors_TRUE='#'
! 6020: enable_pv_descriptors_FALSE=
! 6021: fi
! 6022:
! 6023: fi
! 6024:
! 6025: # Check whether --enable-ring1 was given.
! 6026: if test "${enable_ring1+set}" = set; then :
! 6027: enableval=$enable_ring1;
! 6028: fi
! 6029:
! 6030: if [ x"$enable_ring1" = xno ]; then
! 6031: if false; then
! 6032: enable_ring1_TRUE=
! 6033: enable_ring1_FALSE='#'
! 6034: else
! 6035: enable_ring1_TRUE='#'
! 6036: enable_ring1_FALSE=
! 6037: fi
! 6038:
! 6039: else
! 6040:
! 6041: $as_echo "#define MACH_RING1 /**/" >>confdefs.h
! 6042:
! 6043: if true; then
! 6044: enable_ring1_TRUE=
! 6045: enable_ring1_FALSE='#'
! 6046: else
! 6047: enable_ring1_TRUE='#'
! 6048: enable_ring1_FALSE=
! 6049: fi
! 6050:
! 6051: fi
! 6052:
! 6053: else
! 6054: if false; then
! 6055: PLATFORM_xen_TRUE=
! 6056: PLATFORM_xen_FALSE='#'
! 6057: else
! 6058: PLATFORM_xen_TRUE='#'
! 6059: PLATFORM_xen_FALSE=
! 6060: fi
! 6061:
! 6062: if false; then
! 6063: enable_pseudo_phys_TRUE=
! 6064: enable_pseudo_phys_FALSE='#'
! 6065: else
! 6066: enable_pseudo_phys_TRUE='#'
! 6067: enable_pseudo_phys_FALSE=
! 6068: fi
! 6069:
! 6070: if false; then
! 6071: enable_pv_pagetables_TRUE=
! 6072: enable_pv_pagetables_FALSE='#'
! 6073: else
! 6074: enable_pv_pagetables_TRUE='#'
! 6075: enable_pv_pagetables_FALSE=
! 6076: fi
! 6077:
! 6078: if false; then
! 6079: enable_pv_descriptors_TRUE=
! 6080: enable_pv_descriptors_FALSE='#'
! 6081: else
! 6082: enable_pv_descriptors_TRUE='#'
! 6083: enable_pv_descriptors_FALSE=
! 6084: fi
! 6085:
! 6086: if false; then
! 6087: enable_ring1_TRUE=
! 6088: enable_ring1_FALSE='#'
! 6089: else
! 6090: enable_ring1_TRUE='#'
! 6091: enable_ring1_FALSE=
! 6092: fi
! 6093:
! 6094: fi
! 6095:
! 6096:
! 6097:
! 6098: # Machine-specific configuration.
! 6099:
! 6100: # ix86.
! 6101:
! 6102:
! 6103:
! 6104: #
! 6105: # Definitions.
! 6106: #
! 6107:
! 6108: case $host_cpu in
! 6109: i?86)
! 6110: if true; then
! 6111: HOST_ix86_TRUE=
! 6112: HOST_ix86_FALSE='#'
! 6113: else
! 6114: HOST_ix86_TRUE='#'
! 6115: HOST_ix86_FALSE=
! 6116: fi
! 6117:
! 6118:
! 6119: # Some of the i386-specific code checks for these.
! 6120:
! 6121: $as_echo "#define __ELF__ 1" >>confdefs.h
! 6122:
! 6123:
! 6124: # Determines the size of the CPU cache line.
! 6125:
! 6126: $as_echo "#define CPU_L1_SHIFT 6" >>confdefs.h
! 6127:
! 6128:
! 6129: # Does the architecture provide machine-specific interfaces?
! 6130: mach_machine_routines=1;;
! 6131: *)
! 6132: if false; then
! 6133: HOST_ix86_TRUE=
! 6134: HOST_ix86_FALSE='#'
! 6135: else
! 6136: HOST_ix86_TRUE='#'
! 6137: HOST_ix86_FALSE=
! 6138: fi
! 6139: ;;
! 6140: esac
! 6141:
! 6142: case $host_platform in
! 6143: at)
! 6144: if true; then
! 6145: PLATFORM_at_TRUE=
! 6146: PLATFORM_at_FALSE='#'
! 6147: else
! 6148: PLATFORM_at_TRUE='#'
! 6149: PLATFORM_at_FALSE=
! 6150: fi
! 6151: ;;
! 6152: *)
! 6153: if false; then
! 6154: PLATFORM_at_TRUE=
! 6155: PLATFORM_at_FALSE='#'
! 6156: else
! 6157: PLATFORM_at_TRUE='#'
! 6158: PLATFORM_at_FALSE=
! 6159: fi
! 6160: ;;
! 6161: esac
! 6162:
! 6163: #
! 6164: # Formerly in `i386/bogus/'.
! 6165: #
! 6166:
! 6167: ncom=0
! 6168: nlpr=0
! 6169: case $host_platform:$host_cpu in
! 6170: at:i?86)
! 6171: ncom=4
! 6172: nlpr=1
! 6173:
! 6174: # i386/bogus/platforms.h
! 6175:
! 6176: $as_echo "#define AT386 1" >>confdefs.h
! 6177: ;;
! 6178: xen:i?86)
! 6179: # TODO. That should probably not be needed.
! 6180: ncom=1
! 6181: # TODO. That should probably not be needed.
! 6182: # i386/bogus/platforms.h
! 6183:
! 6184: $as_echo "#define AT386 1" >>confdefs.h
! 6185: ;;
! 6186: *)
! 6187: :;;
! 6188: esac
! 6189:
! 6190: # i386/bogus/com.h
! 6191:
! 6192: cat >>confdefs.h <<_ACEOF
! 6193: #define NCOM $ncom
! 6194: _ACEOF
! 6195:
! 6196:
! 6197: # i386/bogus/lpr.h
! 6198:
! 6199: cat >>confdefs.h <<_ACEOF
! 6200: #define NLPR $nlpr
! 6201: _ACEOF
! 6202:
! 6203:
! 6204: #
! 6205: # Options.
! 6206: #
! 6207:
! 6208: # Check whether --enable-lpr was given.
! 6209: if test "${enable_lpr+set}" = set; then :
! 6210: enableval=$enable_lpr;
! 6211: fi
! 6212:
! 6213: case $host_platform:$host_cpu in
! 6214: at:i?86)
! 6215: case $enable_device_drivers in
! 6216: default)
! 6217: enable_lpr=${enable_lpr-yes};;
! 6218: *)
! 6219: enable_lpr=${enable_lpr-no};;
! 6220: esac;;
! 6221: *)
! 6222: if [ x"$enable_lpr" = xyes ]; then
! 6223: as_fn_error $? "cannot enable \`lpr' in this configuration." "$LINENO" 5
! 6224: fi;;
! 6225: esac
! 6226: if [ x"$enable_lpr" = xyes ]; then
! 6227:
! 6228: $as_echo "#define MACH_LPR /**/" >>confdefs.h
! 6229:
! 6230: if true; then
! 6231: enable_lpr_TRUE=
! 6232: enable_lpr_FALSE='#'
! 6233: else
! 6234: enable_lpr_TRUE='#'
! 6235: enable_lpr_FALSE=
! 6236: fi
! 6237:
! 6238: else
! 6239: if false; then
! 6240: enable_lpr_TRUE=
! 6241: enable_lpr_FALSE='#'
! 6242: else
! 6243: enable_lpr_TRUE='#'
! 6244: enable_lpr_FALSE=
! 6245: fi
! 6246:
! 6247: fi
! 6248:
! 6249:
! 6250: # Check whether --enable-pae was given.
! 6251: if test "${enable_pae+set}" = set; then :
! 6252: enableval=$enable_pae;
! 6253: fi
! 6254:
! 6255: case $host_platform:$host_cpu in
! 6256: xen:i?86)
! 6257: enable_pae=${enable_pae-yes};;
! 6258: *:i?86)
! 6259: :;;
! 6260: *)
! 6261: if [ x"$enable_pae" = xyes ]; then
! 6262: as_fn_error $? "can only enable the \`PAE' feature on ix86." "$LINENO" 5
! 6263: fi;;
! 6264: esac
! 6265: if [ x"$enable_pae" = xyes ]; then
! 6266:
! 6267: $as_echo "#define PAE 1" >>confdefs.h
! 6268:
! 6269: if true; then
! 6270: enable_pae_TRUE=
! 6271: enable_pae_FALSE='#'
! 6272: else
! 6273: enable_pae_TRUE='#'
! 6274: enable_pae_FALSE=
! 6275: fi
! 6276:
! 6277: else
! 6278: if false; then
! 6279: enable_pae_TRUE=
! 6280: enable_pae_FALSE='#'
! 6281: else
! 6282: enable_pae_TRUE='#'
! 6283: enable_pae_FALSE=
! 6284: fi
! 6285:
! 6286: fi
! 6287:
! 6288:
! 6289:
! 6290: # General options.
! 6291:
! 6292:
! 6293:
! 6294: #
! 6295: # Definitions.
! 6296: #
! 6297:
! 6298:
! 6299: $as_echo "#define MACH 1" >>confdefs.h
! 6300:
! 6301:
! 6302: $as_echo "#define CMU 1" >>confdefs.h
! 6303:
! 6304:
! 6305: $as_echo "#define MACH_KERNEL 1" >>confdefs.h
! 6306:
! 6307:
! 6308: $as_echo "#define KERNEL 1" >>confdefs.h
! 6309:
! 6310:
! 6311: #
! 6312: # Formerly in `bogus/'.
! 6313: #
! 6314:
! 6315: # When set, the bootstrap task symbols are preserved by the kernel debugger.
! 6316: # Used in `kern/bootstrap.c'.
! 6317:
! 6318: $as_echo "#define BOOTSTRAP_SYMBOLS 0" >>confdefs.h
! 6319:
! 6320:
! 6321: # Multiprocessor support is still broken.
! 6322:
! 6323: mach_ncpus=1
! 6324:
! 6325: cat >>confdefs.h <<_ACEOF
! 6326: #define NCPUS $mach_ncpus
! 6327: _ACEOF
! 6328:
! 6329: if [ $mach_ncpus -gt 1 ]; then
! 6330:
! 6331: $as_echo "#define MULTIPROCESSOR 1" >>confdefs.h
! 6332:
! 6333: fi
! 6334:
! 6335: # Restartable Atomic Sequences to get a really fast test-n-set. Can't be
! 6336: # enabled, as the `void recover_ras()' function is missing.
! 6337:
! 6338: $as_echo "#define FAST_TAS 0" >>confdefs.h
! 6339:
! 6340:
! 6341: # Cache footprint support.
! 6342:
! 6343: $as_echo "#define HW_FOOTPRINT 0" >>confdefs.h
! 6344:
! 6345:
! 6346: # Counters.
! 6347:
! 6348: $as_echo "#define MACH_COUNTERS 0" >>confdefs.h
! 6349:
! 6350:
! 6351: # IPC debugging interface.
! 6352:
! 6353: $as_echo "#define MACH_DEBUG 1" >>confdefs.h
! 6354:
! 6355:
! 6356: # Fixed priority threads.
! 6357:
! 6358: $as_echo "#define MACH_FIXPRI 1" >>confdefs.h
! 6359:
! 6360:
! 6361: # Mach host (resource alloc.).
! 6362:
! 6363: $as_echo "#define MACH_HOST 0" >>confdefs.h
! 6364:
! 6365:
! 6366: # IPC debugging calls.
! 6367:
! 6368: $as_echo "#define MACH_IPC_DEBUG 1" >>confdefs.h
! 6369:
! 6370:
! 6371: # Testing code/printfs.
! 6372:
! 6373: $as_echo "#define MACH_IPC_TEST 0" >>confdefs.h
! 6374:
! 6375:
! 6376: # Sanity-check simple locking.
! 6377:
! 6378: $as_echo "#define MACH_LDEBUG 0" >>confdefs.h
! 6379:
! 6380:
! 6381: # MP lock monitoring. Registers use of locks, contention. Depending on
! 6382: # hardware also records time spent with locks held. Used in `kern/lock_mon.c'.
! 6383:
! 6384: $as_echo "#define MACH_LOCK_MON 0" >>confdefs.h
! 6385:
! 6386:
! 6387: # Does the architecture provide machine-specific interfaces?
! 6388: mach_machine_routines=${mach_machine_routines-0}
! 6389:
! 6390: cat >>confdefs.h <<_ACEOF
! 6391: #define MACH_MACHINE_ROUTINES $mach_machine_routines
! 6392: _ACEOF
! 6393:
! 6394:
! 6395: # MP debugging. Use alternate locking routines to detect deadlocks. Used in
! 6396: # `kern/lock_mon.c'.
! 6397:
! 6398: $as_echo "#define MACH_MP_DEBUG 0" >>confdefs.h
! 6399:
! 6400:
! 6401: # Paged-out page map hints.
! 6402:
! 6403: $as_echo "#define MACH_PAGEMAP 1" >>confdefs.h
! 6404:
! 6405:
! 6406: # Do pc sample histogram.
! 6407:
! 6408: $as_echo "#define MACH_PCSAMPLE 1" >>confdefs.h
! 6409:
! 6410:
! 6411: # TTD Remote Kernel Debugging.
! 6412:
! 6413: $as_echo "#define MACH_TTD 0" >>confdefs.h
! 6414:
! 6415:
! 6416: # VM debugging calls.
! 6417:
! 6418: $as_echo "#define MACH_VM_DEBUG 1" >>confdefs.h
! 6419:
! 6420:
! 6421: # Mach-dep power conservation.
! 6422:
! 6423: $as_echo "#define POWER_SAVE 1" >>confdefs.h
! 6424:
! 6425:
! 6426: # No hardware clock rollover.
! 6427:
! 6428: $as_echo "#define SIMPLE_CLOCK 0" >>confdefs.h
! 6429:
! 6430:
! 6431: # Use statistical timing.
! 6432:
! 6433: $as_echo "#define STAT_TIME 1" >>confdefs.h
! 6434:
! 6435:
! 6436: # Kernel tracing.
! 6437:
! 6438: $as_echo "#define XPR_DEBUG 1" >>confdefs.h
! 6439:
! 6440:
! 6441: # Slab allocator debugging facilities.
! 6442:
! 6443: $as_echo "#define SLAB_VERIFY 0" >>confdefs.h
! 6444:
! 6445:
! 6446: # Enable the CPU pool layer in the slab allocator.
! 6447:
! 6448: $as_echo "#define SLAB_USE_CPU_POOLS 0" >>confdefs.h
! 6449:
! 6450:
! 6451: #
! 6452: # Options.
! 6453: #
! 6454:
! 6455: # Check whether --enable-kdb was given.
! 6456: if test "${enable_kdb+set}" = set; then :
! 6457: enableval=$enable_kdb;
! 6458: fi
! 6459:
! 6460: if [ x"$enable_kdb" = xyes ]; then
! 6461:
! 6462: $as_echo "#define MACH_KDB 1" >>confdefs.h
! 6463:
! 6464: if true; then
! 6465: enable_kdb_TRUE=
! 6466: enable_kdb_FALSE='#'
! 6467: else
! 6468: enable_kdb_TRUE='#'
! 6469: enable_kdb_FALSE=
! 6470: fi
! 6471:
! 6472: else
! 6473: # We need to be long winded here: bogus/mach_kdb.h made it default to zero,
! 6474: # unless overridden.
! 6475:
! 6476: $as_echo "#define MACH_KDB 0" >>confdefs.h
! 6477:
! 6478: if false; then
! 6479: enable_kdb_TRUE=
! 6480: enable_kdb_FALSE='#'
! 6481: else
! 6482: enable_kdb_TRUE='#'
! 6483: enable_kdb_FALSE=
! 6484: fi
! 6485:
! 6486: fi
! 6487:
! 6488:
! 6489: # Check whether --enable-kmsg was given.
! 6490: if test "${enable_kmsg+set}" = set; then :
! 6491: enableval=$enable_kmsg;
! 6492: fi
! 6493:
! 6494: if [ x"$enable_kmsg" != xno ]; then
! 6495:
! 6496: $as_echo "#define MACH_KMSG /**/" >>confdefs.h
! 6497:
! 6498: if true; then
! 6499: enable_kmsg_TRUE=
! 6500: enable_kmsg_FALSE='#'
! 6501: else
! 6502: enable_kmsg_TRUE='#'
! 6503: enable_kmsg_FALSE=
! 6504: fi
! 6505:
! 6506: else
! 6507: if false; then
! 6508: enable_kmsg_TRUE=
! 6509: enable_kmsg_FALSE='#'
! 6510: else
! 6511: enable_kmsg_TRUE='#'
! 6512: enable_kmsg_FALSE=
! 6513: fi
! 6514:
! 6515: fi
! 6516:
! 6517: #
! 6518: # Set up `SYSTYPE/SYSTYPE' and `SYSTYPE/include/mach/SYSTYPE' links.
! 6519: #
! 6520:
! 6521: # `${file}' and `$file' have different meanings here with respect to having the
! 6522: # files in the referenced directory considered for `make dist' or not. See
! 6523: # <http://lists.gnu.org/archive/html/bug-automake/2006-11/msg00027.html>.
! 6524: ac_config_links="$ac_config_links machine:$systype/$systype mach/machine:$systype/include/mach/$systype"
! 6525:
! 6526:
! 6527:
! 6528:
! 6529: # Linux code snarfed into GNU Mach.
! 6530:
! 6531:
! 6532:
! 6533: #
! 6534: # Internals.
! 6535: #
! 6536:
! 6537: have_linux_code=no
! 6538:
! 6539: #
! 6540: # Helper functions.
! 6541: #
! 6542:
! 6543: #
! 6544: # Calling `device_driver_group group' makes sure that the infrastructure needed
! 6545: # for the group `group' will be set-up.
! 6546: #
! 6547:
! 6548: device_driver_group() {
! 6549: case $1 in
! 6550: '')
! 6551: # No group.
! 6552: :;;
! 6553: net)
! 6554: device_driver_group_net=selected;;
! 6555: pcmcia)
! 6556: # Pull in group `net'.
! 6557: device_driver_group net
! 6558: device_driver_group_pcmcia=selected;;
! 6559: scsi)
! 6560: device_driver_group_scsi=selected;;
! 6561: wireless)
! 6562: # Pull in group `pcmcia'.
! 6563: device_driver_group pcmcia
! 6564: device_driver_group_wireless=selected;;
! 6565: *)
! 6566: as_fn_error $? "invalid device driver group \`$1'" "$LINENO" 5;;
! 6567: esac
! 6568: }
! 6569:
! 6570:
! 6571:
! 6572: #
! 6573: # AC_OPTION_Linux_ix86_at(name,description,option[,class]). Process
! 6574: # configuration option --enable-`name' (with description `description'). If
! 6575: # it's set, then `option' is defined with AC_DEFINE. The option optionally
! 6576: # pulls in group `group'; see the comments on device_driver_group for more
! 6577: # information. For ix86-at, the value from $enable_default_device_drivers is
! 6578: # considered when deciding whether to activate the option by default or not.
! 6579: #
! 6580:
! 6581:
! 6582: #
! 6583: # AC_OPTION_Linux_ix86_at_nodef() is like AC_OPTION_Linux_ix86_at(), but
! 6584: # doesn't consider $enable_default_device_drivers.
! 6585: #
! 6586:
! 6587:
! 6588: #
! 6589: # AC_Linux_DRIVER(machname, description, definition, [group]). Convenience.
! 6590: # TODO. The naming of those is nearly everything but reasonable.
! 6591: #
! 6592:
! 6593:
! 6594:
! 6595:
! 6596:
! 6597: #
! 6598: # Configuration options.
! 6599: #
! 6600:
! 6601:
! 6602:
! 6603: unset enableval
! 6604: # Check whether --enable-floppy was given.
! 6605: if test "${enable_floppy+set}" = set; then :
! 6606: enableval=$enable_floppy;
! 6607: fi
! 6608:
! 6609: if test x$enable__group = xno;
! 6610: then
! 6611: enableval=${enableval-no}
! 6612: fi
! 6613: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 6614: case $host_platform:$host_cpu in
! 6615: at:i?86)
! 6616: case $enable_device_drivers:'Linux device driver for PC floppy; on ix86-at enabled
! 6617: by default and for qemu' in
! 6618: default:*by\ default* | qemu:*for\ qemu*)
! 6619: enableval=${enableval-yes};;
! 6620: *)
! 6621: enableval=${enableval-no};;
! 6622: esac;;
! 6623: *)
! 6624: if [ x"$enableval" = xyes ]; then
! 6625: # TODO. That might not always be true.
! 6626: as_fn_error $? "cannot enable \`floppy' in this configuration." "$LINENO" 5
! 6627: fi;;
! 6628: esac
! 6629: if [ x"$enableval" = xyes ]; then
! 6630: device_driver_floppy_TRUE=
! 6631: device_driver_floppy_FALSE='#'
! 6632: else
! 6633: device_driver_floppy_TRUE='#'
! 6634: device_driver_floppy_FALSE=
! 6635: fi
! 6636:
! 6637: if [ x"$enableval" = xyes ]; then
! 6638: have_linux_code=yes
! 6639:
! 6640: $as_echo "#define CONFIG_BLK_DEV_FD 1" >>confdefs.h
! 6641:
! 6642: device_driver_group
! 6643: fi
! 6644:
! 6645:
! 6646:
! 6647:
! 6648: unset enableval
! 6649: # Check whether --enable-ide was given.
! 6650: if test "${enable_ide+set}" = set; then :
! 6651: enableval=$enable_ide;
! 6652: fi
! 6653:
! 6654: if test x$enable__group = xno;
! 6655: then
! 6656: enableval=${enableval-no}
! 6657: fi
! 6658: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 6659: case $host_platform:$host_cpu in
! 6660: at:i?86)
! 6661: case $enable_device_drivers:'Linux device driver for IDE disk controllers; on ix86-at enabled
! 6662: by default and for qemu' in
! 6663: default:*by\ default* | qemu:*for\ qemu*)
! 6664: enableval=${enableval-yes};;
! 6665: *)
! 6666: enableval=${enableval-no};;
! 6667: esac;;
! 6668: *)
! 6669: if [ x"$enableval" = xyes ]; then
! 6670: # TODO. That might not always be true.
! 6671: as_fn_error $? "cannot enable \`ide' in this configuration." "$LINENO" 5
! 6672: fi;;
! 6673: esac
! 6674: if [ x"$enableval" = xyes ]; then
! 6675: device_driver_ide_TRUE=
! 6676: device_driver_ide_FALSE='#'
! 6677: else
! 6678: device_driver_ide_TRUE='#'
! 6679: device_driver_ide_FALSE=
! 6680: fi
! 6681:
! 6682: if [ x"$enableval" = xyes ]; then
! 6683: have_linux_code=yes
! 6684:
! 6685: $as_echo "#define CONFIG_BLK_DEV_IDE 1" >>confdefs.h
! 6686:
! 6687: device_driver_group
! 6688: fi
! 6689:
! 6690:
! 6691: # Check whether --enable-ide-forcedma was given.
! 6692: if test "${enable_ide_forcedma+set}" = set; then :
! 6693: enableval=$enable_ide_forcedma; test x"$enableval" = xno ||
! 6694:
! 6695: $as_echo "#define CONFIG_BLK_DEV_FORCE_DMA 1" >>confdefs.h
! 6696:
! 6697: fi
! 6698:
! 6699:
! 6700:
! 6701: # Check whether --enable-scsi-group was given.
! 6702: if test "${enable_scsi_group+set}" = set; then :
! 6703: enableval=$enable_scsi_group;
! 6704: fi
! 6705:
! 6706:
! 6707:
! 6708: # Disabled by default.
! 6709:
! 6710:
! 6711: unset enableval
! 6712: # Check whether --enable-53c78xx was given.
! 6713: if test "${enable_53c78xx+set}" = set; then :
! 6714: enableval=$enable_53c78xx;
! 6715: fi
! 6716:
! 6717: #TODO.
! 6718: case $host_platform:$host_cpu in
! 6719: at:i?86)
! 6720: :;;
! 6721: *)
! 6722: if [ x"$enableval" = xyes ]; then
! 6723: # TODO. That might not always be true.
! 6724: as_fn_error $? "cannot enable \`53c78xx' in this configuration." "$LINENO" 5
! 6725: fi;;
! 6726: esac
! 6727: if [ x"$enableval" = xyes ]; then
! 6728: device_driver_53c78xx_TRUE=
! 6729: device_driver_53c78xx_FALSE='#'
! 6730: else
! 6731: device_driver_53c78xx_TRUE='#'
! 6732: device_driver_53c78xx_FALSE=
! 6733: fi
! 6734:
! 6735: if [ x"$enableval" = xyes ]; then
! 6736: have_linux_code=yes
! 6737:
! 6738: $as_echo "#define CONFIG_SCSI_NCR53C7xx 1" >>confdefs.h
! 6739:
! 6740: device_driver_group scsi
! 6741: fi
! 6742:
! 6743:
! 6744:
! 6745: unset enableval
! 6746: # Check whether --enable-AM53C974 was given.
! 6747: if test "${enable_AM53C974+set}" = set; then :
! 6748: enableval=$enable_AM53C974;
! 6749: fi
! 6750:
! 6751: if test x$enable_scsi_group = xno;
! 6752: then
! 6753: enableval=${enableval-no}
! 6754: fi
! 6755: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 6756: case $host_platform:$host_cpu in
! 6757: at:i?86)
! 6758: case $enable_device_drivers:'Linux device driver for SCSI controller AM53/79C974 (am53c974, am79c974); on ix86-at enabled
! 6759: by default' in
! 6760: default:*by\ default* | qemu:*for\ qemu*)
! 6761: enableval=${enableval-yes};;
! 6762: *)
! 6763: enableval=${enableval-no};;
! 6764: esac;;
! 6765: *)
! 6766: if [ x"$enableval" = xyes ]; then
! 6767: # TODO. That might not always be true.
! 6768: as_fn_error $? "cannot enable \`AM53C974' in this configuration." "$LINENO" 5
! 6769: fi;;
! 6770: esac
! 6771: if [ x"$enableval" = xyes ]; then
! 6772: device_driver_AM53C974_TRUE=
! 6773: device_driver_AM53C974_FALSE='#'
! 6774: else
! 6775: device_driver_AM53C974_TRUE='#'
! 6776: device_driver_AM53C974_FALSE=
! 6777: fi
! 6778:
! 6779: if [ x"$enableval" = xyes ]; then
! 6780: have_linux_code=yes
! 6781:
! 6782: $as_echo "#define CONFIG_SCSI_AM53C974 1" >>confdefs.h
! 6783:
! 6784: device_driver_group scsi
! 6785: fi
! 6786:
! 6787:
! 6788:
! 6789: unset enableval
! 6790: # Check whether --enable-BusLogic was given.
! 6791: if test "${enable_BusLogic+set}" = set; then :
! 6792: enableval=$enable_BusLogic;
! 6793: fi
! 6794:
! 6795: if test x$enable_scsi_group = xno;
! 6796: then
! 6797: enableval=${enableval-no}
! 6798: fi
! 6799: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 6800: case $host_platform:$host_cpu in
! 6801: at:i?86)
! 6802: case $enable_device_drivers:'Linux device driver for SCSI controller BusLogic; on ix86-at enabled
! 6803: by default' in
! 6804: default:*by\ default* | qemu:*for\ qemu*)
! 6805: enableval=${enableval-yes};;
! 6806: *)
! 6807: enableval=${enableval-no};;
! 6808: esac;;
! 6809: *)
! 6810: if [ x"$enableval" = xyes ]; then
! 6811: # TODO. That might not always be true.
! 6812: as_fn_error $? "cannot enable \`BusLogic' in this configuration." "$LINENO" 5
! 6813: fi;;
! 6814: esac
! 6815: if [ x"$enableval" = xyes ]; then
! 6816: device_driver_BusLogic_TRUE=
! 6817: device_driver_BusLogic_FALSE='#'
! 6818: else
! 6819: device_driver_BusLogic_TRUE='#'
! 6820: device_driver_BusLogic_FALSE=
! 6821: fi
! 6822:
! 6823: if [ x"$enableval" = xyes ]; then
! 6824: have_linux_code=yes
! 6825:
! 6826: $as_echo "#define CONFIG_SCSI_BUSLOGIC 1" >>confdefs.h
! 6827:
! 6828: device_driver_group scsi
! 6829: fi
! 6830:
! 6831: # TODO. What's that? And what about FlashPoint.c?
! 6832: # Check whether --enable-flashpoint was given.
! 6833: if test "${enable_flashpoint+set}" = set; then :
! 6834: enableval=$enable_flashpoint; test x"$enableval" = xno &&
! 6835:
! 6836: $as_echo "#define CONFIG_SCSI_OMIT_FLASHPOINT /**/" >>confdefs.h
! 6837:
! 6838: fi
! 6839:
! 6840: # Disabled by default.
! 6841:
! 6842:
! 6843: unset enableval
! 6844: # Check whether --enable-NCR53c406a was given.
! 6845: if test "${enable_NCR53c406a+set}" = set; then :
! 6846: enableval=$enable_NCR53c406a;
! 6847: fi
! 6848:
! 6849: #TODO.
! 6850: case $host_platform:$host_cpu in
! 6851: at:i?86)
! 6852: :;;
! 6853: *)
! 6854: if [ x"$enableval" = xyes ]; then
! 6855: # TODO. That might not always be true.
! 6856: as_fn_error $? "cannot enable \`NCR53c406a' in this configuration." "$LINENO" 5
! 6857: fi;;
! 6858: esac
! 6859: if [ x"$enableval" = xyes ]; then
! 6860: device_driver_NCR53c406a_TRUE=
! 6861: device_driver_NCR53c406a_FALSE='#'
! 6862: else
! 6863: device_driver_NCR53c406a_TRUE='#'
! 6864: device_driver_NCR53c406a_FALSE=
! 6865: fi
! 6866:
! 6867: if [ x"$enableval" = xyes ]; then
! 6868: have_linux_code=yes
! 6869:
! 6870: $as_echo "#define CONFIG_SCSI_NCR53C406A 1" >>confdefs.h
! 6871:
! 6872: device_driver_group scsi
! 6873: fi
! 6874:
! 6875:
! 6876:
! 6877: unset enableval
! 6878: # Check whether --enable-advansys was given.
! 6879: if test "${enable_advansys+set}" = set; then :
! 6880: enableval=$enable_advansys;
! 6881: fi
! 6882:
! 6883: if test x$enable_scsi_group = xno;
! 6884: then
! 6885: enableval=${enableval-no}
! 6886: fi
! 6887: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 6888: case $host_platform:$host_cpu in
! 6889: at:i?86)
! 6890: case $enable_device_drivers:'Linux device driver for SCSI controller AdvanSys; on ix86-at enabled
! 6891: by default' in
! 6892: default:*by\ default* | qemu:*for\ qemu*)
! 6893: enableval=${enableval-yes};;
! 6894: *)
! 6895: enableval=${enableval-no};;
! 6896: esac;;
! 6897: *)
! 6898: if [ x"$enableval" = xyes ]; then
! 6899: # TODO. That might not always be true.
! 6900: as_fn_error $? "cannot enable \`advansys' in this configuration." "$LINENO" 5
! 6901: fi;;
! 6902: esac
! 6903: if [ x"$enableval" = xyes ]; then
! 6904: device_driver_advansys_TRUE=
! 6905: device_driver_advansys_FALSE='#'
! 6906: else
! 6907: device_driver_advansys_TRUE='#'
! 6908: device_driver_advansys_FALSE=
! 6909: fi
! 6910:
! 6911: if [ x"$enableval" = xyes ]; then
! 6912: have_linux_code=yes
! 6913:
! 6914: $as_echo "#define CONFIG_SCSI_ADVANSYS 1" >>confdefs.h
! 6915:
! 6916: device_driver_group scsi
! 6917: fi
! 6918:
! 6919:
! 6920:
! 6921: unset enableval
! 6922: # Check whether --enable-aha152x was given.
! 6923: if test "${enable_aha152x+set}" = set; then :
! 6924: enableval=$enable_aha152x;
! 6925: fi
! 6926:
! 6927: if test x$enable_scsi_group = xno;
! 6928: then
! 6929: enableval=${enableval-no}
! 6930: fi
! 6931: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 6932: case $host_platform:$host_cpu in
! 6933: at:i?86)
! 6934: case $enable_device_drivers:'Linux device driver for SCSI controller Adaptec AHA-152x/2825 (aha152x, aha2825); on ix86-at enabled
! 6935: by default' in
! 6936: default:*by\ default* | qemu:*for\ qemu*)
! 6937: enableval=${enableval-yes};;
! 6938: *)
! 6939: enableval=${enableval-no};;
! 6940: esac;;
! 6941: *)
! 6942: if [ x"$enableval" = xyes ]; then
! 6943: # TODO. That might not always be true.
! 6944: as_fn_error $? "cannot enable \`aha152x' in this configuration." "$LINENO" 5
! 6945: fi;;
! 6946: esac
! 6947: if [ x"$enableval" = xyes ]; then
! 6948: device_driver_aha152x_TRUE=
! 6949: device_driver_aha152x_FALSE='#'
! 6950: else
! 6951: device_driver_aha152x_TRUE='#'
! 6952: device_driver_aha152x_FALSE=
! 6953: fi
! 6954:
! 6955: if [ x"$enableval" = xyes ]; then
! 6956: have_linux_code=yes
! 6957:
! 6958: $as_echo "#define CONFIG_SCSI_AHA152X 1" >>confdefs.h
! 6959:
! 6960: device_driver_group scsi
! 6961: fi
! 6962:
! 6963:
! 6964:
! 6965: unset enableval
! 6966: # Check whether --enable-aha1542 was given.
! 6967: if test "${enable_aha1542+set}" = set; then :
! 6968: enableval=$enable_aha1542;
! 6969: fi
! 6970:
! 6971: if test x$enable_scsi_group = xno;
! 6972: then
! 6973: enableval=${enableval-no}
! 6974: fi
! 6975: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 6976: case $host_platform:$host_cpu in
! 6977: at:i?86)
! 6978: case $enable_device_drivers:'Linux device driver for SCSI controller Adaptec AHA-1542; on ix86-at enabled
! 6979: by default' in
! 6980: default:*by\ default* | qemu:*for\ qemu*)
! 6981: enableval=${enableval-yes};;
! 6982: *)
! 6983: enableval=${enableval-no};;
! 6984: esac;;
! 6985: *)
! 6986: if [ x"$enableval" = xyes ]; then
! 6987: # TODO. That might not always be true.
! 6988: as_fn_error $? "cannot enable \`aha1542' in this configuration." "$LINENO" 5
! 6989: fi;;
! 6990: esac
! 6991: if [ x"$enableval" = xyes ]; then
! 6992: device_driver_aha1542_TRUE=
! 6993: device_driver_aha1542_FALSE='#'
! 6994: else
! 6995: device_driver_aha1542_TRUE='#'
! 6996: device_driver_aha1542_FALSE=
! 6997: fi
! 6998:
! 6999: if [ x"$enableval" = xyes ]; then
! 7000: have_linux_code=yes
! 7001:
! 7002: $as_echo "#define CONFIG_SCSI_AHA1542 1" >>confdefs.h
! 7003:
! 7004: device_driver_group scsi
! 7005: fi
! 7006:
! 7007:
! 7008:
! 7009: unset enableval
! 7010: # Check whether --enable-aha1740 was given.
! 7011: if test "${enable_aha1740+set}" = set; then :
! 7012: enableval=$enable_aha1740;
! 7013: fi
! 7014:
! 7015: if test x$enable_scsi_group = xno;
! 7016: then
! 7017: enableval=${enableval-no}
! 7018: fi
! 7019: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7020: case $host_platform:$host_cpu in
! 7021: at:i?86)
! 7022: case $enable_device_drivers:'Linux device driver for SCSI controller Adaptec AHA-1740; on ix86-at enabled
! 7023: by default' in
! 7024: default:*by\ default* | qemu:*for\ qemu*)
! 7025: enableval=${enableval-yes};;
! 7026: *)
! 7027: enableval=${enableval-no};;
! 7028: esac;;
! 7029: *)
! 7030: if [ x"$enableval" = xyes ]; then
! 7031: # TODO. That might not always be true.
! 7032: as_fn_error $? "cannot enable \`aha1740' in this configuration." "$LINENO" 5
! 7033: fi;;
! 7034: esac
! 7035: if [ x"$enableval" = xyes ]; then
! 7036: device_driver_aha1740_TRUE=
! 7037: device_driver_aha1740_FALSE='#'
! 7038: else
! 7039: device_driver_aha1740_TRUE='#'
! 7040: device_driver_aha1740_FALSE=
! 7041: fi
! 7042:
! 7043: if [ x"$enableval" = xyes ]; then
! 7044: have_linux_code=yes
! 7045:
! 7046: $as_echo "#define CONFIG_SCSI_AHA1740 1" >>confdefs.h
! 7047:
! 7048: device_driver_group scsi
! 7049: fi
! 7050:
! 7051: # Disabled by default.
! 7052:
! 7053:
! 7054: unset enableval
! 7055: # Check whether --enable-aic7xxx was given.
! 7056: if test "${enable_aic7xxx+set}" = set; then :
! 7057: enableval=$enable_aic7xxx;
! 7058: fi
! 7059:
! 7060: #TODO.
! 7061: case $host_platform:$host_cpu in
! 7062: at:i?86)
! 7063: :;;
! 7064: *)
! 7065: if [ x"$enableval" = xyes ]; then
! 7066: # TODO. That might not always be true.
! 7067: as_fn_error $? "cannot enable \`aic7xxx' in this configuration." "$LINENO" 5
! 7068: fi;;
! 7069: esac
! 7070: if [ x"$enableval" = xyes ]; then
! 7071: device_driver_aic7xxx_TRUE=
! 7072: device_driver_aic7xxx_FALSE='#'
! 7073: else
! 7074: device_driver_aic7xxx_TRUE='#'
! 7075: device_driver_aic7xxx_FALSE=
! 7076: fi
! 7077:
! 7078: if [ x"$enableval" = xyes ]; then
! 7079: have_linux_code=yes
! 7080:
! 7081: $as_echo "#define CONFIG_SCSI_AIC7XXX 1" >>confdefs.h
! 7082:
! 7083: device_driver_group scsi
! 7084: fi
! 7085:
! 7086:
! 7087:
! 7088: unset enableval
! 7089: # Check whether --enable-dtc was given.
! 7090: if test "${enable_dtc+set}" = set; then :
! 7091: enableval=$enable_dtc;
! 7092: fi
! 7093:
! 7094: if test x$enable_scsi_group = xno;
! 7095: then
! 7096: enableval=${enableval-no}
! 7097: fi
! 7098: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7099: case $host_platform:$host_cpu in
! 7100: at:i?86)
! 7101: case $enable_device_drivers:'Linux device driver for SCSI controller DTC3180/3280 (dtc3180, dtc3280); on ix86-at enabled
! 7102: by default' in
! 7103: default:*by\ default* | qemu:*for\ qemu*)
! 7104: enableval=${enableval-yes};;
! 7105: *)
! 7106: enableval=${enableval-no};;
! 7107: esac;;
! 7108: *)
! 7109: if [ x"$enableval" = xyes ]; then
! 7110: # TODO. That might not always be true.
! 7111: as_fn_error $? "cannot enable \`dtc' in this configuration." "$LINENO" 5
! 7112: fi;;
! 7113: esac
! 7114: if [ x"$enableval" = xyes ]; then
! 7115: device_driver_dtc_TRUE=
! 7116: device_driver_dtc_FALSE='#'
! 7117: else
! 7118: device_driver_dtc_TRUE='#'
! 7119: device_driver_dtc_FALSE=
! 7120: fi
! 7121:
! 7122: if [ x"$enableval" = xyes ]; then
! 7123: have_linux_code=yes
! 7124:
! 7125: $as_echo "#define CONFIG_SCSI_DTC3280 1" >>confdefs.h
! 7126:
! 7127: device_driver_group scsi
! 7128: fi
! 7129:
! 7130:
! 7131:
! 7132: unset enableval
! 7133: # Check whether --enable-eata was given.
! 7134: if test "${enable_eata+set}" = set; then :
! 7135: enableval=$enable_eata;
! 7136: fi
! 7137:
! 7138: if test x$enable_scsi_group = xno;
! 7139: then
! 7140: enableval=${enableval-no}
! 7141: fi
! 7142: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7143: case $host_platform:$host_cpu in
! 7144: at:i?86)
! 7145: case $enable_device_drivers:'Linux device driver for SCSI controller EATA ISA/EISA/PCI
! 7146: (DPT and generic EATA/DMA-compliant boards); on ix86-at enabled
! 7147: by default' in
! 7148: default:*by\ default* | qemu:*for\ qemu*)
! 7149: enableval=${enableval-yes};;
! 7150: *)
! 7151: enableval=${enableval-no};;
! 7152: esac;;
! 7153: *)
! 7154: if [ x"$enableval" = xyes ]; then
! 7155: # TODO. That might not always be true.
! 7156: as_fn_error $? "cannot enable \`eata' in this configuration." "$LINENO" 5
! 7157: fi;;
! 7158: esac
! 7159: if [ x"$enableval" = xyes ]; then
! 7160: device_driver_eata_TRUE=
! 7161: device_driver_eata_FALSE='#'
! 7162: else
! 7163: device_driver_eata_TRUE='#'
! 7164: device_driver_eata_FALSE=
! 7165: fi
! 7166:
! 7167: if [ x"$enableval" = xyes ]; then
! 7168: have_linux_code=yes
! 7169:
! 7170: $as_echo "#define CONFIG_SCSI_EATA 1" >>confdefs.h
! 7171:
! 7172: device_driver_group scsi
! 7173: fi
! 7174:
! 7175: # Disabled by default.
! 7176:
! 7177:
! 7178: unset enableval
! 7179: # Check whether --enable-eata_dma was given.
! 7180: if test "${enable_eata_dma+set}" = set; then :
! 7181: enableval=$enable_eata_dma;
! 7182: fi
! 7183:
! 7184: #TODO.
! 7185: case $host_platform:$host_cpu in
! 7186: at:i?86)
! 7187: :;;
! 7188: *)
! 7189: if [ x"$enableval" = xyes ]; then
! 7190: # TODO. That might not always be true.
! 7191: as_fn_error $? "cannot enable \`eata_dma' in this configuration." "$LINENO" 5
! 7192: fi;;
! 7193: esac
! 7194: if [ x"$enableval" = xyes ]; then
! 7195: device_driver_eata_dma_TRUE=
! 7196: device_driver_eata_dma_FALSE='#'
! 7197: else
! 7198: device_driver_eata_dma_TRUE='#'
! 7199: device_driver_eata_dma_FALSE=
! 7200: fi
! 7201:
! 7202: if [ x"$enableval" = xyes ]; then
! 7203: have_linux_code=yes
! 7204:
! 7205: $as_echo "#define CONFIG_SCSI_EATA_DMA 1" >>confdefs.h
! 7206:
! 7207: device_driver_group scsi
! 7208: fi
! 7209:
! 7210:
! 7211:
! 7212: unset enableval
! 7213: # Check whether --enable-eata_pio was given.
! 7214: if test "${enable_eata_pio+set}" = set; then :
! 7215: enableval=$enable_eata_pio;
! 7216: fi
! 7217:
! 7218: if test x$enable_scsi_group = xno;
! 7219: then
! 7220: enableval=${enableval-no}
! 7221: fi
! 7222: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7223: case $host_platform:$host_cpu in
! 7224: at:i?86)
! 7225: case $enable_device_drivers:'Linux device driver for SCSI controller EATA-PIO (old DPT PM2001, PM2012A); on ix86-at enabled
! 7226: by default' in
! 7227: default:*by\ default* | qemu:*for\ qemu*)
! 7228: enableval=${enableval-yes};;
! 7229: *)
! 7230: enableval=${enableval-no};;
! 7231: esac;;
! 7232: *)
! 7233: if [ x"$enableval" = xyes ]; then
! 7234: # TODO. That might not always be true.
! 7235: as_fn_error $? "cannot enable \`eata_pio' in this configuration." "$LINENO" 5
! 7236: fi;;
! 7237: esac
! 7238: if [ x"$enableval" = xyes ]; then
! 7239: device_driver_eata_pio_TRUE=
! 7240: device_driver_eata_pio_FALSE='#'
! 7241: else
! 7242: device_driver_eata_pio_TRUE='#'
! 7243: device_driver_eata_pio_FALSE=
! 7244: fi
! 7245:
! 7246: if [ x"$enableval" = xyes ]; then
! 7247: have_linux_code=yes
! 7248:
! 7249: $as_echo "#define CONFIG_SCSI_EATA_PIO 1" >>confdefs.h
! 7250:
! 7251: device_driver_group scsi
! 7252: fi
! 7253:
! 7254:
! 7255:
! 7256: unset enableval
! 7257: # Check whether --enable-fdomain was given.
! 7258: if test "${enable_fdomain+set}" = set; then :
! 7259: enableval=$enable_fdomain;
! 7260: fi
! 7261:
! 7262: if test x$enable_scsi_group = xno;
! 7263: then
! 7264: enableval=${enableval-no}
! 7265: fi
! 7266: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7267: case $host_platform:$host_cpu in
! 7268: at:i?86)
! 7269: case $enable_device_drivers:'Linux device driver for SCSI controller Future Domain 16xx; on ix86-at enabled
! 7270: by default' in
! 7271: default:*by\ default* | qemu:*for\ qemu*)
! 7272: enableval=${enableval-yes};;
! 7273: *)
! 7274: enableval=${enableval-no};;
! 7275: esac;;
! 7276: *)
! 7277: if [ x"$enableval" = xyes ]; then
! 7278: # TODO. That might not always be true.
! 7279: as_fn_error $? "cannot enable \`fdomain' in this configuration." "$LINENO" 5
! 7280: fi;;
! 7281: esac
! 7282: if [ x"$enableval" = xyes ]; then
! 7283: device_driver_fdomain_TRUE=
! 7284: device_driver_fdomain_FALSE='#'
! 7285: else
! 7286: device_driver_fdomain_TRUE='#'
! 7287: device_driver_fdomain_FALSE=
! 7288: fi
! 7289:
! 7290: if [ x"$enableval" = xyes ]; then
! 7291: have_linux_code=yes
! 7292:
! 7293: $as_echo "#define CONFIG_SCSI_FUTURE_DOMAIN 1" >>confdefs.h
! 7294:
! 7295: device_driver_group scsi
! 7296: fi
! 7297:
! 7298: # Disabled by default.
! 7299:
! 7300:
! 7301: unset enableval
! 7302: # Check whether --enable-g_NCR5380 was given.
! 7303: if test "${enable_g_NCR5380+set}" = set; then :
! 7304: enableval=$enable_g_NCR5380;
! 7305: fi
! 7306:
! 7307: #TODO.
! 7308: case $host_platform:$host_cpu in
! 7309: at:i?86)
! 7310: :;;
! 7311: *)
! 7312: if [ x"$enableval" = xyes ]; then
! 7313: # TODO. That might not always be true.
! 7314: as_fn_error $? "cannot enable \`g_NCR5380' in this configuration." "$LINENO" 5
! 7315: fi;;
! 7316: esac
! 7317: if [ x"$enableval" = xyes ]; then
! 7318: device_driver_g_NCR5380_TRUE=
! 7319: device_driver_g_NCR5380_FALSE='#'
! 7320: else
! 7321: device_driver_g_NCR5380_TRUE='#'
! 7322: device_driver_g_NCR5380_FALSE=
! 7323: fi
! 7324:
! 7325: if [ x"$enableval" = xyes ]; then
! 7326: have_linux_code=yes
! 7327:
! 7328: $as_echo "#define CONFIG_SCSI_GENERIC_NCR5380 1" >>confdefs.h
! 7329:
! 7330: device_driver_group scsi
! 7331: fi
! 7332:
! 7333: # Disabled by default.
! 7334:
! 7335:
! 7336: unset enableval
! 7337: # Check whether --enable-gdth was given.
! 7338: if test "${enable_gdth+set}" = set; then :
! 7339: enableval=$enable_gdth;
! 7340: fi
! 7341:
! 7342: #TODO.
! 7343: case $host_platform:$host_cpu in
! 7344: at:i?86)
! 7345: :;;
! 7346: *)
! 7347: if [ x"$enableval" = xyes ]; then
! 7348: # TODO. That might not always be true.
! 7349: as_fn_error $? "cannot enable \`gdth' in this configuration." "$LINENO" 5
! 7350: fi;;
! 7351: esac
! 7352: if [ x"$enableval" = xyes ]; then
! 7353: device_driver_gdth_TRUE=
! 7354: device_driver_gdth_FALSE='#'
! 7355: else
! 7356: device_driver_gdth_TRUE='#'
! 7357: device_driver_gdth_FALSE=
! 7358: fi
! 7359:
! 7360: if [ x"$enableval" = xyes ]; then
! 7361: have_linux_code=yes
! 7362:
! 7363: $as_echo "#define CONFIG_SCSI_GDTH 1" >>confdefs.h
! 7364:
! 7365: device_driver_group scsi
! 7366: fi
! 7367:
! 7368:
! 7369:
! 7370: unset enableval
! 7371: # Check whether --enable-in2000 was given.
! 7372: if test "${enable_in2000+set}" = set; then :
! 7373: enableval=$enable_in2000;
! 7374: fi
! 7375:
! 7376: if test x$enable_scsi_group = xno;
! 7377: then
! 7378: enableval=${enableval-no}
! 7379: fi
! 7380: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7381: case $host_platform:$host_cpu in
! 7382: at:i?86)
! 7383: case $enable_device_drivers:'Linux device driver for SCSI controller Always IN 2000; on ix86-at enabled
! 7384: by default' in
! 7385: default:*by\ default* | qemu:*for\ qemu*)
! 7386: enableval=${enableval-yes};;
! 7387: *)
! 7388: enableval=${enableval-no};;
! 7389: esac;;
! 7390: *)
! 7391: if [ x"$enableval" = xyes ]; then
! 7392: # TODO. That might not always be true.
! 7393: as_fn_error $? "cannot enable \`in2000' in this configuration." "$LINENO" 5
! 7394: fi;;
! 7395: esac
! 7396: if [ x"$enableval" = xyes ]; then
! 7397: device_driver_in2000_TRUE=
! 7398: device_driver_in2000_FALSE='#'
! 7399: else
! 7400: device_driver_in2000_TRUE='#'
! 7401: device_driver_in2000_FALSE=
! 7402: fi
! 7403:
! 7404: if [ x"$enableval" = xyes ]; then
! 7405: have_linux_code=yes
! 7406:
! 7407: $as_echo "#define CONFIG_SCSI_IN2000 1" >>confdefs.h
! 7408:
! 7409: device_driver_group scsi
! 7410: fi
! 7411:
! 7412:
! 7413:
! 7414: unset enableval
! 7415: # Check whether --enable-ncr53c8xx was given.
! 7416: if test "${enable_ncr53c8xx+set}" = set; then :
! 7417: enableval=$enable_ncr53c8xx;
! 7418: fi
! 7419:
! 7420: if test x$enable_scsi_group = xno;
! 7421: then
! 7422: enableval=${enableval-no}
! 7423: fi
! 7424: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7425: case $host_platform:$host_cpu in
! 7426: at:i?86)
! 7427: case $enable_device_drivers:'Linux device driver for SCSI controller NCR53C8XX (ncr53c8xx, dc390f, dc390u, dc390w); on ix86-at enabled
! 7428: by default' in
! 7429: default:*by\ default* | qemu:*for\ qemu*)
! 7430: enableval=${enableval-yes};;
! 7431: *)
! 7432: enableval=${enableval-no};;
! 7433: esac;;
! 7434: *)
! 7435: if [ x"$enableval" = xyes ]; then
! 7436: # TODO. That might not always be true.
! 7437: as_fn_error $? "cannot enable \`ncr53c8xx' in this configuration." "$LINENO" 5
! 7438: fi;;
! 7439: esac
! 7440: if [ x"$enableval" = xyes ]; then
! 7441: device_driver_ncr53c8xx_TRUE=
! 7442: device_driver_ncr53c8xx_FALSE='#'
! 7443: else
! 7444: device_driver_ncr53c8xx_TRUE='#'
! 7445: device_driver_ncr53c8xx_FALSE=
! 7446: fi
! 7447:
! 7448: if [ x"$enableval" = xyes ]; then
! 7449: have_linux_code=yes
! 7450:
! 7451: $as_echo "#define CONFIG_SCSI_NCR53C8XX 1" >>confdefs.h
! 7452:
! 7453: device_driver_group scsi
! 7454: fi
! 7455:
! 7456:
! 7457:
! 7458: unset enableval
! 7459: # Check whether --enable-pas16 was given.
! 7460: if test "${enable_pas16+set}" = set; then :
! 7461: enableval=$enable_pas16;
! 7462: fi
! 7463:
! 7464: if test x$enable_scsi_group = xno;
! 7465: then
! 7466: enableval=${enableval-no}
! 7467: fi
! 7468: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7469: case $host_platform:$host_cpu in
! 7470: at:i?86)
! 7471: case $enable_device_drivers:'Linux device driver for SCSI controller PAS16; on ix86-at enabled
! 7472: by default' in
! 7473: default:*by\ default* | qemu:*for\ qemu*)
! 7474: enableval=${enableval-yes};;
! 7475: *)
! 7476: enableval=${enableval-no};;
! 7477: esac;;
! 7478: *)
! 7479: if [ x"$enableval" = xyes ]; then
! 7480: # TODO. That might not always be true.
! 7481: as_fn_error $? "cannot enable \`pas16' in this configuration." "$LINENO" 5
! 7482: fi;;
! 7483: esac
! 7484: if [ x"$enableval" = xyes ]; then
! 7485: device_driver_pas16_TRUE=
! 7486: device_driver_pas16_FALSE='#'
! 7487: else
! 7488: device_driver_pas16_TRUE='#'
! 7489: device_driver_pas16_FALSE=
! 7490: fi
! 7491:
! 7492: if [ x"$enableval" = xyes ]; then
! 7493: have_linux_code=yes
! 7494:
! 7495: $as_echo "#define CONFIG_SCSI_PASS16 1" >>confdefs.h
! 7496:
! 7497: device_driver_group scsi
! 7498: fi
! 7499:
! 7500:
! 7501:
! 7502: unset enableval
! 7503: # Check whether --enable-ppa was given.
! 7504: if test "${enable_ppa+set}" = set; then :
! 7505: enableval=$enable_ppa;
! 7506: fi
! 7507:
! 7508: if test x$enable_scsi_group = xno;
! 7509: then
! 7510: enableval=${enableval-no}
! 7511: fi
! 7512: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7513: case $host_platform:$host_cpu in
! 7514: at:i?86)
! 7515: case $enable_device_drivers:'Linux device driver for IOMEGA Parallel Port ZIP drive; on ix86-at enabled
! 7516: by default' in
! 7517: default:*by\ default* | qemu:*for\ qemu*)
! 7518: enableval=${enableval-yes};;
! 7519: *)
! 7520: enableval=${enableval-no};;
! 7521: esac;;
! 7522: *)
! 7523: if [ x"$enableval" = xyes ]; then
! 7524: # TODO. That might not always be true.
! 7525: as_fn_error $? "cannot enable \`ppa' in this configuration." "$LINENO" 5
! 7526: fi;;
! 7527: esac
! 7528: if [ x"$enableval" = xyes ]; then
! 7529: device_driver_ppa_TRUE=
! 7530: device_driver_ppa_FALSE='#'
! 7531: else
! 7532: device_driver_ppa_TRUE='#'
! 7533: device_driver_ppa_FALSE=
! 7534: fi
! 7535:
! 7536: if [ x"$enableval" = xyes ]; then
! 7537: have_linux_code=yes
! 7538:
! 7539: $as_echo "#define CONFIG_SCSI_PPA 1" >>confdefs.h
! 7540:
! 7541: device_driver_group scsi
! 7542: fi
! 7543:
! 7544:
! 7545:
! 7546: unset enableval
! 7547: # Check whether --enable-qlogicfas was given.
! 7548: if test "${enable_qlogicfas+set}" = set; then :
! 7549: enableval=$enable_qlogicfas;
! 7550: fi
! 7551:
! 7552: if test x$enable_scsi_group = xno;
! 7553: then
! 7554: enableval=${enableval-no}
! 7555: fi
! 7556: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7557: case $host_platform:$host_cpu in
! 7558: at:i?86)
! 7559: case $enable_device_drivers:'Linux device driver for SCSI controller Qlogic FAS; on ix86-at enabled
! 7560: by default' in
! 7561: default:*by\ default* | qemu:*for\ qemu*)
! 7562: enableval=${enableval-yes};;
! 7563: *)
! 7564: enableval=${enableval-no};;
! 7565: esac;;
! 7566: *)
! 7567: if [ x"$enableval" = xyes ]; then
! 7568: # TODO. That might not always be true.
! 7569: as_fn_error $? "cannot enable \`qlogicfas' in this configuration." "$LINENO" 5
! 7570: fi;;
! 7571: esac
! 7572: if [ x"$enableval" = xyes ]; then
! 7573: device_driver_qlogicfas_TRUE=
! 7574: device_driver_qlogicfas_FALSE='#'
! 7575: else
! 7576: device_driver_qlogicfas_TRUE='#'
! 7577: device_driver_qlogicfas_FALSE=
! 7578: fi
! 7579:
! 7580: if [ x"$enableval" = xyes ]; then
! 7581: have_linux_code=yes
! 7582:
! 7583: $as_echo "#define CONFIG_SCSI_QLOGIC_FAS 1" >>confdefs.h
! 7584:
! 7585: device_driver_group scsi
! 7586: fi
! 7587:
! 7588:
! 7589:
! 7590: unset enableval
! 7591: # Check whether --enable-qlogicisp was given.
! 7592: if test "${enable_qlogicisp+set}" = set; then :
! 7593: enableval=$enable_qlogicisp;
! 7594: fi
! 7595:
! 7596: if test x$enable_scsi_group = xno;
! 7597: then
! 7598: enableval=${enableval-no}
! 7599: fi
! 7600: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7601: case $host_platform:$host_cpu in
! 7602: at:i?86)
! 7603: case $enable_device_drivers:'Linux device driver for SCSI controller Qlogic ISP; on ix86-at enabled
! 7604: by default' in
! 7605: default:*by\ default* | qemu:*for\ qemu*)
! 7606: enableval=${enableval-yes};;
! 7607: *)
! 7608: enableval=${enableval-no};;
! 7609: esac;;
! 7610: *)
! 7611: if [ x"$enableval" = xyes ]; then
! 7612: # TODO. That might not always be true.
! 7613: as_fn_error $? "cannot enable \`qlogicisp' in this configuration." "$LINENO" 5
! 7614: fi;;
! 7615: esac
! 7616: if [ x"$enableval" = xyes ]; then
! 7617: device_driver_qlogicisp_TRUE=
! 7618: device_driver_qlogicisp_FALSE='#'
! 7619: else
! 7620: device_driver_qlogicisp_TRUE='#'
! 7621: device_driver_qlogicisp_FALSE=
! 7622: fi
! 7623:
! 7624: if [ x"$enableval" = xyes ]; then
! 7625: have_linux_code=yes
! 7626:
! 7627: $as_echo "#define CONFIG_SCSI_QLOGIC_ISP 1" >>confdefs.h
! 7628:
! 7629: device_driver_group scsi
! 7630: fi
! 7631:
! 7632:
! 7633:
! 7634: unset enableval
! 7635: # Check whether --enable-seagate was given.
! 7636: if test "${enable_seagate+set}" = set; then :
! 7637: enableval=$enable_seagate;
! 7638: fi
! 7639:
! 7640: if test x$enable_scsi_group = xno;
! 7641: then
! 7642: enableval=${enableval-no}
! 7643: fi
! 7644: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7645: case $host_platform:$host_cpu in
! 7646: at:i?86)
! 7647: case $enable_device_drivers:'Linux device driver for SCSI controller Seagate ST02, Future Domain TMC-8xx; on ix86-at enabled
! 7648: by default' in
! 7649: default:*by\ default* | qemu:*for\ qemu*)
! 7650: enableval=${enableval-yes};;
! 7651: *)
! 7652: enableval=${enableval-no};;
! 7653: esac;;
! 7654: *)
! 7655: if [ x"$enableval" = xyes ]; then
! 7656: # TODO. That might not always be true.
! 7657: as_fn_error $? "cannot enable \`seagate' in this configuration." "$LINENO" 5
! 7658: fi;;
! 7659: esac
! 7660: if [ x"$enableval" = xyes ]; then
! 7661: device_driver_seagate_TRUE=
! 7662: device_driver_seagate_FALSE='#'
! 7663: else
! 7664: device_driver_seagate_TRUE='#'
! 7665: device_driver_seagate_FALSE=
! 7666: fi
! 7667:
! 7668: if [ x"$enableval" = xyes ]; then
! 7669: have_linux_code=yes
! 7670:
! 7671: $as_echo "#define CONFIG_SCSI_SEAGATE 1" >>confdefs.h
! 7672:
! 7673: device_driver_group scsi
! 7674: fi
! 7675:
! 7676:
! 7677:
! 7678: unset enableval
! 7679: # Check whether --enable-sym53c8xx was given.
! 7680: if test "${enable_sym53c8xx+set}" = set; then :
! 7681: enableval=$enable_sym53c8xx;
! 7682: fi
! 7683:
! 7684: if test x$enable_scsi_group = xno;
! 7685: then
! 7686: enableval=${enableval-no}
! 7687: fi
! 7688: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7689: case $host_platform:$host_cpu in
! 7690: at:i?86)
! 7691: case $enable_device_drivers:'Linux device driver for SCSI controller Symbios 53C8XX; on ix86-at enabled
! 7692: by default' in
! 7693: default:*by\ default* | qemu:*for\ qemu*)
! 7694: enableval=${enableval-yes};;
! 7695: *)
! 7696: enableval=${enableval-no};;
! 7697: esac;;
! 7698: *)
! 7699: if [ x"$enableval" = xyes ]; then
! 7700: # TODO. That might not always be true.
! 7701: as_fn_error $? "cannot enable \`sym53c8xx' in this configuration." "$LINENO" 5
! 7702: fi;;
! 7703: esac
! 7704: if [ x"$enableval" = xyes ]; then
! 7705: device_driver_sym53c8xx_TRUE=
! 7706: device_driver_sym53c8xx_FALSE='#'
! 7707: else
! 7708: device_driver_sym53c8xx_TRUE='#'
! 7709: device_driver_sym53c8xx_FALSE=
! 7710: fi
! 7711:
! 7712: if [ x"$enableval" = xyes ]; then
! 7713: have_linux_code=yes
! 7714:
! 7715: $as_echo "#define CONFIG_SCSI_SYM53C8XX 1" >>confdefs.h
! 7716:
! 7717: device_driver_group scsi
! 7718: fi
! 7719:
! 7720:
! 7721:
! 7722: unset enableval
! 7723: # Check whether --enable-t128 was given.
! 7724: if test "${enable_t128+set}" = set; then :
! 7725: enableval=$enable_t128;
! 7726: fi
! 7727:
! 7728: if test x$enable_scsi_group = xno;
! 7729: then
! 7730: enableval=${enableval-no}
! 7731: fi
! 7732: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7733: case $host_platform:$host_cpu in
! 7734: at:i?86)
! 7735: case $enable_device_drivers:'Linux device driver for SCSI controller Trantor T128/T128F/T228 (t128, t128f, t228); on ix86-at enabled
! 7736: by default' in
! 7737: default:*by\ default* | qemu:*for\ qemu*)
! 7738: enableval=${enableval-yes};;
! 7739: *)
! 7740: enableval=${enableval-no};;
! 7741: esac;;
! 7742: *)
! 7743: if [ x"$enableval" = xyes ]; then
! 7744: # TODO. That might not always be true.
! 7745: as_fn_error $? "cannot enable \`t128' in this configuration." "$LINENO" 5
! 7746: fi;;
! 7747: esac
! 7748: if [ x"$enableval" = xyes ]; then
! 7749: device_driver_t128_TRUE=
! 7750: device_driver_t128_FALSE='#'
! 7751: else
! 7752: device_driver_t128_TRUE='#'
! 7753: device_driver_t128_FALSE=
! 7754: fi
! 7755:
! 7756: if [ x"$enableval" = xyes ]; then
! 7757: have_linux_code=yes
! 7758:
! 7759: $as_echo "#define CONFIG_SCSI_T128 1" >>confdefs.h
! 7760:
! 7761: device_driver_group scsi
! 7762: fi
! 7763:
! 7764:
! 7765:
! 7766: unset enableval
! 7767: # Check whether --enable-tmscsim was given.
! 7768: if test "${enable_tmscsim+set}" = set; then :
! 7769: enableval=$enable_tmscsim;
! 7770: fi
! 7771:
! 7772: if test x$enable_scsi_group = xno;
! 7773: then
! 7774: enableval=${enableval-no}
! 7775: fi
! 7776: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7777: case $host_platform:$host_cpu in
! 7778: at:i?86)
! 7779: case $enable_device_drivers:'Linux device driver for SCSI controller Tekram DC-390(T) (dc390, dc390t); on ix86-at enabled
! 7780: by default' in
! 7781: default:*by\ default* | qemu:*for\ qemu*)
! 7782: enableval=${enableval-yes};;
! 7783: *)
! 7784: enableval=${enableval-no};;
! 7785: esac;;
! 7786: *)
! 7787: if [ x"$enableval" = xyes ]; then
! 7788: # TODO. That might not always be true.
! 7789: as_fn_error $? "cannot enable \`tmscsim' in this configuration." "$LINENO" 5
! 7790: fi;;
! 7791: esac
! 7792: if [ x"$enableval" = xyes ]; then
! 7793: device_driver_tmscsim_TRUE=
! 7794: device_driver_tmscsim_FALSE='#'
! 7795: else
! 7796: device_driver_tmscsim_TRUE='#'
! 7797: device_driver_tmscsim_FALSE=
! 7798: fi
! 7799:
! 7800: if [ x"$enableval" = xyes ]; then
! 7801: have_linux_code=yes
! 7802:
! 7803: $as_echo "#define CONFIG_SCSI_DC390T 1" >>confdefs.h
! 7804:
! 7805: device_driver_group scsi
! 7806: fi
! 7807:
! 7808:
! 7809:
! 7810: unset enableval
! 7811: # Check whether --enable-u14-34f was given.
! 7812: if test "${enable_u14_34f+set}" = set; then :
! 7813: enableval=$enable_u14_34f;
! 7814: fi
! 7815:
! 7816: if test x$enable_scsi_group = xno;
! 7817: then
! 7818: enableval=${enableval-no}
! 7819: fi
! 7820: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7821: case $host_platform:$host_cpu in
! 7822: at:i?86)
! 7823: case $enable_device_drivers:'Linux device driver for SCSI controller UltraStor 14F/34F; on ix86-at enabled
! 7824: by default' in
! 7825: default:*by\ default* | qemu:*for\ qemu*)
! 7826: enableval=${enableval-yes};;
! 7827: *)
! 7828: enableval=${enableval-no};;
! 7829: esac;;
! 7830: *)
! 7831: if [ x"$enableval" = xyes ]; then
! 7832: # TODO. That might not always be true.
! 7833: as_fn_error $? "cannot enable \`u14-34f' in this configuration." "$LINENO" 5
! 7834: fi;;
! 7835: esac
! 7836: if [ x"$enableval" = xyes ]; then
! 7837: device_driver_u14_34f_TRUE=
! 7838: device_driver_u14_34f_FALSE='#'
! 7839: else
! 7840: device_driver_u14_34f_TRUE='#'
! 7841: device_driver_u14_34f_FALSE=
! 7842: fi
! 7843:
! 7844: if [ x"$enableval" = xyes ]; then
! 7845: have_linux_code=yes
! 7846:
! 7847: $as_echo "#define CONFIG_SCSI_U14_34F 1" >>confdefs.h
! 7848:
! 7849: device_driver_group scsi
! 7850: fi
! 7851:
! 7852:
! 7853:
! 7854: unset enableval
! 7855: # Check whether --enable-ultrastor was given.
! 7856: if test "${enable_ultrastor+set}" = set; then :
! 7857: enableval=$enable_ultrastor;
! 7858: fi
! 7859:
! 7860: if test x$enable_scsi_group = xno;
! 7861: then
! 7862: enableval=${enableval-no}
! 7863: fi
! 7864: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7865: case $host_platform:$host_cpu in
! 7866: at:i?86)
! 7867: case $enable_device_drivers:'Linux device driver for SCSI controller UltraStor; on ix86-at enabled
! 7868: by default' in
! 7869: default:*by\ default* | qemu:*for\ qemu*)
! 7870: enableval=${enableval-yes};;
! 7871: *)
! 7872: enableval=${enableval-no};;
! 7873: esac;;
! 7874: *)
! 7875: if [ x"$enableval" = xyes ]; then
! 7876: # TODO. That might not always be true.
! 7877: as_fn_error $? "cannot enable \`ultrastor' in this configuration." "$LINENO" 5
! 7878: fi;;
! 7879: esac
! 7880: if [ x"$enableval" = xyes ]; then
! 7881: device_driver_ultrastor_TRUE=
! 7882: device_driver_ultrastor_FALSE='#'
! 7883: else
! 7884: device_driver_ultrastor_TRUE='#'
! 7885: device_driver_ultrastor_FALSE=
! 7886: fi
! 7887:
! 7888: if [ x"$enableval" = xyes ]; then
! 7889: have_linux_code=yes
! 7890:
! 7891: $as_echo "#define CONFIG_SCSI_ULTRASTOR 1" >>confdefs.h
! 7892:
! 7893: device_driver_group scsi
! 7894: fi
! 7895:
! 7896:
! 7897:
! 7898: unset enableval
! 7899: # Check whether --enable-wd7000 was given.
! 7900: if test "${enable_wd7000+set}" = set; then :
! 7901: enableval=$enable_wd7000;
! 7902: fi
! 7903:
! 7904: if test x$enable_scsi_group = xno;
! 7905: then
! 7906: enableval=${enableval-no}
! 7907: fi
! 7908: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7909: case $host_platform:$host_cpu in
! 7910: at:i?86)
! 7911: case $enable_device_drivers:'Linux device driver for SCSI controller WD 7000; on ix86-at enabled
! 7912: by default' in
! 7913: default:*by\ default* | qemu:*for\ qemu*)
! 7914: enableval=${enableval-yes};;
! 7915: *)
! 7916: enableval=${enableval-no};;
! 7917: esac;;
! 7918: *)
! 7919: if [ x"$enableval" = xyes ]; then
! 7920: # TODO. That might not always be true.
! 7921: as_fn_error $? "cannot enable \`wd7000' in this configuration." "$LINENO" 5
! 7922: fi;;
! 7923: esac
! 7924: if [ x"$enableval" = xyes ]; then
! 7925: device_driver_wd7000_TRUE=
! 7926: device_driver_wd7000_FALSE='#'
! 7927: else
! 7928: device_driver_wd7000_TRUE='#'
! 7929: device_driver_wd7000_FALSE=
! 7930: fi
! 7931:
! 7932: if [ x"$enableval" = xyes ]; then
! 7933: have_linux_code=yes
! 7934:
! 7935: $as_echo "#define CONFIG_SCSI_7000FASST 1" >>confdefs.h
! 7936:
! 7937: device_driver_group scsi
! 7938: fi
! 7939:
! 7940:
! 7941:
! 7942: # Check whether --enable-net-group was given.
! 7943: if test "${enable_net_group+set}" = set; then :
! 7944: enableval=$enable_net_group;
! 7945: fi
! 7946:
! 7947:
! 7948:
! 7949:
! 7950:
! 7951: unset enableval
! 7952: # Check whether --enable-3c501 was given.
! 7953: if test "${enable_3c501+set}" = set; then :
! 7954: enableval=$enable_3c501;
! 7955: fi
! 7956:
! 7957: if test x$enable_net_group = xno;
! 7958: then
! 7959: enableval=${enableval-no}
! 7960: fi
! 7961: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 7962: case $host_platform:$host_cpu in
! 7963: at:i?86)
! 7964: case $enable_device_drivers:'Linux device driver for Ethernet controller 3COM 501 (3c501) / Etherlink I; on ix86-at enabled
! 7965: by default' in
! 7966: default:*by\ default* | qemu:*for\ qemu*)
! 7967: enableval=${enableval-yes};;
! 7968: *)
! 7969: enableval=${enableval-no};;
! 7970: esac;;
! 7971: *)
! 7972: if [ x"$enableval" = xyes ]; then
! 7973: # TODO. That might not always be true.
! 7974: as_fn_error $? "cannot enable \`3c501' in this configuration." "$LINENO" 5
! 7975: fi;;
! 7976: esac
! 7977: if [ x"$enableval" = xyes ]; then
! 7978: device_driver_3c501_TRUE=
! 7979: device_driver_3c501_FALSE='#'
! 7980: else
! 7981: device_driver_3c501_TRUE='#'
! 7982: device_driver_3c501_FALSE=
! 7983: fi
! 7984:
! 7985: if [ x"$enableval" = xyes ]; then
! 7986: have_linux_code=yes
! 7987:
! 7988: $as_echo "#define CONFIG_EL1 1" >>confdefs.h
! 7989:
! 7990: device_driver_group net
! 7991: fi
! 7992:
! 7993:
! 7994:
! 7995: unset enableval
! 7996: # Check whether --enable-3c503 was given.
! 7997: if test "${enable_3c503+set}" = set; then :
! 7998: enableval=$enable_3c503;
! 7999: fi
! 8000:
! 8001: if test x$enable_net_group = xno;
! 8002: then
! 8003: enableval=${enableval-no}
! 8004: fi
! 8005: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8006: case $host_platform:$host_cpu in
! 8007: at:i?86)
! 8008: case $enable_device_drivers:'Linux device driver for Ethernet controller 3Com 503 (3c503) / Etherlink II; on ix86-at enabled
! 8009: by default' in
! 8010: default:*by\ default* | qemu:*for\ qemu*)
! 8011: enableval=${enableval-yes};;
! 8012: *)
! 8013: enableval=${enableval-no};;
! 8014: esac;;
! 8015: *)
! 8016: if [ x"$enableval" = xyes ]; then
! 8017: # TODO. That might not always be true.
! 8018: as_fn_error $? "cannot enable \`3c503' in this configuration." "$LINENO" 5
! 8019: fi;;
! 8020: esac
! 8021: if [ x"$enableval" = xyes ]; then
! 8022: device_driver_3c503_TRUE=
! 8023: device_driver_3c503_FALSE='#'
! 8024: else
! 8025: device_driver_3c503_TRUE='#'
! 8026: device_driver_3c503_FALSE=
! 8027: fi
! 8028:
! 8029: if [ x"$enableval" = xyes ]; then
! 8030: have_linux_code=yes
! 8031:
! 8032: $as_echo "#define CONFIG_EL2 1" >>confdefs.h
! 8033:
! 8034: device_driver_group net
! 8035: fi
! 8036:
! 8037:
! 8038:
! 8039: unset enableval
! 8040: # Check whether --enable-3c505 was given.
! 8041: if test "${enable_3c505+set}" = set; then :
! 8042: enableval=$enable_3c505;
! 8043: fi
! 8044:
! 8045: if test x$enable_net_group = xno;
! 8046: then
! 8047: enableval=${enableval-no}
! 8048: fi
! 8049: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8050: case $host_platform:$host_cpu in
! 8051: at:i?86)
! 8052: case $enable_device_drivers:'Linux device driver for Ethernet controller 3Com 505 (3c505, elplus); on ix86-at enabled
! 8053: by default' in
! 8054: default:*by\ default* | qemu:*for\ qemu*)
! 8055: enableval=${enableval-yes};;
! 8056: *)
! 8057: enableval=${enableval-no};;
! 8058: esac;;
! 8059: *)
! 8060: if [ x"$enableval" = xyes ]; then
! 8061: # TODO. That might not always be true.
! 8062: as_fn_error $? "cannot enable \`3c505' in this configuration." "$LINENO" 5
! 8063: fi;;
! 8064: esac
! 8065: if [ x"$enableval" = xyes ]; then
! 8066: device_driver_3c505_TRUE=
! 8067: device_driver_3c505_FALSE='#'
! 8068: else
! 8069: device_driver_3c505_TRUE='#'
! 8070: device_driver_3c505_FALSE=
! 8071: fi
! 8072:
! 8073: if [ x"$enableval" = xyes ]; then
! 8074: have_linux_code=yes
! 8075:
! 8076: $as_echo "#define CONFIG_ELPLUS 1" >>confdefs.h
! 8077:
! 8078: device_driver_group net
! 8079: fi
! 8080:
! 8081:
! 8082:
! 8083: unset enableval
! 8084: # Check whether --enable-3c507 was given.
! 8085: if test "${enable_3c507+set}" = set; then :
! 8086: enableval=$enable_3c507;
! 8087: fi
! 8088:
! 8089: if test x$enable_net_group = xno;
! 8090: then
! 8091: enableval=${enableval-no}
! 8092: fi
! 8093: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8094: case $host_platform:$host_cpu in
! 8095: at:i?86)
! 8096: case $enable_device_drivers:'Linux device driver for Ethernet controller 3Com 507 (3c507, el16); on ix86-at enabled
! 8097: by default' in
! 8098: default:*by\ default* | qemu:*for\ qemu*)
! 8099: enableval=${enableval-yes};;
! 8100: *)
! 8101: enableval=${enableval-no};;
! 8102: esac;;
! 8103: *)
! 8104: if [ x"$enableval" = xyes ]; then
! 8105: # TODO. That might not always be true.
! 8106: as_fn_error $? "cannot enable \`3c507' in this configuration." "$LINENO" 5
! 8107: fi;;
! 8108: esac
! 8109: if [ x"$enableval" = xyes ]; then
! 8110: device_driver_3c507_TRUE=
! 8111: device_driver_3c507_FALSE='#'
! 8112: else
! 8113: device_driver_3c507_TRUE='#'
! 8114: device_driver_3c507_FALSE=
! 8115: fi
! 8116:
! 8117: if [ x"$enableval" = xyes ]; then
! 8118: have_linux_code=yes
! 8119:
! 8120: $as_echo "#define CONFIG_EL16 1" >>confdefs.h
! 8121:
! 8122: device_driver_group net
! 8123: fi
! 8124:
! 8125:
! 8126:
! 8127: unset enableval
! 8128: # Check whether --enable-3c509 was given.
! 8129: if test "${enable_3c509+set}" = set; then :
! 8130: enableval=$enable_3c509;
! 8131: fi
! 8132:
! 8133: if test x$enable_net_group = xno;
! 8134: then
! 8135: enableval=${enableval-no}
! 8136: fi
! 8137: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8138: case $host_platform:$host_cpu in
! 8139: at:i?86)
! 8140: case $enable_device_drivers:'Linux device driver for Ethernet controller 3Com 509/579 (3c509, 3c579) / Etherlink III; on ix86-at enabled
! 8141: by default' in
! 8142: default:*by\ default* | qemu:*for\ qemu*)
! 8143: enableval=${enableval-yes};;
! 8144: *)
! 8145: enableval=${enableval-no};;
! 8146: esac;;
! 8147: *)
! 8148: if [ x"$enableval" = xyes ]; then
! 8149: # TODO. That might not always be true.
! 8150: as_fn_error $? "cannot enable \`3c509' in this configuration." "$LINENO" 5
! 8151: fi;;
! 8152: esac
! 8153: if [ x"$enableval" = xyes ]; then
! 8154: device_driver_3c509_TRUE=
! 8155: device_driver_3c509_FALSE='#'
! 8156: else
! 8157: device_driver_3c509_TRUE='#'
! 8158: device_driver_3c509_FALSE=
! 8159: fi
! 8160:
! 8161: if [ x"$enableval" = xyes ]; then
! 8162: have_linux_code=yes
! 8163:
! 8164: $as_echo "#define CONFIG_EL3 1" >>confdefs.h
! 8165:
! 8166: device_driver_group net
! 8167: fi
! 8168:
! 8169:
! 8170:
! 8171: unset enableval
! 8172: # Check whether --enable-3c59x was given.
! 8173: if test "${enable_3c59x+set}" = set; then :
! 8174: enableval=$enable_3c59x;
! 8175: fi
! 8176:
! 8177: if test x$enable_net_group = xno;
! 8178: then
! 8179: enableval=${enableval-no}
! 8180: fi
! 8181: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8182: case $host_platform:$host_cpu in
! 8183: at:i?86)
! 8184: case $enable_device_drivers:'Linux device driver for Ethernet controller 3Com 59x/90x
! 8185: (3c59x, 3c590, 3c592, 3c595, 3c597, 3c90x, 3c900, 3c905)
! 8186: "Vortex/Boomerang"; on ix86-at enabled
! 8187: by default' in
! 8188: default:*by\ default* | qemu:*for\ qemu*)
! 8189: enableval=${enableval-yes};;
! 8190: *)
! 8191: enableval=${enableval-no};;
! 8192: esac;;
! 8193: *)
! 8194: if [ x"$enableval" = xyes ]; then
! 8195: # TODO. That might not always be true.
! 8196: as_fn_error $? "cannot enable \`3c59x' in this configuration." "$LINENO" 5
! 8197: fi;;
! 8198: esac
! 8199: if [ x"$enableval" = xyes ]; then
! 8200: device_driver_3c59x_TRUE=
! 8201: device_driver_3c59x_FALSE='#'
! 8202: else
! 8203: device_driver_3c59x_TRUE='#'
! 8204: device_driver_3c59x_FALSE=
! 8205: fi
! 8206:
! 8207: if [ x"$enableval" = xyes ]; then
! 8208: have_linux_code=yes
! 8209:
! 8210: $as_echo "#define CONFIG_VORTEX 1" >>confdefs.h
! 8211:
! 8212: device_driver_group net
! 8213: fi
! 8214:
! 8215:
! 8216:
! 8217: unset enableval
! 8218: # Check whether --enable-3c515 was given.
! 8219: if test "${enable_3c515+set}" = set; then :
! 8220: enableval=$enable_3c515;
! 8221: fi
! 8222:
! 8223: if test x$enable_net_group = xno;
! 8224: then
! 8225: enableval=${enableval-no}
! 8226: fi
! 8227: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8228: case $host_platform:$host_cpu in
! 8229: at:i?86)
! 8230: case $enable_device_drivers:'Linux device driver for Ethernet controller 3Com 515 ISA Fast EtherLink; on ix86-at enabled
! 8231: by default' in
! 8232: default:*by\ default* | qemu:*for\ qemu*)
! 8233: enableval=${enableval-yes};;
! 8234: *)
! 8235: enableval=${enableval-no};;
! 8236: esac;;
! 8237: *)
! 8238: if [ x"$enableval" = xyes ]; then
! 8239: # TODO. That might not always be true.
! 8240: as_fn_error $? "cannot enable \`3c515' in this configuration." "$LINENO" 5
! 8241: fi;;
! 8242: esac
! 8243: if [ x"$enableval" = xyes ]; then
! 8244: device_driver_3c515_TRUE=
! 8245: device_driver_3c515_FALSE='#'
! 8246: else
! 8247: device_driver_3c515_TRUE='#'
! 8248: device_driver_3c515_FALSE=
! 8249: fi
! 8250:
! 8251: if [ x"$enableval" = xyes ]; then
! 8252: have_linux_code=yes
! 8253:
! 8254: $as_echo "#define CONFIG_3C515 1" >>confdefs.h
! 8255:
! 8256: device_driver_group net
! 8257: fi
! 8258:
! 8259:
! 8260:
! 8261: unset enableval
! 8262: # Check whether --enable-ac3200 was given.
! 8263: if test "${enable_ac3200+set}" = set; then :
! 8264: enableval=$enable_ac3200;
! 8265: fi
! 8266:
! 8267: if test x$enable_net_group = xno;
! 8268: then
! 8269: enableval=${enableval-no}
! 8270: fi
! 8271: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8272: case $host_platform:$host_cpu in
! 8273: at:i?86)
! 8274: case $enable_device_drivers:'Linux device driver for Ethernet controller Ansel Communications EISA 3200; on ix86-at enabled
! 8275: by default' in
! 8276: default:*by\ default* | qemu:*for\ qemu*)
! 8277: enableval=${enableval-yes};;
! 8278: *)
! 8279: enableval=${enableval-no};;
! 8280: esac;;
! 8281: *)
! 8282: if [ x"$enableval" = xyes ]; then
! 8283: # TODO. That might not always be true.
! 8284: as_fn_error $? "cannot enable \`ac3200' in this configuration." "$LINENO" 5
! 8285: fi;;
! 8286: esac
! 8287: if [ x"$enableval" = xyes ]; then
! 8288: device_driver_ac3200_TRUE=
! 8289: device_driver_ac3200_FALSE='#'
! 8290: else
! 8291: device_driver_ac3200_TRUE='#'
! 8292: device_driver_ac3200_FALSE=
! 8293: fi
! 8294:
! 8295: if [ x"$enableval" = xyes ]; then
! 8296: have_linux_code=yes
! 8297:
! 8298: $as_echo "#define CONFIG_AC3200 1" >>confdefs.h
! 8299:
! 8300: device_driver_group net
! 8301: fi
! 8302:
! 8303:
! 8304:
! 8305: unset enableval
! 8306: # Check whether --enable-apricot was given.
! 8307: if test "${enable_apricot+set}" = set; then :
! 8308: enableval=$enable_apricot;
! 8309: fi
! 8310:
! 8311: if test x$enable_net_group = xno;
! 8312: then
! 8313: enableval=${enableval-no}
! 8314: fi
! 8315: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8316: case $host_platform:$host_cpu in
! 8317: at:i?86)
! 8318: case $enable_device_drivers:'Linux device driver for Ethernet controller Apricot XEN-II on board ethernet; on ix86-at enabled
! 8319: by default' in
! 8320: default:*by\ default* | qemu:*for\ qemu*)
! 8321: enableval=${enableval-yes};;
! 8322: *)
! 8323: enableval=${enableval-no};;
! 8324: esac;;
! 8325: *)
! 8326: if [ x"$enableval" = xyes ]; then
! 8327: # TODO. That might not always be true.
! 8328: as_fn_error $? "cannot enable \`apricot' in this configuration." "$LINENO" 5
! 8329: fi;;
! 8330: esac
! 8331: if [ x"$enableval" = xyes ]; then
! 8332: device_driver_apricot_TRUE=
! 8333: device_driver_apricot_FALSE='#'
! 8334: else
! 8335: device_driver_apricot_TRUE='#'
! 8336: device_driver_apricot_FALSE=
! 8337: fi
! 8338:
! 8339: if [ x"$enableval" = xyes ]; then
! 8340: have_linux_code=yes
! 8341:
! 8342: $as_echo "#define CONFIG_APRICOT 1" >>confdefs.h
! 8343:
! 8344: device_driver_group net
! 8345: fi
! 8346:
! 8347:
! 8348:
! 8349: unset enableval
! 8350: # Check whether --enable-at1700 was given.
! 8351: if test "${enable_at1700+set}" = set; then :
! 8352: enableval=$enable_at1700;
! 8353: fi
! 8354:
! 8355: if test x$enable_net_group = xno;
! 8356: then
! 8357: enableval=${enableval-no}
! 8358: fi
! 8359: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8360: case $host_platform:$host_cpu in
! 8361: at:i?86)
! 8362: case $enable_device_drivers:'Linux device driver for Ethernet controller AT1700 (Fujitsu 86965); on ix86-at enabled
! 8363: by default' in
! 8364: default:*by\ default* | qemu:*for\ qemu*)
! 8365: enableval=${enableval-yes};;
! 8366: *)
! 8367: enableval=${enableval-no};;
! 8368: esac;;
! 8369: *)
! 8370: if [ x"$enableval" = xyes ]; then
! 8371: # TODO. That might not always be true.
! 8372: as_fn_error $? "cannot enable \`at1700' in this configuration." "$LINENO" 5
! 8373: fi;;
! 8374: esac
! 8375: if [ x"$enableval" = xyes ]; then
! 8376: device_driver_at1700_TRUE=
! 8377: device_driver_at1700_FALSE='#'
! 8378: else
! 8379: device_driver_at1700_TRUE='#'
! 8380: device_driver_at1700_FALSE=
! 8381: fi
! 8382:
! 8383: if [ x"$enableval" = xyes ]; then
! 8384: have_linux_code=yes
! 8385:
! 8386: $as_echo "#define CONFIG_AT1700 1" >>confdefs.h
! 8387:
! 8388: device_driver_group net
! 8389: fi
! 8390:
! 8391: # Disabled by default.
! 8392:
! 8393:
! 8394: unset enableval
! 8395: # Check whether --enable-atp was given.
! 8396: if test "${enable_atp+set}" = set; then :
! 8397: enableval=$enable_atp;
! 8398: fi
! 8399:
! 8400: #TODO.
! 8401: case $host_platform:$host_cpu in
! 8402: at:i?86)
! 8403: :;;
! 8404: *)
! 8405: if [ x"$enableval" = xyes ]; then
! 8406: # TODO. That might not always be true.
! 8407: as_fn_error $? "cannot enable \`atp' in this configuration." "$LINENO" 5
! 8408: fi;;
! 8409: esac
! 8410: if [ x"$enableval" = xyes ]; then
! 8411: device_driver_atp_TRUE=
! 8412: device_driver_atp_FALSE='#'
! 8413: else
! 8414: device_driver_atp_TRUE='#'
! 8415: device_driver_atp_FALSE=
! 8416: fi
! 8417:
! 8418: if [ x"$enableval" = xyes ]; then
! 8419: have_linux_code=yes
! 8420:
! 8421: $as_echo "#define CONFIG_ATP 1" >>confdefs.h
! 8422:
! 8423: device_driver_group net
! 8424: fi
! 8425:
! 8426:
! 8427:
! 8428: unset enableval
! 8429: # Check whether --enable-de4x5 was given.
! 8430: if test "${enable_de4x5+set}" = set; then :
! 8431: enableval=$enable_de4x5;
! 8432: fi
! 8433:
! 8434: if test x$enable_net_group = xno;
! 8435: then
! 8436: enableval=${enableval-no}
! 8437: fi
! 8438: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8439: case $host_platform:$host_cpu in
! 8440: at:i?86)
! 8441: case $enable_device_drivers:'Linux device driver for Ethernet controller DE4x5 (de4x5, de425, de434, de435, de450, de500); on ix86-at enabled
! 8442: by default' in
! 8443: default:*by\ default* | qemu:*for\ qemu*)
! 8444: enableval=${enableval-yes};;
! 8445: *)
! 8446: enableval=${enableval-no};;
! 8447: esac;;
! 8448: *)
! 8449: if [ x"$enableval" = xyes ]; then
! 8450: # TODO. That might not always be true.
! 8451: as_fn_error $? "cannot enable \`de4x5' in this configuration." "$LINENO" 5
! 8452: fi;;
! 8453: esac
! 8454: if [ x"$enableval" = xyes ]; then
! 8455: device_driver_de4x5_TRUE=
! 8456: device_driver_de4x5_FALSE='#'
! 8457: else
! 8458: device_driver_de4x5_TRUE='#'
! 8459: device_driver_de4x5_FALSE=
! 8460: fi
! 8461:
! 8462: if [ x"$enableval" = xyes ]; then
! 8463: have_linux_code=yes
! 8464:
! 8465: $as_echo "#define CONFIG_DE4X5 1" >>confdefs.h
! 8466:
! 8467: device_driver_group net
! 8468: fi
! 8469:
! 8470:
! 8471:
! 8472: unset enableval
! 8473: # Check whether --enable-de600 was given.
! 8474: if test "${enable_de600+set}" = set; then :
! 8475: enableval=$enable_de600;
! 8476: fi
! 8477:
! 8478: if test x$enable_net_group = xno;
! 8479: then
! 8480: enableval=${enableval-no}
! 8481: fi
! 8482: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8483: case $host_platform:$host_cpu in
! 8484: at:i?86)
! 8485: case $enable_device_drivers:'Linux device driver for Ethernet controller D-Link DE-600; on ix86-at enabled
! 8486: by default' in
! 8487: default:*by\ default* | qemu:*for\ qemu*)
! 8488: enableval=${enableval-yes};;
! 8489: *)
! 8490: enableval=${enableval-no};;
! 8491: esac;;
! 8492: *)
! 8493: if [ x"$enableval" = xyes ]; then
! 8494: # TODO. That might not always be true.
! 8495: as_fn_error $? "cannot enable \`de600' in this configuration." "$LINENO" 5
! 8496: fi;;
! 8497: esac
! 8498: if [ x"$enableval" = xyes ]; then
! 8499: device_driver_de600_TRUE=
! 8500: device_driver_de600_FALSE='#'
! 8501: else
! 8502: device_driver_de600_TRUE='#'
! 8503: device_driver_de600_FALSE=
! 8504: fi
! 8505:
! 8506: if [ x"$enableval" = xyes ]; then
! 8507: have_linux_code=yes
! 8508:
! 8509: $as_echo "#define CONFIG_DE600 1" >>confdefs.h
! 8510:
! 8511: device_driver_group net
! 8512: fi
! 8513:
! 8514:
! 8515:
! 8516: unset enableval
! 8517: # Check whether --enable-de620 was given.
! 8518: if test "${enable_de620+set}" = set; then :
! 8519: enableval=$enable_de620;
! 8520: fi
! 8521:
! 8522: if test x$enable_net_group = xno;
! 8523: then
! 8524: enableval=${enableval-no}
! 8525: fi
! 8526: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8527: case $host_platform:$host_cpu in
! 8528: at:i?86)
! 8529: case $enable_device_drivers:'Linux device driver for Ethernet controller D-Link DE-620; on ix86-at enabled
! 8530: by default' in
! 8531: default:*by\ default* | qemu:*for\ qemu*)
! 8532: enableval=${enableval-yes};;
! 8533: *)
! 8534: enableval=${enableval-no};;
! 8535: esac;;
! 8536: *)
! 8537: if [ x"$enableval" = xyes ]; then
! 8538: # TODO. That might not always be true.
! 8539: as_fn_error $? "cannot enable \`de620' in this configuration." "$LINENO" 5
! 8540: fi;;
! 8541: esac
! 8542: if [ x"$enableval" = xyes ]; then
! 8543: device_driver_de620_TRUE=
! 8544: device_driver_de620_FALSE='#'
! 8545: else
! 8546: device_driver_de620_TRUE='#'
! 8547: device_driver_de620_FALSE=
! 8548: fi
! 8549:
! 8550: if [ x"$enableval" = xyes ]; then
! 8551: have_linux_code=yes
! 8552:
! 8553: $as_echo "#define CONFIG_DE620 1" >>confdefs.h
! 8554:
! 8555: device_driver_group net
! 8556: fi
! 8557:
! 8558:
! 8559:
! 8560: unset enableval
! 8561: # Check whether --enable-depca was given.
! 8562: if test "${enable_depca+set}" = set; then :
! 8563: enableval=$enable_depca;
! 8564: fi
! 8565:
! 8566: if test x$enable_net_group = xno;
! 8567: then
! 8568: enableval=${enableval-no}
! 8569: fi
! 8570: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8571: case $host_platform:$host_cpu in
! 8572: at:i?86)
! 8573: case $enable_device_drivers:'Linux device driver for Ethernet controller DEPCA
! 8574: (de100, de101, de200, de201, de202, de210, de422); on ix86-at enabled
! 8575: by default' in
! 8576: default:*by\ default* | qemu:*for\ qemu*)
! 8577: enableval=${enableval-yes};;
! 8578: *)
! 8579: enableval=${enableval-no};;
! 8580: esac;;
! 8581: *)
! 8582: if [ x"$enableval" = xyes ]; then
! 8583: # TODO. That might not always be true.
! 8584: as_fn_error $? "cannot enable \`depca' in this configuration." "$LINENO" 5
! 8585: fi;;
! 8586: esac
! 8587: if [ x"$enableval" = xyes ]; then
! 8588: device_driver_depca_TRUE=
! 8589: device_driver_depca_FALSE='#'
! 8590: else
! 8591: device_driver_depca_TRUE='#'
! 8592: device_driver_depca_FALSE=
! 8593: fi
! 8594:
! 8595: if [ x"$enableval" = xyes ]; then
! 8596: have_linux_code=yes
! 8597:
! 8598: $as_echo "#define CONFIG_DEPCA 1" >>confdefs.h
! 8599:
! 8600: device_driver_group net
! 8601: fi
! 8602:
! 8603:
! 8604:
! 8605: unset enableval
! 8606: # Check whether --enable-e2100 was given.
! 8607: if test "${enable_e2100+set}" = set; then :
! 8608: enableval=$enable_e2100;
! 8609: fi
! 8610:
! 8611: if test x$enable_net_group = xno;
! 8612: then
! 8613: enableval=${enableval-no}
! 8614: fi
! 8615: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8616: case $host_platform:$host_cpu in
! 8617: at:i?86)
! 8618: case $enable_device_drivers:'Linux device driver for Ethernet controller Cabletron E21xx; on ix86-at enabled
! 8619: by default' in
! 8620: default:*by\ default* | qemu:*for\ qemu*)
! 8621: enableval=${enableval-yes};;
! 8622: *)
! 8623: enableval=${enableval-no};;
! 8624: esac;;
! 8625: *)
! 8626: if [ x"$enableval" = xyes ]; then
! 8627: # TODO. That might not always be true.
! 8628: as_fn_error $? "cannot enable \`e2100' in this configuration." "$LINENO" 5
! 8629: fi;;
! 8630: esac
! 8631: if [ x"$enableval" = xyes ]; then
! 8632: device_driver_e2100_TRUE=
! 8633: device_driver_e2100_FALSE='#'
! 8634: else
! 8635: device_driver_e2100_TRUE='#'
! 8636: device_driver_e2100_FALSE=
! 8637: fi
! 8638:
! 8639: if [ x"$enableval" = xyes ]; then
! 8640: have_linux_code=yes
! 8641:
! 8642: $as_echo "#define CONFIG_E2100 1" >>confdefs.h
! 8643:
! 8644: device_driver_group net
! 8645: fi
! 8646:
! 8647:
! 8648:
! 8649: unset enableval
! 8650: # Check whether --enable-eepro was given.
! 8651: if test "${enable_eepro+set}" = set; then :
! 8652: enableval=$enable_eepro;
! 8653: fi
! 8654:
! 8655: if test x$enable_net_group = xno;
! 8656: then
! 8657: enableval=${enableval-no}
! 8658: fi
! 8659: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8660: case $host_platform:$host_cpu in
! 8661: at:i?86)
! 8662: case $enable_device_drivers:'Linux device driver for Ethernet controller EtherExpressPro; on ix86-at enabled
! 8663: by default' in
! 8664: default:*by\ default* | qemu:*for\ qemu*)
! 8665: enableval=${enableval-yes};;
! 8666: *)
! 8667: enableval=${enableval-no};;
! 8668: esac;;
! 8669: *)
! 8670: if [ x"$enableval" = xyes ]; then
! 8671: # TODO. That might not always be true.
! 8672: as_fn_error $? "cannot enable \`eepro' in this configuration." "$LINENO" 5
! 8673: fi;;
! 8674: esac
! 8675: if [ x"$enableval" = xyes ]; then
! 8676: device_driver_eepro_TRUE=
! 8677: device_driver_eepro_FALSE='#'
! 8678: else
! 8679: device_driver_eepro_TRUE='#'
! 8680: device_driver_eepro_FALSE=
! 8681: fi
! 8682:
! 8683: if [ x"$enableval" = xyes ]; then
! 8684: have_linux_code=yes
! 8685:
! 8686: $as_echo "#define CONFIG_EEXPRESS_PRO 1" >>confdefs.h
! 8687:
! 8688: device_driver_group net
! 8689: fi
! 8690:
! 8691:
! 8692:
! 8693: unset enableval
! 8694: # Check whether --enable-eepro100 was given.
! 8695: if test "${enable_eepro100+set}" = set; then :
! 8696: enableval=$enable_eepro100;
! 8697: fi
! 8698:
! 8699: if test x$enable_net_group = xno;
! 8700: then
! 8701: enableval=${enableval-no}
! 8702: fi
! 8703: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8704: case $host_platform:$host_cpu in
! 8705: at:i?86)
! 8706: case $enable_device_drivers:'Linux device driver for Ethernet controller Intel EtherExpressPro PCI 10+/100B/100+; on ix86-at enabled
! 8707: by default' in
! 8708: default:*by\ default* | qemu:*for\ qemu*)
! 8709: enableval=${enableval-yes};;
! 8710: *)
! 8711: enableval=${enableval-no};;
! 8712: esac;;
! 8713: *)
! 8714: if [ x"$enableval" = xyes ]; then
! 8715: # TODO. That might not always be true.
! 8716: as_fn_error $? "cannot enable \`eepro100' in this configuration." "$LINENO" 5
! 8717: fi;;
! 8718: esac
! 8719: if [ x"$enableval" = xyes ]; then
! 8720: device_driver_eepro100_TRUE=
! 8721: device_driver_eepro100_FALSE='#'
! 8722: else
! 8723: device_driver_eepro100_TRUE='#'
! 8724: device_driver_eepro100_FALSE=
! 8725: fi
! 8726:
! 8727: if [ x"$enableval" = xyes ]; then
! 8728: have_linux_code=yes
! 8729:
! 8730: $as_echo "#define CONFIG_EEXPRESS_PRO100B 1" >>confdefs.h
! 8731:
! 8732: device_driver_group net
! 8733: fi
! 8734:
! 8735:
! 8736:
! 8737: unset enableval
! 8738: # Check whether --enable-eexpress was given.
! 8739: if test "${enable_eexpress+set}" = set; then :
! 8740: enableval=$enable_eexpress;
! 8741: fi
! 8742:
! 8743: if test x$enable_net_group = xno;
! 8744: then
! 8745: enableval=${enableval-no}
! 8746: fi
! 8747: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8748: case $host_platform:$host_cpu in
! 8749: at:i?86)
! 8750: case $enable_device_drivers:'Linux device driver for Ethernet controller EtherExpress 16; on ix86-at enabled
! 8751: by default' in
! 8752: default:*by\ default* | qemu:*for\ qemu*)
! 8753: enableval=${enableval-yes};;
! 8754: *)
! 8755: enableval=${enableval-no};;
! 8756: esac;;
! 8757: *)
! 8758: if [ x"$enableval" = xyes ]; then
! 8759: # TODO. That might not always be true.
! 8760: as_fn_error $? "cannot enable \`eexpress' in this configuration." "$LINENO" 5
! 8761: fi;;
! 8762: esac
! 8763: if [ x"$enableval" = xyes ]; then
! 8764: device_driver_eexpress_TRUE=
! 8765: device_driver_eexpress_FALSE='#'
! 8766: else
! 8767: device_driver_eexpress_TRUE='#'
! 8768: device_driver_eexpress_FALSE=
! 8769: fi
! 8770:
! 8771: if [ x"$enableval" = xyes ]; then
! 8772: have_linux_code=yes
! 8773:
! 8774: $as_echo "#define CONFIG_EEXPRESS 1" >>confdefs.h
! 8775:
! 8776: device_driver_group net
! 8777: fi
! 8778:
! 8779:
! 8780:
! 8781: unset enableval
! 8782: # Check whether --enable-epic100 was given.
! 8783: if test "${enable_epic100+set}" = set; then :
! 8784: enableval=$enable_epic100;
! 8785: fi
! 8786:
! 8787: if test x$enable_net_group = xno;
! 8788: then
! 8789: enableval=${enableval-no}
! 8790: fi
! 8791: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8792: case $host_platform:$host_cpu in
! 8793: at:i?86)
! 8794: case $enable_device_drivers:'Linux device driver for Ethernet controller SMC 83c170/175 EPIC/100 (epic, epic100) / EtherPower II; on ix86-at enabled
! 8795: by default' in
! 8796: default:*by\ default* | qemu:*for\ qemu*)
! 8797: enableval=${enableval-yes};;
! 8798: *)
! 8799: enableval=${enableval-no};;
! 8800: esac;;
! 8801: *)
! 8802: if [ x"$enableval" = xyes ]; then
! 8803: # TODO. That might not always be true.
! 8804: as_fn_error $? "cannot enable \`epic100' in this configuration." "$LINENO" 5
! 8805: fi;;
! 8806: esac
! 8807: if [ x"$enableval" = xyes ]; then
! 8808: device_driver_epic100_TRUE=
! 8809: device_driver_epic100_FALSE='#'
! 8810: else
! 8811: device_driver_epic100_TRUE='#'
! 8812: device_driver_epic100_FALSE=
! 8813: fi
! 8814:
! 8815: if [ x"$enableval" = xyes ]; then
! 8816: have_linux_code=yes
! 8817:
! 8818: $as_echo "#define CONFIG_EPIC 1" >>confdefs.h
! 8819:
! 8820: device_driver_group net
! 8821: fi
! 8822:
! 8823:
! 8824:
! 8825: unset enableval
! 8826: # Check whether --enable-eth16i was given.
! 8827: if test "${enable_eth16i+set}" = set; then :
! 8828: enableval=$enable_eth16i;
! 8829: fi
! 8830:
! 8831: if test x$enable_net_group = xno;
! 8832: then
! 8833: enableval=${enableval-no}
! 8834: fi
! 8835: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8836: case $host_platform:$host_cpu in
! 8837: at:i?86)
! 8838: case $enable_device_drivers:'Linux device driver for Ethernet controller ICL EtherTeam 16i/32 (eth16i, eth32); on ix86-at enabled
! 8839: by default' in
! 8840: default:*by\ default* | qemu:*for\ qemu*)
! 8841: enableval=${enableval-yes};;
! 8842: *)
! 8843: enableval=${enableval-no};;
! 8844: esac;;
! 8845: *)
! 8846: if [ x"$enableval" = xyes ]; then
! 8847: # TODO. That might not always be true.
! 8848: as_fn_error $? "cannot enable \`eth16i' in this configuration." "$LINENO" 5
! 8849: fi;;
! 8850: esac
! 8851: if [ x"$enableval" = xyes ]; then
! 8852: device_driver_eth16i_TRUE=
! 8853: device_driver_eth16i_FALSE='#'
! 8854: else
! 8855: device_driver_eth16i_TRUE='#'
! 8856: device_driver_eth16i_FALSE=
! 8857: fi
! 8858:
! 8859: if [ x"$enableval" = xyes ]; then
! 8860: have_linux_code=yes
! 8861:
! 8862: $as_echo "#define CONFIG_ETH16I 1" >>confdefs.h
! 8863:
! 8864: device_driver_group net
! 8865: fi
! 8866:
! 8867:
! 8868:
! 8869: unset enableval
! 8870: # Check whether --enable-ewrk3 was given.
! 8871: if test "${enable_ewrk3+set}" = set; then :
! 8872: enableval=$enable_ewrk3;
! 8873: fi
! 8874:
! 8875: if test x$enable_net_group = xno;
! 8876: then
! 8877: enableval=${enableval-no}
! 8878: fi
! 8879: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8880: case $host_platform:$host_cpu in
! 8881: at:i?86)
! 8882: case $enable_device_drivers:'Linux device driver for Ethernet controller EtherWORKS 3 (ewrk3, de203, de204, de205); on ix86-at enabled
! 8883: by default' in
! 8884: default:*by\ default* | qemu:*for\ qemu*)
! 8885: enableval=${enableval-yes};;
! 8886: *)
! 8887: enableval=${enableval-no};;
! 8888: esac;;
! 8889: *)
! 8890: if [ x"$enableval" = xyes ]; then
! 8891: # TODO. That might not always be true.
! 8892: as_fn_error $? "cannot enable \`ewrk3' in this configuration." "$LINENO" 5
! 8893: fi;;
! 8894: esac
! 8895: if [ x"$enableval" = xyes ]; then
! 8896: device_driver_ewrk3_TRUE=
! 8897: device_driver_ewrk3_FALSE='#'
! 8898: else
! 8899: device_driver_ewrk3_TRUE='#'
! 8900: device_driver_ewrk3_FALSE=
! 8901: fi
! 8902:
! 8903: if [ x"$enableval" = xyes ]; then
! 8904: have_linux_code=yes
! 8905:
! 8906: $as_echo "#define CONFIG_EWRK3 1" >>confdefs.h
! 8907:
! 8908: device_driver_group net
! 8909: fi
! 8910:
! 8911:
! 8912:
! 8913: unset enableval
! 8914: # Check whether --enable-fmv18x was given.
! 8915: if test "${enable_fmv18x+set}" = set; then :
! 8916: enableval=$enable_fmv18x;
! 8917: fi
! 8918:
! 8919: if test x$enable_net_group = xno;
! 8920: then
! 8921: enableval=${enableval-no}
! 8922: fi
! 8923: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8924: case $host_platform:$host_cpu in
! 8925: at:i?86)
! 8926: case $enable_device_drivers:'Linux device driver for Ethernet controller FMV-181/182/183/184; on ix86-at enabled
! 8927: by default' in
! 8928: default:*by\ default* | qemu:*for\ qemu*)
! 8929: enableval=${enableval-yes};;
! 8930: *)
! 8931: enableval=${enableval-no};;
! 8932: esac;;
! 8933: *)
! 8934: if [ x"$enableval" = xyes ]; then
! 8935: # TODO. That might not always be true.
! 8936: as_fn_error $? "cannot enable \`fmv18x' in this configuration." "$LINENO" 5
! 8937: fi;;
! 8938: esac
! 8939: if [ x"$enableval" = xyes ]; then
! 8940: device_driver_fmv18x_TRUE=
! 8941: device_driver_fmv18x_FALSE='#'
! 8942: else
! 8943: device_driver_fmv18x_TRUE='#'
! 8944: device_driver_fmv18x_FALSE=
! 8945: fi
! 8946:
! 8947: if [ x"$enableval" = xyes ]; then
! 8948: have_linux_code=yes
! 8949:
! 8950: $as_echo "#define CONFIG_FMV18X 1" >>confdefs.h
! 8951:
! 8952: device_driver_group net
! 8953: fi
! 8954:
! 8955:
! 8956:
! 8957: unset enableval
! 8958: # Check whether --enable-hamachi was given.
! 8959: if test "${enable_hamachi+set}" = set; then :
! 8960: enableval=$enable_hamachi;
! 8961: fi
! 8962:
! 8963: if test x$enable_net_group = xno;
! 8964: then
! 8965: enableval=${enableval-no}
! 8966: fi
! 8967: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 8968: case $host_platform:$host_cpu in
! 8969: at:i?86)
! 8970: case $enable_device_drivers:'Linux device driver for Ethernet controller Packet Engines "Hamachi" GNIC-2 Gigabit Ethernet; on ix86-at enabled
! 8971: by default' in
! 8972: default:*by\ default* | qemu:*for\ qemu*)
! 8973: enableval=${enableval-yes};;
! 8974: *)
! 8975: enableval=${enableval-no};;
! 8976: esac;;
! 8977: *)
! 8978: if [ x"$enableval" = xyes ]; then
! 8979: # TODO. That might not always be true.
! 8980: as_fn_error $? "cannot enable \`hamachi' in this configuration." "$LINENO" 5
! 8981: fi;;
! 8982: esac
! 8983: if [ x"$enableval" = xyes ]; then
! 8984: device_driver_hamachi_TRUE=
! 8985: device_driver_hamachi_FALSE='#'
! 8986: else
! 8987: device_driver_hamachi_TRUE='#'
! 8988: device_driver_hamachi_FALSE=
! 8989: fi
! 8990:
! 8991: if [ x"$enableval" = xyes ]; then
! 8992: have_linux_code=yes
! 8993:
! 8994: $as_echo "#define CONFIG_HAMACHI 1" >>confdefs.h
! 8995:
! 8996: device_driver_group net
! 8997: fi
! 8998:
! 8999:
! 9000:
! 9001: unset enableval
! 9002: # Check whether --enable-hp-plus was given.
! 9003: if test "${enable_hp_plus+set}" = set; then :
! 9004: enableval=$enable_hp_plus;
! 9005: fi
! 9006:
! 9007: if test x$enable_net_group = xno;
! 9008: then
! 9009: enableval=${enableval-no}
! 9010: fi
! 9011: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9012: case $host_platform:$host_cpu in
! 9013: at:i?86)
! 9014: case $enable_device_drivers:'Linux device driver for Ethernet controller HP PCLAN+ (27247B and 27252A); on ix86-at enabled
! 9015: by default' in
! 9016: default:*by\ default* | qemu:*for\ qemu*)
! 9017: enableval=${enableval-yes};;
! 9018: *)
! 9019: enableval=${enableval-no};;
! 9020: esac;;
! 9021: *)
! 9022: if [ x"$enableval" = xyes ]; then
! 9023: # TODO. That might not always be true.
! 9024: as_fn_error $? "cannot enable \`hp-plus' in this configuration." "$LINENO" 5
! 9025: fi;;
! 9026: esac
! 9027: if [ x"$enableval" = xyes ]; then
! 9028: device_driver_hp_plus_TRUE=
! 9029: device_driver_hp_plus_FALSE='#'
! 9030: else
! 9031: device_driver_hp_plus_TRUE='#'
! 9032: device_driver_hp_plus_FALSE=
! 9033: fi
! 9034:
! 9035: if [ x"$enableval" = xyes ]; then
! 9036: have_linux_code=yes
! 9037:
! 9038: $as_echo "#define CONFIG_HPLAN_PLUS 1" >>confdefs.h
! 9039:
! 9040: device_driver_group net
! 9041: fi
! 9042:
! 9043:
! 9044:
! 9045: unset enableval
! 9046: # Check whether --enable-hp was given.
! 9047: if test "${enable_hp+set}" = set; then :
! 9048: enableval=$enable_hp;
! 9049: fi
! 9050:
! 9051: if test x$enable_net_group = xno;
! 9052: then
! 9053: enableval=${enableval-no}
! 9054: fi
! 9055: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9056: case $host_platform:$host_cpu in
! 9057: at:i?86)
! 9058: case $enable_device_drivers:'Linux device driver for Ethernet controller HP PCLAN (27245 and other 27xxx series); on ix86-at enabled
! 9059: by default' in
! 9060: default:*by\ default* | qemu:*for\ qemu*)
! 9061: enableval=${enableval-yes};;
! 9062: *)
! 9063: enableval=${enableval-no};;
! 9064: esac;;
! 9065: *)
! 9066: if [ x"$enableval" = xyes ]; then
! 9067: # TODO. That might not always be true.
! 9068: as_fn_error $? "cannot enable \`hp' in this configuration." "$LINENO" 5
! 9069: fi;;
! 9070: esac
! 9071: if [ x"$enableval" = xyes ]; then
! 9072: device_driver_hp_TRUE=
! 9073: device_driver_hp_FALSE='#'
! 9074: else
! 9075: device_driver_hp_TRUE='#'
! 9076: device_driver_hp_FALSE=
! 9077: fi
! 9078:
! 9079: if [ x"$enableval" = xyes ]; then
! 9080: have_linux_code=yes
! 9081:
! 9082: $as_echo "#define CONFIG_HPLAN 1" >>confdefs.h
! 9083:
! 9084: device_driver_group net
! 9085: fi
! 9086:
! 9087:
! 9088:
! 9089: unset enableval
! 9090: # Check whether --enable-hp100 was given.
! 9091: if test "${enable_hp100+set}" = set; then :
! 9092: enableval=$enable_hp100;
! 9093: fi
! 9094:
! 9095: if test x$enable_net_group = xno;
! 9096: then
! 9097: enableval=${enableval-no}
! 9098: fi
! 9099: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9100: case $host_platform:$host_cpu in
! 9101: at:i?86)
! 9102: case $enable_device_drivers:'Linux device driver for Ethernet controller HP 10/100VG PCLAN (ISA, EISA, PCI)
! 9103: (hp100, hpj2577, hpj2573, hpj2585, hp27248b); on ix86-at enabled
! 9104: by default' in
! 9105: default:*by\ default* | qemu:*for\ qemu*)
! 9106: enableval=${enableval-yes};;
! 9107: *)
! 9108: enableval=${enableval-no};;
! 9109: esac;;
! 9110: *)
! 9111: if [ x"$enableval" = xyes ]; then
! 9112: # TODO. That might not always be true.
! 9113: as_fn_error $? "cannot enable \`hp100' in this configuration." "$LINENO" 5
! 9114: fi;;
! 9115: esac
! 9116: if [ x"$enableval" = xyes ]; then
! 9117: device_driver_hp100_TRUE=
! 9118: device_driver_hp100_FALSE='#'
! 9119: else
! 9120: device_driver_hp100_TRUE='#'
! 9121: device_driver_hp100_FALSE=
! 9122: fi
! 9123:
! 9124: if [ x"$enableval" = xyes ]; then
! 9125: have_linux_code=yes
! 9126:
! 9127: $as_echo "#define CONFIG_HP100 1" >>confdefs.h
! 9128:
! 9129: device_driver_group net
! 9130: fi
! 9131:
! 9132:
! 9133:
! 9134: unset enableval
! 9135: # Check whether --enable-intel-gige was given.
! 9136: if test "${enable_intel_gige+set}" = set; then :
! 9137: enableval=$enable_intel_gige;
! 9138: fi
! 9139:
! 9140: if test x$enable_net_group = xno;
! 9141: then
! 9142: enableval=${enableval-no}
! 9143: fi
! 9144: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9145: case $host_platform:$host_cpu in
! 9146: at:i?86)
! 9147: case $enable_device_drivers:'Linux device driver for Ethernet controller Intel PCI Gigabit Ethernet; on ix86-at enabled
! 9148: by default' in
! 9149: default:*by\ default* | qemu:*for\ qemu*)
! 9150: enableval=${enableval-yes};;
! 9151: *)
! 9152: enableval=${enableval-no};;
! 9153: esac;;
! 9154: *)
! 9155: if [ x"$enableval" = xyes ]; then
! 9156: # TODO. That might not always be true.
! 9157: as_fn_error $? "cannot enable \`intel-gige' in this configuration." "$LINENO" 5
! 9158: fi;;
! 9159: esac
! 9160: if [ x"$enableval" = xyes ]; then
! 9161: device_driver_intel_gige_TRUE=
! 9162: device_driver_intel_gige_FALSE='#'
! 9163: else
! 9164: device_driver_intel_gige_TRUE='#'
! 9165: device_driver_intel_gige_FALSE=
! 9166: fi
! 9167:
! 9168: if [ x"$enableval" = xyes ]; then
! 9169: have_linux_code=yes
! 9170:
! 9171: $as_echo "#define CONFIG_INTEL_GIGE 1" >>confdefs.h
! 9172:
! 9173: device_driver_group net
! 9174: fi
! 9175:
! 9176:
! 9177:
! 9178: unset enableval
! 9179: # Check whether --enable-lance was given.
! 9180: if test "${enable_lance+set}" = set; then :
! 9181: enableval=$enable_lance;
! 9182: fi
! 9183:
! 9184: if test x$enable_net_group = xno;
! 9185: then
! 9186: enableval=${enableval-no}
! 9187: fi
! 9188: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9189: case $host_platform:$host_cpu in
! 9190: at:i?86)
! 9191: case $enable_device_drivers:'Linux device driver for Ethernet controller AMD LANCE and PCnet (at1500, ne2100); on ix86-at enabled
! 9192: by default' in
! 9193: default:*by\ default* | qemu:*for\ qemu*)
! 9194: enableval=${enableval-yes};;
! 9195: *)
! 9196: enableval=${enableval-no};;
! 9197: esac;;
! 9198: *)
! 9199: if [ x"$enableval" = xyes ]; then
! 9200: # TODO. That might not always be true.
! 9201: as_fn_error $? "cannot enable \`lance' in this configuration." "$LINENO" 5
! 9202: fi;;
! 9203: esac
! 9204: if [ x"$enableval" = xyes ]; then
! 9205: device_driver_lance_TRUE=
! 9206: device_driver_lance_FALSE='#'
! 9207: else
! 9208: device_driver_lance_TRUE='#'
! 9209: device_driver_lance_FALSE=
! 9210: fi
! 9211:
! 9212: if [ x"$enableval" = xyes ]; then
! 9213: have_linux_code=yes
! 9214:
! 9215: $as_echo "#define CONFIG_LANCE 1" >>confdefs.h
! 9216:
! 9217: device_driver_group net
! 9218: fi
! 9219:
! 9220:
! 9221:
! 9222: unset enableval
! 9223: # Check whether --enable-myson803 was given.
! 9224: if test "${enable_myson803+set}" = set; then :
! 9225: enableval=$enable_myson803;
! 9226: fi
! 9227:
! 9228: if test x$enable_net_group = xno;
! 9229: then
! 9230: enableval=${enableval-no}
! 9231: fi
! 9232: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9233: case $host_platform:$host_cpu in
! 9234: at:i?86)
! 9235: case $enable_device_drivers:'Linux device driver for Ethernet controller Myson MTD803 Ethernet adapter series; on ix86-at enabled
! 9236: by default' in
! 9237: default:*by\ default* | qemu:*for\ qemu*)
! 9238: enableval=${enableval-yes};;
! 9239: *)
! 9240: enableval=${enableval-no};;
! 9241: esac;;
! 9242: *)
! 9243: if [ x"$enableval" = xyes ]; then
! 9244: # TODO. That might not always be true.
! 9245: as_fn_error $? "cannot enable \`myson803' in this configuration." "$LINENO" 5
! 9246: fi;;
! 9247: esac
! 9248: if [ x"$enableval" = xyes ]; then
! 9249: device_driver_myson803_TRUE=
! 9250: device_driver_myson803_FALSE='#'
! 9251: else
! 9252: device_driver_myson803_TRUE='#'
! 9253: device_driver_myson803_FALSE=
! 9254: fi
! 9255:
! 9256: if [ x"$enableval" = xyes ]; then
! 9257: have_linux_code=yes
! 9258:
! 9259: $as_echo "#define CONFIG_MYSON803 1" >>confdefs.h
! 9260:
! 9261: device_driver_group net
! 9262: fi
! 9263:
! 9264:
! 9265:
! 9266: unset enableval
! 9267: # Check whether --enable-natsemi was given.
! 9268: if test "${enable_natsemi+set}" = set; then :
! 9269: enableval=$enable_natsemi;
! 9270: fi
! 9271:
! 9272: if test x$enable_net_group = xno;
! 9273: then
! 9274: enableval=${enableval-no}
! 9275: fi
! 9276: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9277: case $host_platform:$host_cpu in
! 9278: at:i?86)
! 9279: case $enable_device_drivers:'Linux device driver for Ethernet controller National Semiconductor DP8381x series PCI Ethernet; on ix86-at enabled
! 9280: by default' in
! 9281: default:*by\ default* | qemu:*for\ qemu*)
! 9282: enableval=${enableval-yes};;
! 9283: *)
! 9284: enableval=${enableval-no};;
! 9285: esac;;
! 9286: *)
! 9287: if [ x"$enableval" = xyes ]; then
! 9288: # TODO. That might not always be true.
! 9289: as_fn_error $? "cannot enable \`natsemi' in this configuration." "$LINENO" 5
! 9290: fi;;
! 9291: esac
! 9292: if [ x"$enableval" = xyes ]; then
! 9293: device_driver_natsemi_TRUE=
! 9294: device_driver_natsemi_FALSE='#'
! 9295: else
! 9296: device_driver_natsemi_TRUE='#'
! 9297: device_driver_natsemi_FALSE=
! 9298: fi
! 9299:
! 9300: if [ x"$enableval" = xyes ]; then
! 9301: have_linux_code=yes
! 9302:
! 9303: $as_echo "#define CONFIG_NATSEMI 1" >>confdefs.h
! 9304:
! 9305: device_driver_group net
! 9306: fi
! 9307:
! 9308:
! 9309:
! 9310: unset enableval
! 9311: # Check whether --enable-ne was given.
! 9312: if test "${enable_ne+set}" = set; then :
! 9313: enableval=$enable_ne;
! 9314: fi
! 9315:
! 9316: if test x$enable_net_group = xno;
! 9317: then
! 9318: enableval=${enableval-no}
! 9319: fi
! 9320: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9321: case $host_platform:$host_cpu in
! 9322: at:i?86)
! 9323: case $enable_device_drivers:'Linux device driver for Ethernet controller NE2000/NE1000 ISA (ne, ne1000, ne2000); on ix86-at enabled
! 9324: by default and for qemu' in
! 9325: default:*by\ default* | qemu:*for\ qemu*)
! 9326: enableval=${enableval-yes};;
! 9327: *)
! 9328: enableval=${enableval-no};;
! 9329: esac;;
! 9330: *)
! 9331: if [ x"$enableval" = xyes ]; then
! 9332: # TODO. That might not always be true.
! 9333: as_fn_error $? "cannot enable \`ne' in this configuration." "$LINENO" 5
! 9334: fi;;
! 9335: esac
! 9336: if [ x"$enableval" = xyes ]; then
! 9337: device_driver_ne_TRUE=
! 9338: device_driver_ne_FALSE='#'
! 9339: else
! 9340: device_driver_ne_TRUE='#'
! 9341: device_driver_ne_FALSE=
! 9342: fi
! 9343:
! 9344: if [ x"$enableval" = xyes ]; then
! 9345: have_linux_code=yes
! 9346:
! 9347: $as_echo "#define CONFIG_NE2000 1" >>confdefs.h
! 9348:
! 9349: device_driver_group net
! 9350: fi
! 9351:
! 9352:
! 9353:
! 9354: unset enableval
! 9355: # Check whether --enable-ne2k-pci was given.
! 9356: if test "${enable_ne2k_pci+set}" = set; then :
! 9357: enableval=$enable_ne2k_pci;
! 9358: fi
! 9359:
! 9360: if test x$enable_net_group = xno;
! 9361: then
! 9362: enableval=${enableval-no}
! 9363: fi
! 9364: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9365: case $host_platform:$host_cpu in
! 9366: at:i?86)
! 9367: case $enable_device_drivers:'Linux device driver for Ethernet controller PCI NE2000; on ix86-at enabled
! 9368: by default' in
! 9369: default:*by\ default* | qemu:*for\ qemu*)
! 9370: enableval=${enableval-yes};;
! 9371: *)
! 9372: enableval=${enableval-no};;
! 9373: esac;;
! 9374: *)
! 9375: if [ x"$enableval" = xyes ]; then
! 9376: # TODO. That might not always be true.
! 9377: as_fn_error $? "cannot enable \`ne2k-pci' in this configuration." "$LINENO" 5
! 9378: fi;;
! 9379: esac
! 9380: if [ x"$enableval" = xyes ]; then
! 9381: device_driver_ne2k_pci_TRUE=
! 9382: device_driver_ne2k_pci_FALSE='#'
! 9383: else
! 9384: device_driver_ne2k_pci_TRUE='#'
! 9385: device_driver_ne2k_pci_FALSE=
! 9386: fi
! 9387:
! 9388: if [ x"$enableval" = xyes ]; then
! 9389: have_linux_code=yes
! 9390:
! 9391: $as_echo "#define CONFIG_NE2K_PCI 1" >>confdefs.h
! 9392:
! 9393: device_driver_group net
! 9394: fi
! 9395:
! 9396:
! 9397:
! 9398: unset enableval
! 9399: # Check whether --enable-ni52 was given.
! 9400: if test "${enable_ni52+set}" = set; then :
! 9401: enableval=$enable_ni52;
! 9402: fi
! 9403:
! 9404: if test x$enable_net_group = xno;
! 9405: then
! 9406: enableval=${enableval-no}
! 9407: fi
! 9408: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9409: case $host_platform:$host_cpu in
! 9410: at:i?86)
! 9411: case $enable_device_drivers:'Linux device driver for Ethernet controller NI5210; on ix86-at enabled
! 9412: by default' in
! 9413: default:*by\ default* | qemu:*for\ qemu*)
! 9414: enableval=${enableval-yes};;
! 9415: *)
! 9416: enableval=${enableval-no};;
! 9417: esac;;
! 9418: *)
! 9419: if [ x"$enableval" = xyes ]; then
! 9420: # TODO. That might not always be true.
! 9421: as_fn_error $? "cannot enable \`ni52' in this configuration." "$LINENO" 5
! 9422: fi;;
! 9423: esac
! 9424: if [ x"$enableval" = xyes ]; then
! 9425: device_driver_ni52_TRUE=
! 9426: device_driver_ni52_FALSE='#'
! 9427: else
! 9428: device_driver_ni52_TRUE='#'
! 9429: device_driver_ni52_FALSE=
! 9430: fi
! 9431:
! 9432: if [ x"$enableval" = xyes ]; then
! 9433: have_linux_code=yes
! 9434:
! 9435: $as_echo "#define CONFIG_NI52 1" >>confdefs.h
! 9436:
! 9437: device_driver_group net
! 9438: fi
! 9439:
! 9440:
! 9441:
! 9442: unset enableval
! 9443: # Check whether --enable-ni65 was given.
! 9444: if test "${enable_ni65+set}" = set; then :
! 9445: enableval=$enable_ni65;
! 9446: fi
! 9447:
! 9448: if test x$enable_net_group = xno;
! 9449: then
! 9450: enableval=${enableval-no}
! 9451: fi
! 9452: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9453: case $host_platform:$host_cpu in
! 9454: at:i?86)
! 9455: case $enable_device_drivers:'Linux device driver for Ethernet controller NI6510; on ix86-at enabled
! 9456: by default' in
! 9457: default:*by\ default* | qemu:*for\ qemu*)
! 9458: enableval=${enableval-yes};;
! 9459: *)
! 9460: enableval=${enableval-no};;
! 9461: esac;;
! 9462: *)
! 9463: if [ x"$enableval" = xyes ]; then
! 9464: # TODO. That might not always be true.
! 9465: as_fn_error $? "cannot enable \`ni65' in this configuration." "$LINENO" 5
! 9466: fi;;
! 9467: esac
! 9468: if [ x"$enableval" = xyes ]; then
! 9469: device_driver_ni65_TRUE=
! 9470: device_driver_ni65_FALSE='#'
! 9471: else
! 9472: device_driver_ni65_TRUE='#'
! 9473: device_driver_ni65_FALSE=
! 9474: fi
! 9475:
! 9476: if [ x"$enableval" = xyes ]; then
! 9477: have_linux_code=yes
! 9478:
! 9479: $as_echo "#define CONFIG_NI65 1" >>confdefs.h
! 9480:
! 9481: device_driver_group net
! 9482: fi
! 9483:
! 9484:
! 9485:
! 9486: unset enableval
! 9487: # Check whether --enable-ns820 was given.
! 9488: if test "${enable_ns820+set}" = set; then :
! 9489: enableval=$enable_ns820;
! 9490: fi
! 9491:
! 9492: if test x$enable_net_group = xno;
! 9493: then
! 9494: enableval=${enableval-no}
! 9495: fi
! 9496: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9497: case $host_platform:$host_cpu in
! 9498: at:i?86)
! 9499: case $enable_device_drivers:'Linux device driver for Ethernet controller National Semiconductor DP8382x series PCI Ethernet; on ix86-at enabled
! 9500: by default' in
! 9501: default:*by\ default* | qemu:*for\ qemu*)
! 9502: enableval=${enableval-yes};;
! 9503: *)
! 9504: enableval=${enableval-no};;
! 9505: esac;;
! 9506: *)
! 9507: if [ x"$enableval" = xyes ]; then
! 9508: # TODO. That might not always be true.
! 9509: as_fn_error $? "cannot enable \`ns820' in this configuration." "$LINENO" 5
! 9510: fi;;
! 9511: esac
! 9512: if [ x"$enableval" = xyes ]; then
! 9513: device_driver_ns820_TRUE=
! 9514: device_driver_ns820_FALSE='#'
! 9515: else
! 9516: device_driver_ns820_TRUE='#'
! 9517: device_driver_ns820_FALSE=
! 9518: fi
! 9519:
! 9520: if [ x"$enableval" = xyes ]; then
! 9521: have_linux_code=yes
! 9522:
! 9523: $as_echo "#define CONFIG_NS820 1" >>confdefs.h
! 9524:
! 9525: device_driver_group net
! 9526: fi
! 9527:
! 9528:
! 9529:
! 9530: unset enableval
! 9531: # Check whether --enable-pcnet32 was given.
! 9532: if test "${enable_pcnet32+set}" = set; then :
! 9533: enableval=$enable_pcnet32;
! 9534: fi
! 9535:
! 9536: if test x$enable_net_group = xno;
! 9537: then
! 9538: enableval=${enableval-no}
! 9539: fi
! 9540: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9541: case $host_platform:$host_cpu in
! 9542: at:i?86)
! 9543: case $enable_device_drivers:'Linux device driver for Ethernet controller AMD PCI PCnet32 (PCI bus NE2100 cards); on ix86-at enabled
! 9544: by default' in
! 9545: default:*by\ default* | qemu:*for\ qemu*)
! 9546: enableval=${enableval-yes};;
! 9547: *)
! 9548: enableval=${enableval-no};;
! 9549: esac;;
! 9550: *)
! 9551: if [ x"$enableval" = xyes ]; then
! 9552: # TODO. That might not always be true.
! 9553: as_fn_error $? "cannot enable \`pcnet32' in this configuration." "$LINENO" 5
! 9554: fi;;
! 9555: esac
! 9556: if [ x"$enableval" = xyes ]; then
! 9557: device_driver_pcnet32_TRUE=
! 9558: device_driver_pcnet32_FALSE='#'
! 9559: else
! 9560: device_driver_pcnet32_TRUE='#'
! 9561: device_driver_pcnet32_FALSE=
! 9562: fi
! 9563:
! 9564: if [ x"$enableval" = xyes ]; then
! 9565: have_linux_code=yes
! 9566:
! 9567: $as_echo "#define CONFIG_PCNET32 1" >>confdefs.h
! 9568:
! 9569: device_driver_group net
! 9570: fi
! 9571:
! 9572:
! 9573:
! 9574: unset enableval
! 9575: # Check whether --enable-rtl8139 was given.
! 9576: if test "${enable_rtl8139+set}" = set; then :
! 9577: enableval=$enable_rtl8139;
! 9578: fi
! 9579:
! 9580: if test x$enable_net_group = xno;
! 9581: then
! 9582: enableval=${enableval-no}
! 9583: fi
! 9584: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9585: case $host_platform:$host_cpu in
! 9586: at:i?86)
! 9587: case $enable_device_drivers:'Linux device driver for Ethernet controller RealTek 8129/8139 (rtl8129, rtl8139) (not 8019/8029!); on ix86-at enabled
! 9588: by default' in
! 9589: default:*by\ default* | qemu:*for\ qemu*)
! 9590: enableval=${enableval-yes};;
! 9591: *)
! 9592: enableval=${enableval-no};;
! 9593: esac;;
! 9594: *)
! 9595: if [ x"$enableval" = xyes ]; then
! 9596: # TODO. That might not always be true.
! 9597: as_fn_error $? "cannot enable \`rtl8139' in this configuration." "$LINENO" 5
! 9598: fi;;
! 9599: esac
! 9600: if [ x"$enableval" = xyes ]; then
! 9601: device_driver_rtl8139_TRUE=
! 9602: device_driver_rtl8139_FALSE='#'
! 9603: else
! 9604: device_driver_rtl8139_TRUE='#'
! 9605: device_driver_rtl8139_FALSE=
! 9606: fi
! 9607:
! 9608: if [ x"$enableval" = xyes ]; then
! 9609: have_linux_code=yes
! 9610:
! 9611: $as_echo "#define CONFIG_RTL8139 1" >>confdefs.h
! 9612:
! 9613: device_driver_group net
! 9614: fi
! 9615:
! 9616:
! 9617:
! 9618: unset enableval
! 9619: # Check whether --enable-seeq8005 was given.
! 9620: if test "${enable_seeq8005+set}" = set; then :
! 9621: enableval=$enable_seeq8005;
! 9622: fi
! 9623:
! 9624: if test x$enable_net_group = xno;
! 9625: then
! 9626: enableval=${enableval-no}
! 9627: fi
! 9628: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9629: case $host_platform:$host_cpu in
! 9630: at:i?86)
! 9631: case $enable_device_drivers:'Linux device driver for Ethernet controller Seeq8005; on ix86-at enabled
! 9632: by default' in
! 9633: default:*by\ default* | qemu:*for\ qemu*)
! 9634: enableval=${enableval-yes};;
! 9635: *)
! 9636: enableval=${enableval-no};;
! 9637: esac;;
! 9638: *)
! 9639: if [ x"$enableval" = xyes ]; then
! 9640: # TODO. That might not always be true.
! 9641: as_fn_error $? "cannot enable \`seeq8005' in this configuration." "$LINENO" 5
! 9642: fi;;
! 9643: esac
! 9644: if [ x"$enableval" = xyes ]; then
! 9645: device_driver_seeq8005_TRUE=
! 9646: device_driver_seeq8005_FALSE='#'
! 9647: else
! 9648: device_driver_seeq8005_TRUE='#'
! 9649: device_driver_seeq8005_FALSE=
! 9650: fi
! 9651:
! 9652: if [ x"$enableval" = xyes ]; then
! 9653: have_linux_code=yes
! 9654:
! 9655: $as_echo "#define CONFIG_SEEQ8005 1" >>confdefs.h
! 9656:
! 9657: device_driver_group net
! 9658: fi
! 9659:
! 9660:
! 9661:
! 9662: unset enableval
! 9663: # Check whether --enable-sis900 was given.
! 9664: if test "${enable_sis900+set}" = set; then :
! 9665: enableval=$enable_sis900;
! 9666: fi
! 9667:
! 9668: if test x$enable_net_group = xno;
! 9669: then
! 9670: enableval=${enableval-no}
! 9671: fi
! 9672: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9673: case $host_platform:$host_cpu in
! 9674: at:i?86)
! 9675: case $enable_device_drivers:'Linux device driver for Ethernet controller SiS 900; on ix86-at enabled
! 9676: by default' in
! 9677: default:*by\ default* | qemu:*for\ qemu*)
! 9678: enableval=${enableval-yes};;
! 9679: *)
! 9680: enableval=${enableval-no};;
! 9681: esac;;
! 9682: *)
! 9683: if [ x"$enableval" = xyes ]; then
! 9684: # TODO. That might not always be true.
! 9685: as_fn_error $? "cannot enable \`sis900' in this configuration." "$LINENO" 5
! 9686: fi;;
! 9687: esac
! 9688: if [ x"$enableval" = xyes ]; then
! 9689: device_driver_sis900_TRUE=
! 9690: device_driver_sis900_FALSE='#'
! 9691: else
! 9692: device_driver_sis900_TRUE='#'
! 9693: device_driver_sis900_FALSE=
! 9694: fi
! 9695:
! 9696: if [ x"$enableval" = xyes ]; then
! 9697: have_linux_code=yes
! 9698:
! 9699: $as_echo "#define CONFIG_SIS900 1" >>confdefs.h
! 9700:
! 9701: device_driver_group net
! 9702: fi
! 9703:
! 9704:
! 9705:
! 9706: unset enableval
! 9707: # Check whether --enable-sk_g16 was given.
! 9708: if test "${enable_sk_g16+set}" = set; then :
! 9709: enableval=$enable_sk_g16;
! 9710: fi
! 9711:
! 9712: if test x$enable_net_group = xno;
! 9713: then
! 9714: enableval=${enableval-no}
! 9715: fi
! 9716: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9717: case $host_platform:$host_cpu in
! 9718: at:i?86)
! 9719: case $enable_device_drivers:'Linux device driver for Ethernet controller Schneider & Koch G16; on ix86-at enabled
! 9720: by default' in
! 9721: default:*by\ default* | qemu:*for\ qemu*)
! 9722: enableval=${enableval-yes};;
! 9723: *)
! 9724: enableval=${enableval-no};;
! 9725: esac;;
! 9726: *)
! 9727: if [ x"$enableval" = xyes ]; then
! 9728: # TODO. That might not always be true.
! 9729: as_fn_error $? "cannot enable \`sk_g16' in this configuration." "$LINENO" 5
! 9730: fi;;
! 9731: esac
! 9732: if [ x"$enableval" = xyes ]; then
! 9733: device_driver_sk_g16_TRUE=
! 9734: device_driver_sk_g16_FALSE='#'
! 9735: else
! 9736: device_driver_sk_g16_TRUE='#'
! 9737: device_driver_sk_g16_FALSE=
! 9738: fi
! 9739:
! 9740: if [ x"$enableval" = xyes ]; then
! 9741: have_linux_code=yes
! 9742:
! 9743: $as_echo "#define CONFIG_SK_G16 1" >>confdefs.h
! 9744:
! 9745: device_driver_group net
! 9746: fi
! 9747:
! 9748:
! 9749:
! 9750: unset enableval
! 9751: # Check whether --enable-smc-ultra was given.
! 9752: if test "${enable_smc_ultra+set}" = set; then :
! 9753: enableval=$enable_smc_ultra;
! 9754: fi
! 9755:
! 9756: if test x$enable_net_group = xno;
! 9757: then
! 9758: enableval=${enableval-no}
! 9759: fi
! 9760: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9761: case $host_platform:$host_cpu in
! 9762: at:i?86)
! 9763: case $enable_device_drivers:'Linux device driver for Ethernet controller SMC Ultra; on ix86-at enabled
! 9764: by default' in
! 9765: default:*by\ default* | qemu:*for\ qemu*)
! 9766: enableval=${enableval-yes};;
! 9767: *)
! 9768: enableval=${enableval-no};;
! 9769: esac;;
! 9770: *)
! 9771: if [ x"$enableval" = xyes ]; then
! 9772: # TODO. That might not always be true.
! 9773: as_fn_error $? "cannot enable \`smc-ultra' in this configuration." "$LINENO" 5
! 9774: fi;;
! 9775: esac
! 9776: if [ x"$enableval" = xyes ]; then
! 9777: device_driver_smc_ultra_TRUE=
! 9778: device_driver_smc_ultra_FALSE='#'
! 9779: else
! 9780: device_driver_smc_ultra_TRUE='#'
! 9781: device_driver_smc_ultra_FALSE=
! 9782: fi
! 9783:
! 9784: if [ x"$enableval" = xyes ]; then
! 9785: have_linux_code=yes
! 9786:
! 9787: $as_echo "#define CONFIG_ULTRA 1" >>confdefs.h
! 9788:
! 9789: device_driver_group net
! 9790: fi
! 9791:
! 9792:
! 9793:
! 9794: unset enableval
! 9795: # Check whether --enable-smc-ultra32 was given.
! 9796: if test "${enable_smc_ultra32+set}" = set; then :
! 9797: enableval=$enable_smc_ultra32;
! 9798: fi
! 9799:
! 9800: if test x$enable_net_group = xno;
! 9801: then
! 9802: enableval=${enableval-no}
! 9803: fi
! 9804: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9805: case $host_platform:$host_cpu in
! 9806: at:i?86)
! 9807: case $enable_device_drivers:'Linux device driver for Ethernet controller SMC Ultra32; on ix86-at enabled
! 9808: by default' in
! 9809: default:*by\ default* | qemu:*for\ qemu*)
! 9810: enableval=${enableval-yes};;
! 9811: *)
! 9812: enableval=${enableval-no};;
! 9813: esac;;
! 9814: *)
! 9815: if [ x"$enableval" = xyes ]; then
! 9816: # TODO. That might not always be true.
! 9817: as_fn_error $? "cannot enable \`smc-ultra32' in this configuration." "$LINENO" 5
! 9818: fi;;
! 9819: esac
! 9820: if [ x"$enableval" = xyes ]; then
! 9821: device_driver_smc_ultra32_TRUE=
! 9822: device_driver_smc_ultra32_FALSE='#'
! 9823: else
! 9824: device_driver_smc_ultra32_TRUE='#'
! 9825: device_driver_smc_ultra32_FALSE=
! 9826: fi
! 9827:
! 9828: if [ x"$enableval" = xyes ]; then
! 9829: have_linux_code=yes
! 9830:
! 9831: $as_echo "#define CONFIG_ULTRA32 1" >>confdefs.h
! 9832:
! 9833: device_driver_group net
! 9834: fi
! 9835:
! 9836:
! 9837:
! 9838: unset enableval
! 9839: # Check whether --enable-starfire was given.
! 9840: if test "${enable_starfire+set}" = set; then :
! 9841: enableval=$enable_starfire;
! 9842: fi
! 9843:
! 9844: if test x$enable_net_group = xno;
! 9845: then
! 9846: enableval=${enableval-no}
! 9847: fi
! 9848: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9849: case $host_platform:$host_cpu in
! 9850: at:i?86)
! 9851: case $enable_device_drivers:'Linux device driver for Ethernet controller Adaptec Starfire network adapter; on ix86-at enabled
! 9852: by default' in
! 9853: default:*by\ default* | qemu:*for\ qemu*)
! 9854: enableval=${enableval-yes};;
! 9855: *)
! 9856: enableval=${enableval-no};;
! 9857: esac;;
! 9858: *)
! 9859: if [ x"$enableval" = xyes ]; then
! 9860: # TODO. That might not always be true.
! 9861: as_fn_error $? "cannot enable \`starfire' in this configuration." "$LINENO" 5
! 9862: fi;;
! 9863: esac
! 9864: if [ x"$enableval" = xyes ]; then
! 9865: device_driver_starfire_TRUE=
! 9866: device_driver_starfire_FALSE='#'
! 9867: else
! 9868: device_driver_starfire_TRUE='#'
! 9869: device_driver_starfire_FALSE=
! 9870: fi
! 9871:
! 9872: if [ x"$enableval" = xyes ]; then
! 9873: have_linux_code=yes
! 9874:
! 9875: $as_echo "#define CONFIG_STARFIRE 1" >>confdefs.h
! 9876:
! 9877: device_driver_group net
! 9878: fi
! 9879:
! 9880:
! 9881:
! 9882: unset enableval
! 9883: # Check whether --enable-sundance was given.
! 9884: if test "${enable_sundance+set}" = set; then :
! 9885: enableval=$enable_sundance;
! 9886: fi
! 9887:
! 9888: if test x$enable_net_group = xno;
! 9889: then
! 9890: enableval=${enableval-no}
! 9891: fi
! 9892: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9893: case $host_platform:$host_cpu in
! 9894: at:i?86)
! 9895: case $enable_device_drivers:'Linux device driver for Ethernet controller Sundance ST201 "Alta" PCI Ethernet; on ix86-at enabled
! 9896: by default' in
! 9897: default:*by\ default* | qemu:*for\ qemu*)
! 9898: enableval=${enableval-yes};;
! 9899: *)
! 9900: enableval=${enableval-no};;
! 9901: esac;;
! 9902: *)
! 9903: if [ x"$enableval" = xyes ]; then
! 9904: # TODO. That might not always be true.
! 9905: as_fn_error $? "cannot enable \`sundance' in this configuration." "$LINENO" 5
! 9906: fi;;
! 9907: esac
! 9908: if [ x"$enableval" = xyes ]; then
! 9909: device_driver_sundance_TRUE=
! 9910: device_driver_sundance_FALSE='#'
! 9911: else
! 9912: device_driver_sundance_TRUE='#'
! 9913: device_driver_sundance_FALSE=
! 9914: fi
! 9915:
! 9916: if [ x"$enableval" = xyes ]; then
! 9917: have_linux_code=yes
! 9918:
! 9919: $as_echo "#define CONFIG_SUNDANCE 1" >>confdefs.h
! 9920:
! 9921: device_driver_group net
! 9922: fi
! 9923:
! 9924:
! 9925:
! 9926: unset enableval
! 9927: # Check whether --enable-tlan was given.
! 9928: if test "${enable_tlan+set}" = set; then :
! 9929: enableval=$enable_tlan;
! 9930: fi
! 9931:
! 9932: if test x$enable_net_group = xno;
! 9933: then
! 9934: enableval=${enableval-no}
! 9935: fi
! 9936: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9937: case $host_platform:$host_cpu in
! 9938: at:i?86)
! 9939: case $enable_device_drivers:'Linux device driver for Ethernet controller TI ThunderLAN; on ix86-at enabled
! 9940: by default' in
! 9941: default:*by\ default* | qemu:*for\ qemu*)
! 9942: enableval=${enableval-yes};;
! 9943: *)
! 9944: enableval=${enableval-no};;
! 9945: esac;;
! 9946: *)
! 9947: if [ x"$enableval" = xyes ]; then
! 9948: # TODO. That might not always be true.
! 9949: as_fn_error $? "cannot enable \`tlan' in this configuration." "$LINENO" 5
! 9950: fi;;
! 9951: esac
! 9952: if [ x"$enableval" = xyes ]; then
! 9953: device_driver_tlan_TRUE=
! 9954: device_driver_tlan_FALSE='#'
! 9955: else
! 9956: device_driver_tlan_TRUE='#'
! 9957: device_driver_tlan_FALSE=
! 9958: fi
! 9959:
! 9960: if [ x"$enableval" = xyes ]; then
! 9961: have_linux_code=yes
! 9962:
! 9963: $as_echo "#define CONFIG_TLAN 1" >>confdefs.h
! 9964:
! 9965: device_driver_group net
! 9966: fi
! 9967:
! 9968:
! 9969:
! 9970: unset enableval
! 9971: # Check whether --enable-tulip was given.
! 9972: if test "${enable_tulip+set}" = set; then :
! 9973: enableval=$enable_tulip;
! 9974: fi
! 9975:
! 9976: if test x$enable_net_group = xno;
! 9977: then
! 9978: enableval=${enableval-no}
! 9979: fi
! 9980: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 9981: case $host_platform:$host_cpu in
! 9982: at:i?86)
! 9983: case $enable_device_drivers:'Linux device driver for Ethernet controller DECchip Tulip (dc21x4x) PCI (elcp, tulip); on ix86-at enabled
! 9984: by default' in
! 9985: default:*by\ default* | qemu:*for\ qemu*)
! 9986: enableval=${enableval-yes};;
! 9987: *)
! 9988: enableval=${enableval-no};;
! 9989: esac;;
! 9990: *)
! 9991: if [ x"$enableval" = xyes ]; then
! 9992: # TODO. That might not always be true.
! 9993: as_fn_error $? "cannot enable \`tulip' in this configuration." "$LINENO" 5
! 9994: fi;;
! 9995: esac
! 9996: if [ x"$enableval" = xyes ]; then
! 9997: device_driver_tulip_TRUE=
! 9998: device_driver_tulip_FALSE='#'
! 9999: else
! 10000: device_driver_tulip_TRUE='#'
! 10001: device_driver_tulip_FALSE=
! 10002: fi
! 10003:
! 10004: if [ x"$enableval" = xyes ]; then
! 10005: have_linux_code=yes
! 10006:
! 10007: $as_echo "#define CONFIG_DEC_ELCP 1" >>confdefs.h
! 10008:
! 10009: device_driver_group net
! 10010: fi
! 10011:
! 10012:
! 10013:
! 10014: unset enableval
! 10015: # Check whether --enable-via-rhine was given.
! 10016: if test "${enable_via_rhine+set}" = set; then :
! 10017: enableval=$enable_via_rhine;
! 10018: fi
! 10019:
! 10020: if test x$enable_net_group = xno;
! 10021: then
! 10022: enableval=${enableval-no}
! 10023: fi
! 10024: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 10025: case $host_platform:$host_cpu in
! 10026: at:i?86)
! 10027: case $enable_device_drivers:'Linux device driver for Ethernet controller VIA Rhine; on ix86-at enabled
! 10028: by default' in
! 10029: default:*by\ default* | qemu:*for\ qemu*)
! 10030: enableval=${enableval-yes};;
! 10031: *)
! 10032: enableval=${enableval-no};;
! 10033: esac;;
! 10034: *)
! 10035: if [ x"$enableval" = xyes ]; then
! 10036: # TODO. That might not always be true.
! 10037: as_fn_error $? "cannot enable \`via-rhine' in this configuration." "$LINENO" 5
! 10038: fi;;
! 10039: esac
! 10040: if [ x"$enableval" = xyes ]; then
! 10041: device_driver_via_rhine_TRUE=
! 10042: device_driver_via_rhine_FALSE='#'
! 10043: else
! 10044: device_driver_via_rhine_TRUE='#'
! 10045: device_driver_via_rhine_FALSE=
! 10046: fi
! 10047:
! 10048: if [ x"$enableval" = xyes ]; then
! 10049: have_linux_code=yes
! 10050:
! 10051: $as_echo "#define CONFIG_VIA_RHINE 1" >>confdefs.h
! 10052:
! 10053: device_driver_group net
! 10054: fi
! 10055:
! 10056: # Disabled by default.
! 10057:
! 10058:
! 10059: unset enableval
! 10060: # Check whether --enable-wavelan was given.
! 10061: if test "${enable_wavelan+set}" = set; then :
! 10062: enableval=$enable_wavelan;
! 10063: fi
! 10064:
! 10065: #TODO.
! 10066: case $host_platform:$host_cpu in
! 10067: at:i?86)
! 10068: :;;
! 10069: *)
! 10070: if [ x"$enableval" = xyes ]; then
! 10071: # TODO. That might not always be true.
! 10072: as_fn_error $? "cannot enable \`wavelan' in this configuration." "$LINENO" 5
! 10073: fi;;
! 10074: esac
! 10075: if [ x"$enableval" = xyes ]; then
! 10076: device_driver_wavelan_TRUE=
! 10077: device_driver_wavelan_FALSE='#'
! 10078: else
! 10079: device_driver_wavelan_TRUE='#'
! 10080: device_driver_wavelan_FALSE=
! 10081: fi
! 10082:
! 10083: if [ x"$enableval" = xyes ]; then
! 10084: have_linux_code=yes
! 10085:
! 10086: $as_echo "#define CONFIG_WAVELAN 1" >>confdefs.h
! 10087:
! 10088: device_driver_group net
! 10089: fi
! 10090:
! 10091:
! 10092:
! 10093: unset enableval
! 10094: # Check whether --enable-wd was given.
! 10095: if test "${enable_wd+set}" = set; then :
! 10096: enableval=$enable_wd;
! 10097: fi
! 10098:
! 10099: if test x$enable_net_group = xno;
! 10100: then
! 10101: enableval=${enableval-no}
! 10102: fi
! 10103: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 10104: case $host_platform:$host_cpu in
! 10105: at:i?86)
! 10106: case $enable_device_drivers:'Linux device driver for Ethernet controller WD80x3; on ix86-at enabled
! 10107: by default' in
! 10108: default:*by\ default* | qemu:*for\ qemu*)
! 10109: enableval=${enableval-yes};;
! 10110: *)
! 10111: enableval=${enableval-no};;
! 10112: esac;;
! 10113: *)
! 10114: if [ x"$enableval" = xyes ]; then
! 10115: # TODO. That might not always be true.
! 10116: as_fn_error $? "cannot enable \`wd' in this configuration." "$LINENO" 5
! 10117: fi;;
! 10118: esac
! 10119: if [ x"$enableval" = xyes ]; then
! 10120: device_driver_wd_TRUE=
! 10121: device_driver_wd_FALSE='#'
! 10122: else
! 10123: device_driver_wd_TRUE='#'
! 10124: device_driver_wd_FALSE=
! 10125: fi
! 10126:
! 10127: if [ x"$enableval" = xyes ]; then
! 10128: have_linux_code=yes
! 10129:
! 10130: $as_echo "#define CONFIG_WD80x3 1" >>confdefs.h
! 10131:
! 10132: device_driver_group net
! 10133: fi
! 10134:
! 10135:
! 10136:
! 10137: unset enableval
! 10138: # Check whether --enable-winbond-840 was given.
! 10139: if test "${enable_winbond_840+set}" = set; then :
! 10140: enableval=$enable_winbond_840;
! 10141: fi
! 10142:
! 10143: if test x$enable_net_group = xno;
! 10144: then
! 10145: enableval=${enableval-no}
! 10146: fi
! 10147: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 10148: case $host_platform:$host_cpu in
! 10149: at:i?86)
! 10150: case $enable_device_drivers:'Linux device driver for Ethernet controller Winbond W89c840 PCI Ethernet; on ix86-at enabled
! 10151: by default' in
! 10152: default:*by\ default* | qemu:*for\ qemu*)
! 10153: enableval=${enableval-yes};;
! 10154: *)
! 10155: enableval=${enableval-no};;
! 10156: esac;;
! 10157: *)
! 10158: if [ x"$enableval" = xyes ]; then
! 10159: # TODO. That might not always be true.
! 10160: as_fn_error $? "cannot enable \`winbond-840' in this configuration." "$LINENO" 5
! 10161: fi;;
! 10162: esac
! 10163: if [ x"$enableval" = xyes ]; then
! 10164: device_driver_winbond_840_TRUE=
! 10165: device_driver_winbond_840_FALSE='#'
! 10166: else
! 10167: device_driver_winbond_840_TRUE='#'
! 10168: device_driver_winbond_840_FALSE=
! 10169: fi
! 10170:
! 10171: if [ x"$enableval" = xyes ]; then
! 10172: have_linux_code=yes
! 10173:
! 10174: $as_echo "#define CONFIG_WINBOND840 1" >>confdefs.h
! 10175:
! 10176: device_driver_group net
! 10177: fi
! 10178:
! 10179:
! 10180:
! 10181: unset enableval
! 10182: # Check whether --enable-yellowfin was given.
! 10183: if test "${enable_yellowfin+set}" = set; then :
! 10184: enableval=$enable_yellowfin;
! 10185: fi
! 10186:
! 10187: if test x$enable_net_group = xno;
! 10188: then
! 10189: enableval=${enableval-no}
! 10190: fi
! 10191: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 10192: case $host_platform:$host_cpu in
! 10193: at:i?86)
! 10194: case $enable_device_drivers:'Linux device driver for Ethernet controller Packet Engines Yellowfin Gigabit-NIC; on ix86-at enabled
! 10195: by default' in
! 10196: default:*by\ default* | qemu:*for\ qemu*)
! 10197: enableval=${enableval-yes};;
! 10198: *)
! 10199: enableval=${enableval-no};;
! 10200: esac;;
! 10201: *)
! 10202: if [ x"$enableval" = xyes ]; then
! 10203: # TODO. That might not always be true.
! 10204: as_fn_error $? "cannot enable \`yellowfin' in this configuration." "$LINENO" 5
! 10205: fi;;
! 10206: esac
! 10207: if [ x"$enableval" = xyes ]; then
! 10208: device_driver_yellowfin_TRUE=
! 10209: device_driver_yellowfin_FALSE='#'
! 10210: else
! 10211: device_driver_yellowfin_TRUE='#'
! 10212: device_driver_yellowfin_FALSE=
! 10213: fi
! 10214:
! 10215: if [ x"$enableval" = xyes ]; then
! 10216: have_linux_code=yes
! 10217:
! 10218: $as_echo "#define CONFIG_YELLOWFIN 1" >>confdefs.h
! 10219:
! 10220: device_driver_group net
! 10221: fi
! 10222:
! 10223:
! 10224:
! 10225: unset enableval
! 10226: # Check whether --enable-znet was given.
! 10227: if test "${enable_znet+set}" = set; then :
! 10228: enableval=$enable_znet;
! 10229: fi
! 10230:
! 10231: if test x$enable_net_group = xno;
! 10232: then
! 10233: enableval=${enableval-no}
! 10234: fi
! 10235: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 10236: case $host_platform:$host_cpu in
! 10237: at:i?86)
! 10238: case $enable_device_drivers:'Linux device driver for Ethernet controller Zenith Z-Note (znet, znote); on ix86-at enabled
! 10239: by default' in
! 10240: default:*by\ default* | qemu:*for\ qemu*)
! 10241: enableval=${enableval-yes};;
! 10242: *)
! 10243: enableval=${enableval-no};;
! 10244: esac;;
! 10245: *)
! 10246: if [ x"$enableval" = xyes ]; then
! 10247: # TODO. That might not always be true.
! 10248: as_fn_error $? "cannot enable \`znet' in this configuration." "$LINENO" 5
! 10249: fi;;
! 10250: esac
! 10251: if [ x"$enableval" = xyes ]; then
! 10252: device_driver_znet_TRUE=
! 10253: device_driver_znet_FALSE='#'
! 10254: else
! 10255: device_driver_znet_TRUE='#'
! 10256: device_driver_znet_FALSE=
! 10257: fi
! 10258:
! 10259: if [ x"$enableval" = xyes ]; then
! 10260: have_linux_code=yes
! 10261:
! 10262: $as_echo "#define CONFIG_ZNET 1" >>confdefs.h
! 10263:
! 10264: device_driver_group net
! 10265: fi
! 10266:
! 10267:
! 10268:
! 10269: # Check whether --enable-pcmcia-group was given.
! 10270: if test "${enable_pcmcia_group+set}" = set; then :
! 10271: enableval=$enable_pcmcia_group;
! 10272: fi
! 10273:
! 10274:
! 10275:
! 10276:
! 10277:
! 10278: unset enableval
! 10279: # Check whether --enable-i82365 was given.
! 10280: if test "${enable_i82365+set}" = set; then :
! 10281: enableval=$enable_i82365;
! 10282: fi
! 10283:
! 10284: if test x$enable_pcmcia_group = xno;
! 10285: then
! 10286: enableval=${enableval-no}
! 10287: fi
! 10288: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 10289: case $host_platform:$host_cpu in
! 10290: at:i?86)
! 10291: case $enable_device_drivers:'Linux device driver for Intel 82365 PC Card controller; on ix86-at enabled
! 10292: by default' in
! 10293: default:*by\ default* | qemu:*for\ qemu*)
! 10294: enableval=${enableval-yes};;
! 10295: *)
! 10296: enableval=${enableval-no};;
! 10297: esac;;
! 10298: *)
! 10299: if [ x"$enableval" = xyes ]; then
! 10300: # TODO. That might not always be true.
! 10301: as_fn_error $? "cannot enable \`i82365' in this configuration." "$LINENO" 5
! 10302: fi;;
! 10303: esac
! 10304: if [ x"$enableval" = xyes ]; then
! 10305: device_driver_i82365_TRUE=
! 10306: device_driver_i82365_FALSE='#'
! 10307: else
! 10308: device_driver_i82365_TRUE='#'
! 10309: device_driver_i82365_FALSE=
! 10310: fi
! 10311:
! 10312: if [ x"$enableval" = xyes ]; then
! 10313: have_linux_code=yes
! 10314:
! 10315: $as_echo "#define CONFIG_I82365 1" >>confdefs.h
! 10316:
! 10317: device_driver_group pcmcia
! 10318: fi
! 10319:
! 10320:
! 10321:
! 10322: unset enableval
! 10323: # Check whether --enable-pcmcia-isa was given.
! 10324: if test "${enable_pcmcia_isa+set}" = set; then :
! 10325: enableval=$enable_pcmcia_isa;
! 10326: fi
! 10327:
! 10328: if test x$enable_pcmcia_group = xno;
! 10329: then
! 10330: enableval=${enableval-no}
! 10331: fi
! 10332: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 10333: case $host_platform:$host_cpu in
! 10334: at:i?86)
! 10335: case $enable_device_drivers:'isa bus support in the pcmcia core; on ix86-at enabled by default' in
! 10336: default:*by\ default* | qemu:*for\ qemu*)
! 10337: enableval=${enableval-yes};;
! 10338: *)
! 10339: enableval=${enableval-no};;
! 10340: esac;;
! 10341: *)
! 10342: if [ x"$enableval" = xyes ]; then
! 10343: # TODO. That might not always be true.
! 10344: as_fn_error $? "cannot enable \`pcmcia-isa' in this configuration." "$LINENO" 5
! 10345: fi;;
! 10346: esac
! 10347: if [ x"$enableval" = xyes ]; then
! 10348: device_driver_pcmcia_isa_TRUE=
! 10349: device_driver_pcmcia_isa_FALSE='#'
! 10350: else
! 10351: device_driver_pcmcia_isa_TRUE='#'
! 10352: device_driver_pcmcia_isa_FALSE=
! 10353: fi
! 10354:
! 10355: if [ x"$enableval" = xyes ]; then
! 10356: have_linux_code=yes
! 10357:
! 10358: $as_echo "#define CONFIG_ISA 1" >>confdefs.h
! 10359:
! 10360: device_driver_group pcmcia
! 10361: fi
! 10362:
! 10363:
! 10364:
! 10365:
! 10366: unset enableval
! 10367: # Check whether --enable-3c574_cs was given.
! 10368: if test "${enable_3c574_cs+set}" = set; then :
! 10369: enableval=$enable_3c574_cs;
! 10370: fi
! 10371:
! 10372: if test x$enable_pcmcia_group = xno;
! 10373: then
! 10374: enableval=${enableval-no}
! 10375: fi
! 10376: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 10377: case $host_platform:$host_cpu in
! 10378: at:i?86)
! 10379: case $enable_device_drivers:'Linux device driver for 3Com 3c574 ``RoadRunner'' PCMCIA Ethernet; on ix86-at enabled
! 10380: by default' in
! 10381: default:*by\ default* | qemu:*for\ qemu*)
! 10382: enableval=${enableval-yes};;
! 10383: *)
! 10384: enableval=${enableval-no};;
! 10385: esac;;
! 10386: *)
! 10387: if [ x"$enableval" = xyes ]; then
! 10388: # TODO. That might not always be true.
! 10389: as_fn_error $? "cannot enable \`3c574_cs' in this configuration." "$LINENO" 5
! 10390: fi;;
! 10391: esac
! 10392: if [ x"$enableval" = xyes ]; then
! 10393: device_driver_3c574_cs_TRUE=
! 10394: device_driver_3c574_cs_FALSE='#'
! 10395: else
! 10396: device_driver_3c574_cs_TRUE='#'
! 10397: device_driver_3c574_cs_FALSE=
! 10398: fi
! 10399:
! 10400: if [ x"$enableval" = xyes ]; then
! 10401: have_linux_code=yes
! 10402:
! 10403: $as_echo "#define CONFIG_3C574_CS 1" >>confdefs.h
! 10404:
! 10405: device_driver_group pcmcia
! 10406: fi
! 10407:
! 10408:
! 10409:
! 10410: unset enableval
! 10411: # Check whether --enable-3c589_cs was given.
! 10412: if test "${enable_3c589_cs+set}" = set; then :
! 10413: enableval=$enable_3c589_cs;
! 10414: fi
! 10415:
! 10416: if test x$enable_pcmcia_group = xno;
! 10417: then
! 10418: enableval=${enableval-no}
! 10419: fi
! 10420: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 10421: case $host_platform:$host_cpu in
! 10422: at:i?86)
! 10423: case $enable_device_drivers:'Linux device driver for 3Com 3c589 PCMCIA Ethernet card; on ix86-at enabled
! 10424: by default' in
! 10425: default:*by\ default* | qemu:*for\ qemu*)
! 10426: enableval=${enableval-yes};;
! 10427: *)
! 10428: enableval=${enableval-no};;
! 10429: esac;;
! 10430: *)
! 10431: if [ x"$enableval" = xyes ]; then
! 10432: # TODO. That might not always be true.
! 10433: as_fn_error $? "cannot enable \`3c589_cs' in this configuration." "$LINENO" 5
! 10434: fi;;
! 10435: esac
! 10436: if [ x"$enableval" = xyes ]; then
! 10437: device_driver_3c589_cs_TRUE=
! 10438: device_driver_3c589_cs_FALSE='#'
! 10439: else
! 10440: device_driver_3c589_cs_TRUE='#'
! 10441: device_driver_3c589_cs_FALSE=
! 10442: fi
! 10443:
! 10444: if [ x"$enableval" = xyes ]; then
! 10445: have_linux_code=yes
! 10446:
! 10447: $as_echo "#define CONFIG_3C589_CS 1" >>confdefs.h
! 10448:
! 10449: device_driver_group pcmcia
! 10450: fi
! 10451:
! 10452:
! 10453:
! 10454: unset enableval
! 10455: # Check whether --enable-axnet_cs was given.
! 10456: if test "${enable_axnet_cs+set}" = set; then :
! 10457: enableval=$enable_axnet_cs;
! 10458: fi
! 10459:
! 10460: if test x$enable_pcmcia_group = xno;
! 10461: then
! 10462: enableval=${enableval-no}
! 10463: fi
! 10464: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 10465: case $host_platform:$host_cpu in
! 10466: at:i?86)
! 10467: case $enable_device_drivers:'Linux device driver for Asix AX88190-based PCMCIA Ethernet adapters; on ix86-at enabled
! 10468: by default' in
! 10469: default:*by\ default* | qemu:*for\ qemu*)
! 10470: enableval=${enableval-yes};;
! 10471: *)
! 10472: enableval=${enableval-no};;
! 10473: esac;;
! 10474: *)
! 10475: if [ x"$enableval" = xyes ]; then
! 10476: # TODO. That might not always be true.
! 10477: as_fn_error $? "cannot enable \`axnet_cs' in this configuration." "$LINENO" 5
! 10478: fi;;
! 10479: esac
! 10480: if [ x"$enableval" = xyes ]; then
! 10481: device_driver_axnet_cs_TRUE=
! 10482: device_driver_axnet_cs_FALSE='#'
! 10483: else
! 10484: device_driver_axnet_cs_TRUE='#'
! 10485: device_driver_axnet_cs_FALSE=
! 10486: fi
! 10487:
! 10488: if [ x"$enableval" = xyes ]; then
! 10489: have_linux_code=yes
! 10490:
! 10491: $as_echo "#define CONFIG_AXNET_CS 1" >>confdefs.h
! 10492:
! 10493: device_driver_group pcmcia
! 10494: fi
! 10495:
! 10496:
! 10497:
! 10498: unset enableval
! 10499: # Check whether --enable-fmvj18x_cs was given.
! 10500: if test "${enable_fmvj18x_cs+set}" = set; then :
! 10501: enableval=$enable_fmvj18x_cs;
! 10502: fi
! 10503:
! 10504: if test x$enable_pcmcia_group = xno;
! 10505: then
! 10506: enableval=${enableval-no}
! 10507: fi
! 10508: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 10509: case $host_platform:$host_cpu in
! 10510: at:i?86)
! 10511: case $enable_device_drivers:'Linux device driver for fmvj18x chipset based PCMCIA Ethernet cards; on ix86-at enabled
! 10512: by default' in
! 10513: default:*by\ default* | qemu:*for\ qemu*)
! 10514: enableval=${enableval-yes};;
! 10515: *)
! 10516: enableval=${enableval-no};;
! 10517: esac;;
! 10518: *)
! 10519: if [ x"$enableval" = xyes ]; then
! 10520: # TODO. That might not always be true.
! 10521: as_fn_error $? "cannot enable \`fmvj18x_cs' in this configuration." "$LINENO" 5
! 10522: fi;;
! 10523: esac
! 10524: if [ x"$enableval" = xyes ]; then
! 10525: device_driver_fmvj18x_cs_TRUE=
! 10526: device_driver_fmvj18x_cs_FALSE='#'
! 10527: else
! 10528: device_driver_fmvj18x_cs_TRUE='#'
! 10529: device_driver_fmvj18x_cs_FALSE=
! 10530: fi
! 10531:
! 10532: if [ x"$enableval" = xyes ]; then
! 10533: have_linux_code=yes
! 10534:
! 10535: $as_echo "#define CONFIG_FMVJ18X_CS 1" >>confdefs.h
! 10536:
! 10537: device_driver_group pcmcia
! 10538: fi
! 10539:
! 10540:
! 10541:
! 10542: unset enableval
! 10543: # Check whether --enable-nmclan_cs was given.
! 10544: if test "${enable_nmclan_cs+set}" = set; then :
! 10545: enableval=$enable_nmclan_cs;
! 10546: fi
! 10547:
! 10548: if test x$enable_pcmcia_group = xno;
! 10549: then
! 10550: enableval=${enableval-no}
! 10551: fi
! 10552: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 10553: case $host_platform:$host_cpu in
! 10554: at:i?86)
! 10555: case $enable_device_drivers:'Linux device driver for New Media Ethernet LAN PCMCIA cards; on ix86-at enabled
! 10556: by default' in
! 10557: default:*by\ default* | qemu:*for\ qemu*)
! 10558: enableval=${enableval-yes};;
! 10559: *)
! 10560: enableval=${enableval-no};;
! 10561: esac;;
! 10562: *)
! 10563: if [ x"$enableval" = xyes ]; then
! 10564: # TODO. That might not always be true.
! 10565: as_fn_error $? "cannot enable \`nmclan_cs' in this configuration." "$LINENO" 5
! 10566: fi;;
! 10567: esac
! 10568: if [ x"$enableval" = xyes ]; then
! 10569: device_driver_nmclan_cs_TRUE=
! 10570: device_driver_nmclan_cs_FALSE='#'
! 10571: else
! 10572: device_driver_nmclan_cs_TRUE='#'
! 10573: device_driver_nmclan_cs_FALSE=
! 10574: fi
! 10575:
! 10576: if [ x"$enableval" = xyes ]; then
! 10577: have_linux_code=yes
! 10578:
! 10579: $as_echo "#define CONFIG_NMCLAN_CS 1" >>confdefs.h
! 10580:
! 10581: device_driver_group pcmcia
! 10582: fi
! 10583:
! 10584:
! 10585:
! 10586: unset enableval
! 10587: # Check whether --enable-pcnet_cs was given.
! 10588: if test "${enable_pcnet_cs+set}" = set; then :
! 10589: enableval=$enable_pcnet_cs;
! 10590: fi
! 10591:
! 10592: if test x$enable_pcmcia_group = xno;
! 10593: then
! 10594: enableval=${enableval-no}
! 10595: fi
! 10596: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 10597: case $host_platform:$host_cpu in
! 10598: at:i?86)
! 10599: case $enable_device_drivers:'Linux device driver for NS8390-based PCMCIA cards; on ix86-at enabled
! 10600: by default' in
! 10601: default:*by\ default* | qemu:*for\ qemu*)
! 10602: enableval=${enableval-yes};;
! 10603: *)
! 10604: enableval=${enableval-no};;
! 10605: esac;;
! 10606: *)
! 10607: if [ x"$enableval" = xyes ]; then
! 10608: # TODO. That might not always be true.
! 10609: as_fn_error $? "cannot enable \`pcnet_cs' in this configuration." "$LINENO" 5
! 10610: fi;;
! 10611: esac
! 10612: if [ x"$enableval" = xyes ]; then
! 10613: device_driver_pcnet_cs_TRUE=
! 10614: device_driver_pcnet_cs_FALSE='#'
! 10615: else
! 10616: device_driver_pcnet_cs_TRUE='#'
! 10617: device_driver_pcnet_cs_FALSE=
! 10618: fi
! 10619:
! 10620: if [ x"$enableval" = xyes ]; then
! 10621: have_linux_code=yes
! 10622:
! 10623: $as_echo "#define CONFIG_PCNET_CS 1" >>confdefs.h
! 10624:
! 10625: device_driver_group pcmcia
! 10626: fi
! 10627:
! 10628:
! 10629:
! 10630: unset enableval
! 10631: # Check whether --enable-smc91c92_cs was given.
! 10632: if test "${enable_smc91c92_cs+set}" = set; then :
! 10633: enableval=$enable_smc91c92_cs;
! 10634: fi
! 10635:
! 10636: if test x$enable_pcmcia_group = xno;
! 10637: then
! 10638: enableval=${enableval-no}
! 10639: fi
! 10640: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 10641: case $host_platform:$host_cpu in
! 10642: at:i?86)
! 10643: case $enable_device_drivers:'Linux device driver for SMC91c92-based PCMCIA cards; on ix86-at enabled
! 10644: by default' in
! 10645: default:*by\ default* | qemu:*for\ qemu*)
! 10646: enableval=${enableval-yes};;
! 10647: *)
! 10648: enableval=${enableval-no};;
! 10649: esac;;
! 10650: *)
! 10651: if [ x"$enableval" = xyes ]; then
! 10652: # TODO. That might not always be true.
! 10653: as_fn_error $? "cannot enable \`smc91c92_cs' in this configuration." "$LINENO" 5
! 10654: fi;;
! 10655: esac
! 10656: if [ x"$enableval" = xyes ]; then
! 10657: device_driver_smc91c92_cs_TRUE=
! 10658: device_driver_smc91c92_cs_FALSE='#'
! 10659: else
! 10660: device_driver_smc91c92_cs_TRUE='#'
! 10661: device_driver_smc91c92_cs_FALSE=
! 10662: fi
! 10663:
! 10664: if [ x"$enableval" = xyes ]; then
! 10665: have_linux_code=yes
! 10666:
! 10667: $as_echo "#define CONFIG_SMC91C92_CS 1" >>confdefs.h
! 10668:
! 10669: device_driver_group pcmcia
! 10670: fi
! 10671:
! 10672:
! 10673:
! 10674: unset enableval
! 10675: # Check whether --enable-xirc2ps_cs was given.
! 10676: if test "${enable_xirc2ps_cs+set}" = set; then :
! 10677: enableval=$enable_xirc2ps_cs;
! 10678: fi
! 10679:
! 10680: if test x$enable_pcmcia_group = xno;
! 10681: then
! 10682: enableval=${enableval-no}
! 10683: fi
! 10684: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 10685: case $host_platform:$host_cpu in
! 10686: at:i?86)
! 10687: case $enable_device_drivers:'Linux device driver for Xircom CreditCard and Realport PCMCIA ethernet; on ix86-at enabled
! 10688: by default' in
! 10689: default:*by\ default* | qemu:*for\ qemu*)
! 10690: enableval=${enableval-yes};;
! 10691: *)
! 10692: enableval=${enableval-no};;
! 10693: esac;;
! 10694: *)
! 10695: if [ x"$enableval" = xyes ]; then
! 10696: # TODO. That might not always be true.
! 10697: as_fn_error $? "cannot enable \`xirc2ps_cs' in this configuration." "$LINENO" 5
! 10698: fi;;
! 10699: esac
! 10700: if [ x"$enableval" = xyes ]; then
! 10701: device_driver_xirc2ps_cs_TRUE=
! 10702: device_driver_xirc2ps_cs_FALSE='#'
! 10703: else
! 10704: device_driver_xirc2ps_cs_TRUE='#'
! 10705: device_driver_xirc2ps_cs_FALSE=
! 10706: fi
! 10707:
! 10708: if [ x"$enableval" = xyes ]; then
! 10709: have_linux_code=yes
! 10710:
! 10711: $as_echo "#define CONFIG_XIRC2PS_CS 1" >>confdefs.h
! 10712:
! 10713: device_driver_group pcmcia
! 10714: fi
! 10715:
! 10716:
! 10717:
! 10718: # Check whether --enable-wireless-group was given.
! 10719: if test "${enable_wireless_group+set}" = set; then :
! 10720: enableval=$enable_wireless_group;
! 10721: fi
! 10722:
! 10723:
! 10724:
! 10725:
! 10726:
! 10727: unset enableval
! 10728: # Check whether --enable-orinoco_cs was given.
! 10729: if test "${enable_orinoco_cs+set}" = set; then :
! 10730: enableval=$enable_orinoco_cs;
! 10731: fi
! 10732:
! 10733: if test x$enable_wireless_group = xno;
! 10734: then
! 10735: enableval=${enableval-no}
! 10736: fi
! 10737: #TODO. Could use some M4 magic to avoid a lot of shell code.
! 10738: case $host_platform:$host_cpu in
! 10739: at:i?86)
! 10740: case $enable_device_drivers:'Linux device driver for Hermes or Prism 2 PCMCIA Wireless adapters (Orinoco); on ix86-at enabled
! 10741: by default' in
! 10742: default:*by\ default* | qemu:*for\ qemu*)
! 10743: enableval=${enableval-yes};;
! 10744: *)
! 10745: enableval=${enableval-no};;
! 10746: esac;;
! 10747: *)
! 10748: if [ x"$enableval" = xyes ]; then
! 10749: # TODO. That might not always be true.
! 10750: as_fn_error $? "cannot enable \`orinoco_cs' in this configuration." "$LINENO" 5
! 10751: fi;;
! 10752: esac
! 10753: if [ x"$enableval" = xyes ]; then
! 10754: device_driver_orinoco_cs_TRUE=
! 10755: device_driver_orinoco_cs_FALSE='#'
! 10756: else
! 10757: device_driver_orinoco_cs_TRUE='#'
! 10758: device_driver_orinoco_cs_FALSE=
! 10759: fi
! 10760:
! 10761: if [ x"$enableval" = xyes ]; then
! 10762: have_linux_code=yes
! 10763:
! 10764: $as_echo "#define CONFIG_ORINOCO_CS 1" >>confdefs.h
! 10765:
! 10766: device_driver_group wireless
! 10767: fi
! 10768:
! 10769:
! 10770: #
! 10771: # Process device driver groups: kinds of drivers that have gobs of source files
! 10772: # that get brought in, need special symbols defined, etc.
! 10773: #
! 10774:
! 10775: if [ x"$device_driver_group_net" = xselected ]; then
! 10776:
! 10777: $as_echo "#define CONFIG_INET 1" >>confdefs.h
! 10778:
! 10779: if true; then
! 10780: device_driver_group_net_TRUE=
! 10781: device_driver_group_net_FALSE='#'
! 10782: else
! 10783: device_driver_group_net_TRUE='#'
! 10784: device_driver_group_net_FALSE=
! 10785: fi
! 10786:
! 10787: else if false; then
! 10788: device_driver_group_net_TRUE=
! 10789: device_driver_group_net_FALSE='#'
! 10790: else
! 10791: device_driver_group_net_TRUE='#'
! 10792: device_driver_group_net_FALSE=
! 10793: fi
! 10794:
! 10795: fi
! 10796:
! 10797: if [ x"$device_driver_group_pcmcia" = xselected ]; then
! 10798:
! 10799: $as_echo "#define CONFIG_PCMCIA 1" >>confdefs.h
! 10800:
! 10801: if true; then
! 10802: device_driver_group_pcmcia_TRUE=
! 10803: device_driver_group_pcmcia_FALSE='#'
! 10804: else
! 10805: device_driver_group_pcmcia_TRUE='#'
! 10806: device_driver_group_pcmcia_FALSE=
! 10807: fi
! 10808:
! 10809: else if false; then
! 10810: device_driver_group_pcmcia_TRUE=
! 10811: device_driver_group_pcmcia_FALSE='#'
! 10812: else
! 10813: device_driver_group_pcmcia_TRUE='#'
! 10814: device_driver_group_pcmcia_FALSE=
! 10815: fi
! 10816:
! 10817: fi
! 10818:
! 10819: if [ x"$device_driver_group_scsi" = xselected ]; then
! 10820:
! 10821: $as_echo "#define CONFIG_SCSI 1" >>confdefs.h
! 10822:
! 10823: if true; then
! 10824: device_driver_group_scsi_TRUE=
! 10825: device_driver_group_scsi_FALSE='#'
! 10826: else
! 10827: device_driver_group_scsi_TRUE='#'
! 10828: device_driver_group_scsi_FALSE=
! 10829: fi
! 10830:
! 10831: else if false; then
! 10832: device_driver_group_scsi_TRUE=
! 10833: device_driver_group_scsi_FALSE='#'
! 10834: else
! 10835: device_driver_group_scsi_TRUE='#'
! 10836: device_driver_group_scsi_FALSE=
! 10837: fi
! 10838:
! 10839: fi
! 10840:
! 10841: if [ x"$device_driver_group_wireless" = xselected ]; then
! 10842:
! 10843: $as_echo "#define CONFIG_WIRELESS 1" >>confdefs.h
! 10844:
! 10845: fi
! 10846:
! 10847: #
! 10848: # Internals.
! 10849: #
! 10850:
! 10851:
! 10852:
! 10853: if [ "$have_linux_code" = yes ]; then
! 10854: if true; then
! 10855: CODE_linux_TRUE=
! 10856: CODE_linux_FALSE='#'
! 10857: else
! 10858: CODE_linux_TRUE='#'
! 10859: CODE_linux_FALSE=
! 10860: fi
! 10861:
! 10862:
! 10863: case $host_cpu in
! 10864: i386)
! 10865:
! 10866:
! 10867: $as_echo "#define CONFIG_M386 1" >>confdefs.h
! 10868:
! 10869:
! 10870: $as_echo "#define CPU 386" >>confdefs.h
! 10871: ;;
! 10872: i486)
! 10873:
! 10874:
! 10875: $as_echo "#define CONFIG_M486 1" >>confdefs.h
! 10876:
! 10877:
! 10878: $as_echo "#define CPU 486" >>confdefs.h
! 10879: ;;
! 10880: i586)
! 10881:
! 10882:
! 10883: $as_echo "#define CONFIG_M586 1" >>confdefs.h
! 10884:
! 10885:
! 10886: $as_echo "#define CPU 586" >>confdefs.h
! 10887: ;;
! 10888: i686)
! 10889:
! 10890:
! 10891: $as_echo "#define CONFIG_M686 1" >>confdefs.h
! 10892:
! 10893:
! 10894: $as_echo "#define CPU 686" >>confdefs.h
! 10895: ;;
! 10896: *)
! 10897: # TODO. Warn here?
! 10898:
! 10899:
! 10900: $as_echo "#define CONFIG_M486 1" >>confdefs.h
! 10901:
! 10902:
! 10903: $as_echo "#define CPU 486" >>confdefs.h
! 10904: ;;
! 10905: esac
! 10906:
! 10907: # The glue code dependend code checks for this.
! 10908:
! 10909: $as_echo "#define LINUX_DEV 1" >>confdefs.h
! 10910:
! 10911: # Instead of Mach's KERNEL, Linux uses __KERNEL__. Whee.
! 10912:
! 10913: $as_echo "#define __KERNEL__ 1" >>confdefs.h
! 10914:
! 10915: if [ $mach_ncpus -gt 1 ]; then
! 10916:
! 10917: $as_echo "#define __SMP__ 1" >>confdefs.h
! 10918:
! 10919: fi
! 10920:
! 10921: # Set up `asm-SYSTYPE' links.
! 10922: ac_config_links="$ac_config_links linux/src/include/asm:linux/src/include/asm-$systype linux/dev/include/asm:linux/dev/include/asm-$systype"
! 10923:
! 10924: else if false; then
! 10925: CODE_linux_TRUE=
! 10926: CODE_linux_FALSE='#'
! 10927: else
! 10928: CODE_linux_TRUE='#'
! 10929: CODE_linux_FALSE=
! 10930: fi
! 10931:
! 10932: fi
! 10933:
! 10934:
! 10935:
! 10936: #
! 10937: # Compiler features.
! 10938: #
! 10939:
! 10940: # Smashing stack protector.
! 10941: ssp_possible=yes
! 10942: { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler accepts \`-fstack-protector'" >&5
! 10943: $as_echo_n "checking whether the compiler accepts \`-fstack-protector'... " >&6; }
! 10944: # Is this a reliable test case?
! 10945: cat confdefs.h - <<_ACEOF >conftest.$ac_ext
! 10946: /* end confdefs.h. */
! 10947: void foo (void) { volatile char a[8]; a[3]; }
! 10948: _ACEOF
! 10949: # `$CC -c -o ...' might not be portable. But, oh, well... Is calling
! 10950: # `ac_compile' like this correct, after all?
! 10951: if eval "$ac_compile -S -fstack-protector -o conftest.s" 2> /dev/null; then
! 10952: { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
! 10953: $as_echo "yes" >&6; }
! 10954: # Should we clear up other files as well, having called `AC_LANG_CONFTEST'?
! 10955: rm -f conftest.s
! 10956: else
! 10957: ssp_possible=no
! 10958: { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
! 10959: $as_echo "no" >&6; }
! 10960: fi
! 10961: # Need that, because some distributions ship compilers that include
! 10962: # `-fstack-protector' in the default specs.
! 10963: if [ x"$ssp_possible" = xyes ]; then
! 10964: disable_smashing_stack_protector_TRUE=
! 10965: disable_smashing_stack_protector_FALSE='#'
! 10966: else
! 10967: disable_smashing_stack_protector_TRUE='#'
! 10968: disable_smashing_stack_protector_FALSE=
! 10969: fi
! 10970:
! 10971:
! 10972: #
! 10973: # Output.
! 10974: #
! 10975:
! 10976: ac_config_headers="$ac_config_headers config.h"
! 10977:
! 10978: ac_config_files="$ac_config_files Makefile version.c"
! 10979:
! 10980:
! 10981: #
! 10982: # The remaining ugly, dark corners...
! 10983: #
! 10984: # Attention, parents: don't show this to your children...
! 10985: #
! 10986:
! 10987: #
! 10988: # config.status.dep.patch
! 10989: #
! 10990: # This is a (ugly --- I admit) bootstrap hack to get to-be-generated files
! 10991: # created before any other source files are compiled.
! 10992: #
! 10993: # See <http://lists.gnu.org/archive/html/automake/2006-05/msg00038.html>.
! 10994: #
! 10995: # We don't use `BUILT_SOURCES' (as it was suggested in the follow-up message),
! 10996: # as we also want things like `make SPECIFIC_TARGET' to work.
! 10997: #
! 10998: # This affair is especially ugly because internals are used (the `# dummy'
! 10999: # tag): internals that may be subject to changes. That's the reason why a
! 11000: # real patch is being used here and not some `sed' magic: to make it fail
! 11001: # loudly in case.
! 11002: #
! 11003: # For all shipped source files a dependency file is tried to be created where
! 11004: # it is simply stated that the respective source file depends on _all_
! 11005: # to-be-generated files. Depending on all of them doesn't do any harm, as they
! 11006: # will nevertheless have to be created, sooner or later. The problem is, that
! 11007: # `config.status' doesn't know about the source file of the file it is
! 11008: # currently creating the dependency file for. So we have it do an educated
! 11009: # guess... Later, when compiling the source files, these dependency files will
! 11010: # be rewritten to contain the files's actual dependencies. From then on this
! 11011: # bootstrap hack will be forgotten.
! 11012: #
! 11013:
! 11014:
! 11015:
! 11016: #
! 11017: # Fire.
! 11018: #
! 11019:
! 11020: cat >confcache <<\_ACEOF
! 11021: # This file is a shell script that caches the results of configure
! 11022: # tests run on this system so they can be shared between configure
! 11023: # scripts and configure runs, see configure's option --config-cache.
! 11024: # It is not useful on other systems. If it contains results you don't
! 11025: # want to keep, you may remove or edit it.
! 11026: #
! 11027: # config.status only pays attention to the cache file if you give it
! 11028: # the --recheck option to rerun configure.
! 11029: #
! 11030: # `ac_cv_env_foo' variables (set or unset) will be overridden when
! 11031: # loading this file, other *unset* `ac_cv_foo' will be assigned the
! 11032: # following values.
! 11033:
! 11034: _ACEOF
! 11035:
! 11036: # The following way of writing the cache mishandles newlines in values,
! 11037: # but we know of no workaround that is simple, portable, and efficient.
! 11038: # So, we kill variables containing newlines.
! 11039: # Ultrix sh set writes to stderr and can't be redirected directly,
! 11040: # and sets the high bit in the cache file unless we assign to the vars.
! 11041: (
! 11042: for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
! 11043: eval ac_val=\$$ac_var
! 11044: case $ac_val in #(
! 11045: *${as_nl}*)
! 11046: case $ac_var in #(
! 11047: *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
! 11048: $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
! 11049: esac
! 11050: case $ac_var in #(
! 11051: _ | IFS | as_nl) ;; #(
! 11052: BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
! 11053: *) { eval $ac_var=; unset $ac_var;} ;;
! 11054: esac ;;
! 11055: esac
! 11056: done
! 11057:
! 11058: (set) 2>&1 |
! 11059: case $as_nl`(ac_space=' '; set) 2>&1` in #(
! 11060: *${as_nl}ac_space=\ *)
! 11061: # `set' does not quote correctly, so add quotes: double-quote
! 11062: # substitution turns \\\\ into \\, and sed turns \\ into \.
! 11063: sed -n \
! 11064: "s/'/'\\\\''/g;
! 11065: s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
! 11066: ;; #(
! 11067: *)
! 11068: # `set' quotes correctly as required by POSIX, so do not add quotes.
! 11069: sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
! 11070: ;;
! 11071: esac |
! 11072: sort
! 11073: ) |
! 11074: sed '
! 11075: /^ac_cv_env_/b end
! 11076: t clear
! 11077: :clear
! 11078: s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
! 11079: t end
! 11080: s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
! 11081: :end' >>confcache
! 11082: if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
! 11083: if test -w "$cache_file"; then
! 11084: if test "x$cache_file" != "x/dev/null"; then
! 11085: { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
! 11086: $as_echo "$as_me: updating cache $cache_file" >&6;}
! 11087: if test ! -f "$cache_file" || test -h "$cache_file"; then
! 11088: cat confcache >"$cache_file"
! 11089: else
! 11090: case $cache_file in #(
! 11091: */* | ?:*)
! 11092: mv -f confcache "$cache_file"$$ &&
! 11093: mv -f "$cache_file"$$ "$cache_file" ;; #(
! 11094: *)
! 11095: mv -f confcache "$cache_file" ;;
! 11096: esac
! 11097: fi
1.1.1.3 root 11098: fi
1.1.1.5 ! root 11099: else
! 11100: { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
! 11101: $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
! 11102: fi
1.1.1.3 root 11103: fi
1.1.1.5 ! root 11104: rm -f confcache
1.1.1.3 root 11105:
1.1.1.5 ! root 11106: test "x$prefix" = xNONE && prefix=$ac_default_prefix
! 11107: # Let make expand exec_prefix.
! 11108: test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
1.1.1.3 root 11109:
1.1.1.5 ! root 11110: DEFS=-DHAVE_CONFIG_H
1.1.1.3 root 11111:
1.1.1.5 ! root 11112: ac_libobjs=
! 11113: ac_ltlibobjs=
! 11114: U=
! 11115: for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
! 11116: # 1. Remove the extension, and $U if already installed.
! 11117: ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
! 11118: ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
! 11119: # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR
! 11120: # will be set to the directory where LIBOBJS objects are built.
! 11121: as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
! 11122: as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
! 11123: done
! 11124: LIBOBJS=$ac_libobjs
1.1.1.3 root 11125:
1.1.1.5 ! root 11126: LTLIBOBJS=$ac_ltlibobjs
1.1.1.3 root 11127:
11128:
1.1.1.5 ! root 11129: { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5
! 11130: $as_echo_n "checking that generated files are newer than configure... " >&6; }
! 11131: if test -n "$am_sleep_pid"; then
! 11132: # Hide warnings about reused PIDs.
! 11133: wait $am_sleep_pid 2>/dev/null
! 11134: fi
! 11135: { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5
! 11136: $as_echo "done" >&6; }
! 11137: if test -n "$EXEEXT"; then
! 11138: am__EXEEXT_TRUE=
! 11139: am__EXEEXT_FALSE='#'
1.1.1.3 root 11140: else
1.1.1.5 ! root 11141: am__EXEEXT_TRUE='#'
! 11142: am__EXEEXT_FALSE=
1.1.1.3 root 11143: fi
11144:
1.1.1.5 ! root 11145: if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
! 11146: as_fn_error $? "conditional \"AMDEP\" was never defined.
! 11147: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11148: fi
! 11149: if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
! 11150: as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
! 11151: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11152: fi
! 11153: if test -z "${am__fastdepCCAS_TRUE}" && test -z "${am__fastdepCCAS_FALSE}"; then
! 11154: as_fn_error $? "conditional \"am__fastdepCCAS\" was never defined.
! 11155: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11156: fi
! 11157: if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
! 11158: as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
! 11159: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11160: fi
! 11161: if test -z "${PLATFORM_xen_TRUE}" && test -z "${PLATFORM_xen_FALSE}"; then
! 11162: as_fn_error $? "conditional \"PLATFORM_xen\" was never defined.
! 11163: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11164: fi
! 11165: if test -z "${enable_pseudo_phys_TRUE}" && test -z "${enable_pseudo_phys_FALSE}"; then
! 11166: as_fn_error $? "conditional \"enable_pseudo_phys\" was never defined.
! 11167: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11168: fi
! 11169: if test -z "${enable_pseudo_phys_TRUE}" && test -z "${enable_pseudo_phys_FALSE}"; then
! 11170: as_fn_error $? "conditional \"enable_pseudo_phys\" was never defined.
! 11171: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11172: fi
! 11173: if test -z "${enable_pv_pagetables_TRUE}" && test -z "${enable_pv_pagetables_FALSE}"; then
! 11174: as_fn_error $? "conditional \"enable_pv_pagetables\" was never defined.
! 11175: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11176: fi
! 11177: if test -z "${enable_pv_pagetables_TRUE}" && test -z "${enable_pv_pagetables_FALSE}"; then
! 11178: as_fn_error $? "conditional \"enable_pv_pagetables\" was never defined.
! 11179: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11180: fi
! 11181: if test -z "${enable_pv_descriptors_TRUE}" && test -z "${enable_pv_descriptors_FALSE}"; then
! 11182: as_fn_error $? "conditional \"enable_pv_descriptors\" was never defined.
! 11183: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11184: fi
! 11185: if test -z "${enable_pv_descriptors_TRUE}" && test -z "${enable_pv_descriptors_FALSE}"; then
! 11186: as_fn_error $? "conditional \"enable_pv_descriptors\" was never defined.
! 11187: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11188: fi
! 11189: if test -z "${enable_ring1_TRUE}" && test -z "${enable_ring1_FALSE}"; then
! 11190: as_fn_error $? "conditional \"enable_ring1\" was never defined.
! 11191: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11192: fi
! 11193: if test -z "${enable_ring1_TRUE}" && test -z "${enable_ring1_FALSE}"; then
! 11194: as_fn_error $? "conditional \"enable_ring1\" was never defined.
! 11195: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11196: fi
! 11197: if test -z "${PLATFORM_xen_TRUE}" && test -z "${PLATFORM_xen_FALSE}"; then
! 11198: as_fn_error $? "conditional \"PLATFORM_xen\" was never defined.
! 11199: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11200: fi
! 11201: if test -z "${enable_pseudo_phys_TRUE}" && test -z "${enable_pseudo_phys_FALSE}"; then
! 11202: as_fn_error $? "conditional \"enable_pseudo_phys\" was never defined.
! 11203: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11204: fi
! 11205: if test -z "${enable_pv_pagetables_TRUE}" && test -z "${enable_pv_pagetables_FALSE}"; then
! 11206: as_fn_error $? "conditional \"enable_pv_pagetables\" was never defined.
! 11207: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11208: fi
! 11209: if test -z "${enable_pv_descriptors_TRUE}" && test -z "${enable_pv_descriptors_FALSE}"; then
! 11210: as_fn_error $? "conditional \"enable_pv_descriptors\" was never defined.
! 11211: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11212: fi
! 11213: if test -z "${enable_ring1_TRUE}" && test -z "${enable_ring1_FALSE}"; then
! 11214: as_fn_error $? "conditional \"enable_ring1\" was never defined.
! 11215: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11216: fi
! 11217: if test -z "${HOST_ix86_TRUE}" && test -z "${HOST_ix86_FALSE}"; then
! 11218: as_fn_error $? "conditional \"HOST_ix86\" was never defined.
! 11219: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11220: fi
! 11221: if test -z "${HOST_ix86_TRUE}" && test -z "${HOST_ix86_FALSE}"; then
! 11222: as_fn_error $? "conditional \"HOST_ix86\" was never defined.
! 11223: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11224: fi
! 11225: if test -z "${PLATFORM_at_TRUE}" && test -z "${PLATFORM_at_FALSE}"; then
! 11226: as_fn_error $? "conditional \"PLATFORM_at\" was never defined.
! 11227: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11228: fi
! 11229: if test -z "${PLATFORM_at_TRUE}" && test -z "${PLATFORM_at_FALSE}"; then
! 11230: as_fn_error $? "conditional \"PLATFORM_at\" was never defined.
! 11231: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11232: fi
! 11233: if test -z "${enable_lpr_TRUE}" && test -z "${enable_lpr_FALSE}"; then
! 11234: as_fn_error $? "conditional \"enable_lpr\" was never defined.
! 11235: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11236: fi
! 11237: if test -z "${enable_lpr_TRUE}" && test -z "${enable_lpr_FALSE}"; then
! 11238: as_fn_error $? "conditional \"enable_lpr\" was never defined.
! 11239: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11240: fi
! 11241: if test -z "${enable_pae_TRUE}" && test -z "${enable_pae_FALSE}"; then
! 11242: as_fn_error $? "conditional \"enable_pae\" was never defined.
! 11243: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11244: fi
! 11245: if test -z "${enable_pae_TRUE}" && test -z "${enable_pae_FALSE}"; then
! 11246: as_fn_error $? "conditional \"enable_pae\" was never defined.
! 11247: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11248: fi
! 11249: if test -z "${enable_kdb_TRUE}" && test -z "${enable_kdb_FALSE}"; then
! 11250: as_fn_error $? "conditional \"enable_kdb\" was never defined.
! 11251: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11252: fi
! 11253: if test -z "${enable_kdb_TRUE}" && test -z "${enable_kdb_FALSE}"; then
! 11254: as_fn_error $? "conditional \"enable_kdb\" was never defined.
! 11255: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11256: fi
! 11257: if test -z "${enable_kmsg_TRUE}" && test -z "${enable_kmsg_FALSE}"; then
! 11258: as_fn_error $? "conditional \"enable_kmsg\" was never defined.
! 11259: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11260: fi
! 11261: if test -z "${enable_kmsg_TRUE}" && test -z "${enable_kmsg_FALSE}"; then
! 11262: as_fn_error $? "conditional \"enable_kmsg\" was never defined.
! 11263: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11264: fi
! 11265: if test -z "${device_driver_floppy_TRUE}" && test -z "${device_driver_floppy_FALSE}"; then
! 11266: as_fn_error $? "conditional \"device_driver_floppy\" was never defined.
! 11267: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11268: fi
! 11269: if test -z "${device_driver_ide_TRUE}" && test -z "${device_driver_ide_FALSE}"; then
! 11270: as_fn_error $? "conditional \"device_driver_ide\" was never defined.
! 11271: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11272: fi
! 11273: if test -z "${device_driver_53c78xx_TRUE}" && test -z "${device_driver_53c78xx_FALSE}"; then
! 11274: as_fn_error $? "conditional \"device_driver_53c78xx\" was never defined.
! 11275: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11276: fi
! 11277: if test -z "${device_driver_AM53C974_TRUE}" && test -z "${device_driver_AM53C974_FALSE}"; then
! 11278: as_fn_error $? "conditional \"device_driver_AM53C974\" was never defined.
! 11279: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11280: fi
! 11281: if test -z "${device_driver_BusLogic_TRUE}" && test -z "${device_driver_BusLogic_FALSE}"; then
! 11282: as_fn_error $? "conditional \"device_driver_BusLogic\" was never defined.
! 11283: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11284: fi
! 11285: if test -z "${device_driver_NCR53c406a_TRUE}" && test -z "${device_driver_NCR53c406a_FALSE}"; then
! 11286: as_fn_error $? "conditional \"device_driver_NCR53c406a\" was never defined.
! 11287: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11288: fi
! 11289: if test -z "${device_driver_advansys_TRUE}" && test -z "${device_driver_advansys_FALSE}"; then
! 11290: as_fn_error $? "conditional \"device_driver_advansys\" was never defined.
! 11291: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11292: fi
! 11293: if test -z "${device_driver_aha152x_TRUE}" && test -z "${device_driver_aha152x_FALSE}"; then
! 11294: as_fn_error $? "conditional \"device_driver_aha152x\" was never defined.
! 11295: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11296: fi
! 11297: if test -z "${device_driver_aha1542_TRUE}" && test -z "${device_driver_aha1542_FALSE}"; then
! 11298: as_fn_error $? "conditional \"device_driver_aha1542\" was never defined.
! 11299: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11300: fi
! 11301: if test -z "${device_driver_aha1740_TRUE}" && test -z "${device_driver_aha1740_FALSE}"; then
! 11302: as_fn_error $? "conditional \"device_driver_aha1740\" was never defined.
! 11303: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11304: fi
! 11305: if test -z "${device_driver_aic7xxx_TRUE}" && test -z "${device_driver_aic7xxx_FALSE}"; then
! 11306: as_fn_error $? "conditional \"device_driver_aic7xxx\" was never defined.
! 11307: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11308: fi
! 11309: if test -z "${device_driver_dtc_TRUE}" && test -z "${device_driver_dtc_FALSE}"; then
! 11310: as_fn_error $? "conditional \"device_driver_dtc\" was never defined.
! 11311: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11312: fi
! 11313: if test -z "${device_driver_eata_TRUE}" && test -z "${device_driver_eata_FALSE}"; then
! 11314: as_fn_error $? "conditional \"device_driver_eata\" was never defined.
! 11315: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11316: fi
! 11317: if test -z "${device_driver_eata_dma_TRUE}" && test -z "${device_driver_eata_dma_FALSE}"; then
! 11318: as_fn_error $? "conditional \"device_driver_eata_dma\" was never defined.
! 11319: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11320: fi
! 11321: if test -z "${device_driver_eata_pio_TRUE}" && test -z "${device_driver_eata_pio_FALSE}"; then
! 11322: as_fn_error $? "conditional \"device_driver_eata_pio\" was never defined.
! 11323: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11324: fi
! 11325: if test -z "${device_driver_fdomain_TRUE}" && test -z "${device_driver_fdomain_FALSE}"; then
! 11326: as_fn_error $? "conditional \"device_driver_fdomain\" was never defined.
! 11327: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11328: fi
! 11329: if test -z "${device_driver_g_NCR5380_TRUE}" && test -z "${device_driver_g_NCR5380_FALSE}"; then
! 11330: as_fn_error $? "conditional \"device_driver_g_NCR5380\" was never defined.
! 11331: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11332: fi
! 11333: if test -z "${device_driver_gdth_TRUE}" && test -z "${device_driver_gdth_FALSE}"; then
! 11334: as_fn_error $? "conditional \"device_driver_gdth\" was never defined.
! 11335: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11336: fi
! 11337: if test -z "${device_driver_in2000_TRUE}" && test -z "${device_driver_in2000_FALSE}"; then
! 11338: as_fn_error $? "conditional \"device_driver_in2000\" was never defined.
! 11339: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11340: fi
! 11341: if test -z "${device_driver_ncr53c8xx_TRUE}" && test -z "${device_driver_ncr53c8xx_FALSE}"; then
! 11342: as_fn_error $? "conditional \"device_driver_ncr53c8xx\" was never defined.
! 11343: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11344: fi
! 11345: if test -z "${device_driver_pas16_TRUE}" && test -z "${device_driver_pas16_FALSE}"; then
! 11346: as_fn_error $? "conditional \"device_driver_pas16\" was never defined.
! 11347: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11348: fi
! 11349: if test -z "${device_driver_ppa_TRUE}" && test -z "${device_driver_ppa_FALSE}"; then
! 11350: as_fn_error $? "conditional \"device_driver_ppa\" was never defined.
! 11351: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11352: fi
! 11353: if test -z "${device_driver_qlogicfas_TRUE}" && test -z "${device_driver_qlogicfas_FALSE}"; then
! 11354: as_fn_error $? "conditional \"device_driver_qlogicfas\" was never defined.
! 11355: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11356: fi
! 11357: if test -z "${device_driver_qlogicisp_TRUE}" && test -z "${device_driver_qlogicisp_FALSE}"; then
! 11358: as_fn_error $? "conditional \"device_driver_qlogicisp\" was never defined.
! 11359: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11360: fi
! 11361: if test -z "${device_driver_seagate_TRUE}" && test -z "${device_driver_seagate_FALSE}"; then
! 11362: as_fn_error $? "conditional \"device_driver_seagate\" was never defined.
! 11363: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11364: fi
! 11365: if test -z "${device_driver_sym53c8xx_TRUE}" && test -z "${device_driver_sym53c8xx_FALSE}"; then
! 11366: as_fn_error $? "conditional \"device_driver_sym53c8xx\" was never defined.
! 11367: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11368: fi
! 11369: if test -z "${device_driver_t128_TRUE}" && test -z "${device_driver_t128_FALSE}"; then
! 11370: as_fn_error $? "conditional \"device_driver_t128\" was never defined.
! 11371: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11372: fi
! 11373: if test -z "${device_driver_tmscsim_TRUE}" && test -z "${device_driver_tmscsim_FALSE}"; then
! 11374: as_fn_error $? "conditional \"device_driver_tmscsim\" was never defined.
! 11375: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11376: fi
! 11377: if test -z "${device_driver_u14_34f_TRUE}" && test -z "${device_driver_u14_34f_FALSE}"; then
! 11378: as_fn_error $? "conditional \"device_driver_u14_34f\" was never defined.
! 11379: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11380: fi
! 11381: if test -z "${device_driver_ultrastor_TRUE}" && test -z "${device_driver_ultrastor_FALSE}"; then
! 11382: as_fn_error $? "conditional \"device_driver_ultrastor\" was never defined.
! 11383: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11384: fi
! 11385: if test -z "${device_driver_wd7000_TRUE}" && test -z "${device_driver_wd7000_FALSE}"; then
! 11386: as_fn_error $? "conditional \"device_driver_wd7000\" was never defined.
! 11387: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11388: fi
! 11389: if test -z "${device_driver_3c501_TRUE}" && test -z "${device_driver_3c501_FALSE}"; then
! 11390: as_fn_error $? "conditional \"device_driver_3c501\" was never defined.
! 11391: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11392: fi
! 11393: if test -z "${device_driver_3c503_TRUE}" && test -z "${device_driver_3c503_FALSE}"; then
! 11394: as_fn_error $? "conditional \"device_driver_3c503\" was never defined.
! 11395: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11396: fi
! 11397: if test -z "${device_driver_3c505_TRUE}" && test -z "${device_driver_3c505_FALSE}"; then
! 11398: as_fn_error $? "conditional \"device_driver_3c505\" was never defined.
! 11399: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11400: fi
! 11401: if test -z "${device_driver_3c507_TRUE}" && test -z "${device_driver_3c507_FALSE}"; then
! 11402: as_fn_error $? "conditional \"device_driver_3c507\" was never defined.
! 11403: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11404: fi
! 11405: if test -z "${device_driver_3c509_TRUE}" && test -z "${device_driver_3c509_FALSE}"; then
! 11406: as_fn_error $? "conditional \"device_driver_3c509\" was never defined.
! 11407: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11408: fi
! 11409: if test -z "${device_driver_3c59x_TRUE}" && test -z "${device_driver_3c59x_FALSE}"; then
! 11410: as_fn_error $? "conditional \"device_driver_3c59x\" was never defined.
! 11411: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11412: fi
! 11413: if test -z "${device_driver_3c515_TRUE}" && test -z "${device_driver_3c515_FALSE}"; then
! 11414: as_fn_error $? "conditional \"device_driver_3c515\" was never defined.
! 11415: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11416: fi
! 11417: if test -z "${device_driver_ac3200_TRUE}" && test -z "${device_driver_ac3200_FALSE}"; then
! 11418: as_fn_error $? "conditional \"device_driver_ac3200\" was never defined.
! 11419: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11420: fi
! 11421: if test -z "${device_driver_apricot_TRUE}" && test -z "${device_driver_apricot_FALSE}"; then
! 11422: as_fn_error $? "conditional \"device_driver_apricot\" was never defined.
! 11423: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11424: fi
! 11425: if test -z "${device_driver_at1700_TRUE}" && test -z "${device_driver_at1700_FALSE}"; then
! 11426: as_fn_error $? "conditional \"device_driver_at1700\" was never defined.
! 11427: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11428: fi
! 11429: if test -z "${device_driver_atp_TRUE}" && test -z "${device_driver_atp_FALSE}"; then
! 11430: as_fn_error $? "conditional \"device_driver_atp\" was never defined.
! 11431: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11432: fi
! 11433: if test -z "${device_driver_de4x5_TRUE}" && test -z "${device_driver_de4x5_FALSE}"; then
! 11434: as_fn_error $? "conditional \"device_driver_de4x5\" was never defined.
! 11435: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11436: fi
! 11437: if test -z "${device_driver_de600_TRUE}" && test -z "${device_driver_de600_FALSE}"; then
! 11438: as_fn_error $? "conditional \"device_driver_de600\" was never defined.
! 11439: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11440: fi
! 11441: if test -z "${device_driver_de620_TRUE}" && test -z "${device_driver_de620_FALSE}"; then
! 11442: as_fn_error $? "conditional \"device_driver_de620\" was never defined.
! 11443: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11444: fi
! 11445: if test -z "${device_driver_depca_TRUE}" && test -z "${device_driver_depca_FALSE}"; then
! 11446: as_fn_error $? "conditional \"device_driver_depca\" was never defined.
! 11447: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11448: fi
! 11449: if test -z "${device_driver_e2100_TRUE}" && test -z "${device_driver_e2100_FALSE}"; then
! 11450: as_fn_error $? "conditional \"device_driver_e2100\" was never defined.
! 11451: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11452: fi
! 11453: if test -z "${device_driver_eepro_TRUE}" && test -z "${device_driver_eepro_FALSE}"; then
! 11454: as_fn_error $? "conditional \"device_driver_eepro\" was never defined.
! 11455: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11456: fi
! 11457: if test -z "${device_driver_eepro100_TRUE}" && test -z "${device_driver_eepro100_FALSE}"; then
! 11458: as_fn_error $? "conditional \"device_driver_eepro100\" was never defined.
! 11459: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11460: fi
! 11461: if test -z "${device_driver_eexpress_TRUE}" && test -z "${device_driver_eexpress_FALSE}"; then
! 11462: as_fn_error $? "conditional \"device_driver_eexpress\" was never defined.
! 11463: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11464: fi
! 11465: if test -z "${device_driver_epic100_TRUE}" && test -z "${device_driver_epic100_FALSE}"; then
! 11466: as_fn_error $? "conditional \"device_driver_epic100\" was never defined.
! 11467: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11468: fi
! 11469: if test -z "${device_driver_eth16i_TRUE}" && test -z "${device_driver_eth16i_FALSE}"; then
! 11470: as_fn_error $? "conditional \"device_driver_eth16i\" was never defined.
! 11471: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11472: fi
! 11473: if test -z "${device_driver_ewrk3_TRUE}" && test -z "${device_driver_ewrk3_FALSE}"; then
! 11474: as_fn_error $? "conditional \"device_driver_ewrk3\" was never defined.
! 11475: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11476: fi
! 11477: if test -z "${device_driver_fmv18x_TRUE}" && test -z "${device_driver_fmv18x_FALSE}"; then
! 11478: as_fn_error $? "conditional \"device_driver_fmv18x\" was never defined.
! 11479: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11480: fi
! 11481: if test -z "${device_driver_hamachi_TRUE}" && test -z "${device_driver_hamachi_FALSE}"; then
! 11482: as_fn_error $? "conditional \"device_driver_hamachi\" was never defined.
! 11483: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11484: fi
! 11485: if test -z "${device_driver_hp_plus_TRUE}" && test -z "${device_driver_hp_plus_FALSE}"; then
! 11486: as_fn_error $? "conditional \"device_driver_hp_plus\" was never defined.
! 11487: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11488: fi
! 11489: if test -z "${device_driver_hp_TRUE}" && test -z "${device_driver_hp_FALSE}"; then
! 11490: as_fn_error $? "conditional \"device_driver_hp\" was never defined.
! 11491: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11492: fi
! 11493: if test -z "${device_driver_hp100_TRUE}" && test -z "${device_driver_hp100_FALSE}"; then
! 11494: as_fn_error $? "conditional \"device_driver_hp100\" was never defined.
! 11495: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11496: fi
! 11497: if test -z "${device_driver_intel_gige_TRUE}" && test -z "${device_driver_intel_gige_FALSE}"; then
! 11498: as_fn_error $? "conditional \"device_driver_intel_gige\" was never defined.
! 11499: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11500: fi
! 11501: if test -z "${device_driver_lance_TRUE}" && test -z "${device_driver_lance_FALSE}"; then
! 11502: as_fn_error $? "conditional \"device_driver_lance\" was never defined.
! 11503: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11504: fi
! 11505: if test -z "${device_driver_myson803_TRUE}" && test -z "${device_driver_myson803_FALSE}"; then
! 11506: as_fn_error $? "conditional \"device_driver_myson803\" was never defined.
! 11507: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11508: fi
! 11509: if test -z "${device_driver_natsemi_TRUE}" && test -z "${device_driver_natsemi_FALSE}"; then
! 11510: as_fn_error $? "conditional \"device_driver_natsemi\" was never defined.
! 11511: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11512: fi
! 11513: if test -z "${device_driver_ne_TRUE}" && test -z "${device_driver_ne_FALSE}"; then
! 11514: as_fn_error $? "conditional \"device_driver_ne\" was never defined.
! 11515: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11516: fi
! 11517: if test -z "${device_driver_ne2k_pci_TRUE}" && test -z "${device_driver_ne2k_pci_FALSE}"; then
! 11518: as_fn_error $? "conditional \"device_driver_ne2k_pci\" was never defined.
! 11519: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11520: fi
! 11521: if test -z "${device_driver_ni52_TRUE}" && test -z "${device_driver_ni52_FALSE}"; then
! 11522: as_fn_error $? "conditional \"device_driver_ni52\" was never defined.
! 11523: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11524: fi
! 11525: if test -z "${device_driver_ni65_TRUE}" && test -z "${device_driver_ni65_FALSE}"; then
! 11526: as_fn_error $? "conditional \"device_driver_ni65\" was never defined.
! 11527: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11528: fi
! 11529: if test -z "${device_driver_ns820_TRUE}" && test -z "${device_driver_ns820_FALSE}"; then
! 11530: as_fn_error $? "conditional \"device_driver_ns820\" was never defined.
! 11531: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11532: fi
! 11533: if test -z "${device_driver_pcnet32_TRUE}" && test -z "${device_driver_pcnet32_FALSE}"; then
! 11534: as_fn_error $? "conditional \"device_driver_pcnet32\" was never defined.
! 11535: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11536: fi
! 11537: if test -z "${device_driver_rtl8139_TRUE}" && test -z "${device_driver_rtl8139_FALSE}"; then
! 11538: as_fn_error $? "conditional \"device_driver_rtl8139\" was never defined.
! 11539: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11540: fi
! 11541: if test -z "${device_driver_seeq8005_TRUE}" && test -z "${device_driver_seeq8005_FALSE}"; then
! 11542: as_fn_error $? "conditional \"device_driver_seeq8005\" was never defined.
! 11543: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11544: fi
! 11545: if test -z "${device_driver_sis900_TRUE}" && test -z "${device_driver_sis900_FALSE}"; then
! 11546: as_fn_error $? "conditional \"device_driver_sis900\" was never defined.
! 11547: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11548: fi
! 11549: if test -z "${device_driver_sk_g16_TRUE}" && test -z "${device_driver_sk_g16_FALSE}"; then
! 11550: as_fn_error $? "conditional \"device_driver_sk_g16\" was never defined.
! 11551: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11552: fi
! 11553: if test -z "${device_driver_smc_ultra_TRUE}" && test -z "${device_driver_smc_ultra_FALSE}"; then
! 11554: as_fn_error $? "conditional \"device_driver_smc_ultra\" was never defined.
! 11555: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11556: fi
! 11557: if test -z "${device_driver_smc_ultra32_TRUE}" && test -z "${device_driver_smc_ultra32_FALSE}"; then
! 11558: as_fn_error $? "conditional \"device_driver_smc_ultra32\" was never defined.
! 11559: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11560: fi
! 11561: if test -z "${device_driver_starfire_TRUE}" && test -z "${device_driver_starfire_FALSE}"; then
! 11562: as_fn_error $? "conditional \"device_driver_starfire\" was never defined.
! 11563: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11564: fi
! 11565: if test -z "${device_driver_sundance_TRUE}" && test -z "${device_driver_sundance_FALSE}"; then
! 11566: as_fn_error $? "conditional \"device_driver_sundance\" was never defined.
! 11567: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11568: fi
! 11569: if test -z "${device_driver_tlan_TRUE}" && test -z "${device_driver_tlan_FALSE}"; then
! 11570: as_fn_error $? "conditional \"device_driver_tlan\" was never defined.
! 11571: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11572: fi
! 11573: if test -z "${device_driver_tulip_TRUE}" && test -z "${device_driver_tulip_FALSE}"; then
! 11574: as_fn_error $? "conditional \"device_driver_tulip\" was never defined.
! 11575: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11576: fi
! 11577: if test -z "${device_driver_via_rhine_TRUE}" && test -z "${device_driver_via_rhine_FALSE}"; then
! 11578: as_fn_error $? "conditional \"device_driver_via_rhine\" was never defined.
! 11579: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11580: fi
! 11581: if test -z "${device_driver_wavelan_TRUE}" && test -z "${device_driver_wavelan_FALSE}"; then
! 11582: as_fn_error $? "conditional \"device_driver_wavelan\" was never defined.
! 11583: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11584: fi
! 11585: if test -z "${device_driver_wd_TRUE}" && test -z "${device_driver_wd_FALSE}"; then
! 11586: as_fn_error $? "conditional \"device_driver_wd\" was never defined.
! 11587: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11588: fi
! 11589: if test -z "${device_driver_winbond_840_TRUE}" && test -z "${device_driver_winbond_840_FALSE}"; then
! 11590: as_fn_error $? "conditional \"device_driver_winbond_840\" was never defined.
! 11591: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11592: fi
! 11593: if test -z "${device_driver_yellowfin_TRUE}" && test -z "${device_driver_yellowfin_FALSE}"; then
! 11594: as_fn_error $? "conditional \"device_driver_yellowfin\" was never defined.
! 11595: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11596: fi
! 11597: if test -z "${device_driver_znet_TRUE}" && test -z "${device_driver_znet_FALSE}"; then
! 11598: as_fn_error $? "conditional \"device_driver_znet\" was never defined.
! 11599: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11600: fi
! 11601: if test -z "${device_driver_i82365_TRUE}" && test -z "${device_driver_i82365_FALSE}"; then
! 11602: as_fn_error $? "conditional \"device_driver_i82365\" was never defined.
! 11603: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11604: fi
! 11605: if test -z "${device_driver_pcmcia_isa_TRUE}" && test -z "${device_driver_pcmcia_isa_FALSE}"; then
! 11606: as_fn_error $? "conditional \"device_driver_pcmcia_isa\" was never defined.
! 11607: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11608: fi
! 11609: if test -z "${device_driver_3c574_cs_TRUE}" && test -z "${device_driver_3c574_cs_FALSE}"; then
! 11610: as_fn_error $? "conditional \"device_driver_3c574_cs\" was never defined.
! 11611: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11612: fi
! 11613: if test -z "${device_driver_3c589_cs_TRUE}" && test -z "${device_driver_3c589_cs_FALSE}"; then
! 11614: as_fn_error $? "conditional \"device_driver_3c589_cs\" was never defined.
! 11615: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11616: fi
! 11617: if test -z "${device_driver_axnet_cs_TRUE}" && test -z "${device_driver_axnet_cs_FALSE}"; then
! 11618: as_fn_error $? "conditional \"device_driver_axnet_cs\" was never defined.
! 11619: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11620: fi
! 11621: if test -z "${device_driver_fmvj18x_cs_TRUE}" && test -z "${device_driver_fmvj18x_cs_FALSE}"; then
! 11622: as_fn_error $? "conditional \"device_driver_fmvj18x_cs\" was never defined.
! 11623: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11624: fi
! 11625: if test -z "${device_driver_nmclan_cs_TRUE}" && test -z "${device_driver_nmclan_cs_FALSE}"; then
! 11626: as_fn_error $? "conditional \"device_driver_nmclan_cs\" was never defined.
! 11627: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11628: fi
! 11629: if test -z "${device_driver_pcnet_cs_TRUE}" && test -z "${device_driver_pcnet_cs_FALSE}"; then
! 11630: as_fn_error $? "conditional \"device_driver_pcnet_cs\" was never defined.
! 11631: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11632: fi
! 11633: if test -z "${device_driver_smc91c92_cs_TRUE}" && test -z "${device_driver_smc91c92_cs_FALSE}"; then
! 11634: as_fn_error $? "conditional \"device_driver_smc91c92_cs\" was never defined.
! 11635: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11636: fi
! 11637: if test -z "${device_driver_xirc2ps_cs_TRUE}" && test -z "${device_driver_xirc2ps_cs_FALSE}"; then
! 11638: as_fn_error $? "conditional \"device_driver_xirc2ps_cs\" was never defined.
! 11639: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11640: fi
! 11641: if test -z "${device_driver_orinoco_cs_TRUE}" && test -z "${device_driver_orinoco_cs_FALSE}"; then
! 11642: as_fn_error $? "conditional \"device_driver_orinoco_cs\" was never defined.
! 11643: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11644: fi
! 11645: if test -z "${device_driver_group_net_TRUE}" && test -z "${device_driver_group_net_FALSE}"; then
! 11646: as_fn_error $? "conditional \"device_driver_group_net\" was never defined.
! 11647: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11648: fi
! 11649: if test -z "${device_driver_group_net_TRUE}" && test -z "${device_driver_group_net_FALSE}"; then
! 11650: as_fn_error $? "conditional \"device_driver_group_net\" was never defined.
! 11651: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11652: fi
! 11653: if test -z "${device_driver_group_pcmcia_TRUE}" && test -z "${device_driver_group_pcmcia_FALSE}"; then
! 11654: as_fn_error $? "conditional \"device_driver_group_pcmcia\" was never defined.
! 11655: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11656: fi
! 11657: if test -z "${device_driver_group_pcmcia_TRUE}" && test -z "${device_driver_group_pcmcia_FALSE}"; then
! 11658: as_fn_error $? "conditional \"device_driver_group_pcmcia\" was never defined.
! 11659: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11660: fi
! 11661: if test -z "${device_driver_group_scsi_TRUE}" && test -z "${device_driver_group_scsi_FALSE}"; then
! 11662: as_fn_error $? "conditional \"device_driver_group_scsi\" was never defined.
! 11663: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11664: fi
! 11665: if test -z "${device_driver_group_scsi_TRUE}" && test -z "${device_driver_group_scsi_FALSE}"; then
! 11666: as_fn_error $? "conditional \"device_driver_group_scsi\" was never defined.
! 11667: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11668: fi
! 11669: if test -z "${CODE_linux_TRUE}" && test -z "${CODE_linux_FALSE}"; then
! 11670: as_fn_error $? "conditional \"CODE_linux\" was never defined.
! 11671: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11672: fi
! 11673: if test -z "${CODE_linux_TRUE}" && test -z "${CODE_linux_FALSE}"; then
! 11674: as_fn_error $? "conditional \"CODE_linux\" was never defined.
! 11675: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11676: fi
! 11677: if test -z "${disable_smashing_stack_protector_TRUE}" && test -z "${disable_smashing_stack_protector_FALSE}"; then
! 11678: as_fn_error $? "conditional \"disable_smashing_stack_protector\" was never defined.
! 11679: Usually this means the macro was only invoked conditionally." "$LINENO" 5
! 11680: fi
! 11681:
! 11682: : "${CONFIG_STATUS=./config.status}"
! 11683: ac_write_fail=0
! 11684: ac_clean_files_save=$ac_clean_files
! 11685: ac_clean_files="$ac_clean_files $CONFIG_STATUS"
! 11686: { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
! 11687: $as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
! 11688: as_write_fail=0
! 11689: cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
! 11690: #! $SHELL
! 11691: # Generated by $as_me.
! 11692: # Run this file to recreate the current configuration.
! 11693: # Compiler output produced by configure, useful for debugging
! 11694: # configure, is in config.log if it exists.
1.1.1.3 root 11695:
1.1.1.5 ! root 11696: debug=false
! 11697: ac_cs_recheck=false
! 11698: ac_cs_silent=false
! 11699:
! 11700: SHELL=\${CONFIG_SHELL-$SHELL}
! 11701: export SHELL
! 11702: _ASEOF
! 11703: cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
! 11704: ## -------------------- ##
! 11705: ## M4sh Initialization. ##
! 11706: ## -------------------- ##
! 11707:
! 11708: # Be more Bourne compatible
! 11709: DUALCASE=1; export DUALCASE # for MKS sh
! 11710: if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
! 11711: emulate sh
! 11712: NULLCMD=:
! 11713: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
! 11714: # is contrary to our usage. Disable this feature.
! 11715: alias -g '${1+"$@"}'='"$@"'
! 11716: setopt NO_GLOB_SUBST
1.1 root 11717: else
1.1.1.5 ! root 11718: case `(set -o) 2>/dev/null` in #(
! 11719: *posix*) :
! 11720: set -o posix ;; #(
! 11721: *) :
! 11722: ;;
! 11723: esac
1.1 root 11724: fi
11725:
1.1.1.5 ! root 11726:
! 11727: as_nl='
! 11728: '
! 11729: export as_nl
! 11730: # Printing a long string crashes Solaris 7 /usr/bin/printf.
! 11731: as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
! 11732: as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
! 11733: as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
! 11734: # Prefer a ksh shell builtin over an external printf program on Solaris,
! 11735: # but without wasting forks for bash or zsh.
! 11736: if test -z "$BASH_VERSION$ZSH_VERSION" \
! 11737: && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
! 11738: as_echo='print -r --'
! 11739: as_echo_n='print -rn --'
! 11740: elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
! 11741: as_echo='printf %s\n'
! 11742: as_echo_n='printf %s'
1.1 root 11743: else
1.1.1.5 ! root 11744: if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
! 11745: as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
! 11746: as_echo_n='/usr/ucb/echo -n'
! 11747: else
! 11748: as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
! 11749: as_echo_n_body='eval
! 11750: arg=$1;
! 11751: case $arg in #(
! 11752: *"$as_nl"*)
! 11753: expr "X$arg" : "X\\(.*\\)$as_nl";
! 11754: arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
! 11755: esac;
! 11756: expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
! 11757: '
! 11758: export as_echo_n_body
! 11759: as_echo_n='sh -c $as_echo_n_body as_echo'
1.1 root 11760: fi
1.1.1.5 ! root 11761: export as_echo_body
! 11762: as_echo='sh -c $as_echo_body as_echo'
1.1 root 11763: fi
11764:
1.1.1.5 ! root 11765: # The user is always right.
! 11766: if test "${PATH_SEPARATOR+set}" != set; then
! 11767: PATH_SEPARATOR=:
! 11768: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
! 11769: (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
! 11770: PATH_SEPARATOR=';'
! 11771: }
1.1 root 11772: fi
11773:
11774:
1.1.1.5 ! root 11775: # IFS
! 11776: # We need space, tab and new line, in precisely that order. Quoting is
! 11777: # there to prevent editors from complaining about space-tab.
! 11778: # (If _AS_PATH_WALK were called with IFS unset, it would disable word
! 11779: # splitting by setting IFS to empty value.)
! 11780: IFS=" "" $as_nl"
! 11781:
! 11782: # Find who we are. Look in the path if we contain no directory separator.
! 11783: as_myself=
! 11784: case $0 in #((
! 11785: *[\\/]* ) as_myself=$0 ;;
! 11786: *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
! 11787: for as_dir in $PATH
! 11788: do
! 11789: IFS=$as_save_IFS
! 11790: test -z "$as_dir" && as_dir=.
! 11791: test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
! 11792: done
! 11793: IFS=$as_save_IFS
1.1.1.4 root 11794:
1.1.1.5 ! root 11795: ;;
! 11796: esac
! 11797: # We did not find ourselves, most probably we were run as `sh COMMAND'
! 11798: # in which case we are not to be found in the path.
! 11799: if test "x$as_myself" = x; then
! 11800: as_myself=$0
! 11801: fi
! 11802: if test ! -f "$as_myself"; then
! 11803: $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
! 11804: exit 1
! 11805: fi
! 11806:
! 11807: # Unset variables that we do not need and which cause bugs (e.g. in
! 11808: # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
! 11809: # suppresses any "Segmentation fault" message there. '((' could
! 11810: # trigger a bug in pdksh 5.2.14.
! 11811: for as_var in BASH_ENV ENV MAIL MAILPATH
! 11812: do eval test x\${$as_var+set} = xset \
! 11813: && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
! 11814: done
! 11815: PS1='$ '
! 11816: PS2='> '
! 11817: PS4='+ '
1.1.1.4 root 11818:
1.1.1.5 ! root 11819: # NLS nuisances.
! 11820: LC_ALL=C
! 11821: export LC_ALL
! 11822: LANGUAGE=C
! 11823: export LANGUAGE
! 11824:
! 11825: # CDPATH.
! 11826: (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
! 11827:
! 11828:
! 11829: # as_fn_error STATUS ERROR [LINENO LOG_FD]
! 11830: # ----------------------------------------
! 11831: # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
! 11832: # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
! 11833: # script with STATUS, using 1 if that was 0.
! 11834: as_fn_error ()
! 11835: {
! 11836: as_status=$1; test $as_status -eq 0 && as_status=1
! 11837: if test "$4"; then
! 11838: as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
! 11839: $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
1.1 root 11840: fi
1.1.1.5 ! root 11841: $as_echo "$as_me: error: $2" >&2
! 11842: as_fn_exit $as_status
! 11843: } # as_fn_error
! 11844:
! 11845:
! 11846: # as_fn_set_status STATUS
! 11847: # -----------------------
! 11848: # Set $? to STATUS, without forking.
! 11849: as_fn_set_status ()
! 11850: {
! 11851: return $1
! 11852: } # as_fn_set_status
! 11853:
! 11854: # as_fn_exit STATUS
! 11855: # -----------------
! 11856: # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
! 11857: as_fn_exit ()
! 11858: {
! 11859: set +e
! 11860: as_fn_set_status $1
! 11861: exit $1
! 11862: } # as_fn_exit
! 11863:
! 11864: # as_fn_unset VAR
! 11865: # ---------------
! 11866: # Portably unset VAR.
! 11867: as_fn_unset ()
! 11868: {
! 11869: { eval $1=; unset $1;}
! 11870: }
! 11871: as_unset=as_fn_unset
! 11872: # as_fn_append VAR VALUE
! 11873: # ----------------------
! 11874: # Append the text in VALUE to the end of the definition contained in VAR. Take
! 11875: # advantage of any shell optimizations that allow amortized linear growth over
! 11876: # repeated appends, instead of the typical quadratic growth present in naive
! 11877: # implementations.
! 11878: if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
! 11879: eval 'as_fn_append ()
! 11880: {
! 11881: eval $1+=\$2
! 11882: }'
1.1 root 11883: else
1.1.1.5 ! root 11884: as_fn_append ()
! 11885: {
! 11886: eval $1=\$$1\$2
! 11887: }
! 11888: fi # as_fn_append
! 11889:
! 11890: # as_fn_arith ARG...
! 11891: # ------------------
! 11892: # Perform arithmetic evaluation on the ARGs, and store the result in the
! 11893: # global $as_val. Take advantage of shells that can avoid forks. The arguments
! 11894: # must be portable across $(()) and expr.
! 11895: if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
! 11896: eval 'as_fn_arith ()
! 11897: {
! 11898: as_val=$(( $* ))
! 11899: }'
1.1 root 11900: else
1.1.1.5 ! root 11901: as_fn_arith ()
! 11902: {
! 11903: as_val=`expr "$@" || test $? -eq 1`
! 11904: }
! 11905: fi # as_fn_arith
1.1 root 11906:
11907:
1.1.1.5 ! root 11908: if expr a : '\(a\)' >/dev/null 2>&1 &&
! 11909: test "X`expr 00001 : '.*\(...\)'`" = X001; then
! 11910: as_expr=expr
1.1 root 11911: else
1.1.1.5 ! root 11912: as_expr=false
1.1 root 11913: fi
11914:
1.1.1.5 ! root 11915: if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
! 11916: as_basename=basename
1.1 root 11917: else
1.1.1.5 ! root 11918: as_basename=false
1.1 root 11919: fi
11920:
1.1.1.5 ! root 11921: if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
! 11922: as_dirname=dirname
1.1.1.3 root 11923: else
1.1.1.5 ! root 11924: as_dirname=false
1.1.1.3 root 11925: fi
1.1 root 11926:
1.1.1.5 ! root 11927: as_me=`$as_basename -- "$0" ||
! 11928: $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
! 11929: X"$0" : 'X\(//\)$' \| \
! 11930: X"$0" : 'X\(/\)' \| . 2>/dev/null ||
! 11931: $as_echo X/"$0" |
! 11932: sed '/^.*\/\([^/][^/]*\)\/*$/{
! 11933: s//\1/
! 11934: q
! 11935: }
! 11936: /^X\/\(\/\/\)$/{
! 11937: s//\1/
! 11938: q
! 11939: }
! 11940: /^X\/\(\/\).*/{
! 11941: s//\1/
! 11942: q
! 11943: }
! 11944: s/.*/./; q'`
! 11945:
! 11946: # Avoid depending upon Character Ranges.
! 11947: as_cr_letters='abcdefghijklmnopqrstuvwxyz'
! 11948: as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
! 11949: as_cr_Letters=$as_cr_letters$as_cr_LETTERS
! 11950: as_cr_digits='0123456789'
! 11951: as_cr_alnum=$as_cr_Letters$as_cr_digits
! 11952:
! 11953: ECHO_C= ECHO_N= ECHO_T=
! 11954: case `echo -n x` in #(((((
! 11955: -n*)
! 11956: case `echo 'xy\c'` in
! 11957: *c*) ECHO_T=' ';; # ECHO_T is single tab character.
! 11958: xy) ECHO_C='\c';;
! 11959: *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
! 11960: ECHO_T=' ';;
! 11961: esac;;
! 11962: *)
! 11963: ECHO_N='-n';;
! 11964: esac
1.1.1.2 root 11965:
1.1.1.5 ! root 11966: rm -f conf$$ conf$$.exe conf$$.file
! 11967: if test -d conf$$.dir; then
! 11968: rm -f conf$$.dir/conf$$.file
1.1.1.2 root 11969: else
1.1.1.5 ! root 11970: rm -f conf$$.dir
! 11971: mkdir conf$$.dir 2>/dev/null
1.1.1.2 root 11972: fi
1.1.1.5 ! root 11973: if (echo >conf$$.file) 2>/dev/null; then
! 11974: if ln -s conf$$.file conf$$ 2>/dev/null; then
! 11975: as_ln_s='ln -s'
! 11976: # ... but there are two gotchas:
! 11977: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
! 11978: # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
! 11979: # In both cases, we have to default to `cp -pR'.
! 11980: ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
! 11981: as_ln_s='cp -pR'
! 11982: elif ln conf$$.file conf$$ 2>/dev/null; then
! 11983: as_ln_s=ln
! 11984: else
! 11985: as_ln_s='cp -pR'
! 11986: fi
1.1.1.2 root 11987: else
1.1.1.5 ! root 11988: as_ln_s='cp -pR'
1.1.1.2 root 11989: fi
1.1.1.5 ! root 11990: rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
! 11991: rmdir conf$$.dir 2>/dev/null
1.1.1.2 root 11992:
11993:
1.1.1.5 ! root 11994: # as_fn_mkdir_p
! 11995: # -------------
! 11996: # Create "$as_dir" as a directory, including parents if necessary.
! 11997: as_fn_mkdir_p ()
! 11998: {
1.1.1.2 root 11999:
1.1.1.5 ! root 12000: case $as_dir in #(
! 12001: -*) as_dir=./$as_dir;;
! 12002: esac
! 12003: test -d "$as_dir" || eval $as_mkdir_p || {
! 12004: as_dirs=
! 12005: while :; do
! 12006: case $as_dir in #(
! 12007: *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
! 12008: *) as_qdir=$as_dir;;
! 12009: esac
! 12010: as_dirs="'$as_qdir' $as_dirs"
! 12011: as_dir=`$as_dirname -- "$as_dir" ||
! 12012: $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
! 12013: X"$as_dir" : 'X\(//\)[^/]' \| \
! 12014: X"$as_dir" : 'X\(//\)$' \| \
! 12015: X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
! 12016: $as_echo X"$as_dir" |
! 12017: sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
! 12018: s//\1/
! 12019: q
! 12020: }
! 12021: /^X\(\/\/\)[^/].*/{
! 12022: s//\1/
! 12023: q
! 12024: }
! 12025: /^X\(\/\/\)$/{
! 12026: s//\1/
! 12027: q
! 12028: }
! 12029: /^X\(\/\).*/{
! 12030: s//\1/
! 12031: q
! 12032: }
! 12033: s/.*/./; q'`
! 12034: test -d "$as_dir" && break
! 12035: done
! 12036: test -z "$as_dirs" || eval "mkdir $as_dirs"
! 12037: } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
! 12038:
! 12039:
! 12040: } # as_fn_mkdir_p
! 12041: if mkdir -p . 2>/dev/null; then
! 12042: as_mkdir_p='mkdir -p "$as_dir"'
1.1.1.2 root 12043: else
1.1.1.5 ! root 12044: test -d ./-p && rmdir ./-p
! 12045: as_mkdir_p=false
1.1.1.2 root 12046: fi
12047:
12048:
1.1.1.5 ! root 12049: # as_fn_executable_p FILE
! 12050: # -----------------------
! 12051: # Test if FILE is an executable regular file.
! 12052: as_fn_executable_p ()
! 12053: {
! 12054: test -f "$1" && test -x "$1"
! 12055: } # as_fn_executable_p
! 12056: as_test_x='test -x'
! 12057: as_executable_p=as_fn_executable_p
! 12058:
! 12059: # Sed expression to map a string onto a valid CPP name.
! 12060: as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
! 12061:
! 12062: # Sed expression to map a string onto a valid variable name.
! 12063: as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
! 12064:
! 12065:
! 12066: exec 6>&1
! 12067: ## ----------------------------------- ##
! 12068: ## Main body of $CONFIG_STATUS script. ##
! 12069: ## ----------------------------------- ##
! 12070: _ASEOF
! 12071: test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
! 12072:
! 12073: cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
! 12074: # Save the log message, to keep $0 and so on meaningful, and to
! 12075: # report actual input values of CONFIG_FILES etc. instead of their
! 12076: # values after options handling.
! 12077: ac_log="
! 12078: This file was extended by GNU Mach $as_me 1.4, which was
! 12079: generated by GNU Autoconf 2.69. Invocation command line was
! 12080:
! 12081: CONFIG_FILES = $CONFIG_FILES
! 12082: CONFIG_HEADERS = $CONFIG_HEADERS
! 12083: CONFIG_LINKS = $CONFIG_LINKS
! 12084: CONFIG_COMMANDS = $CONFIG_COMMANDS
! 12085: $ $0 $@
! 12086:
! 12087: on `(hostname || uname -n) 2>/dev/null | sed 1q`
! 12088: "
1.1 root 12089:
1.1.1.5 ! root 12090: _ACEOF
1.1 root 12091:
1.1.1.5 ! root 12092: case $ac_config_files in *"
! 12093: "*) set x $ac_config_files; shift; ac_config_files=$*;;
! 12094: esac
1.1 root 12095:
1.1.1.5 ! root 12096: case $ac_config_headers in *"
! 12097: "*) set x $ac_config_headers; shift; ac_config_headers=$*;;
! 12098: esac
1.1 root 12099:
12100:
1.1.1.5 ! root 12101: cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
! 12102: # Files that config.status was made for.
! 12103: config_files="$ac_config_files"
! 12104: config_headers="$ac_config_headers"
! 12105: config_links="$ac_config_links"
! 12106: config_commands="$ac_config_commands"
! 12107:
! 12108: _ACEOF
! 12109:
! 12110: cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
! 12111: ac_cs_usage="\
! 12112: \`$as_me' instantiates files and other configuration actions
! 12113: from templates according to the current configuration. Unless the files
! 12114: and actions are specified as TAGs, all are instantiated by default.
! 12115:
! 12116: Usage: $0 [OPTION]... [TAG]...
! 12117:
! 12118: -h, --help print this help, then exit
! 12119: -V, --version print version number and configuration settings, then exit
! 12120: --config print configuration, then exit
! 12121: -q, --quiet, --silent
! 12122: do not print progress messages
! 12123: -d, --debug don't remove temporary files
! 12124: --recheck update $as_me by reconfiguring in the same conditions
! 12125: --file=FILE[:TEMPLATE]
! 12126: instantiate the configuration file FILE
! 12127: --header=FILE[:TEMPLATE]
! 12128: instantiate the configuration header FILE
! 12129:
! 12130: Configuration files:
! 12131: $config_files
! 12132:
! 12133: Configuration headers:
! 12134: $config_headers
! 12135:
! 12136: Configuration links:
! 12137: $config_links
! 12138:
! 12139: Configuration commands:
! 12140: $config_commands
! 12141:
! 12142: Report bugs to <[email protected]>.
! 12143: General help using GNU software: <http://www.gnu.org/gethelp/>."
! 12144:
! 12145: _ACEOF
! 12146: cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
! 12147: ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
! 12148: ac_cs_version="\\
! 12149: GNU Mach config.status 1.4
! 12150: configured by $0, generated by GNU Autoconf 2.69,
! 12151: with options \\"\$ac_cs_config\\"
! 12152:
! 12153: Copyright (C) 2012 Free Software Foundation, Inc.
! 12154: This config.status script is free software; the Free Software Foundation
! 12155: gives unlimited permission to copy, distribute and modify it."
! 12156:
! 12157: ac_pwd='$ac_pwd'
! 12158: srcdir='$srcdir'
! 12159: INSTALL='$INSTALL'
! 12160: MKDIR_P='$MKDIR_P'
! 12161: AWK='$AWK'
! 12162: test -n "\$AWK" || AWK=awk
! 12163: _ACEOF
! 12164:
! 12165: cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
! 12166: # The default lists apply if the user does not specify any file.
! 12167: ac_need_defaults=:
! 12168: while test $# != 0
! 12169: do
! 12170: case $1 in
! 12171: --*=?*)
! 12172: ac_option=`expr "X$1" : 'X\([^=]*\)='`
! 12173: ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
! 12174: ac_shift=:
! 12175: ;;
! 12176: --*=)
! 12177: ac_option=`expr "X$1" : 'X\([^=]*\)='`
! 12178: ac_optarg=
! 12179: ac_shift=:
1.1 root 12180: ;;
12181: *)
1.1.1.5 ! root 12182: ac_option=$1
! 12183: ac_optarg=$2
! 12184: ac_shift=shift
1.1 root 12185: ;;
1.1.1.5 ! root 12186: esac
1.1 root 12187:
1.1.1.5 ! root 12188: case $ac_option in
! 12189: # Handling of the options.
! 12190: -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
! 12191: ac_cs_recheck=: ;;
! 12192: --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
! 12193: $as_echo "$ac_cs_version"; exit ;;
! 12194: --config | --confi | --conf | --con | --co | --c )
! 12195: $as_echo "$ac_cs_config"; exit ;;
! 12196: --debug | --debu | --deb | --de | --d | -d )
! 12197: debug=: ;;
! 12198: --file | --fil | --fi | --f )
! 12199: $ac_shift
! 12200: case $ac_optarg in
! 12201: *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
! 12202: '') as_fn_error $? "missing file argument" ;;
! 12203: esac
! 12204: as_fn_append CONFIG_FILES " '$ac_optarg'"
! 12205: ac_need_defaults=false;;
! 12206: --header | --heade | --head | --hea )
! 12207: $ac_shift
! 12208: case $ac_optarg in
! 12209: *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
! 12210: esac
! 12211: as_fn_append CONFIG_HEADERS " '$ac_optarg'"
! 12212: ac_need_defaults=false;;
! 12213: --he | --h)
! 12214: # Conflict between --help and --header
! 12215: as_fn_error $? "ambiguous option: \`$1'
! 12216: Try \`$0 --help' for more information.";;
! 12217: --help | --hel | -h )
! 12218: $as_echo "$ac_cs_usage"; exit ;;
! 12219: -q | -quiet | --quiet | --quie | --qui | --qu | --q \
! 12220: | -silent | --silent | --silen | --sile | --sil | --si | --s)
! 12221: ac_cs_silent=: ;;
1.1 root 12222:
1.1.1.5 ! root 12223: # This is an error.
! 12224: -*) as_fn_error $? "unrecognized option: \`$1'
! 12225: Try \`$0 --help' for more information." ;;
1.1 root 12226:
1.1.1.5 ! root 12227: *) as_fn_append ac_config_targets " $1"
! 12228: ac_need_defaults=false ;;
! 12229:
! 12230: esac
! 12231: shift
! 12232: done
! 12233:
! 12234: ac_configure_extra_args=
! 12235:
! 12236: if $ac_cs_silent; then
! 12237: exec 6>/dev/null
! 12238: ac_configure_extra_args="$ac_configure_extra_args --silent"
1.1 root 12239: fi
12240:
1.1.1.5 ! root 12241: _ACEOF
! 12242: cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
! 12243: if \$ac_cs_recheck; then
! 12244: set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
! 12245: shift
! 12246: \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
! 12247: CONFIG_SHELL='$SHELL'
! 12248: export CONFIG_SHELL
! 12249: exec "\$@"
! 12250: fi
! 12251:
! 12252: _ACEOF
! 12253: cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
! 12254: exec 5>>config.log
! 12255: {
! 12256: echo
! 12257: sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
! 12258: ## Running $as_me. ##
! 12259: _ASBOX
! 12260: $as_echo "$ac_log"
! 12261: } >&5
1.1 root 12262:
1.1.1.5 ! root 12263: _ACEOF
! 12264: cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1.1 root 12265: #
1.1.1.5 ! root 12266: # INIT-COMMANDS
1.1 root 12267: #
1.1.1.5 ! root 12268: AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
1.1 root 12269:
1.1.1.5 ! root 12270: _ACEOF
! 12271:
! 12272: cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
! 12273:
! 12274: # Handling of arguments.
! 12275: for ac_config_target in $ac_config_targets
1.1 root 12276: do
1.1.1.5 ! root 12277: case $ac_config_target in
! 12278: "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
! 12279: "tests/test-mbchk") CONFIG_FILES="$CONFIG_FILES tests/test-mbchk" ;;
! 12280: "machine") CONFIG_LINKS="$CONFIG_LINKS machine:$systype/$systype" ;;
! 12281: "mach/machine") CONFIG_LINKS="$CONFIG_LINKS mach/machine:$systype/include/mach/$systype" ;;
! 12282: "linux/src/include/asm") CONFIG_LINKS="$CONFIG_LINKS linux/src/include/asm:linux/src/include/asm-$systype" ;;
! 12283: "linux/dev/include/asm") CONFIG_LINKS="$CONFIG_LINKS linux/dev/include/asm:linux/dev/include/asm-$systype" ;;
! 12284: "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
! 12285: "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
! 12286: "version.c") CONFIG_FILES="$CONFIG_FILES version.c" ;;
! 12287:
! 12288: *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
1.1 root 12289: esac
12290: done
12291:
1.1.1.5 ! root 12292:
! 12293: # If the user did not use the arguments to specify the items to instantiate,
! 12294: # then the envvar interface is used. Set only those that are not.
! 12295: # We use the long form for the default assignment because of an extremely
! 12296: # bizarre bug on SunOS 4.1.3.
! 12297: if $ac_need_defaults; then
! 12298: test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
! 12299: test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
! 12300: test "${CONFIG_LINKS+set}" = set || CONFIG_LINKS=$config_links
! 12301: test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
! 12302: fi
! 12303:
! 12304: # Have a temporary directory for convenience. Make it in the build tree
! 12305: # simply because there is no reason against having it here, and in addition,
! 12306: # creating and moving files from /tmp can sometimes cause problems.
! 12307: # Hook for its removal unless debugging.
! 12308: # Note that there is a small window in which the directory will not be cleaned:
! 12309: # after its creation but before its name has been assigned to `$tmp'.
! 12310: $debug ||
! 12311: {
! 12312: tmp= ac_tmp=
! 12313: trap 'exit_status=$?
! 12314: : "${ac_tmp:=$tmp}"
! 12315: { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
! 12316: ' 0
! 12317: trap 'as_fn_exit 1' 1 2 13 15
! 12318: }
! 12319: # Create a (secure) tmp directory for tmp files.
! 12320:
! 12321: {
! 12322: tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
! 12323: test -d "$tmp"
! 12324: } ||
! 12325: {
! 12326: tmp=./conf$$-$RANDOM
! 12327: (umask 077 && mkdir "$tmp")
! 12328: } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
! 12329: ac_tmp=$tmp
! 12330:
! 12331: # Set up the scripts for CONFIG_FILES section.
! 12332: # No need to generate them if there are no CONFIG_FILES.
! 12333: # This happens for instance with `./config.status config.h'.
! 12334: if test -n "$CONFIG_FILES"; then
! 12335:
! 12336:
! 12337: ac_cr=`echo X | tr X '\015'`
! 12338: # On cygwin, bash can eat \r inside `` if the user requested igncr.
! 12339: # But we know of no other shell where ac_cr would be empty at this
! 12340: # point, so we can use a bashism as a fallback.
! 12341: if test "x$ac_cr" = x; then
! 12342: eval ac_cr=\$\'\\r\'
! 12343: fi
! 12344: ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
! 12345: if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
! 12346: ac_cs_awk_cr='\\r'
! 12347: else
! 12348: ac_cs_awk_cr=$ac_cr
1.1 root 12349: fi
12350:
1.1.1.5 ! root 12351: echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
! 12352: _ACEOF
1.1 root 12353:
12354:
1.1.1.5 ! root 12355: {
! 12356: echo "cat >conf$$subs.awk <<_ACEOF" &&
! 12357: echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
! 12358: echo "_ACEOF"
! 12359: } >conf$$subs.sh ||
! 12360: as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
! 12361: ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
! 12362: ac_delim='%!_!# '
! 12363: for ac_last_try in false false false false false :; do
! 12364: . ./conf$$subs.sh ||
! 12365: as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
1.1 root 12366:
1.1.1.5 ! root 12367: ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
! 12368: if test $ac_delim_n = $ac_delim_num; then
! 12369: break
! 12370: elif $ac_last_try; then
! 12371: as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
1.1 root 12372: else
1.1.1.5 ! root 12373: ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
1.1 root 12374: fi
1.1.1.5 ! root 12375: done
! 12376: rm -f conf$$subs.sh
1.1 root 12377:
1.1.1.5 ! root 12378: cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
! 12379: cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
! 12380: _ACEOF
! 12381: sed -n '
! 12382: h
! 12383: s/^/S["/; s/!.*/"]=/
! 12384: p
! 12385: g
! 12386: s/^[^!]*!//
! 12387: :repl
! 12388: t repl
! 12389: s/'"$ac_delim"'$//
! 12390: t delim
! 12391: :nl
! 12392: h
! 12393: s/\(.\{148\}\)..*/\1/
! 12394: t more1
! 12395: s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
! 12396: p
! 12397: n
! 12398: b repl
! 12399: :more1
! 12400: s/["\\]/\\&/g; s/^/"/; s/$/"\\/
! 12401: p
! 12402: g
! 12403: s/.\{148\}//
! 12404: t nl
! 12405: :delim
! 12406: h
! 12407: s/\(.\{148\}\)..*/\1/
! 12408: t more2
! 12409: s/["\\]/\\&/g; s/^/"/; s/$/"/
! 12410: p
! 12411: b
! 12412: :more2
! 12413: s/["\\]/\\&/g; s/^/"/; s/$/"\\/
! 12414: p
! 12415: g
! 12416: s/.\{148\}//
! 12417: t delim
! 12418: ' <conf$$subs.awk | sed '
! 12419: /^[^""]/{
! 12420: N
! 12421: s/\n//
! 12422: }
! 12423: ' >>$CONFIG_STATUS || ac_write_fail=1
! 12424: rm -f conf$$subs.awk
! 12425: cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
! 12426: _ACAWK
! 12427: cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
! 12428: for (key in S) S_is_set[key] = 1
! 12429: FS = ""
! 12430:
! 12431: }
! 12432: {
! 12433: line = $ 0
! 12434: nfields = split(line, field, "@")
! 12435: substed = 0
! 12436: len = length(field[1])
! 12437: for (i = 2; i < nfields; i++) {
! 12438: key = field[i]
! 12439: keylen = length(key)
! 12440: if (S_is_set[key]) {
! 12441: value = S[key]
! 12442: line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
! 12443: len += length(value) + length(field[++i])
! 12444: substed = 1
! 12445: } else
! 12446: len += 1 + keylen
! 12447: }
! 12448:
! 12449: print line
! 12450: }
! 12451:
! 12452: _ACAWK
! 12453: _ACEOF
! 12454: cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
! 12455: if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
! 12456: sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
! 12457: else
! 12458: cat
! 12459: fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
! 12460: || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
! 12461: _ACEOF
! 12462:
! 12463: # VPATH may cause trouble with some makes, so we remove sole $(srcdir),
! 12464: # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
! 12465: # trailing colons and then remove the whole line if VPATH becomes empty
! 12466: # (actually we leave an empty line to preserve line numbers).
! 12467: if test "x$srcdir" = x.; then
! 12468: ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{
! 12469: h
! 12470: s///
! 12471: s/^/:/
! 12472: s/[ ]*$/:/
! 12473: s/:\$(srcdir):/:/g
! 12474: s/:\${srcdir}:/:/g
! 12475: s/:@srcdir@:/:/g
! 12476: s/^:*//
! 12477: s/:*$//
! 12478: x
! 12479: s/\(=[ ]*\).*/\1/
! 12480: G
! 12481: s/\n//
! 12482: s/^[^=]*=[ ]*$//
! 12483: }'
! 12484: fi
! 12485:
! 12486: cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
! 12487: fi # test -n "$CONFIG_FILES"
! 12488:
! 12489: # Set up the scripts for CONFIG_HEADERS section.
! 12490: # No need to generate them if there are no CONFIG_HEADERS.
! 12491: # This happens for instance with `./config.status Makefile'.
! 12492: if test -n "$CONFIG_HEADERS"; then
! 12493: cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
! 12494: BEGIN {
! 12495: _ACEOF
! 12496:
! 12497: # Transform confdefs.h into an awk script `defines.awk', embedded as
! 12498: # here-document in config.status, that substitutes the proper values into
! 12499: # config.h.in to produce config.h.
! 12500:
! 12501: # Create a delimiter string that does not exist in confdefs.h, to ease
! 12502: # handling of long lines.
! 12503: ac_delim='%!_!# '
! 12504: for ac_last_try in false false :; do
! 12505: ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
! 12506: if test -z "$ac_tt"; then
! 12507: break
! 12508: elif $ac_last_try; then
! 12509: as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
! 12510: else
! 12511: ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
! 12512: fi
! 12513: done
1.1 root 12514:
1.1.1.5 ! root 12515: # For the awk script, D is an array of macro values keyed by name,
! 12516: # likewise P contains macro parameters if any. Preserve backslash
! 12517: # newline sequences.
! 12518:
! 12519: ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
! 12520: sed -n '
! 12521: s/.\{148\}/&'"$ac_delim"'/g
! 12522: t rset
! 12523: :rset
! 12524: s/^[ ]*#[ ]*define[ ][ ]*/ /
! 12525: t def
! 12526: d
! 12527: :def
! 12528: s/\\$//
! 12529: t bsnl
! 12530: s/["\\]/\\&/g
! 12531: s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\
! 12532: D["\1"]=" \3"/p
! 12533: s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p
! 12534: d
! 12535: :bsnl
! 12536: s/["\\]/\\&/g
! 12537: s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\
! 12538: D["\1"]=" \3\\\\\\n"\\/p
! 12539: t cont
! 12540: s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p
! 12541: t cont
! 12542: d
! 12543: :cont
! 12544: n
! 12545: s/.\{148\}/&'"$ac_delim"'/g
! 12546: t clear
! 12547: :clear
! 12548: s/\\$//
! 12549: t bsnlc
! 12550: s/["\\]/\\&/g; s/^/"/; s/$/"/p
! 12551: d
! 12552: :bsnlc
! 12553: s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p
! 12554: b cont
! 12555: ' <confdefs.h | sed '
! 12556: s/'"$ac_delim"'/"\\\
! 12557: "/g' >>$CONFIG_STATUS || ac_write_fail=1
! 12558:
! 12559: cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
! 12560: for (key in D) D_is_set[key] = 1
! 12561: FS = ""
! 12562: }
! 12563: /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ {
! 12564: line = \$ 0
! 12565: split(line, arg, " ")
! 12566: if (arg[1] == "#") {
! 12567: defundef = arg[2]
! 12568: mac1 = arg[3]
! 12569: } else {
! 12570: defundef = substr(arg[1], 2)
! 12571: mac1 = arg[2]
! 12572: }
! 12573: split(mac1, mac2, "(") #)
! 12574: macro = mac2[1]
! 12575: prefix = substr(line, 1, index(line, defundef) - 1)
! 12576: if (D_is_set[macro]) {
! 12577: # Preserve the white space surrounding the "#".
! 12578: print prefix "define", macro P[macro] D[macro]
! 12579: next
! 12580: } else {
! 12581: # Replace #undef with comments. This is necessary, for example,
! 12582: # in the case of _POSIX_SOURCE, which is predefined and required
! 12583: # on some systems where configure will not decide to define it.
! 12584: if (defundef == "undef") {
! 12585: print "/*", prefix defundef, macro, "*/"
! 12586: next
! 12587: }
! 12588: }
! 12589: }
! 12590: { print }
! 12591: _ACAWK
! 12592: _ACEOF
! 12593: cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
! 12594: as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
! 12595: fi # test -n "$CONFIG_HEADERS"
! 12596:
! 12597:
! 12598: eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :L $CONFIG_LINKS :C $CONFIG_COMMANDS"
! 12599: shift
! 12600: for ac_tag
! 12601: do
! 12602: case $ac_tag in
! 12603: :[FHLC]) ac_mode=$ac_tag; continue;;
1.1 root 12604: esac
1.1.1.5 ! root 12605: case $ac_mode$ac_tag in
! 12606: :[FHL]*:*);;
! 12607: :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
! 12608: :[FH]-) ac_tag=-:-;;
! 12609: :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
1.1 root 12610: esac
1.1.1.5 ! root 12611: ac_save_IFS=$IFS
! 12612: IFS=:
! 12613: set x $ac_tag
! 12614: IFS=$ac_save_IFS
! 12615: shift
! 12616: ac_file=$1
! 12617: shift
1.1 root 12618:
1.1.1.5 ! root 12619: case $ac_mode in
! 12620: :L) ac_source=$1;;
! 12621: :[FH])
! 12622: ac_file_inputs=
! 12623: for ac_f
! 12624: do
! 12625: case $ac_f in
! 12626: -) ac_f="$ac_tmp/stdin";;
! 12627: *) # Look for the file first in the build tree, then in the source tree
! 12628: # (if the path is not absolute). The absolute path cannot be DOS-style,
! 12629: # because $ac_f cannot contain `:'.
! 12630: test -f "$ac_f" ||
! 12631: case $ac_f in
! 12632: [\\/$]*) false;;
! 12633: *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
! 12634: esac ||
! 12635: as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
! 12636: esac
! 12637: case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
! 12638: as_fn_append ac_file_inputs " '$ac_f'"
! 12639: done
! 12640:
! 12641: # Let's still pretend it is `configure' which instantiates (i.e., don't
! 12642: # use $as_me), people would be surprised to read:
! 12643: # /* config.h. Generated by config.status. */
! 12644: configure_input='Generated from '`
! 12645: $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
! 12646: `' by configure.'
! 12647: if test x"$ac_file" != x-; then
! 12648: configure_input="$ac_file. $configure_input"
! 12649: { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
! 12650: $as_echo "$as_me: creating $ac_file" >&6;}
! 12651: fi
! 12652: # Neutralize special characters interpreted by sed in replacement strings.
! 12653: case $configure_input in #(
! 12654: *\&* | *\|* | *\\* )
! 12655: ac_sed_conf_input=`$as_echo "$configure_input" |
! 12656: sed 's/[\\\\&|]/\\\\&/g'`;; #(
! 12657: *) ac_sed_conf_input=$configure_input;;
! 12658: esac
1.1 root 12659:
1.1.1.5 ! root 12660: case $ac_tag in
! 12661: *:-:* | *:-) cat >"$ac_tmp/stdin" \
! 12662: || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
! 12663: esac
! 12664: ;;
! 12665: esac
1.1 root 12666:
1.1.1.5 ! root 12667: ac_dir=`$as_dirname -- "$ac_file" ||
! 12668: $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
! 12669: X"$ac_file" : 'X\(//\)[^/]' \| \
! 12670: X"$ac_file" : 'X\(//\)$' \| \
! 12671: X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
! 12672: $as_echo X"$ac_file" |
! 12673: sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
! 12674: s//\1/
! 12675: q
! 12676: }
! 12677: /^X\(\/\/\)[^/].*/{
! 12678: s//\1/
! 12679: q
! 12680: }
! 12681: /^X\(\/\/\)$/{
! 12682: s//\1/
! 12683: q
! 12684: }
! 12685: /^X\(\/\).*/{
! 12686: s//\1/
! 12687: q
! 12688: }
! 12689: s/.*/./; q'`
! 12690: as_dir="$ac_dir"; as_fn_mkdir_p
! 12691: ac_builddir=.
! 12692:
! 12693: case "$ac_dir" in
! 12694: .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
! 12695: *)
! 12696: ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
! 12697: # A ".." for each directory in $ac_dir_suffix.
! 12698: ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
! 12699: case $ac_top_builddir_sub in
! 12700: "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
! 12701: *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
! 12702: esac ;;
! 12703: esac
! 12704: ac_abs_top_builddir=$ac_pwd
! 12705: ac_abs_builddir=$ac_pwd$ac_dir_suffix
! 12706: # for backward compatibility:
! 12707: ac_top_builddir=$ac_top_build_prefix
! 12708:
! 12709: case $srcdir in
! 12710: .) # We are building in place.
! 12711: ac_srcdir=.
! 12712: ac_top_srcdir=$ac_top_builddir_sub
! 12713: ac_abs_top_srcdir=$ac_pwd ;;
! 12714: [\\/]* | ?:[\\/]* ) # Absolute name.
! 12715: ac_srcdir=$srcdir$ac_dir_suffix;
! 12716: ac_top_srcdir=$srcdir
! 12717: ac_abs_top_srcdir=$srcdir ;;
! 12718: *) # Relative name.
! 12719: ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
! 12720: ac_top_srcdir=$ac_top_build_prefix$srcdir
! 12721: ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
! 12722: esac
! 12723: ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1.1 root 12724:
12725:
1.1.1.5 ! root 12726: case $ac_mode in
! 12727: :F)
! 12728: #
! 12729: # CONFIG_FILE
! 12730: #
! 12731:
! 12732: case $INSTALL in
! 12733: [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
! 12734: *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
! 12735: esac
! 12736: ac_MKDIR_P=$MKDIR_P
! 12737: case $MKDIR_P in
! 12738: [\\/$]* | ?:[\\/]* ) ;;
! 12739: */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
! 12740: esac
! 12741: _ACEOF
1.1 root 12742:
1.1.1.5 ! root 12743: cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
! 12744: # If the template does not know about datarootdir, expand it.
! 12745: # FIXME: This hack should be removed a few years after 2.60.
! 12746: ac_datarootdir_hack=; ac_datarootdir_seen=
! 12747: ac_sed_dataroot='
! 12748: /datarootdir/ {
! 12749: p
! 12750: q
! 12751: }
! 12752: /@datadir@/p
! 12753: /@docdir@/p
! 12754: /@infodir@/p
! 12755: /@localedir@/p
! 12756: /@mandir@/p'
! 12757: case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
! 12758: *datarootdir*) ac_datarootdir_seen=yes;;
! 12759: *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
! 12760: { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
! 12761: $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
! 12762: _ACEOF
! 12763: cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
! 12764: ac_datarootdir_hack='
! 12765: s&@datadir@&$datadir&g
! 12766: s&@docdir@&$docdir&g
! 12767: s&@infodir@&$infodir&g
! 12768: s&@localedir@&$localedir&g
! 12769: s&@mandir@&$mandir&g
! 12770: s&\\\${datarootdir}&$datarootdir&g' ;;
! 12771: esac
! 12772: _ACEOF
1.1 root 12773:
1.1.1.5 ! root 12774: # Neutralize VPATH when `$srcdir' = `.'.
! 12775: # Shell code in configure.ac might set extrasub.
! 12776: # FIXME: do we really want to maintain this feature?
! 12777: cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
! 12778: ac_sed_extra="$ac_vpsub
! 12779: $extrasub
! 12780: _ACEOF
! 12781: cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
! 12782: :t
! 12783: /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
! 12784: s|@configure_input@|$ac_sed_conf_input|;t t
! 12785: s&@top_builddir@&$ac_top_builddir_sub&;t t
! 12786: s&@top_build_prefix@&$ac_top_build_prefix&;t t
! 12787: s&@srcdir@&$ac_srcdir&;t t
! 12788: s&@abs_srcdir@&$ac_abs_srcdir&;t t
! 12789: s&@top_srcdir@&$ac_top_srcdir&;t t
! 12790: s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
! 12791: s&@builddir@&$ac_builddir&;t t
! 12792: s&@abs_builddir@&$ac_abs_builddir&;t t
! 12793: s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
! 12794: s&@INSTALL@&$ac_INSTALL&;t t
! 12795: s&@MKDIR_P@&$ac_MKDIR_P&;t t
! 12796: $ac_datarootdir_hack
! 12797: "
! 12798: eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
! 12799: >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
! 12800:
! 12801: test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
! 12802: { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
! 12803: { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
! 12804: "$ac_tmp/out"`; test -z "$ac_out"; } &&
! 12805: { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
! 12806: which seems to be undefined. Please make sure it is defined" >&5
! 12807: $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
! 12808: which seems to be undefined. Please make sure it is defined" >&2;}
! 12809:
! 12810: rm -f "$ac_tmp/stdin"
! 12811: case $ac_file in
! 12812: -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
! 12813: *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
! 12814: esac \
! 12815: || as_fn_error $? "could not create $ac_file" "$LINENO" 5
! 12816: ;;
! 12817: :H)
! 12818: #
! 12819: # CONFIG_HEADER
! 12820: #
! 12821: if test x"$ac_file" != x-; then
! 12822: {
! 12823: $as_echo "/* $configure_input */" \
! 12824: && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
! 12825: } >"$ac_tmp/config.h" \
! 12826: || as_fn_error $? "could not create $ac_file" "$LINENO" 5
! 12827: if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
! 12828: { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
! 12829: $as_echo "$as_me: $ac_file is unchanged" >&6;}
! 12830: else
! 12831: rm -f "$ac_file"
! 12832: mv "$ac_tmp/config.h" "$ac_file" \
! 12833: || as_fn_error $? "could not create $ac_file" "$LINENO" 5
! 12834: fi
1.1 root 12835: else
1.1.1.5 ! root 12836: $as_echo "/* $configure_input */" \
! 12837: && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
! 12838: || as_fn_error $? "could not create -" "$LINENO" 5
1.1 root 12839: fi
1.1.1.5 ! root 12840: # Compute "$ac_file"'s index in $config_headers.
! 12841: _am_arg="$ac_file"
! 12842: _am_stamp_count=1
! 12843: for _am_header in $config_headers :; do
! 12844: case $_am_header in
! 12845: $_am_arg | $_am_arg:* )
! 12846: break ;;
! 12847: * )
! 12848: _am_stamp_count=`expr $_am_stamp_count + 1` ;;
1.1 root 12849: esac
12850: done
1.1.1.5 ! root 12851: echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
! 12852: $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
! 12853: X"$_am_arg" : 'X\(//\)[^/]' \| \
! 12854: X"$_am_arg" : 'X\(//\)$' \| \
! 12855: X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
! 12856: $as_echo X"$_am_arg" |
! 12857: sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
! 12858: s//\1/
! 12859: q
! 12860: }
! 12861: /^X\(\/\/\)[^/].*/{
! 12862: s//\1/
! 12863: q
! 12864: }
! 12865: /^X\(\/\/\)$/{
! 12866: s//\1/
! 12867: q
! 12868: }
! 12869: /^X\(\/\).*/{
! 12870: s//\1/
! 12871: q
! 12872: }
! 12873: s/.*/./; q'`/stamp-h$_am_stamp_count
! 12874: ;;
! 12875: :L)
! 12876: #
! 12877: # CONFIG_LINK
! 12878: #
1.1 root 12879:
1.1.1.5 ! root 12880: if test "$ac_source" = "$ac_file" && test "$srcdir" = '.'; then
! 12881: :
! 12882: else
! 12883: # Prefer the file from the source tree if names are identical.
! 12884: if test "$ac_source" = "$ac_file" || test ! -r "$ac_source"; then
! 12885: ac_source=$srcdir/$ac_source
! 12886: fi
1.1 root 12887:
1.1.1.5 ! root 12888: { $as_echo "$as_me:${as_lineno-$LINENO}: linking $ac_source to $ac_file" >&5
! 12889: $as_echo "$as_me: linking $ac_source to $ac_file" >&6;}
1.1 root 12890:
1.1.1.5 ! root 12891: if test ! -r "$ac_source"; then
! 12892: as_fn_error $? "$ac_source: file not found" "$LINENO" 5
1.1 root 12893: fi
1.1.1.5 ! root 12894: rm -f "$ac_file"
! 12895:
! 12896: # Try a relative symlink, then a hard link, then a copy.
! 12897: case $ac_source in
! 12898: [\\/$]* | ?:[\\/]* ) ac_rel_source=$ac_source ;;
! 12899: *) ac_rel_source=$ac_top_build_prefix$ac_source ;;
1.1 root 12900: esac
1.1.1.5 ! root 12901: ln -s "$ac_rel_source" "$ac_file" 2>/dev/null ||
! 12902: ln "$ac_source" "$ac_file" 2>/dev/null ||
! 12903: cp -p "$ac_source" "$ac_file" ||
! 12904: as_fn_error $? "cannot link or copy $ac_source to $ac_file" "$LINENO" 5
! 12905: fi
! 12906: ;;
! 12907: :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
! 12908: $as_echo "$as_me: executing $ac_file commands" >&6;}
! 12909: ;;
! 12910: esac
1.1 root 12911:
12912:
1.1.1.5 ! root 12913: case $ac_file$ac_mode in
! 12914: "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
! 12915: # Older Autoconf quotes --file arguments for eval, but not when files
! 12916: # are listed without --file. Let's play safe and only enable the eval
! 12917: # if we detect the quoting.
! 12918: case $CONFIG_FILES in
! 12919: *\'*) eval set x "$CONFIG_FILES" ;;
! 12920: *) set x $CONFIG_FILES ;;
! 12921: esac
! 12922: shift
! 12923: for mf
! 12924: do
! 12925: # Strip MF so we end up with the name of the file.
! 12926: mf=`echo "$mf" | sed -e 's/:.*$//'`
! 12927: # Check whether this is an Automake generated Makefile or not.
! 12928: # We used to match only the files named 'Makefile.in', but
! 12929: # some people rename them; so instead we look at the file content.
! 12930: # Grep'ing the first line is not enough: some people post-process
! 12931: # each Makefile.in and add a new line on top of each file to say so.
! 12932: # Grep'ing the whole file is not good either: AIX grep has a line
! 12933: # limit of 2048, but all sed's we know have understand at least 4000.
! 12934: if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
! 12935: dirpart=`$as_dirname -- "$mf" ||
! 12936: $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
! 12937: X"$mf" : 'X\(//\)[^/]' \| \
! 12938: X"$mf" : 'X\(//\)$' \| \
! 12939: X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
! 12940: $as_echo X"$mf" |
! 12941: sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
! 12942: s//\1/
! 12943: q
! 12944: }
! 12945: /^X\(\/\/\)[^/].*/{
! 12946: s//\1/
! 12947: q
! 12948: }
! 12949: /^X\(\/\/\)$/{
! 12950: s//\1/
! 12951: q
! 12952: }
! 12953: /^X\(\/\).*/{
! 12954: s//\1/
! 12955: q
! 12956: }
! 12957: s/.*/./; q'`
! 12958: else
1.1 root 12959: continue
12960: fi
1.1.1.5 ! root 12961: # Extract the definition of DEPDIR, am__include, and am__quote
! 12962: # from the Makefile without running 'make'.
! 12963: DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
! 12964: test -z "$DEPDIR" && continue
! 12965: am__include=`sed -n 's/^am__include = //p' < "$mf"`
! 12966: test -z "$am__include" && continue
! 12967: am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
! 12968: # Find all dependency output files, they are included files with
! 12969: # $(DEPDIR) in their names. We invoke sed twice because it is the
! 12970: # simplest approach to changing $(DEPDIR) to its actual value in the
! 12971: # expansion.
! 12972: for file in `sed -n "
! 12973: s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
! 12974: sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
! 12975: # Make sure the directory exists.
! 12976: test -f "$dirpart/$file" && continue
! 12977: fdir=`$as_dirname -- "$file" ||
! 12978: $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
! 12979: X"$file" : 'X\(//\)[^/]' \| \
! 12980: X"$file" : 'X\(//\)$' \| \
! 12981: X"$file" : 'X\(/\)' \| . 2>/dev/null ||
! 12982: $as_echo X"$file" |
! 12983: sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
! 12984: s//\1/
! 12985: q
! 12986: }
! 12987: /^X\(\/\/\)[^/].*/{
! 12988: s//\1/
! 12989: q
! 12990: }
! 12991: /^X\(\/\/\)$/{
! 12992: s//\1/
! 12993: q
! 12994: }
! 12995: /^X\(\/\).*/{
! 12996: s//\1/
! 12997: q
! 12998: }
! 12999: s/.*/./; q'`
! 13000: as_dir=$dirpart/$fdir; as_fn_mkdir_p
! 13001: # echo "creating $dirpart/$file"
! 13002: echo '# dummy' > "$dirpart/$file"
! 13003: done
! 13004: done
! 13005: }
! 13006: ;;
! 13007: "tests/test-mbchk":F) chmod +x tests/test-mbchk ;;
1.1 root 13008:
1.1.1.5 ! root 13009: esac
! 13010: done # for ac_tag
1.1 root 13011:
13012:
1.1.1.5 ! root 13013: as_fn_exit 0
! 13014: _ACEOF
! 13015: ac_clean_files=$ac_clean_files_save
1.1 root 13016:
1.1.1.5 ! root 13017: test $ac_write_fail = 0 ||
! 13018: as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
1.1 root 13019:
13020:
1.1.1.5 ! root 13021: if "$PATCH" -f < "$srcdir"/config.status.dep.patch
! 13022: then { $as_echo "$as_me:${as_lineno-$LINENO}: Applied a patch to work around a deficiency in
! 13023: Automake. See \`configure.ac' for details." >&5
! 13024: $as_echo "$as_me: Applied a patch to work around a deficiency in
! 13025: Automake. See \`configure.ac' for details." >&6;}
! 13026: else as_fn_error $? "failed to patch using \`config.status.dep.patch'.
! 13027: You have a serious problem. Please contact <$PACKAGE_BUGREPORT>." "$LINENO" 5
! 13028: fi
1.1 root 13029:
13030:
1.1.1.5 ! root 13031: # configure is writing to config.log, and then calls config.status.
! 13032: # config.status does its own redirection, appending to config.log.
! 13033: # Unfortunately, on DOS this fails, as config.log is still kept open
! 13034: # by configure, so config.status won't be able to write to it; its
! 13035: # output is simply discarded. So we exec the FD to /dev/null,
! 13036: # effectively closing config.log, so it can be properly (re)opened and
! 13037: # appended to by config.status. When coming back to configure, we
! 13038: # need to make the FD available again.
! 13039: if test "$no_create" != yes; then
! 13040: ac_cs_success=:
! 13041: ac_config_status_args=
! 13042: test "$silent" = yes &&
! 13043: ac_config_status_args="$ac_config_status_args --quiet"
! 13044: exec 5>/dev/null
! 13045: $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
! 13046: exec 5>>config.log
! 13047: # Use ||, not &&, to avoid exiting from the if with $? = 1, which
! 13048: # would make configure fail if this is the last instruction.
! 13049: $ac_cs_success || as_fn_exit 1
! 13050: fi
! 13051: if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
! 13052: { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
! 13053: $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
1.1 root 13054: fi
13055:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.