| 1 | #! /bin/sh
|
|---|
| 2 | # Guess values for system-dependent variables and create Makefiles.
|
|---|
| 3 | # Generated by GNU Autoconf 2.59c for GNU Automake 1.9.6.
|
|---|
| 4 | #
|
|---|
| 5 | # Report bugs to <[email protected]>.
|
|---|
| 6 | #
|
|---|
| 7 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
|---|
| 8 | # 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
|---|
| 9 | # This configure script is free software; the Free Software Foundation
|
|---|
| 10 | # gives unlimited permission to copy, distribute and modify it.
|
|---|
| 11 | ## --------------------- ##
|
|---|
| 12 | ## M4sh Initialization. ##
|
|---|
| 13 | ## --------------------- ##
|
|---|
| 14 |
|
|---|
| 15 | # Be Bourne compatible
|
|---|
| 16 | if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
|---|
| 17 | emulate sh
|
|---|
| 18 | NULLCMD=:
|
|---|
| 19 | # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
|
|---|
| 20 | # is contrary to our usage. Disable this feature.
|
|---|
| 21 | alias -g '${1+"$@"}'='"$@"'
|
|---|
| 22 | setopt NO_GLOB_SUBST
|
|---|
| 23 | elif test -n "${BASH_VERSION+set}${KSH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
|
|---|
| 24 | set -o posix
|
|---|
| 25 | fi
|
|---|
| 26 | BIN_SH=xpg4; export BIN_SH # for Tru64
|
|---|
| 27 | DUALCASE=1; export DUALCASE # for MKS sh
|
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 | # PATH needs CR
|
|---|
| 31 | # Avoid depending upon Character Ranges.
|
|---|
| 32 | as_cr_letters='abcdefghijklmnopqrstuvwxyz'
|
|---|
| 33 | as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
|---|
| 34 | as_cr_Letters=$as_cr_letters$as_cr_LETTERS
|
|---|
| 35 | as_cr_digits='0123456789'
|
|---|
| 36 | as_cr_alnum=$as_cr_Letters$as_cr_digits
|
|---|
| 37 |
|
|---|
| 38 | # The user is always right.
|
|---|
| 39 | if test "${PATH_SEPARATOR+set}" != set; then
|
|---|
| 40 | echo "#! /bin/sh" >conf$$.sh
|
|---|
| 41 | echo "exit 0" >>conf$$.sh
|
|---|
| 42 | chmod +x conf$$.sh
|
|---|
| 43 | if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
|
|---|
| 44 | PATH_SEPARATOR=';'
|
|---|
| 45 | else
|
|---|
| 46 | PATH_SEPARATOR=:
|
|---|
| 47 | fi
|
|---|
| 48 | rm -f conf$$.sh
|
|---|
| 49 | fi
|
|---|
| 50 |
|
|---|
| 51 | # Support unset when possible.
|
|---|
| 52 | if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
|
|---|
| 53 | as_unset=unset
|
|---|
| 54 | else
|
|---|
| 55 | as_unset=false
|
|---|
| 56 | fi
|
|---|
| 57 |
|
|---|
| 58 |
|
|---|
| 59 | # Find who we are. Look in the path if we contain no path at all
|
|---|
| 60 | # relative or not.
|
|---|
| 61 | case $0 in
|
|---|
| 62 | *[\\/]* ) as_myself=$0 ;;
|
|---|
| 63 | *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
|---|
| 64 | for as_dir in $PATH
|
|---|
| 65 | do
|
|---|
| 66 | IFS=$as_save_IFS
|
|---|
| 67 | test -z "$as_dir" && as_dir=.
|
|---|
| 68 | test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
|
|---|
| 69 | done
|
|---|
| 70 |
|
|---|
| 71 | ;;
|
|---|
| 72 | esac
|
|---|
| 73 | # We did not find ourselves, most probably we were run as `sh COMMAND'
|
|---|
| 74 | # in which case we are not to be found in the path.
|
|---|
| 75 | if test "x$as_myself" = x; then
|
|---|
| 76 | as_myself=$0
|
|---|
| 77 | fi
|
|---|
| 78 | if test ! -f "$as_myself"; then
|
|---|
| 79 | { echo "$as_me: error: cannot find myself; rerun with an absolute file name" >&2
|
|---|
| 80 | { (exit 1); exit 1; }; }
|
|---|
| 81 | fi
|
|---|
| 82 |
|
|---|
| 83 | # Work around bugs in pre-3.0 UWIN ksh.
|
|---|
| 84 | for as_var in ENV MAIL MAILPATH
|
|---|
| 85 | do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
|
|---|
| 86 | done
|
|---|
| 87 | PS1='$ '
|
|---|
| 88 | PS2='> '
|
|---|
| 89 | PS4='+ '
|
|---|
| 90 |
|
|---|
| 91 | # NLS nuisances.
|
|---|
| 92 | for as_var in \
|
|---|
| 93 | LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
|
|---|
| 94 | LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
|
|---|
| 95 | LC_TELEPHONE LC_TIME
|
|---|
| 96 | do
|
|---|
| 97 | if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
|
|---|
| 98 | eval $as_var=C; export $as_var
|
|---|
| 99 | else
|
|---|
| 100 | ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
|
|---|
| 101 | fi
|
|---|
| 102 | done
|
|---|
| 103 |
|
|---|
| 104 | # Required to use basename.
|
|---|
| 105 | if expr a : '\(a\)' >/dev/null 2>&1; then
|
|---|
| 106 | as_expr=expr
|
|---|
| 107 | else
|
|---|
| 108 | as_expr=false
|
|---|
| 109 | fi
|
|---|
| 110 |
|
|---|
| 111 | if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
|
|---|
| 112 | as_basename=basename
|
|---|
| 113 | else
|
|---|
| 114 | as_basename=false
|
|---|
| 115 | fi
|
|---|
| 116 |
|
|---|
| 117 |
|
|---|
| 118 | # Name of the executable.
|
|---|
| 119 | as_me=`$as_basename "$0" ||
|
|---|
| 120 | $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
|
|---|
| 121 | X"$0" : 'X\(//\)$' \| \
|
|---|
| 122 | X"$0" : 'X\(/\)$' \| \
|
|---|
| 123 | . : '\(.\)' 2>/dev/null ||
|
|---|
| 124 | echo X/"$0" |
|
|---|
| 125 | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
|
|---|
| 126 | /^X\/\(\/\/\)$/{ s//\1/; q; }
|
|---|
| 127 | /^X\/\(\/\).*/{ s//\1/; q; }
|
|---|
| 128 | s/.*/./; q'`
|
|---|
| 129 |
|
|---|
| 130 |
|
|---|
| 131 |
|
|---|
| 132 | if test "x$CONFIG_SHELL" = x; then
|
|---|
| 133 | if (eval ":") 2>/dev/null; then
|
|---|
| 134 | as_have_required=yes
|
|---|
| 135 | else
|
|---|
| 136 | as_have_required=no
|
|---|
| 137 | fi
|
|---|
| 138 |
|
|---|
| 139 | if test $as_have_required = yes && (eval ":
|
|---|
| 140 | (as_func_return () {
|
|---|
| 141 | (exit \$1)
|
|---|
| 142 | }
|
|---|
| 143 | as_func_success () {
|
|---|
| 144 | as_func_return 0
|
|---|
| 145 | }
|
|---|
| 146 | as_func_failure () {
|
|---|
| 147 | as_func_return 1
|
|---|
| 148 | }
|
|---|
| 149 | as_func_ret_success () {
|
|---|
| 150 | return 0
|
|---|
| 151 | }
|
|---|
| 152 | as_func_ret_failure () {
|
|---|
| 153 | return 1
|
|---|
| 154 | }
|
|---|
| 155 |
|
|---|
| 156 | exitcode=0
|
|---|
| 157 | if as_func_success; then
|
|---|
| 158 | :
|
|---|
| 159 | else
|
|---|
| 160 | exitcode=1
|
|---|
| 161 | echo as_func_success failed.
|
|---|
| 162 | fi
|
|---|
| 163 |
|
|---|
| 164 | if as_func_failure; then
|
|---|
| 165 | exitcode=1
|
|---|
| 166 | echo as_func_failure succeeded.
|
|---|
| 167 | fi
|
|---|
| 168 |
|
|---|
| 169 | if as_func_ret_success; then
|
|---|
| 170 | :
|
|---|
| 171 | else
|
|---|
| 172 | exitcode=1
|
|---|
| 173 | echo as_func_ret_success failed.
|
|---|
| 174 | fi
|
|---|
| 175 |
|
|---|
| 176 | if as_func_ret_failure; then
|
|---|
| 177 | exitcode=1
|
|---|
| 178 | echo as_func_ret_failure succeeded.
|
|---|
| 179 | fi
|
|---|
| 180 |
|
|---|
| 181 | if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
|
|---|
| 182 | :
|
|---|
| 183 | else
|
|---|
| 184 | exitcode=1
|
|---|
| 185 | echo positional parameters were not saved.
|
|---|
| 186 | fi
|
|---|
| 187 |
|
|---|
| 188 | test \$exitcode = 0) || { (exit 1); exit 1; }
|
|---|
| 189 |
|
|---|
| 190 | (
|
|---|
| 191 | as_lineno_1=\$LINENO
|
|---|
| 192 | as_lineno_2=\$LINENO
|
|---|
| 193 | test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" &&
|
|---|
| 194 | test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; }
|
|---|
| 195 | ") 2> /dev/null; then
|
|---|
| 196 | :
|
|---|
| 197 | else
|
|---|
| 198 | as_candidate_shells=
|
|---|
| 199 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
|---|
| 200 | for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
|
|---|
| 201 | do
|
|---|
| 202 | IFS=$as_save_IFS
|
|---|
| 203 | test -z "$as_dir" && as_dir=.
|
|---|
| 204 | case $as_dir in
|
|---|
| 205 | /*)
|
|---|
| 206 | for as_base in sh bash ksh sh5; do
|
|---|
| 207 | as_candidate_shells="$as_candidate_shells $as_dir/$as_base"
|
|---|
| 208 | done
|
|---|
| 209 | esac
|
|---|
| 210 | done
|
|---|
| 211 |
|
|---|
| 212 |
|
|---|
| 213 | for as_shell in $as_candidate_shells $SHELL; do
|
|---|
| 214 | if { ($as_shell) 2> /dev/null <<\_ASEOF
|
|---|
| 215 | # Be Bourne compatible
|
|---|
| 216 | if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
|---|
| 217 | emulate sh
|
|---|
| 218 | NULLCMD=:
|
|---|
| 219 | # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
|
|---|
| 220 | # is contrary to our usage. Disable this feature.
|
|---|
| 221 | alias -g '${1+"$@"}'='"$@"'
|
|---|
| 222 | setopt NO_GLOB_SUBST
|
|---|
| 223 | elif test -n "${BASH_VERSION+set}${KSH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
|
|---|
| 224 | set -o posix
|
|---|
| 225 | fi
|
|---|
| 226 | BIN_SH=xpg4; export BIN_SH # for Tru64
|
|---|
| 227 | DUALCASE=1; export DUALCASE # for MKS sh
|
|---|
| 228 |
|
|---|
| 229 | :
|
|---|
| 230 | _ASEOF
|
|---|
| 231 | }; then
|
|---|
| 232 | CONFIG_SHELL=$as_shell
|
|---|
| 233 | as_have_required=yes
|
|---|
| 234 | if { $as_shell 2> /dev/null <<\_ASEOF
|
|---|
| 235 | # Be Bourne compatible
|
|---|
| 236 | if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
|---|
| 237 | emulate sh
|
|---|
| 238 | NULLCMD=:
|
|---|
| 239 | # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
|
|---|
| 240 | # is contrary to our usage. Disable this feature.
|
|---|
| 241 | alias -g '${1+"$@"}'='"$@"'
|
|---|
| 242 | setopt NO_GLOB_SUBST
|
|---|
| 243 | elif test -n "${BASH_VERSION+set}${KSH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
|
|---|
| 244 | set -o posix
|
|---|
| 245 | fi
|
|---|
| 246 | BIN_SH=xpg4; export BIN_SH # for Tru64
|
|---|
| 247 | DUALCASE=1; export DUALCASE # for MKS sh
|
|---|
| 248 |
|
|---|
| 249 | :
|
|---|
| 250 | (as_func_return () {
|
|---|
| 251 | (exit $1)
|
|---|
| 252 | }
|
|---|
| 253 | as_func_success () {
|
|---|
| 254 | as_func_return 0
|
|---|
| 255 | }
|
|---|
| 256 | as_func_failure () {
|
|---|
| 257 | as_func_return 1
|
|---|
| 258 | }
|
|---|
| 259 | as_func_ret_success () {
|
|---|
| 260 | return 0
|
|---|
| 261 | }
|
|---|
| 262 | as_func_ret_failure () {
|
|---|
| 263 | return 1
|
|---|
| 264 | }
|
|---|
| 265 |
|
|---|
| 266 | exitcode=0
|
|---|
| 267 | if as_func_success; then
|
|---|
| 268 | :
|
|---|
| 269 | else
|
|---|
| 270 | exitcode=1
|
|---|
| 271 | echo as_func_success failed.
|
|---|
| 272 | fi
|
|---|
| 273 |
|
|---|
| 274 | if as_func_failure; then
|
|---|
| 275 | exitcode=1
|
|---|
| 276 | echo as_func_failure succeeded.
|
|---|
| 277 | fi
|
|---|
| 278 |
|
|---|
| 279 | if as_func_ret_success; then
|
|---|
| 280 | :
|
|---|
| 281 | else
|
|---|
| 282 | exitcode=1
|
|---|
| 283 | echo as_func_ret_success failed.
|
|---|
| 284 | fi
|
|---|
| 285 |
|
|---|
| 286 | if as_func_ret_failure; then
|
|---|
| 287 | exitcode=1
|
|---|
| 288 | echo as_func_ret_failure succeeded.
|
|---|
| 289 | fi
|
|---|
| 290 |
|
|---|
| 291 | if ( set x; as_func_ret_success y && test x = "$1" ); then
|
|---|
| 292 | :
|
|---|
| 293 | else
|
|---|
| 294 | exitcode=1
|
|---|
| 295 | echo positional parameters were not saved.
|
|---|
| 296 | fi
|
|---|
| 297 |
|
|---|
| 298 | test $exitcode = 0) || { (exit 1); exit 1; }
|
|---|
| 299 |
|
|---|
| 300 | (
|
|---|
| 301 | as_lineno_1=$LINENO
|
|---|
| 302 | as_lineno_2=$LINENO
|
|---|
| 303 | test "x$as_lineno_1" != "x$as_lineno_2" &&
|
|---|
| 304 | test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; }
|
|---|
| 305 |
|
|---|
| 306 | _ASEOF
|
|---|
| 307 | }; then
|
|---|
| 308 | break
|
|---|
| 309 | fi
|
|---|
| 310 |
|
|---|
| 311 | fi
|
|---|
| 312 |
|
|---|
| 313 | done
|
|---|
| 314 |
|
|---|
| 315 | if test "x$CONFIG_SHELL" != x; then
|
|---|
| 316 | for as_var in BASH_ENV ENV
|
|---|
| 317 | do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
|
|---|
| 318 | done
|
|---|
| 319 | export CONFIG_SHELL
|
|---|
| 320 | exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
|
|---|
| 321 | fi
|
|---|
| 322 |
|
|---|
| 323 |
|
|---|
| 324 | if test $as_have_required = no; then
|
|---|
| 325 | echo This script requires a shell more modern than all the
|
|---|
| 326 | echo shells that I found on your system. Please install a
|
|---|
| 327 | echo modern shell, or manually run the script under such a
|
|---|
| 328 | echo shell if you do have one.
|
|---|
| 329 | { (exit 1); exit 1; }
|
|---|
| 330 | fi
|
|---|
| 331 |
|
|---|
| 332 |
|
|---|
| 333 | fi
|
|---|
| 334 |
|
|---|
| 335 | fi
|
|---|
| 336 |
|
|---|
| 337 |
|
|---|
| 338 |
|
|---|
| 339 | (eval "as_func_return () {
|
|---|
| 340 | (exit \$1)
|
|---|
| 341 | }
|
|---|
| 342 | as_func_success () {
|
|---|
| 343 | as_func_return 0
|
|---|
| 344 | }
|
|---|
| 345 | as_func_failure () {
|
|---|
| 346 | as_func_return 1
|
|---|
| 347 | }
|
|---|
| 348 | as_func_ret_success () {
|
|---|
| 349 | return 0
|
|---|
| 350 | }
|
|---|
| 351 | as_func_ret_failure () {
|
|---|
| 352 | return 1
|
|---|
| 353 | }
|
|---|
| 354 |
|
|---|
| 355 | exitcode=0
|
|---|
| 356 | if as_func_success; then
|
|---|
| 357 | :
|
|---|
| 358 | else
|
|---|
| 359 | exitcode=1
|
|---|
| 360 | echo as_func_success failed.
|
|---|
| 361 | fi
|
|---|
| 362 |
|
|---|
| 363 | if as_func_failure; then
|
|---|
| 364 | exitcode=1
|
|---|
| 365 | echo as_func_failure succeeded.
|
|---|
| 366 | fi
|
|---|
| 367 |
|
|---|
| 368 | if as_func_ret_success; then
|
|---|
| 369 | :
|
|---|
| 370 | else
|
|---|
| 371 | exitcode=1
|
|---|
| 372 | echo as_func_ret_success failed.
|
|---|
| 373 | fi
|
|---|
| 374 |
|
|---|
| 375 | if as_func_ret_failure; then
|
|---|
| 376 | exitcode=1
|
|---|
| 377 | echo as_func_ret_failure succeeded.
|
|---|
| 378 | fi
|
|---|
| 379 |
|
|---|
| 380 | if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
|
|---|
| 381 | :
|
|---|
| 382 | else
|
|---|
| 383 | exitcode=1
|
|---|
| 384 | echo positional parameters were not saved.
|
|---|
| 385 | fi
|
|---|
| 386 |
|
|---|
| 387 | test \$exitcode = 0") || {
|
|---|
| 388 | echo No shell found that supports shell functions.
|
|---|
| 389 | echo Please tell [email protected] about your system,
|
|---|
| 390 | echo including any error possibly output before this
|
|---|
| 391 | echo message
|
|---|
| 392 | }
|
|---|
| 393 |
|
|---|
| 394 |
|
|---|
| 395 |
|
|---|
| 396 | as_lineno_1=$LINENO
|
|---|
| 397 | as_lineno_2=$LINENO
|
|---|
| 398 | test "x$as_lineno_1" != "x$as_lineno_2" &&
|
|---|
| 399 | test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
|
|---|
| 400 |
|
|---|
| 401 | # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
|
|---|
| 402 | # uniformly replaced by the line number. The first 'sed' inserts a
|
|---|
| 403 | # line-number line after each line using $LINENO; the second 'sed'
|
|---|
| 404 | # does the real work. The second script uses 'N' to pair each
|
|---|
| 405 | # line-number line with the line containing $LINENO, and appends
|
|---|
| 406 | # trailing '-' during substitution so that $LINENO is not a special
|
|---|
| 407 | # case at line end.
|
|---|
| 408 | # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
|
|---|
| 409 | # scripts with optimization help from Paolo Bonzini. Blame Lee
|
|---|
| 410 | # E. McMahon (1931-1989) for sed's syntax. :-)
|
|---|
| 411 | sed -n '
|
|---|
| 412 | p
|
|---|
| 413 | /[$]LINENO/=
|
|---|
| 414 | ' <$as_myself |
|
|---|
| 415 | sed '
|
|---|
| 416 | s,[$]LINENO.*,&-,
|
|---|
| 417 | t lineno
|
|---|
| 418 | b
|
|---|
| 419 | :lineno
|
|---|
| 420 | N
|
|---|
| 421 | :loop
|
|---|
| 422 | s,[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\),\2\1\2,
|
|---|
| 423 | t loop
|
|---|
| 424 | s,-\n.*,,
|
|---|
| 425 | ' >$as_me.lineno &&
|
|---|
| 426 | chmod +x $as_me.lineno ||
|
|---|
| 427 | { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
|
|---|
| 428 | { (exit 1); exit 1; }; }
|
|---|
| 429 |
|
|---|
| 430 | # Don't try to exec as it changes $[0], causing all sort of problems
|
|---|
| 431 | # (the dirname of $[0] is not the place where we might find the
|
|---|
| 432 | # original and so on. Autoconf is especially sensible to this).
|
|---|
| 433 | . ./$as_me.lineno
|
|---|
| 434 | # Exit status is that of the last command.
|
|---|
| 435 | exit
|
|---|
| 436 | }
|
|---|
| 437 |
|
|---|
| 438 |
|
|---|
| 439 | ECHO_C= ECHO_N= ECHO_T=
|
|---|
| 440 | case `echo -n x` in
|
|---|
| 441 | -n*)
|
|---|
| 442 | case `echo 'x\c'` in
|
|---|
| 443 | *c*) ECHO_T=' ';; # ECHO_T is single tab character.
|
|---|
| 444 | *) ECHO_C='\c';;
|
|---|
| 445 | esac;;
|
|---|
| 446 | *)
|
|---|
| 447 | ECHO_N='-n';;
|
|---|
| 448 | esac
|
|---|
| 449 |
|
|---|
| 450 | if expr a : '\(a\)' >/dev/null 2>&1; then
|
|---|
| 451 | as_expr=expr
|
|---|
| 452 | else
|
|---|
| 453 | as_expr=false
|
|---|
| 454 | fi
|
|---|
| 455 |
|
|---|
| 456 | rm -f conf$$ conf$$.exe conf$$.file
|
|---|
| 457 | echo >conf$$.file
|
|---|
| 458 | if ln -s conf$$.file conf$$ 2>/dev/null; then
|
|---|
| 459 | # We could just check for DJGPP; but this test a) works b) is more generic
|
|---|
| 460 | # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
|
|---|
| 461 | if test -f conf$$.exe; then
|
|---|
| 462 | # Don't use ln at all; we don't have any links
|
|---|
| 463 | as_ln_s='cp -p'
|
|---|
| 464 | else
|
|---|
| 465 | as_ln_s='ln -s'
|
|---|
| 466 | fi
|
|---|
| 467 | elif ln conf$$.file conf$$ 2>/dev/null; then
|
|---|
| 468 | as_ln_s=ln
|
|---|
| 469 | else
|
|---|
| 470 | as_ln_s='cp -p'
|
|---|
| 471 | fi
|
|---|
| 472 | rm -f conf$$ conf$$.exe conf$$.file
|
|---|
| 473 |
|
|---|
| 474 | if mkdir -p . 2>/dev/null; then
|
|---|
| 475 | as_mkdir_p=:
|
|---|
| 476 | else
|
|---|
| 477 | test -d ./-p && rmdir ./-p
|
|---|
| 478 | as_mkdir_p=false
|
|---|
| 479 | fi
|
|---|
| 480 |
|
|---|
| 481 | # Find out whether ``test -x'' works. Don't use a zero-byte file, as
|
|---|
| 482 | # systems may use methods other than mode bits to determine executability.
|
|---|
| 483 | cat >conf$$.file <<_ASEOF
|
|---|
| 484 | #! /bin/sh
|
|---|
| 485 | exit 0
|
|---|
| 486 | _ASEOF
|
|---|
| 487 | chmod +x conf$$.file
|
|---|
| 488 | if test -x conf$$.file >/dev/null 2>&1; then
|
|---|
| 489 | as_executable_p="test -x"
|
|---|
| 490 | else
|
|---|
| 491 | as_executable_p=:
|
|---|
| 492 | fi
|
|---|
| 493 | rm -f conf$$.file
|
|---|
| 494 |
|
|---|
| 495 | # Sed expression to map a string onto a valid CPP name.
|
|---|
| 496 | as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
|
|---|
| 497 |
|
|---|
| 498 | # Sed expression to map a string onto a valid variable name.
|
|---|
| 499 | as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
|
|---|
| 500 |
|
|---|
| 501 |
|
|---|
| 502 | # IFS
|
|---|
| 503 | # We need space, tab and new line, in precisely that order.
|
|---|
| 504 | as_nl='
|
|---|
| 505 | '
|
|---|
| 506 | IFS=" $as_nl"
|
|---|
| 507 |
|
|---|
| 508 | # CDPATH.
|
|---|
| 509 | $as_unset CDPATH
|
|---|
| 510 |
|
|---|
| 511 |
|
|---|
| 512 | exec 7<&0 </dev/null 6>&1
|
|---|
| 513 |
|
|---|
| 514 | # Name of the host.
|
|---|
| 515 | # hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
|
|---|
| 516 | # so uname gets run too.
|
|---|
| 517 | ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
|
|---|
| 518 |
|
|---|
| 519 | #
|
|---|
| 520 | # Initializations.
|
|---|
| 521 | #
|
|---|
| 522 | ac_default_prefix=/usr/local
|
|---|
| 523 | ac_config_libobj_dir=.
|
|---|
| 524 | cross_compiling=no
|
|---|
| 525 | subdirs=
|
|---|
| 526 | MFLAGS=
|
|---|
| 527 | MAKEFLAGS=
|
|---|
| 528 | SHELL=${CONFIG_SHELL-/bin/sh}
|
|---|
| 529 |
|
|---|
| 530 | # Identity of this package.
|
|---|
| 531 | PACKAGE_NAME='GNU Automake'
|
|---|
| 532 | PACKAGE_TARNAME='automake'
|
|---|
| 533 | PACKAGE_VERSION='1.9.6'
|
|---|
| 534 | PACKAGE_STRING='GNU Automake 1.9.6'
|
|---|
| 535 | PACKAGE_BUGREPORT='[email protected]'
|
|---|
| 536 |
|
|---|
| 537 | ac_unique_file="automake.in"
|
|---|
| 538 | ac_subst_vars='SHELL
|
|---|
| 539 | PATH_SEPARATOR
|
|---|
| 540 | PACKAGE_NAME
|
|---|
| 541 | PACKAGE_TARNAME
|
|---|
| 542 | PACKAGE_VERSION
|
|---|
| 543 | PACKAGE_STRING
|
|---|
| 544 | PACKAGE_BUGREPORT
|
|---|
| 545 | exec_prefix
|
|---|
| 546 | prefix
|
|---|
| 547 | program_transform_name
|
|---|
| 548 | bindir
|
|---|
| 549 | sbindir
|
|---|
| 550 | libexecdir
|
|---|
| 551 | datarootdir
|
|---|
| 552 | datadir
|
|---|
| 553 | sysconfdir
|
|---|
| 554 | sharedstatedir
|
|---|
| 555 | localstatedir
|
|---|
| 556 | includedir
|
|---|
| 557 | oldincludedir
|
|---|
| 558 | docdir
|
|---|
| 559 | infodir
|
|---|
| 560 | htmldir
|
|---|
| 561 | dvidir
|
|---|
| 562 | pdfdir
|
|---|
| 563 | psdir
|
|---|
| 564 | libdir
|
|---|
| 565 | localedir
|
|---|
| 566 | mandir
|
|---|
| 567 | DEFS
|
|---|
| 568 | ECHO_C
|
|---|
| 569 | ECHO_N
|
|---|
| 570 | ECHO_T
|
|---|
| 571 | LIBS
|
|---|
| 572 | build_alias
|
|---|
| 573 | host_alias
|
|---|
| 574 | target_alias
|
|---|
| 575 | build
|
|---|
| 576 | build_cpu
|
|---|
| 577 | build_vendor
|
|---|
| 578 | build_os
|
|---|
| 579 | am_AUTOCONF
|
|---|
| 580 | INSTALL_PROGRAM
|
|---|
| 581 | INSTALL_SCRIPT
|
|---|
| 582 | INSTALL_DATA
|
|---|
| 583 | CYGPATH_W
|
|---|
| 584 | PACKAGE
|
|---|
| 585 | VERSION
|
|---|
| 586 | ACLOCAL
|
|---|
| 587 | AUTOCONF
|
|---|
| 588 | AUTOMAKE
|
|---|
| 589 | AUTOHEADER
|
|---|
| 590 | MAKEINFO
|
|---|
| 591 | install_sh
|
|---|
| 592 | STRIP
|
|---|
| 593 | ac_ct_STRIP
|
|---|
| 594 | INSTALL_STRIP_PROGRAM
|
|---|
| 595 | mkdir_p
|
|---|
| 596 | AWK
|
|---|
| 597 | SET_MAKE
|
|---|
| 598 | am__leading_dot
|
|---|
| 599 | AMTAR
|
|---|
| 600 | am__tar
|
|---|
| 601 | am__untar
|
|---|
| 602 | APIVERSION
|
|---|
| 603 | pkgvdatadir
|
|---|
| 604 | PERL
|
|---|
| 605 | TEX
|
|---|
| 606 | LN
|
|---|
| 607 | MODIFICATION_DELAY
|
|---|
| 608 | GREP
|
|---|
| 609 | EGREP
|
|---|
| 610 | FGREP
|
|---|
| 611 | LIBOBJS
|
|---|
| 612 | LTLIBOBJS'
|
|---|
| 613 | ac_subst_files=''
|
|---|
| 614 | ac_precious_vars='build_alias
|
|---|
| 615 | host_alias
|
|---|
| 616 | target_alias'
|
|---|
| 617 |
|
|---|
| 618 | # Initialize some variables set by options.
|
|---|
| 619 | ac_init_help=
|
|---|
| 620 | ac_init_version=false
|
|---|
| 621 | # The variables have the same names as the options, with
|
|---|
| 622 | # dashes changed to underlines.
|
|---|
| 623 | cache_file=/dev/null
|
|---|
| 624 | exec_prefix=NONE
|
|---|
| 625 | no_create=
|
|---|
| 626 | no_recursion=
|
|---|
| 627 | prefix=NONE
|
|---|
| 628 | program_prefix=NONE
|
|---|
| 629 | program_suffix=NONE
|
|---|
| 630 | program_transform_name=s,x,x,
|
|---|
| 631 | silent=
|
|---|
| 632 | site=
|
|---|
| 633 | srcdir=
|
|---|
| 634 | verbose=
|
|---|
| 635 | x_includes=NONE
|
|---|
| 636 | x_libraries=NONE
|
|---|
| 637 |
|
|---|
| 638 | # Installation directory options.
|
|---|
| 639 | # These are left unexpanded so users can "make install exec_prefix=/foo"
|
|---|
| 640 | # and all the variables that are supposed to be based on exec_prefix
|
|---|
| 641 | # by default will actually change.
|
|---|
| 642 | # Use braces instead of parens because sh, perl, etc. also accept them.
|
|---|
| 643 | # (The list follows the same order as the GNU Coding Standards.)
|
|---|
| 644 | bindir='${exec_prefix}/bin'
|
|---|
| 645 | sbindir='${exec_prefix}/sbin'
|
|---|
| 646 | libexecdir='${exec_prefix}/libexec'
|
|---|
| 647 | datarootdir='${prefix}/share'
|
|---|
| 648 | datadir='${datarootdir}'
|
|---|
| 649 | sysconfdir='${prefix}/etc'
|
|---|
| 650 | sharedstatedir='${prefix}/com'
|
|---|
| 651 | localstatedir='${prefix}/var'
|
|---|
| 652 | includedir='${prefix}/include'
|
|---|
| 653 | oldincludedir='/usr/include'
|
|---|
| 654 | docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
|
|---|
| 655 | infodir='${datarootdir}/info'
|
|---|
| 656 | htmldir='${docdir}'
|
|---|
| 657 | dvidir='${docdir}'
|
|---|
| 658 | pdfdir='${docdir}'
|
|---|
| 659 | psdir='${docdir}'
|
|---|
| 660 | libdir='${exec_prefix}/lib'
|
|---|
| 661 | localedir='${datarootdir}/locale'
|
|---|
| 662 | mandir='${datarootdir}/man'
|
|---|
| 663 |
|
|---|
| 664 | ac_prev=
|
|---|
| 665 | ac_dashdash=
|
|---|
| 666 | for ac_option
|
|---|
| 667 | do
|
|---|
| 668 | # If the previous option needs an argument, assign it.
|
|---|
| 669 | if test -n "$ac_prev"; then
|
|---|
| 670 | eval $ac_prev=\$ac_option
|
|---|
| 671 | ac_prev=
|
|---|
| 672 | continue
|
|---|
| 673 | fi
|
|---|
| 674 |
|
|---|
| 675 | case $ac_option in
|
|---|
| 676 | *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
|
|---|
| 677 | *) ac_optarg=yes ;;
|
|---|
| 678 | esac
|
|---|
| 679 |
|
|---|
| 680 | # Accept the important Cygnus configure options, so we can diagnose typos.
|
|---|
| 681 |
|
|---|
| 682 | case $ac_dashdash$ac_option in
|
|---|
| 683 | --)
|
|---|
| 684 | ac_dashdash=yes ;;
|
|---|
| 685 |
|
|---|
| 686 | -bindir | --bindir | --bindi | --bind | --bin | --bi)
|
|---|
| 687 | ac_prev=bindir ;;
|
|---|
| 688 | -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
|
|---|
| 689 | bindir=$ac_optarg ;;
|
|---|
| 690 |
|
|---|
| 691 | -build | --build | --buil | --bui | --bu)
|
|---|
| 692 | ac_prev=build_alias ;;
|
|---|
| 693 | -build=* | --build=* | --buil=* | --bui=* | --bu=*)
|
|---|
| 694 | build_alias=$ac_optarg ;;
|
|---|
| 695 |
|
|---|
| 696 | -cache-file | --cache-file | --cache-fil | --cache-fi \
|
|---|
| 697 | | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
|
|---|
| 698 | ac_prev=cache_file ;;
|
|---|
| 699 | -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
|
|---|
| 700 | | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
|
|---|
| 701 | cache_file=$ac_optarg ;;
|
|---|
| 702 |
|
|---|
| 703 | --config-cache | -C)
|
|---|
| 704 | cache_file=config.cache ;;
|
|---|
| 705 |
|
|---|
| 706 | -datadir | --datadir | --datadi | --datad)
|
|---|
| 707 | ac_prev=datadir ;;
|
|---|
| 708 | -datadir=* | --datadir=* | --datadi=* | --datad=*)
|
|---|
| 709 | datadir=$ac_optarg ;;
|
|---|
| 710 |
|
|---|
| 711 | -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
|
|---|
| 712 | | --dataroo | --dataro | --datar)
|
|---|
| 713 | ac_prev=datarootdir ;;
|
|---|
| 714 | -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
|
|---|
| 715 | | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
|
|---|
| 716 | datarootdir=$ac_optarg ;;
|
|---|
| 717 |
|
|---|
| 718 | -disable-* | --disable-*)
|
|---|
| 719 | ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
|
|---|
| 720 | # Reject names that are not valid shell variable names.
|
|---|
| 721 | expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
|---|
| 722 | { echo "$as_me: error: invalid feature name: $ac_feature" >&2
|
|---|
| 723 | { (exit 1); exit 1; }; }
|
|---|
| 724 | ac_feature=`echo $ac_feature | sed 's/-/_/g'`
|
|---|
| 725 | eval enable_$ac_feature=no ;;
|
|---|
| 726 |
|
|---|
| 727 | -docdir | --docdir | --docdi | --doc | --do)
|
|---|
| 728 | ac_prev=docdir ;;
|
|---|
| 729 | -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
|
|---|
| 730 | docdir=$ac_optarg ;;
|
|---|
| 731 |
|
|---|
| 732 | -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
|
|---|
| 733 | ac_prev=dvidir ;;
|
|---|
| 734 | -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
|
|---|
| 735 | dvidir=$ac_optarg ;;
|
|---|
| 736 |
|
|---|
| 737 | -enable-* | --enable-*)
|
|---|
| 738 | ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
|
|---|
| 739 | # Reject names that are not valid shell variable names.
|
|---|
| 740 | expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
|---|
| 741 | { echo "$as_me: error: invalid feature name: $ac_feature" >&2
|
|---|
| 742 | { (exit 1); exit 1; }; }
|
|---|
| 743 | ac_feature=`echo $ac_feature | sed 's/-/_/g'`
|
|---|
| 744 | eval enable_$ac_feature=\$ac_optarg ;;
|
|---|
| 745 |
|
|---|
| 746 | -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
|
|---|
| 747 | | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
|
|---|
| 748 | | --exec | --exe | --ex)
|
|---|
| 749 | ac_prev=exec_prefix ;;
|
|---|
| 750 | -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
|
|---|
| 751 | | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
|
|---|
| 752 | | --exec=* | --exe=* | --ex=*)
|
|---|
| 753 | exec_prefix=$ac_optarg ;;
|
|---|
| 754 |
|
|---|
| 755 | -gas | --gas | --ga | --g)
|
|---|
| 756 | # Obsolete; use --with-gas.
|
|---|
| 757 | with_gas=yes ;;
|
|---|
| 758 |
|
|---|
| 759 | -help | --help | --hel | --he | -h)
|
|---|
| 760 | ac_init_help=long ;;
|
|---|
| 761 | -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
|
|---|
| 762 | ac_init_help=recursive ;;
|
|---|
| 763 | -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
|
|---|
| 764 | ac_init_help=short ;;
|
|---|
| 765 |
|
|---|
| 766 | -host | --host | --hos | --ho)
|
|---|
| 767 | ac_prev=host_alias ;;
|
|---|
| 768 | -host=* | --host=* | --hos=* | --ho=*)
|
|---|
| 769 | host_alias=$ac_optarg ;;
|
|---|
| 770 |
|
|---|
| 771 | -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
|
|---|
| 772 | ac_prev=htmldir ;;
|
|---|
| 773 | -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
|
|---|
| 774 | | --ht=*)
|
|---|
| 775 | htmldir=$ac_optarg ;;
|
|---|
| 776 |
|
|---|
| 777 | -includedir | --includedir | --includedi | --included | --include \
|
|---|
| 778 | | --includ | --inclu | --incl | --inc)
|
|---|
| 779 | ac_prev=includedir ;;
|
|---|
| 780 | -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
|
|---|
| 781 | | --includ=* | --inclu=* | --incl=* | --inc=*)
|
|---|
| 782 | includedir=$ac_optarg ;;
|
|---|
| 783 |
|
|---|
| 784 | -infodir | --infodir | --infodi | --infod | --info | --inf)
|
|---|
| 785 | ac_prev=infodir ;;
|
|---|
| 786 | -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
|
|---|
| 787 | infodir=$ac_optarg ;;
|
|---|
| 788 |
|
|---|
| 789 | -libdir | --libdir | --libdi | --libd)
|
|---|
| 790 | ac_prev=libdir ;;
|
|---|
| 791 | -libdir=* | --libdir=* | --libdi=* | --libd=*)
|
|---|
| 792 | libdir=$ac_optarg ;;
|
|---|
| 793 |
|
|---|
| 794 | -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
|
|---|
| 795 | | --libexe | --libex | --libe)
|
|---|
| 796 | ac_prev=libexecdir ;;
|
|---|
| 797 | -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
|
|---|
| 798 | | --libexe=* | --libex=* | --libe=*)
|
|---|
| 799 | libexecdir=$ac_optarg ;;
|
|---|
| 800 |
|
|---|
| 801 | -localedir | --localedir | --localedi | --localed | --locale)
|
|---|
| 802 | ac_prev=localedir ;;
|
|---|
| 803 | -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
|
|---|
| 804 | localedir=$ac_optarg ;;
|
|---|
| 805 |
|
|---|
| 806 | -localstatedir | --localstatedir | --localstatedi | --localstated \
|
|---|
| 807 | | --localstate | --localstat | --localsta | --localst | --locals)
|
|---|
| 808 | ac_prev=localstatedir ;;
|
|---|
| 809 | -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
|
|---|
| 810 | | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
|
|---|
| 811 | localstatedir=$ac_optarg ;;
|
|---|
| 812 |
|
|---|
| 813 | -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
|
|---|
| 814 | ac_prev=mandir ;;
|
|---|
| 815 | -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
|
|---|
| 816 | mandir=$ac_optarg ;;
|
|---|
| 817 |
|
|---|
| 818 | -nfp | --nfp | --nf)
|
|---|
| 819 | # Obsolete; use --without-fp.
|
|---|
| 820 | with_fp=no ;;
|
|---|
| 821 |
|
|---|
| 822 | -no-create | --no-create | --no-creat | --no-crea | --no-cre \
|
|---|
| 823 | | --no-cr | --no-c | -n)
|
|---|
| 824 | no_create=yes ;;
|
|---|
| 825 |
|
|---|
| 826 | -no-recursion | --no-recursion | --no-recursio | --no-recursi \
|
|---|
| 827 | | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
|
|---|
| 828 | no_recursion=yes ;;
|
|---|
| 829 |
|
|---|
| 830 | -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
|
|---|
| 831 | | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
|
|---|
| 832 | | --oldin | --oldi | --old | --ol | --o)
|
|---|
| 833 | ac_prev=oldincludedir ;;
|
|---|
| 834 | -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
|
|---|
| 835 | | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
|
|---|
| 836 | | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
|
|---|
| 837 | oldincludedir=$ac_optarg ;;
|
|---|
| 838 |
|
|---|
| 839 | -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
|
|---|
| 840 | ac_prev=prefix ;;
|
|---|
| 841 | -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
|
|---|
| 842 | prefix=$ac_optarg ;;
|
|---|
| 843 |
|
|---|
| 844 | -program-prefix | --program-prefix | --program-prefi | --program-pref \
|
|---|
| 845 | | --program-pre | --program-pr | --program-p)
|
|---|
| 846 | ac_prev=program_prefix ;;
|
|---|
| 847 | -program-prefix=* | --program-prefix=* | --program-prefi=* \
|
|---|
| 848 | | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
|
|---|
| 849 | program_prefix=$ac_optarg ;;
|
|---|
| 850 |
|
|---|
| 851 | -program-suffix | --program-suffix | --program-suffi | --program-suff \
|
|---|
| 852 | | --program-suf | --program-su | --program-s)
|
|---|
| 853 | ac_prev=program_suffix ;;
|
|---|
| 854 | -program-suffix=* | --program-suffix=* | --program-suffi=* \
|
|---|
| 855 | | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
|
|---|
| 856 | program_suffix=$ac_optarg ;;
|
|---|
| 857 |
|
|---|
| 858 | -program-transform-name | --program-transform-name \
|
|---|
| 859 | | --program-transform-nam | --program-transform-na \
|
|---|
| 860 | | --program-transform-n | --program-transform- \
|
|---|
| 861 | | --program-transform | --program-transfor \
|
|---|
| 862 | | --program-transfo | --program-transf \
|
|---|
| 863 | | --program-trans | --program-tran \
|
|---|
| 864 | | --progr-tra | --program-tr | --program-t)
|
|---|
| 865 | ac_prev=program_transform_name ;;
|
|---|
| 866 | -program-transform-name=* | --program-transform-name=* \
|
|---|
| 867 | | --program-transform-nam=* | --program-transform-na=* \
|
|---|
| 868 | | --program-transform-n=* | --program-transform-=* \
|
|---|
| 869 | | --program-transform=* | --program-transfor=* \
|
|---|
| 870 | | --program-transfo=* | --program-transf=* \
|
|---|
| 871 | | --program-trans=* | --program-tran=* \
|
|---|
| 872 | | --progr-tra=* | --program-tr=* | --program-t=*)
|
|---|
| 873 | program_transform_name=$ac_optarg ;;
|
|---|
| 874 |
|
|---|
| 875 | -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
|
|---|
| 876 | ac_prev=pdfdir ;;
|
|---|
| 877 | -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
|
|---|
| 878 | pdfdir=$ac_optarg ;;
|
|---|
| 879 |
|
|---|
| 880 | -psdir | --psdir | --psdi | --psd | --ps)
|
|---|
| 881 | ac_prev=psdir ;;
|
|---|
| 882 | -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
|
|---|
| 883 | psdir=$ac_optarg ;;
|
|---|
| 884 |
|
|---|
| 885 | -q | -quiet | --quiet | --quie | --qui | --qu | --q \
|
|---|
| 886 | | -silent | --silent | --silen | --sile | --sil)
|
|---|
| 887 | silent=yes ;;
|
|---|
| 888 |
|
|---|
| 889 | -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
|
|---|
| 890 | ac_prev=sbindir ;;
|
|---|
| 891 | -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
|
|---|
| 892 | | --sbi=* | --sb=*)
|
|---|
| 893 | sbindir=$ac_optarg ;;
|
|---|
| 894 |
|
|---|
| 895 | -sharedstatedir | --sharedstatedir | --sharedstatedi \
|
|---|
| 896 | | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
|
|---|
| 897 | | --sharedst | --shareds | --shared | --share | --shar \
|
|---|
| 898 | | --sha | --sh)
|
|---|
| 899 | ac_prev=sharedstatedir ;;
|
|---|
| 900 | -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
|
|---|
| 901 | | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
|
|---|
| 902 | | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
|
|---|
| 903 | | --sha=* | --sh=*)
|
|---|
| 904 | sharedstatedir=$ac_optarg ;;
|
|---|
| 905 |
|
|---|
| 906 | -site | --site | --sit)
|
|---|
| 907 | ac_prev=site ;;
|
|---|
| 908 | -site=* | --site=* | --sit=*)
|
|---|
| 909 | site=$ac_optarg ;;
|
|---|
| 910 |
|
|---|
| 911 | -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
|
|---|
| 912 | ac_prev=srcdir ;;
|
|---|
| 913 | -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
|
|---|
| 914 | srcdir=$ac_optarg ;;
|
|---|
| 915 |
|
|---|
| 916 | -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
|
|---|
| 917 | | --syscon | --sysco | --sysc | --sys | --sy)
|
|---|
| 918 | ac_prev=sysconfdir ;;
|
|---|
| 919 | -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
|
|---|
| 920 | | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
|
|---|
| 921 | sysconfdir=$ac_optarg ;;
|
|---|
| 922 |
|
|---|
| 923 | -target | --target | --targe | --targ | --tar | --ta | --t)
|
|---|
| 924 | ac_prev=target_alias ;;
|
|---|
| 925 | -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
|
|---|
| 926 | target_alias=$ac_optarg ;;
|
|---|
| 927 |
|
|---|
| 928 | -v | -verbose | --verbose | --verbos | --verbo | --verb)
|
|---|
| 929 | verbose=yes ;;
|
|---|
| 930 |
|
|---|
| 931 | -version | --version | --versio | --versi | --vers | -V)
|
|---|
| 932 | ac_init_version=: ;;
|
|---|
| 933 |
|
|---|
| 934 | -with-* | --with-*)
|
|---|
| 935 | ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
|
|---|
| 936 | # Reject names that are not valid shell variable names.
|
|---|
| 937 | expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
|---|
| 938 | { echo "$as_me: error: invalid package name: $ac_package" >&2
|
|---|
| 939 | { (exit 1); exit 1; }; }
|
|---|
| 940 | ac_package=`echo $ac_package| sed 's/-/_/g'`
|
|---|
| 941 | eval with_$ac_package=\$ac_optarg ;;
|
|---|
| 942 |
|
|---|
| 943 | -without-* | --without-*)
|
|---|
| 944 | ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
|
|---|
| 945 | # Reject names that are not valid shell variable names.
|
|---|
| 946 | expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
|---|
| 947 | { echo "$as_me: error: invalid package name: $ac_package" >&2
|
|---|
| 948 | { (exit 1); exit 1; }; }
|
|---|
| 949 | ac_package=`echo $ac_package | sed 's/-/_/g'`
|
|---|
| 950 | eval with_$ac_package=no ;;
|
|---|
| 951 |
|
|---|
| 952 | --x)
|
|---|
| 953 | # Obsolete; use --with-x.
|
|---|
| 954 | with_x=yes ;;
|
|---|
| 955 |
|
|---|
| 956 | -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
|
|---|
| 957 | | --x-incl | --x-inc | --x-in | --x-i)
|
|---|
| 958 | ac_prev=x_includes ;;
|
|---|
| 959 | -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
|
|---|
| 960 | | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
|
|---|
| 961 | x_includes=$ac_optarg ;;
|
|---|
| 962 |
|
|---|
| 963 | -x-libraries | --x-libraries | --x-librarie | --x-librari \
|
|---|
| 964 | | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
|
|---|
| 965 | ac_prev=x_libraries ;;
|
|---|
| 966 | -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
|
|---|
| 967 | | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
|
|---|
| 968 | x_libraries=$ac_optarg ;;
|
|---|
| 969 |
|
|---|
| 970 | -*) { echo "$as_me: error: unrecognized option: $ac_option
|
|---|
| 971 | Try \`$0 --help' for more information." >&2
|
|---|
| 972 | { (exit 1); exit 1; }; }
|
|---|
| 973 | ;;
|
|---|
| 974 |
|
|---|
| 975 | *=*)
|
|---|
| 976 | ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
|
|---|
| 977 | # Reject names that are not valid shell variable names.
|
|---|
| 978 | expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
|
|---|
| 979 | { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
|
|---|
| 980 | { (exit 1); exit 1; }; }
|
|---|
| 981 | eval $ac_envvar=\$ac_optarg
|
|---|
| 982 | export $ac_envvar ;;
|
|---|
| 983 |
|
|---|
| 984 | *)
|
|---|
| 985 | # FIXME: should be removed in autoconf 3.0.
|
|---|
| 986 | echo "$as_me: WARNING: you should use --build, --host, --target" >&2
|
|---|
| 987 | expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
|
|---|
| 988 | echo "$as_me: WARNING: invalid host type: $ac_option" >&2
|
|---|
| 989 | : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
|
|---|
| 990 | ;;
|
|---|
| 991 |
|
|---|
| 992 | esac
|
|---|
| 993 | done
|
|---|
| 994 |
|
|---|
| 995 | if test -n "$ac_prev"; then
|
|---|
| 996 | ac_option=--`echo $ac_prev | sed 's/_/-/g'`
|
|---|
| 997 | { echo "$as_me: error: missing argument to $ac_option" >&2
|
|---|
| 998 | { (exit 1); exit 1; }; }
|
|---|
| 999 | fi
|
|---|
| 1000 |
|
|---|
| 1001 | # Be sure to have absolute directory names.
|
|---|
| 1002 | for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
|
|---|
| 1003 | datadir sysconfdir sharedstatedir localstatedir includedir \
|
|---|
| 1004 | oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
|
|---|
| 1005 | libdir localedir mandir
|
|---|
| 1006 | do
|
|---|
| 1007 | eval ac_val=\$$ac_var
|
|---|
| 1008 | case $ac_val in
|
|---|
| 1009 | [\\/$]* | ?:[\\/]* ) continue;;
|
|---|
| 1010 | NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
|
|---|
| 1011 | esac
|
|---|
| 1012 | { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
|
|---|
| 1013 | { (exit 1); exit 1; }; }
|
|---|
| 1014 | done
|
|---|
| 1015 |
|
|---|
| 1016 | # There might be people who depend on the old broken behavior: `$host'
|
|---|
| 1017 | # used to hold the argument of --host etc.
|
|---|
| 1018 | # FIXME: To remove some day.
|
|---|
| 1019 | build=$build_alias
|
|---|
| 1020 | host=$host_alias
|
|---|
| 1021 | target=$target_alias
|
|---|
| 1022 |
|
|---|
| 1023 | # FIXME: To remove some day.
|
|---|
| 1024 | if test "x$host_alias" != x; then
|
|---|
| 1025 | if test "x$build_alias" = x; then
|
|---|
| 1026 | cross_compiling=maybe
|
|---|
| 1027 | echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
|
|---|
| 1028 | If a cross compiler is detected then cross compile mode will be used." >&2
|
|---|
| 1029 | elif test "x$build_alias" != "x$host_alias"; then
|
|---|
| 1030 | cross_compiling=yes
|
|---|
| 1031 | fi
|
|---|
| 1032 | fi
|
|---|
| 1033 |
|
|---|
| 1034 | ac_tool_prefix=
|
|---|
| 1035 | test -n "$host_alias" && ac_tool_prefix=$host_alias-
|
|---|
| 1036 |
|
|---|
| 1037 | test "$silent" = yes && exec 6>/dev/null
|
|---|
| 1038 |
|
|---|
| 1039 |
|
|---|
| 1040 | # Find the source files, if location was not specified.
|
|---|
| 1041 | if test -z "$srcdir"; then
|
|---|
| 1042 | ac_srcdir_defaulted=yes
|
|---|
| 1043 | # Try the directory containing this script, then the parent directory.
|
|---|
| 1044 | ac_confdir=`(dirname "$0") 2>/dev/null ||
|
|---|
| 1045 | $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
|---|
| 1046 | X"$0" : 'X\(//\)[^/]' \| \
|
|---|
| 1047 | X"$0" : 'X\(//\)$' \| \
|
|---|
| 1048 | X"$0" : 'X\(/\)' \| \
|
|---|
| 1049 | . : '\(.\)' 2>/dev/null ||
|
|---|
| 1050 | echo X"$0" |
|
|---|
| 1051 | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
|
|---|
| 1052 | /^X\(\/\/\)[^/].*/{ s//\1/; q; }
|
|---|
| 1053 | /^X\(\/\/\)$/{ s//\1/; q; }
|
|---|
| 1054 | /^X\(\/\).*/{ s//\1/; q; }
|
|---|
| 1055 | s/.*/./; q'`
|
|---|
| 1056 | srcdir=$ac_confdir
|
|---|
| 1057 | if test ! -r "$srcdir/$ac_unique_file"; then
|
|---|
| 1058 | srcdir=..
|
|---|
| 1059 | fi
|
|---|
| 1060 | else
|
|---|
| 1061 | ac_srcdir_defaulted=no
|
|---|
| 1062 | fi
|
|---|
| 1063 | if test ! -r "$srcdir/$ac_unique_file"; then
|
|---|
| 1064 | test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
|
|---|
| 1065 | { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
|
|---|
| 1066 | { (exit 1); exit 1; }; }
|
|---|
| 1067 | fi
|
|---|
| 1068 | (cd $srcdir && test -r "./$ac_unique_file") 2>/dev/null ||
|
|---|
| 1069 | { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
|
|---|
| 1070 | { (exit 1); exit 1; }; }
|
|---|
| 1071 | case $srcdir in
|
|---|
| 1072 | */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
|
|---|
| 1073 | esac
|
|---|
| 1074 |
|
|---|
| 1075 | ac_pwd=`pwd` && test -n "$ac_pwd" &&
|
|---|
| 1076 | ac_ls_di=`ls -di .` &&
|
|---|
| 1077 | ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
|
|---|
| 1078 | { echo "$as_me: error: Working directory cannot be determined" >&2
|
|---|
| 1079 | { (exit 1); exit 1; }; }
|
|---|
| 1080 | test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
|
|---|
| 1081 | { echo "$as_me: error: pwd does not report name of working directory" >&2
|
|---|
| 1082 | { (exit 1); exit 1; }; }
|
|---|
| 1083 |
|
|---|
| 1084 | for ac_var in $ac_precious_vars; do
|
|---|
| 1085 | eval ac_env_${ac_var}_set=\${${ac_var}+set}
|
|---|
| 1086 | eval ac_env_${ac_var}_value=\$${ac_var}
|
|---|
| 1087 | eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
|
|---|
| 1088 | eval ac_cv_env_${ac_var}_value=\$${ac_var}
|
|---|
| 1089 | done
|
|---|
| 1090 |
|
|---|
| 1091 | #
|
|---|
| 1092 | # Report the --help message.
|
|---|
| 1093 | #
|
|---|
| 1094 | if test "$ac_init_help" = "long"; then
|
|---|
| 1095 | # Omit some internal or obsolete options to make the list less imposing.
|
|---|
| 1096 | # This message is too long to be a string in the A/UX 3.1 sh.
|
|---|
| 1097 | cat <<_ACEOF
|
|---|
| 1098 | \`configure' configures GNU Automake 1.9.6 to adapt to many kinds of systems.
|
|---|
| 1099 |
|
|---|
| 1100 | Usage: $0 [OPTION]... [VAR=VALUE]...
|
|---|
| 1101 |
|
|---|
| 1102 | To assign environment variables (e.g., CC, CFLAGS...), specify them as
|
|---|
| 1103 | VAR=VALUE. See below for descriptions of some of the useful variables.
|
|---|
| 1104 |
|
|---|
| 1105 | Defaults for the options are specified in brackets.
|
|---|
| 1106 |
|
|---|
| 1107 | Configuration:
|
|---|
| 1108 | -h, --help display this help and exit
|
|---|
| 1109 | --help=short display options specific to this package
|
|---|
| 1110 | --help=recursive display the short help of all the included packages
|
|---|
| 1111 | -V, --version display version information and exit
|
|---|
| 1112 | -q, --quiet, --silent do not print \`checking...' messages
|
|---|
| 1113 | --cache-file=FILE cache test results in FILE [disabled]
|
|---|
| 1114 | -C, --config-cache alias for \`--cache-file=config.cache'
|
|---|
| 1115 | -n, --no-create do not create output files
|
|---|
| 1116 | --srcdir=DIR find the sources in DIR [configure dir or \`..']
|
|---|
| 1117 |
|
|---|
| 1118 | Installation directories:
|
|---|
| 1119 | --prefix=PREFIX install architecture-independent files in PREFIX
|
|---|
| 1120 | [$ac_default_prefix]
|
|---|
| 1121 | --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
|
|---|
| 1122 | [PREFIX]
|
|---|
| 1123 |
|
|---|
| 1124 | By default, \`make install' will install all the files in
|
|---|
| 1125 | \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
|
|---|
| 1126 | an installation prefix other than \`$ac_default_prefix' using \`--prefix',
|
|---|
| 1127 | for instance \`--prefix=\$HOME'.
|
|---|
| 1128 |
|
|---|
| 1129 | For better control, use the options below.
|
|---|
| 1130 |
|
|---|
| 1131 | Fine tuning of the installation directories:
|
|---|
| 1132 | --bindir=DIR user executables [EPREFIX/bin]
|
|---|
| 1133 | --sbindir=DIR system admin executables [EPREFIX/sbin]
|
|---|
| 1134 | --libexecdir=DIR program executables [EPREFIX/libexec]
|
|---|
| 1135 | --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
|
|---|
| 1136 | --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
|
|---|
| 1137 | --localstatedir=DIR modifiable single-machine data [PREFIX/var]
|
|---|
| 1138 | --libdir=DIR object code libraries [EPREFIX/lib]
|
|---|
| 1139 | --includedir=DIR C header files [PREFIX/include]
|
|---|
| 1140 | --oldincludedir=DIR C header files for non-gcc [/usr/include]
|
|---|
| 1141 | --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
|
|---|
| 1142 | --datadir=DIR read-only architecture-independent data [DATAROOTDIR]
|
|---|
| 1143 | --infodir=DIR info documentation [DATAROOTDIR/info]
|
|---|
| 1144 | --localedir=DIR locale-dependent data [DATAROOTDIR/locale]
|
|---|
| 1145 | --mandir=DIR man documentation [DATAROOTDIR/man]
|
|---|
| 1146 | --docdir=DIR documentation root [DATAROOTDIR/doc/automake]
|
|---|
| 1147 | --htmldir=DIR html documentation [DOCDIR]
|
|---|
| 1148 | --dvidir=DIR dvi documentation [DOCDIR]
|
|---|
| 1149 | --pdfdir=DIR pdf documentation [DOCDIR]
|
|---|
| 1150 | --psdir=DIR ps documentation [DOCDIR]
|
|---|
| 1151 | _ACEOF
|
|---|
| 1152 |
|
|---|
| 1153 | cat <<\_ACEOF
|
|---|
| 1154 |
|
|---|
| 1155 | Program names:
|
|---|
| 1156 | --program-prefix=PREFIX prepend PREFIX to installed program names
|
|---|
| 1157 | --program-suffix=SUFFIX append SUFFIX to installed program names
|
|---|
| 1158 | --program-transform-name=PROGRAM run sed PROGRAM on installed program names
|
|---|
| 1159 |
|
|---|
| 1160 | System types:
|
|---|
| 1161 | --build=BUILD configure for building on BUILD [guessed]
|
|---|
| 1162 | _ACEOF
|
|---|
| 1163 | fi
|
|---|
| 1164 |
|
|---|
| 1165 | if test -n "$ac_init_help"; then
|
|---|
| 1166 | case $ac_init_help in
|
|---|
| 1167 | short | recursive ) echo "Configuration of GNU Automake 1.9.6:";;
|
|---|
| 1168 | esac
|
|---|
| 1169 | cat <<\_ACEOF
|
|---|
| 1170 |
|
|---|
| 1171 | Report bugs to <[email protected]>.
|
|---|
| 1172 | _ACEOF
|
|---|
| 1173 | ac_status=$?
|
|---|
| 1174 | fi
|
|---|
| 1175 |
|
|---|
| 1176 | if test "$ac_init_help" = "recursive"; then
|
|---|
| 1177 | # If there are subdirs, report their specific --help.
|
|---|
| 1178 | for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
|
|---|
| 1179 | test -d $ac_dir || continue
|
|---|
| 1180 | ac_builddir=.
|
|---|
| 1181 |
|
|---|
| 1182 | case "$ac_dir" in
|
|---|
| 1183 | .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
|
|---|
| 1184 | *)
|
|---|
| 1185 | ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
|
|---|
| 1186 | # A ".." for each directory in $ac_dir_suffix.
|
|---|
| 1187 | ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
|
|---|
| 1188 | case $ac_top_builddir_sub in
|
|---|
| 1189 | "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
|
|---|
| 1190 | *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
|
|---|
| 1191 | esac ;;
|
|---|
| 1192 | esac
|
|---|
| 1193 | ac_abs_top_builddir=$ac_pwd
|
|---|
| 1194 | ac_abs_builddir=$ac_pwd$ac_dir_suffix
|
|---|
| 1195 | # for backward compatibility:
|
|---|
| 1196 | ac_top_builddir=$ac_top_build_prefix
|
|---|
| 1197 |
|
|---|
| 1198 | case $srcdir in
|
|---|
| 1199 | .) # No --srcdir option. We are building in place.
|
|---|
| 1200 | ac_srcdir=.
|
|---|
| 1201 | ac_top_srcdir=$ac_top_builddir_sub
|
|---|
| 1202 | ac_abs_top_srcdir=$ac_pwd ;;
|
|---|
| 1203 | [\\/]* | ?:[\\/]* ) # Absolute name.
|
|---|
| 1204 | ac_srcdir=$srcdir$ac_dir_suffix;
|
|---|
| 1205 | ac_top_srcdir=$srcdir
|
|---|
| 1206 | ac_abs_top_srcdir=$srcdir ;;
|
|---|
| 1207 | *) # Relative name.
|
|---|
| 1208 | ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
|
|---|
| 1209 | ac_top_srcdir=$ac_top_build_prefix$srcdir
|
|---|
| 1210 | ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
|
|---|
| 1211 | esac
|
|---|
| 1212 | ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
|
|---|
| 1213 |
|
|---|
| 1214 | cd $ac_dir || { ac_status=$?; continue; }
|
|---|
| 1215 | # Check for guested configure; otherwise get Cygnus style configure.
|
|---|
| 1216 | if test -f $ac_srcdir/configure.gnu; then
|
|---|
| 1217 | echo &&
|
|---|
| 1218 | $SHELL $ac_srcdir/configure.gnu --help=recursive
|
|---|
| 1219 | elif test -f $ac_srcdir/configure; then
|
|---|
| 1220 | echo &&
|
|---|
| 1221 | $SHELL $ac_srcdir/configure --help=recursive
|
|---|
| 1222 | elif test -f $ac_srcdir/configure.ac ||
|
|---|
| 1223 | test -f $ac_srcdir/configure.in; then
|
|---|
| 1224 | echo &&
|
|---|
| 1225 | $ac_configure --help
|
|---|
| 1226 | else
|
|---|
| 1227 | echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
|
|---|
| 1228 | fi || ac_status=$?
|
|---|
| 1229 | cd "$ac_pwd" || { ac_status=$?; break; }
|
|---|
| 1230 | done
|
|---|
| 1231 | fi
|
|---|
| 1232 |
|
|---|
| 1233 | test -n "$ac_init_help" && exit $ac_status
|
|---|
| 1234 | if $ac_init_version; then
|
|---|
| 1235 | cat <<\_ACEOF
|
|---|
| 1236 | GNU Automake configure 1.9.6
|
|---|
| 1237 | generated by GNU Autoconf 2.59c
|
|---|
| 1238 |
|
|---|
| 1239 | Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
|---|
| 1240 | 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
|---|
| 1241 | This configure script is free software; the Free Software Foundation
|
|---|
| 1242 | gives unlimited permission to copy, distribute and modify it.
|
|---|
| 1243 | _ACEOF
|
|---|
| 1244 | exit
|
|---|
| 1245 | fi
|
|---|
| 1246 | exec 5>config.log
|
|---|
| 1247 | cat >&5 <<_ACEOF
|
|---|
| 1248 | This file contains any messages produced by compilers while
|
|---|
| 1249 | running configure, to aid debugging if configure makes a mistake.
|
|---|
| 1250 |
|
|---|
| 1251 | It was created by GNU Automake $as_me 1.9.6, which was
|
|---|
| 1252 | generated by GNU Autoconf 2.59c. Invocation command line was
|
|---|
| 1253 |
|
|---|
| 1254 | $ $0 $@
|
|---|
| 1255 |
|
|---|
| 1256 | _ACEOF
|
|---|
| 1257 | {
|
|---|
| 1258 | cat <<_ASUNAME
|
|---|
| 1259 | ## --------- ##
|
|---|
| 1260 | ## Platform. ##
|
|---|
| 1261 | ## --------- ##
|
|---|
| 1262 |
|
|---|
| 1263 | hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
|
|---|
| 1264 | uname -m = `(uname -m) 2>/dev/null || echo unknown`
|
|---|
| 1265 | uname -r = `(uname -r) 2>/dev/null || echo unknown`
|
|---|
| 1266 | uname -s = `(uname -s) 2>/dev/null || echo unknown`
|
|---|
| 1267 | uname -v = `(uname -v) 2>/dev/null || echo unknown`
|
|---|
| 1268 |
|
|---|
| 1269 | /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
|
|---|
| 1270 | /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
|
|---|
| 1271 |
|
|---|
| 1272 | /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
|
|---|
| 1273 | /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
|
|---|
| 1274 | /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
|
|---|
| 1275 | /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown`
|
|---|
| 1276 | /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
|
|---|
| 1277 | /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
|
|---|
| 1278 | /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
|
|---|
| 1279 |
|
|---|
| 1280 | _ASUNAME
|
|---|
| 1281 |
|
|---|
| 1282 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
|---|
| 1283 | for as_dir in $PATH
|
|---|
| 1284 | do
|
|---|
| 1285 | IFS=$as_save_IFS
|
|---|
| 1286 | test -z "$as_dir" && as_dir=.
|
|---|
| 1287 | echo "PATH: $as_dir"
|
|---|
| 1288 | done
|
|---|
| 1289 |
|
|---|
| 1290 | } >&5
|
|---|
| 1291 |
|
|---|
| 1292 | cat >&5 <<_ACEOF
|
|---|
| 1293 |
|
|---|
| 1294 |
|
|---|
| 1295 | ## ----------- ##
|
|---|
| 1296 | ## Core tests. ##
|
|---|
| 1297 | ## ----------- ##
|
|---|
| 1298 |
|
|---|
| 1299 | _ACEOF
|
|---|
| 1300 |
|
|---|
| 1301 |
|
|---|
| 1302 | # Keep a trace of the command line.
|
|---|
| 1303 | # Strip out --no-create and --no-recursion so they do not pile up.
|
|---|
| 1304 | # Strip out --silent because we don't want to record it for future runs.
|
|---|
| 1305 | # Also quote any args containing shell meta-characters.
|
|---|
| 1306 | # Make two passes to allow for proper duplicate-argument suppression.
|
|---|
| 1307 | ac_configure_args=
|
|---|
| 1308 | ac_configure_args0=
|
|---|
| 1309 | ac_configure_args1=
|
|---|
| 1310 | ac_sep=
|
|---|
| 1311 | ac_must_keep_next=false
|
|---|
| 1312 | for ac_pass in 1 2
|
|---|
| 1313 | do
|
|---|
| 1314 | for ac_arg
|
|---|
| 1315 | do
|
|---|
| 1316 | case $ac_arg in
|
|---|
| 1317 | -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
|
|---|
| 1318 | -q | -quiet | --quiet | --quie | --qui | --qu | --q \
|
|---|
| 1319 | | -silent | --silent | --silen | --sile | --sil)
|
|---|
| 1320 | continue ;;
|
|---|
| 1321 | *" "*|*" "*|*[\\\[\~\#\$\^\&\*\(\)\{\}\|\;\<\>\?\"\']*|*\]*)
|
|---|
| 1322 | ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
|
|---|
| 1323 | esac
|
|---|
| 1324 | case $ac_pass in
|
|---|
| 1325 | 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
|
|---|
| 1326 | 2)
|
|---|
| 1327 | ac_configure_args1="$ac_configure_args1 '$ac_arg'"
|
|---|
| 1328 | if test $ac_must_keep_next = true; then
|
|---|
| 1329 | ac_must_keep_next=false # Got value, back to normal.
|
|---|
| 1330 | else
|
|---|
| 1331 | case $ac_arg in
|
|---|
| 1332 | *=* | --config-cache | -C | -disable-* | --disable-* \
|
|---|
| 1333 | | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
|
|---|
| 1334 | | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
|
|---|
| 1335 | | -with-* | --with-* | -without-* | --without-* | --x)
|
|---|
| 1336 | case "$ac_configure_args0 " in
|
|---|
| 1337 | "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
|
|---|
| 1338 | esac
|
|---|
| 1339 | ;;
|
|---|
| 1340 | -* ) ac_must_keep_next=true ;;
|
|---|
| 1341 | esac
|
|---|
| 1342 | fi
|
|---|
| 1343 | ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
|
|---|
| 1344 | # Get rid of the leading space.
|
|---|
| 1345 | ac_sep=" "
|
|---|
| 1346 | ;;
|
|---|
| 1347 | esac
|
|---|
| 1348 | done
|
|---|
| 1349 | done
|
|---|
| 1350 | $as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
|
|---|
| 1351 | $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
|
|---|
| 1352 |
|
|---|
| 1353 | # When interrupted or exit'd, cleanup temporary files, and complete
|
|---|
| 1354 | # config.log. We remove comments because anyway the quotes in there
|
|---|
| 1355 | # would cause problems or look ugly.
|
|---|
| 1356 | # WARNING: Be sure not to use single quotes in there, as some shells,
|
|---|
| 1357 | # such as our DU 5.0 friend, will then `close' the trap.
|
|---|
| 1358 | trap 'exit_status=$?
|
|---|
| 1359 | # Save into config.log some information that might help in debugging.
|
|---|
| 1360 | {
|
|---|
| 1361 | echo
|
|---|
| 1362 |
|
|---|
| 1363 | cat <<\_ASBOX
|
|---|
| 1364 | ## ---------------- ##
|
|---|
| 1365 | ## Cache variables. ##
|
|---|
| 1366 | ## ---------------- ##
|
|---|
| 1367 | _ASBOX
|
|---|
| 1368 | echo
|
|---|
| 1369 | # The following way of writing the cache mishandles newlines in values,
|
|---|
| 1370 | {
|
|---|
| 1371 | (set) 2>&1 |
|
|---|
| 1372 | case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
|
|---|
| 1373 | *ac_space=\ *)
|
|---|
| 1374 | sed -n \
|
|---|
| 1375 | "s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
|
|---|
| 1376 | s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
|
|---|
| 1377 | ;;
|
|---|
| 1378 | *)
|
|---|
| 1379 | sed -n \
|
|---|
| 1380 | "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
|
|---|
| 1381 | ;;
|
|---|
| 1382 | esac;
|
|---|
| 1383 | }
|
|---|
| 1384 | echo
|
|---|
| 1385 |
|
|---|
| 1386 | cat <<\_ASBOX
|
|---|
| 1387 | ## ----------------- ##
|
|---|
| 1388 | ## Output variables. ##
|
|---|
| 1389 | ## ----------------- ##
|
|---|
| 1390 | _ASBOX
|
|---|
| 1391 | echo
|
|---|
| 1392 | for ac_var in $ac_subst_vars
|
|---|
| 1393 | do
|
|---|
| 1394 | eval ac_val=\$$ac_var
|
|---|
| 1395 | echo "$ac_var='"'"'$ac_val'"'"'"
|
|---|
| 1396 | done | sort
|
|---|
| 1397 | echo
|
|---|
| 1398 |
|
|---|
| 1399 | if test -n "$ac_subst_files"; then
|
|---|
| 1400 | cat <<\_ASBOX
|
|---|
| 1401 | ## ------------------- ##
|
|---|
| 1402 | ## File substitutions. ##
|
|---|
| 1403 | ## ------------------- ##
|
|---|
| 1404 | _ASBOX
|
|---|
| 1405 | echo
|
|---|
| 1406 | for ac_var in $ac_subst_files
|
|---|
| 1407 | do
|
|---|
| 1408 | eval ac_val=\$$ac_var
|
|---|
| 1409 | echo "$ac_var='"'"'$ac_val'"'"'"
|
|---|
| 1410 | done | sort
|
|---|
| 1411 | echo
|
|---|
| 1412 | fi
|
|---|
| 1413 |
|
|---|
| 1414 | if test -s confdefs.h; then
|
|---|
| 1415 | cat <<\_ASBOX
|
|---|
| 1416 | ## ----------- ##
|
|---|
| 1417 | ## confdefs.h. ##
|
|---|
| 1418 | ## ----------- ##
|
|---|
| 1419 | _ASBOX
|
|---|
| 1420 | echo
|
|---|
| 1421 | sed "/^$/d" confdefs.h | sort
|
|---|
| 1422 | echo
|
|---|
| 1423 | fi
|
|---|
| 1424 | test "$ac_signal" != 0 &&
|
|---|
| 1425 | echo "$as_me: caught signal $ac_signal"
|
|---|
| 1426 | echo "$as_me: exit $exit_status"
|
|---|
| 1427 | } >&5
|
|---|
| 1428 | rm -f core *.core core.conftest.* &&
|
|---|
| 1429 | rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
|
|---|
| 1430 | exit $exit_status
|
|---|
| 1431 | ' 0
|
|---|
| 1432 | for ac_signal in 1 2 13 15; do
|
|---|
| 1433 | trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
|
|---|
| 1434 | done
|
|---|
| 1435 | ac_signal=0
|
|---|
| 1436 |
|
|---|
| 1437 | # confdefs.h avoids OS command line length limits that DEFS can exceed.
|
|---|
| 1438 | rm -f -r conftest* confdefs.h
|
|---|
| 1439 |
|
|---|
| 1440 | # Predefined preprocessor variables.
|
|---|
| 1441 |
|
|---|
| 1442 | cat >>confdefs.h <<_ACEOF
|
|---|
| 1443 | #define PACKAGE_NAME "$PACKAGE_NAME"
|
|---|
| 1444 | _ACEOF
|
|---|
| 1445 |
|
|---|
| 1446 |
|
|---|
| 1447 | cat >>confdefs.h <<_ACEOF
|
|---|
| 1448 | #define PACKAGE_TARNAME "$PACKAGE_TARNAME"
|
|---|
| 1449 | _ACEOF
|
|---|
| 1450 |
|
|---|
| 1451 |
|
|---|
| 1452 | cat >>confdefs.h <<_ACEOF
|
|---|
| 1453 | #define PACKAGE_VERSION "$PACKAGE_VERSION"
|
|---|
| 1454 | _ACEOF
|
|---|
| 1455 |
|
|---|
| 1456 |
|
|---|
| 1457 | cat >>confdefs.h <<_ACEOF
|
|---|
| 1458 | #define PACKAGE_STRING "$PACKAGE_STRING"
|
|---|
| 1459 | _ACEOF
|
|---|
| 1460 |
|
|---|
| 1461 |
|
|---|
| 1462 | cat >>confdefs.h <<_ACEOF
|
|---|
| 1463 | #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
|
|---|
| 1464 | _ACEOF
|
|---|
| 1465 |
|
|---|
| 1466 |
|
|---|
| 1467 | # Let the site file select an alternate cache file if it wants to.
|
|---|
| 1468 | # Prefer explicitly selected file to automatically selected ones.
|
|---|
| 1469 | if test -n "$CONFIG_SITE"; then
|
|---|
| 1470 | set x "$CONFIG_SITE"
|
|---|
| 1471 | elif test "x$prefix" != xNONE; then
|
|---|
| 1472 | set x "$prefix/share/config.site" "$prefix/etc/config.site"
|
|---|
| 1473 | else
|
|---|
| 1474 | set x "$ac_default_prefix/share/config.site" \
|
|---|
| 1475 | "$ac_default_prefix/etc/config.site"
|
|---|
| 1476 | fi
|
|---|
| 1477 | shift
|
|---|
| 1478 | for ac_site_file
|
|---|
| 1479 | do
|
|---|
| 1480 | if test -r "$ac_site_file"; then
|
|---|
| 1481 | { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
|
|---|
| 1482 | echo "$as_me: loading site script $ac_site_file" >&6;}
|
|---|
| 1483 | sed 's/^/| /' "$ac_site_file" >&5
|
|---|
| 1484 | . "$ac_site_file"
|
|---|
| 1485 | fi
|
|---|
| 1486 | done
|
|---|
| 1487 |
|
|---|
| 1488 | if test -r "$cache_file"; then
|
|---|
| 1489 | # Some versions of bash will fail to source /dev/null (special
|
|---|
| 1490 | # files actually), so we avoid doing that.
|
|---|
| 1491 | if test -f "$cache_file"; then
|
|---|
| 1492 | { echo "$as_me:$LINENO: loading cache $cache_file" >&5
|
|---|
| 1493 | echo "$as_me: loading cache $cache_file" >&6;}
|
|---|
| 1494 | case $cache_file in
|
|---|
| 1495 | [\\/]* | ?:[\\/]* ) . $cache_file;;
|
|---|
| 1496 | *) . ./$cache_file;;
|
|---|
| 1497 | esac
|
|---|
| 1498 | fi
|
|---|
| 1499 | else
|
|---|
| 1500 | { echo "$as_me:$LINENO: creating cache $cache_file" >&5
|
|---|
| 1501 | echo "$as_me: creating cache $cache_file" >&6;}
|
|---|
| 1502 | >$cache_file
|
|---|
| 1503 | fi
|
|---|
| 1504 |
|
|---|
| 1505 | # Check that the precious variables saved in the cache have kept the same
|
|---|
| 1506 | # value.
|
|---|
| 1507 | ac_cache_corrupted=false
|
|---|
| 1508 | for ac_var in $ac_precious_vars; do
|
|---|
| 1509 | eval ac_old_set=\$ac_cv_env_${ac_var}_set
|
|---|
| 1510 | eval ac_new_set=\$ac_env_${ac_var}_set
|
|---|
| 1511 | eval ac_old_val=\$ac_cv_env_${ac_var}_value
|
|---|
| 1512 | eval ac_new_val=\$ac_env_${ac_var}_value
|
|---|
| 1513 | case $ac_old_set,$ac_new_set in
|
|---|
| 1514 | set,)
|
|---|
| 1515 | { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
|
|---|
| 1516 | echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
|
|---|
| 1517 | ac_cache_corrupted=: ;;
|
|---|
| 1518 | ,set)
|
|---|
| 1519 | { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
|
|---|
| 1520 | echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
|
|---|
| 1521 | ac_cache_corrupted=: ;;
|
|---|
| 1522 | ,);;
|
|---|
| 1523 | *)
|
|---|
| 1524 | if test "x$ac_old_val" != "x$ac_new_val"; then
|
|---|
| 1525 | { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
|
|---|
| 1526 | echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
|
|---|
| 1527 | { echo "$as_me:$LINENO: former value: $ac_old_val" >&5
|
|---|
| 1528 | echo "$as_me: former value: $ac_old_val" >&2;}
|
|---|
| 1529 | { echo "$as_me:$LINENO: current value: $ac_new_val" >&5
|
|---|
| 1530 | echo "$as_me: current value: $ac_new_val" >&2;}
|
|---|
| 1531 | ac_cache_corrupted=:
|
|---|
| 1532 | fi;;
|
|---|
| 1533 | esac
|
|---|
| 1534 | # Pass precious variables to config.status.
|
|---|
| 1535 | if test "$ac_new_set" = set; then
|
|---|
| 1536 | case $ac_new_val in
|
|---|
| 1537 | *" "*|*" "*|*[\\\[\~\#\$\^\&\*\(\)\{\}\|\;\<\>\?\"\']*|*\]*)
|
|---|
| 1538 | ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
|
|---|
| 1539 | *) ac_arg=$ac_var=$ac_new_val ;;
|
|---|
| 1540 | esac
|
|---|
| 1541 | case " $ac_configure_args " in
|
|---|
| 1542 | *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
|
|---|
| 1543 | *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
|
|---|
| 1544 | esac
|
|---|
| 1545 | fi
|
|---|
| 1546 | done
|
|---|
| 1547 | if $ac_cache_corrupted; then
|
|---|
| 1548 | { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
|
|---|
| 1549 | echo "$as_me: error: changes in the environment can compromise the build" >&2;}
|
|---|
| 1550 | { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
|
|---|
| 1551 | echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
|
|---|
| 1552 | { (exit 1); exit 1; }; }
|
|---|
| 1553 | fi
|
|---|
| 1554 |
|
|---|
| 1555 |
|
|---|
| 1556 |
|
|---|
| 1557 |
|
|---|
| 1558 |
|
|---|
| 1559 |
|
|---|
| 1560 |
|
|---|
| 1561 |
|
|---|
| 1562 |
|
|---|
| 1563 |
|
|---|
| 1564 |
|
|---|
| 1565 |
|
|---|
| 1566 |
|
|---|
| 1567 |
|
|---|
| 1568 |
|
|---|
| 1569 |
|
|---|
| 1570 |
|
|---|
| 1571 |
|
|---|
| 1572 |
|
|---|
| 1573 |
|
|---|
| 1574 |
|
|---|
| 1575 |
|
|---|
| 1576 |
|
|---|
| 1577 |
|
|---|
| 1578 |
|
|---|
| 1579 | ac_ext=c
|
|---|
| 1580 | ac_cpp='$CPP $CPPFLAGS'
|
|---|
| 1581 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|---|
| 1582 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|---|
| 1583 | ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|---|
| 1584 |
|
|---|
| 1585 |
|
|---|
| 1586 |
|
|---|
| 1587 |
|
|---|
| 1588 | ac_aux_dir=
|
|---|
| 1589 | for ac_dir in lib $srcdir/lib; do
|
|---|
| 1590 | if test -f $ac_dir/install-sh; then
|
|---|
| 1591 | ac_aux_dir=$ac_dir
|
|---|
| 1592 | ac_install_sh="$ac_aux_dir/install-sh -c"
|
|---|
| 1593 | break
|
|---|
| 1594 | elif test -f $ac_dir/install.sh; then
|
|---|
| 1595 | ac_aux_dir=$ac_dir
|
|---|
| 1596 | ac_install_sh="$ac_aux_dir/install.sh -c"
|
|---|
| 1597 | break
|
|---|
| 1598 | elif test -f $ac_dir/shtool; then
|
|---|
| 1599 | ac_aux_dir=$ac_dir
|
|---|
| 1600 | ac_install_sh="$ac_aux_dir/shtool install -c"
|
|---|
| 1601 | break
|
|---|
| 1602 | fi
|
|---|
| 1603 | done
|
|---|
| 1604 | if test -z "$ac_aux_dir"; then
|
|---|
| 1605 | { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in lib $srcdir/lib" >&5
|
|---|
| 1606 | echo "$as_me: error: cannot find install-sh or install.sh in lib $srcdir/lib" >&2;}
|
|---|
| 1607 | { (exit 1); exit 1; }; }
|
|---|
| 1608 | fi
|
|---|
| 1609 | ac_config_guess="$SHELL $ac_aux_dir/config.guess"
|
|---|
| 1610 | ac_config_sub="$SHELL $ac_aux_dir/config.sub"
|
|---|
| 1611 | ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
|
|---|
| 1612 |
|
|---|
| 1613 |
|
|---|
| 1614 | # Make sure we can run config.sub.
|
|---|
| 1615 | $ac_config_sub sun4 >/dev/null 2>&1 ||
|
|---|
| 1616 | { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5
|
|---|
| 1617 | echo "$as_me: error: cannot run $ac_config_sub" >&2;}
|
|---|
| 1618 | { (exit 1); exit 1; }; }
|
|---|
| 1619 |
|
|---|
| 1620 | { echo "$as_me:$LINENO: checking build system type" >&5
|
|---|
| 1621 | echo $ECHO_N "checking build system type... $ECHO_C" >&6; }
|
|---|
| 1622 | if test "${ac_cv_build+set}" = set; then
|
|---|
| 1623 | echo $ECHO_N "(cached) $ECHO_C" >&6
|
|---|
| 1624 | else
|
|---|
| 1625 | ac_build_alias=$build_alias
|
|---|
| 1626 | test "x$ac_build_alias" = x &&
|
|---|
| 1627 | ac_build_alias=`$ac_config_guess`
|
|---|
| 1628 | test "x$ac_build_alias" = x &&
|
|---|
| 1629 | { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
|
|---|
| 1630 | echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
|
|---|
| 1631 | { (exit 1); exit 1; }; }
|
|---|
| 1632 | ac_cv_build=`$ac_config_sub $ac_build_alias` ||
|
|---|
| 1633 | { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_build_alias failed" >&5
|
|---|
| 1634 | echo "$as_me: error: $ac_config_sub $ac_build_alias failed" >&2;}
|
|---|
| 1635 | { (exit 1); exit 1; }; }
|
|---|
| 1636 |
|
|---|
| 1637 | fi
|
|---|
| 1638 | { echo "$as_me:$LINENO: result: $ac_cv_build" >&5
|
|---|
| 1639 | echo "${ECHO_T}$ac_cv_build" >&6; }
|
|---|
| 1640 | build=$ac_cv_build
|
|---|
| 1641 | ac_save_IFS=$IFS; IFS='-'
|
|---|
| 1642 | set x $ac_cv_build
|
|---|
| 1643 | shift
|
|---|
| 1644 | IFS=$ac_save_IFS
|
|---|
| 1645 |
|
|---|
| 1646 | build_cpu=$1
|
|---|
| 1647 | build_vendor=$2
|
|---|
| 1648 | build_os=$3
|
|---|
| 1649 | case $# in
|
|---|
| 1650 | 0|1|2) ;;
|
|---|
| 1651 | *)
|
|---|
| 1652 | shift; shift; shift
|
|---|
| 1653 | for ac_arg
|
|---|
| 1654 | do build_os=$build_os-$ac_arg
|
|---|
| 1655 | done;;
|
|---|
| 1656 | esac
|
|---|
| 1657 |
|
|---|
| 1658 |
|
|---|
| 1659 |
|
|---|
| 1660 | # Save the AUTOCONF setting before AM_INIT_AUTOMAKE overrides it; this
|
|---|
| 1661 | # way we can run Autoconf tests from configure (or from the test
|
|---|
| 1662 | # suite) without being bothered by `missing'.
|
|---|
| 1663 | am_AUTOCONF="${AUTOCONF-autoconf}"
|
|---|
| 1664 |
|
|---|
| 1665 |
|
|---|
| 1666 | am__api_version="1.9"
|
|---|
| 1667 | # Find a good install program. We prefer a C program (faster),
|
|---|
| 1668 | # so one script is as good as another. But avoid the broken or
|
|---|
| 1669 | # incompatible versions:
|
|---|
| 1670 | # SysV /etc/install, /usr/sbin/install
|
|---|
| 1671 | # SunOS /usr/etc/install
|
|---|
| 1672 | # IRIX /sbin/install
|
|---|
| 1673 | # AIX /bin/install
|
|---|
| 1674 | # AmigaOS /C/install, which installs bootblocks on floppy discs
|
|---|
| 1675 | # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
|
|---|
| 1676 | # AFS /usr/afsws/bin/install, which mishandles nonexistent args
|
|---|
| 1677 | # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
|
|---|
| 1678 | # OS/2's system install, which has a completely different semantic
|
|---|
| 1679 | # ./install, which can be erroneously created by make from ./install.sh.
|
|---|
| 1680 | { echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
|
|---|
| 1681 | echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; }
|
|---|
| 1682 | if test -z "$INSTALL"; then
|
|---|
| 1683 | if test "${ac_cv_path_install+set}" = set; then
|
|---|
| 1684 | echo $ECHO_N "(cached) $ECHO_C" >&6
|
|---|
| 1685 | else
|
|---|
| 1686 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
|---|
| 1687 | for as_dir in $PATH
|
|---|
| 1688 | do
|
|---|
| 1689 | IFS=$as_save_IFS
|
|---|
| 1690 | test -z "$as_dir" && as_dir=.
|
|---|
| 1691 | # Account for people who put trailing slashes in PATH elements.
|
|---|
| 1692 | case $as_dir/ in
|
|---|
| 1693 | ./ | .// | /cC/* | \
|
|---|
| 1694 | /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
|
|---|
| 1695 | ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
|
|---|
| 1696 | /usr/ucb/* ) ;;
|
|---|
| 1697 | *)
|
|---|
| 1698 | # OSF1 and SCO ODT 3.0 have their own names for install.
|
|---|
| 1699 | # Don't use installbsd from OSF since it installs stuff as root
|
|---|
| 1700 | # by default.
|
|---|
| 1701 | for ac_prog in ginstall scoinst install; do
|
|---|
| 1702 | for ac_exec_ext in '' $ac_executable_extensions; do
|
|---|
| 1703 | if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; }; then
|
|---|
| 1704 | if test $ac_prog = install &&
|
|---|
| 1705 | grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
|
|---|
| 1706 | # AIX install. It has an incompatible calling convention.
|
|---|
| 1707 | :
|
|---|
| 1708 | elif test $ac_prog = install &&
|
|---|
| 1709 | grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
|
|---|
| 1710 | # program-specific install script used by HP pwplus--don't use.
|
|---|
| 1711 | :
|
|---|
| 1712 | else
|
|---|
| 1713 | ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
|
|---|
| 1714 | break 3
|
|---|
| 1715 | fi
|
|---|
| 1716 | fi
|
|---|
| 1717 | done
|
|---|
| 1718 | done
|
|---|
| 1719 | ;;
|
|---|
| 1720 | esac
|
|---|
| 1721 | done
|
|---|
| 1722 |
|
|---|
| 1723 |
|
|---|
| 1724 | fi
|
|---|
| 1725 | if test "${ac_cv_path_install+set}" = set; then
|
|---|
| 1726 | INSTALL=$ac_cv_path_install
|
|---|
| 1727 | else
|
|---|
| 1728 | # As a last resort, use the slow shell script. Don't cache a
|
|---|
| 1729 | # value for INSTALL within a source directory, because that will
|
|---|
| 1730 | # break other packages using the cache if that directory is
|
|---|
| 1731 | # removed, or if the value is a relative name.
|
|---|
| 1732 | INSTALL=$ac_install_sh
|
|---|
| 1733 | fi
|
|---|
| 1734 | fi
|
|---|
| 1735 | { echo "$as_me:$LINENO: result: $INSTALL" >&5
|
|---|
| 1736 | echo "${ECHO_T}$INSTALL" >&6; }
|
|---|
| 1737 |
|
|---|
| 1738 | # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
|
|---|
| 1739 | # It thinks the first close brace ends the variable substitution.
|
|---|
| 1740 | test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
|
|---|
| 1741 |
|
|---|
| 1742 | test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
|
|---|
| 1743 |
|
|---|
| 1744 | test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
|
|---|
| 1745 |
|
|---|
| 1746 | { echo "$as_me:$LINENO: checking whether build environment is sane" >&5
|
|---|
| 1747 | echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; }
|
|---|
| 1748 | # Just in case
|
|---|
| 1749 | sleep 1
|
|---|
| 1750 | echo timestamp > conftest.file
|
|---|
| 1751 | # Do `set' in a subshell so we don't clobber the current shell's
|
|---|
| 1752 | # arguments. Must try -L first in case configure is actually a
|
|---|
| 1753 | # symlink; some systems play weird games with the mod time of symlinks
|
|---|
| 1754 | # (eg FreeBSD returns the mod time of the symlink's containing
|
|---|
| 1755 | # directory).
|
|---|
| 1756 | if (
|
|---|
| 1757 | set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
|
|---|
| 1758 | if test "$*" = "X"; then
|
|---|
| 1759 | # -L didn't work.
|
|---|
| 1760 | set X `ls -t $srcdir/configure conftest.file`
|
|---|
| 1761 | fi
|
|---|
| 1762 | rm -f conftest.file
|
|---|
| 1763 | if test "$*" != "X $srcdir/configure conftest.file" \
|
|---|
| 1764 | && test "$*" != "X conftest.file $srcdir/configure"; then
|
|---|
| 1765 |
|
|---|
| 1766 | # If neither matched, then we have a broken ls. This can happen
|
|---|
| 1767 | # if, for instance, CONFIG_SHELL is bash and it inherits a
|
|---|
| 1768 | # broken ls alias from the environment. This has actually
|
|---|
| 1769 | # happened. Such a system could not be considered "sane".
|
|---|
| 1770 | { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken
|
|---|
| 1771 | alias in your environment" >&5
|
|---|
| 1772 | echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken
|
|---|
| 1773 | alias in your environment" >&2;}
|
|---|
| 1774 | { (exit 1); exit 1; }; }
|
|---|
| 1775 | fi
|
|---|
| 1776 |
|
|---|
| 1777 | test "$2" = conftest.file
|
|---|
| 1778 | )
|
|---|
| 1779 | then
|
|---|
| 1780 | # Ok.
|
|---|
| 1781 | :
|
|---|
| 1782 | else
|
|---|
| 1783 | { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
|
|---|
| 1784 | Check your system clock" >&5
|
|---|
| 1785 | echo "$as_me: error: newly created file is older than distributed files!
|
|---|
| 1786 | Check your system clock" >&2;}
|
|---|
| 1787 | { (exit 1); exit 1; }; }
|
|---|
| 1788 | fi
|
|---|
| 1789 | { echo "$as_me:$LINENO: result: yes" >&5
|
|---|
| 1790 | echo "${ECHO_T}yes" >&6; }
|
|---|
| 1791 | test "$program_prefix" != NONE &&
|
|---|
| 1792 | program_transform_name="s&^&$program_prefix&;$program_transform_name"
|
|---|
| 1793 | # Use a double $ so make ignores it.
|
|---|
| 1794 | test "$program_suffix" != NONE &&
|
|---|
| 1795 | program_transform_name="s&\$&$program_suffix&;$program_transform_name"
|
|---|
| 1796 | # Double any \ or $. echo might interpret backslashes.
|
|---|
| 1797 | # By default was `s,x,x', remove it if useless.
|
|---|
| 1798 | cat <<\_ACEOF >conftest.sed
|
|---|
| 1799 | s/[\\$]/&&/g;s/;s,x,x,$//
|
|---|
| 1800 | _ACEOF
|
|---|
| 1801 | program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
|
|---|
| 1802 | rm -f conftest.sed
|
|---|
| 1803 |
|
|---|
| 1804 | # expand $ac_aux_dir to an absolute path
|
|---|
| 1805 | am_aux_dir=`cd $ac_aux_dir && pwd`
|
|---|
| 1806 |
|
|---|
| 1807 | test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
|
|---|
| 1808 | # Use eval to expand $SHELL
|
|---|
| 1809 | if eval "$MISSING --run true"; then
|
|---|
| 1810 | am_missing_run="$MISSING --run "
|
|---|
| 1811 | else
|
|---|
| 1812 | am_missing_run=
|
|---|
| 1813 | { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
|
|---|
| 1814 | echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
|
|---|
| 1815 | fi
|
|---|
| 1816 |
|
|---|
| 1817 | if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
|
|---|
| 1818 | # We used to keeping the `.' as first argument, in order to
|
|---|
| 1819 | # allow $(mkdir_p) to be used without argument. As in
|
|---|
| 1820 | # $(mkdir_p) $(somedir)
|
|---|
| 1821 | # where $(somedir) is conditionally defined. However this is wrong
|
|---|
| 1822 | # for two reasons:
|
|---|
| 1823 | # 1. if the package is installed by a user who cannot write `.'
|
|---|
| 1824 | # make install will fail,
|
|---|
| 1825 | # 2. the above comment should most certainly read
|
|---|
| 1826 | # $(mkdir_p) $(DESTDIR)$(somedir)
|
|---|
| 1827 | # so it does not work when $(somedir) is undefined and
|
|---|
| 1828 | # $(DESTDIR) is not.
|
|---|
| 1829 | # To support the latter case, we have to write
|
|---|
| 1830 | # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
|
|---|
| 1831 | # so the `.' trick is pointless.
|
|---|
| 1832 | mkdir_p='mkdir -p --'
|
|---|
| 1833 | else
|
|---|
| 1834 | # On NextStep and OpenStep, the `mkdir' command does not
|
|---|
| 1835 | # recognize any option. It will interpret all options as
|
|---|
| 1836 | # directories to create, and then abort because `.' already
|
|---|
| 1837 | # exists.
|
|---|
| 1838 | for d in ./-p ./--version;
|
|---|
| 1839 | do
|
|---|
| 1840 | test -d $d && rmdir $d
|
|---|
| 1841 | done
|
|---|
| 1842 | # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
|
|---|
| 1843 | if test -f "$ac_aux_dir/mkinstalldirs"; then
|
|---|
| 1844 | mkdir_p='$(mkinstalldirs)'
|
|---|
| 1845 | else
|
|---|
| 1846 | mkdir_p='$(install_sh) -d'
|
|---|
| 1847 | fi
|
|---|
| 1848 | fi
|
|---|
| 1849 |
|
|---|
| 1850 | for ac_prog in gawk mawk nawk awk
|
|---|
| 1851 | do
|
|---|
| 1852 | # Extract the first word of "$ac_prog", so it can be a program name with args.
|
|---|
| 1853 | set dummy $ac_prog; ac_word=$2
|
|---|
| 1854 | { echo "$as_me:$LINENO: checking for $ac_word" >&5
|
|---|
| 1855 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
|
|---|
| 1856 | if test "${ac_cv_prog_AWK+set}" = set; then
|
|---|
| 1857 | echo $ECHO_N "(cached) $ECHO_C" >&6
|
|---|
| 1858 | else
|
|---|
| 1859 | if test -n "$AWK"; then
|
|---|
| 1860 | ac_cv_prog_AWK="$AWK" # Let the user override the test.
|
|---|
| 1861 | else
|
|---|
| 1862 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
|---|
| 1863 | for as_dir in $PATH
|
|---|
| 1864 | do
|
|---|
| 1865 | IFS=$as_save_IFS
|
|---|
| 1866 | test -z "$as_dir" && as_dir=.
|
|---|
| 1867 | for ac_exec_ext in '' $ac_executable_extensions; do
|
|---|
| 1868 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
|
|---|
| 1869 | ac_cv_prog_AWK="$ac_prog"
|
|---|
| 1870 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
|---|
| 1871 | break 2
|
|---|
| 1872 | fi
|
|---|
| 1873 | done
|
|---|
| 1874 | done
|
|---|
| 1875 |
|
|---|
| 1876 | fi
|
|---|
| 1877 | fi
|
|---|
| 1878 | AWK=$ac_cv_prog_AWK
|
|---|
| 1879 | if test -n "$AWK"; then
|
|---|
| 1880 | { echo "$as_me:$LINENO: result: $AWK" >&5
|
|---|
| 1881 | echo "${ECHO_T}$AWK" >&6; }
|
|---|
| 1882 | else
|
|---|
| 1883 | { echo "$as_me:$LINENO: result: no" >&5
|
|---|
| 1884 | echo "${ECHO_T}no" >&6; }
|
|---|
| 1885 | fi
|
|---|
| 1886 |
|
|---|
| 1887 | test -n "$AWK" && break
|
|---|
| 1888 | done
|
|---|
| 1889 |
|
|---|
| 1890 | { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
|
|---|
| 1891 | echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; }
|
|---|
| 1892 | set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'`
|
|---|
|
|---|