1#! /bin/sh 2# Guess values for system-dependent variables and create Makefiles. 3# Generated by GNU Autoconf 2.69 for ELFIOTest 3.9. 4# 5# 6# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. 7# 8# 9# This configure script is free software; the Free Software Foundation 10# gives unlimited permission to copy, distribute and modify it. 11## -------------------- ## 12## M4sh Initialization. ## 13## -------------------- ## 14 15# Be more Bourne compatible 16DUALCASE=1; export DUALCASE # for MKS sh 17if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 18 emulate sh 19 NULLCMD=: 20 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 21 # is contrary to our usage. Disable this feature. 22 alias -g '${1+"$@"}'='"$@"' 23 setopt NO_GLOB_SUBST 24else 25 case `(set -o) 2>/dev/null` in #( 26 *posix*) : 27 set -o posix ;; #( 28 *) : 29 ;; 30esac 31fi 32 33 34as_nl=' 35' 36export as_nl 37# Printing a long string crashes Solaris 7 /usr/bin/printf. 38as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' 39as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo 40as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo 41# Prefer a ksh shell builtin over an external printf program on Solaris, 42# but without wasting forks for bash or zsh. 43if test -z "$BASH_VERSION$ZSH_VERSION" \ 44 && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then 45 as_echo='print -r --' 46 as_echo_n='print -rn --' 47elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then 48 as_echo='printf %s\n' 49 as_echo_n='printf %s' 50else 51 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then 52 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' 53 as_echo_n='/usr/ucb/echo -n' 54 else 55 as_echo_body='eval expr "X$1" : "X\\(.*\\)"' 56 as_echo_n_body='eval 57 arg=$1; 58 case $arg in #( 59 *"$as_nl"*) 60 expr "X$arg" : "X\\(.*\\)$as_nl"; 61 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; 62 esac; 63 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" 64 ' 65 export as_echo_n_body 66 as_echo_n='sh -c $as_echo_n_body as_echo' 67 fi 68 export as_echo_body 69 as_echo='sh -c $as_echo_body as_echo' 70fi 71 72# The user is always right. 73if test "${PATH_SEPARATOR+set}" != set; then 74 PATH_SEPARATOR=: 75 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { 76 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || 77 PATH_SEPARATOR=';' 78 } 79fi 80 81 82# IFS 83# We need space, tab and new line, in precisely that order. Quoting is 84# there to prevent editors from complaining about space-tab. 85# (If _AS_PATH_WALK were called with IFS unset, it would disable word 86# splitting by setting IFS to empty value.) 87IFS=" "" $as_nl" 88 89# Find who we are. Look in the path if we contain no directory separator. 90as_myself= 91case $0 in #(( 92 *[\\/]* ) as_myself=$0 ;; 93 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 94for as_dir in $PATH 95do 96 IFS=$as_save_IFS 97 test -z "$as_dir" && as_dir=. 98 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break 99 done 100IFS=$as_save_IFS 101 102 ;; 103esac 104# We did not find ourselves, most probably we were run as `sh COMMAND' 105# in which case we are not to be found in the path. 106if test "x$as_myself" = x; then 107 as_myself=$0 108fi 109if test ! -f "$as_myself"; then 110 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 111 exit 1 112fi 113 114# Unset variables that we do not need and which cause bugs (e.g. in 115# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" 116# suppresses any "Segmentation fault" message there. '((' could 117# trigger a bug in pdksh 5.2.14. 118for as_var in BASH_ENV ENV MAIL MAILPATH 119do eval test x\${$as_var+set} = xset \ 120 && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : 121done 122PS1='$ ' 123PS2='> ' 124PS4='+ ' 125 126# NLS nuisances. 127LC_ALL=C 128export LC_ALL 129LANGUAGE=C 130export LANGUAGE 131 132# CDPATH. 133(unset CDPATH) >/dev/null 2>&1 && unset CDPATH 134 135# Use a proper internal environment variable to ensure we don't fall 136 # into an infinite loop, continuously re-executing ourselves. 137 if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then 138 _as_can_reexec=no; export _as_can_reexec; 139 # We cannot yet assume a decent shell, so we have to provide a 140# neutralization value for shells without unset; and this also 141# works around shells that cannot unset nonexistent variables. 142# Preserve -v and -x to the replacement shell. 143BASH_ENV=/dev/null 144ENV=/dev/null 145(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV 146case $- in # (((( 147 *v*x* | *x*v* ) as_opts=-vx ;; 148 *v* ) as_opts=-v ;; 149 *x* ) as_opts=-x ;; 150 * ) as_opts= ;; 151esac 152exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} 153# Admittedly, this is quite paranoid, since all the known shells bail 154# out after a failed `exec'. 155$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 156as_fn_exit 255 157 fi 158 # We don't want this to propagate to other subprocesses. 159 { _as_can_reexec=; unset _as_can_reexec;} 160if test "x$CONFIG_SHELL" = x; then 161 as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : 162 emulate sh 163 NULLCMD=: 164 # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which 165 # is contrary to our usage. Disable this feature. 166 alias -g '\${1+\"\$@\"}'='\"\$@\"' 167 setopt NO_GLOB_SUBST 168else 169 case \`(set -o) 2>/dev/null\` in #( 170 *posix*) : 171 set -o posix ;; #( 172 *) : 173 ;; 174esac 175fi 176" 177 as_required="as_fn_return () { (exit \$1); } 178as_fn_success () { as_fn_return 0; } 179as_fn_failure () { as_fn_return 1; } 180as_fn_ret_success () { return 0; } 181as_fn_ret_failure () { return 1; } 182 183exitcode=0 184as_fn_success || { exitcode=1; echo as_fn_success failed.; } 185as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } 186as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } 187as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } 188if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : 189 190else 191 exitcode=1; echo positional parameters were not saved. 192fi 193test x\$exitcode = x0 || exit 1 194test -x / || exit 1" 195 as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO 196 as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO 197 eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && 198 test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1" 199 if (eval "$as_required") 2>/dev/null; then : 200 as_have_required=yes 201else 202 as_have_required=no 203fi 204 if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : 205 206else 207 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 208as_found=false 209for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH 210do 211 IFS=$as_save_IFS 212 test -z "$as_dir" && as_dir=. 213 as_found=: 214 case $as_dir in #( 215 /*) 216 for as_base in sh bash ksh sh5; do 217 # Try only shells that exist, to save several forks. 218 as_shell=$as_dir/$as_base 219 if { test -f "$as_shell" || test -f "$as_shell.exe"; } && 220 { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : 221 CONFIG_SHELL=$as_shell as_have_required=yes 222 if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : 223 break 2 224fi 225fi 226 done;; 227 esac 228 as_found=false 229done 230$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && 231 { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : 232 CONFIG_SHELL=$SHELL as_have_required=yes 233fi; } 234IFS=$as_save_IFS 235 236 237 if test "x$CONFIG_SHELL" != x; then : 238 export CONFIG_SHELL 239 # We cannot yet assume a decent shell, so we have to provide a 240# neutralization value for shells without unset; and this also 241# works around shells that cannot unset nonexistent variables. 242# Preserve -v and -x to the replacement shell. 243BASH_ENV=/dev/null 244ENV=/dev/null 245(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV 246case $- in # (((( 247 *v*x* | *x*v* ) as_opts=-vx ;; 248 *v* ) as_opts=-v ;; 249 *x* ) as_opts=-x ;; 250 * ) as_opts= ;; 251esac 252exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} 253# Admittedly, this is quite paranoid, since all the known shells bail 254# out after a failed `exec'. 255$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 256exit 255 257fi 258 259 if test x$as_have_required = xno; then : 260 $as_echo "$0: This script requires a shell more modern than all" 261 $as_echo "$0: the shells that I found on your system." 262 if test x${ZSH_VERSION+set} = xset ; then 263 $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" 264 $as_echo "$0: be upgraded to zsh 4.3.4 or later." 265 else 266 $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, 267$0: including any error possibly output before this 268$0: message. Then install a modern shell, or manually run 269$0: the script under such a shell if you do have one." 270 fi 271 exit 1 272fi 273fi 274fi 275SHELL=${CONFIG_SHELL-/bin/sh} 276export SHELL 277# Unset more variables known to interfere with behavior of common tools. 278CLICOLOR_FORCE= GREP_OPTIONS= 279unset CLICOLOR_FORCE GREP_OPTIONS 280 281## --------------------- ## 282## M4sh Shell Functions. ## 283## --------------------- ## 284# as_fn_unset VAR 285# --------------- 286# Portably unset VAR. 287as_fn_unset () 288{ 289 { eval $1=; unset $1;} 290} 291as_unset=as_fn_unset 292 293# as_fn_set_status STATUS 294# ----------------------- 295# Set $? to STATUS, without forking. 296as_fn_set_status () 297{ 298 return $1 299} # as_fn_set_status 300 301# as_fn_exit STATUS 302# ----------------- 303# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. 304as_fn_exit () 305{ 306 set +e 307 as_fn_set_status $1 308 exit $1 309} # as_fn_exit 310 311# as_fn_mkdir_p 312# ------------- 313# Create "$as_dir" as a directory, including parents if necessary. 314as_fn_mkdir_p () 315{ 316 317 case $as_dir in #( 318 -*) as_dir=./$as_dir;; 319 esac 320 test -d "$as_dir" || eval $as_mkdir_p || { 321 as_dirs= 322 while :; do 323 case $as_dir in #( 324 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( 325 *) as_qdir=$as_dir;; 326 esac 327 as_dirs="'$as_qdir' $as_dirs" 328 as_dir=`$as_dirname -- "$as_dir" || 329$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 330 X"$as_dir" : 'X\(//\)[^/]' \| \ 331 X"$as_dir" : 'X\(//\)$' \| \ 332 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || 333$as_echo X"$as_dir" | 334 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 335 s//\1/ 336 q 337 } 338 /^X\(\/\/\)[^/].*/{ 339 s//\1/ 340 q 341 } 342 /^X\(\/\/\)$/{ 343 s//\1/ 344 q 345 } 346 /^X\(\/\).*/{ 347 s//\1/ 348 q 349 } 350 s/.*/./; q'` 351 test -d "$as_dir" && break 352 done 353 test -z "$as_dirs" || eval "mkdir $as_dirs" 354 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" 355 356 357} # as_fn_mkdir_p 358 359# as_fn_executable_p FILE 360# ----------------------- 361# Test if FILE is an executable regular file. 362as_fn_executable_p () 363{ 364 test -f "$1" && test -x "$1" 365} # as_fn_executable_p 366# as_fn_append VAR VALUE 367# ---------------------- 368# Append the text in VALUE to the end of the definition contained in VAR. Take 369# advantage of any shell optimizations that allow amortized linear growth over 370# repeated appends, instead of the typical quadratic growth present in naive 371# implementations. 372if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : 373 eval 'as_fn_append () 374 { 375 eval $1+=\$2 376 }' 377else 378 as_fn_append () 379 { 380 eval $1=\$$1\$2 381 } 382fi # as_fn_append 383 384# as_fn_arith ARG... 385# ------------------ 386# Perform arithmetic evaluation on the ARGs, and store the result in the 387# global $as_val. Take advantage of shells that can avoid forks. The arguments 388# must be portable across $(()) and expr. 389if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : 390 eval 'as_fn_arith () 391 { 392 as_val=$(( $* )) 393 }' 394else 395 as_fn_arith () 396 { 397 as_val=`expr "$@" || test $? -eq 1` 398 } 399fi # as_fn_arith 400 401 402# as_fn_error STATUS ERROR [LINENO LOG_FD] 403# ---------------------------------------- 404# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are 405# provided, also output the error to LOG_FD, referencing LINENO. Then exit the 406# script with STATUS, using 1 if that was 0. 407as_fn_error () 408{ 409 as_status=$1; test $as_status -eq 0 && as_status=1 410 if test "$4"; then 411 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 412 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 413 fi 414 $as_echo "$as_me: error: $2" >&2 415 as_fn_exit $as_status 416} # as_fn_error 417 418if expr a : '\(a\)' >/dev/null 2>&1 && 419 test "X`expr 00001 : '.*\(...\)'`" = X001; then 420 as_expr=expr 421else 422 as_expr=false 423fi 424 425if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then 426 as_basename=basename 427else 428 as_basename=false 429fi 430 431if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then 432 as_dirname=dirname 433else 434 as_dirname=false 435fi 436 437as_me=`$as_basename -- "$0" || 438$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ 439 X"$0" : 'X\(//\)$' \| \ 440 X"$0" : 'X\(/\)' \| . 2>/dev/null || 441$as_echo X/"$0" | 442 sed '/^.*\/\([^/][^/]*\)\/*$/{ 443 s//\1/ 444 q 445 } 446 /^X\/\(\/\/\)$/{ 447 s//\1/ 448 q 449 } 450 /^X\/\(\/\).*/{ 451 s//\1/ 452 q 453 } 454 s/.*/./; q'` 455 456# Avoid depending upon Character Ranges. 457as_cr_letters='abcdefghijklmnopqrstuvwxyz' 458as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' 459as_cr_Letters=$as_cr_letters$as_cr_LETTERS 460as_cr_digits='0123456789' 461as_cr_alnum=$as_cr_Letters$as_cr_digits 462 463 464 as_lineno_1=$LINENO as_lineno_1a=$LINENO 465 as_lineno_2=$LINENO as_lineno_2a=$LINENO 466 eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && 467 test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { 468 # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) 469 sed -n ' 470 p 471 /[$]LINENO/= 472 ' <$as_myself | 473 sed ' 474 s/[$]LINENO.*/&-/ 475 t lineno 476 b 477 :lineno 478 N 479 :loop 480 s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ 481 t loop 482 s/-\n.*// 483 ' >$as_me.lineno && 484 chmod +x "$as_me.lineno" || 485 { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } 486 487 # If we had to re-execute with $CONFIG_SHELL, we're ensured to have 488 # already done that, so ensure we don't try to do so again and fall 489 # in an infinite loop. This has already happened in practice. 490 _as_can_reexec=no; export _as_can_reexec 491 # Don't try to exec as it changes $[0], causing all sort of problems 492 # (the dirname of $[0] is not the place where we might find the 493 # original and so on. Autoconf is especially sensitive to this). 494 . "./$as_me.lineno" 495 # Exit status is that of the last command. 496 exit 497} 498 499ECHO_C= ECHO_N= ECHO_T= 500case `echo -n x` in #((((( 501-n*) 502 case `echo 'xy\c'` in 503 *c*) ECHO_T=' ';; # ECHO_T is single tab character. 504 xy) ECHO_C='\c';; 505 *) echo `echo ksh88 bug on AIX 6.1` > /dev/null 506 ECHO_T=' ';; 507 esac;; 508*) 509 ECHO_N='-n';; 510esac 511 512rm -f conf$$ conf$$.exe conf$$.file 513if test -d conf$$.dir; then 514 rm -f conf$$.dir/conf$$.file 515else 516 rm -f conf$$.dir 517 mkdir conf$$.dir 2>/dev/null 518fi 519if (echo >conf$$.file) 2>/dev/null; then 520 if ln -s conf$$.file conf$$ 2>/dev/null; then 521 as_ln_s='ln -s' 522 # ... but there are two gotchas: 523 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. 524 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. 525 # In both cases, we have to default to `cp -pR'. 526 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || 527 as_ln_s='cp -pR' 528 elif ln conf$$.file conf$$ 2>/dev/null; then 529 as_ln_s=ln 530 else 531 as_ln_s='cp -pR' 532 fi 533else 534 as_ln_s='cp -pR' 535fi 536rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file 537rmdir conf$$.dir 2>/dev/null 538 539if mkdir -p . 2>/dev/null; then 540 as_mkdir_p='mkdir -p "$as_dir"' 541else 542 test -d ./-p && rmdir ./-p 543 as_mkdir_p=false 544fi 545 546as_test_x='test -x' 547as_executable_p=as_fn_executable_p 548 549# Sed expression to map a string onto a valid CPP name. 550as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" 551 552# Sed expression to map a string onto a valid variable name. 553as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" 554 555 556test -n "$DJDIR" || exec 7<&0 </dev/null 557exec 6>&1 558 559# Name of the host. 560# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, 561# so uname gets run too. 562ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` 563 564# 565# Initializations. 566# 567ac_default_prefix=/usr/local 568ac_clean_files= 569ac_config_libobj_dir=. 570LIBOBJS= 571cross_compiling=no 572subdirs= 573MFLAGS= 574MAKEFLAGS= 575 576# Identity of this package. 577PACKAGE_NAME='ELFIOTest' 578PACKAGE_TARNAME='elfiotest' 579PACKAGE_VERSION='3.9' 580PACKAGE_STRING='ELFIOTest 3.9' 581PACKAGE_BUGREPORT='' 582PACKAGE_URL='' 583 584ac_subst_vars='am__EXEEXT_FALSE 585am__EXEEXT_TRUE 586LTLIBOBJS 587LIBOBJS 588am__fastdepCXX_FALSE 589am__fastdepCXX_TRUE 590CXXDEPMODE 591am__nodep 592AMDEPBACKSLASH 593AMDEP_FALSE 594AMDEP_TRUE 595am__include 596DEPDIR 597OBJEXT 598EXEEXT 599ac_ct_CXX 600CPPFLAGS 601LDFLAGS 602CXXFLAGS 603CXX 604AM_BACKSLASH 605AM_DEFAULT_VERBOSITY 606AM_DEFAULT_V 607AM_V 608am__untar 609am__tar 610AMTAR 611am__leading_dot 612SET_MAKE 613AWK 614mkdir_p 615MKDIR_P 616INSTALL_STRIP_PROGRAM 617STRIP 618install_sh 619MAKEINFO 620AUTOHEADER 621AUTOMAKE 622AUTOCONF 623ACLOCAL 624VERSION 625PACKAGE 626CYGPATH_W 627am__isrc 628INSTALL_DATA 629INSTALL_SCRIPT 630INSTALL_PROGRAM 631target_alias 632host_alias 633build_alias 634LIBS 635ECHO_T 636ECHO_N 637ECHO_C 638DEFS 639mandir 640localedir 641libdir 642psdir 643pdfdir 644dvidir 645htmldir 646infodir 647docdir 648oldincludedir 649includedir 650runstatedir 651localstatedir 652sharedstatedir 653sysconfdir 654datadir 655datarootdir 656libexecdir 657sbindir 658bindir 659program_transform_name 660prefix 661exec_prefix 662PACKAGE_URL 663PACKAGE_BUGREPORT 664PACKAGE_STRING 665PACKAGE_VERSION 666PACKAGE_TARNAME 667PACKAGE_NAME 668PATH_SEPARATOR 669SHELL 670am__quote' 671ac_subst_files='' 672ac_user_opts=' 673enable_option_checking 674enable_silent_rules 675enable_dependency_tracking 676' 677 ac_precious_vars='build_alias 678host_alias 679target_alias 680CXX 681CXXFLAGS 682LDFLAGS 683LIBS 684CPPFLAGS 685CCC' 686 687 688# Initialize some variables set by options. 689ac_init_help= 690ac_init_version=false 691ac_unrecognized_opts= 692ac_unrecognized_sep= 693# The variables have the same names as the options, with 694# dashes changed to underlines. 695cache_file=/dev/null 696exec_prefix=NONE 697no_create= 698no_recursion= 699prefix=NONE 700program_prefix=NONE 701program_suffix=NONE 702program_transform_name=s,x,x, 703silent= 704site= 705srcdir= 706verbose= 707x_includes=NONE 708x_libraries=NONE 709 710# Installation directory options. 711# These are left unexpanded so users can "make install exec_prefix=/foo" 712# and all the variables that are supposed to be based on exec_prefix 713# by default will actually change. 714# Use braces instead of parens because sh, perl, etc. also accept them. 715# (The list follows the same order as the GNU Coding Standards.) 716bindir='${exec_prefix}/bin' 717sbindir='${exec_prefix}/sbin' 718libexecdir='${exec_prefix}/libexec' 719datarootdir='${prefix}/share' 720datadir='${datarootdir}' 721sysconfdir='${prefix}/etc' 722sharedstatedir='${prefix}/com' 723localstatedir='${prefix}/var' 724runstatedir='${localstatedir}/run' 725includedir='${prefix}/include' 726oldincludedir='/usr/include' 727docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' 728infodir='${datarootdir}/info' 729htmldir='${docdir}' 730dvidir='${docdir}' 731pdfdir='${docdir}' 732psdir='${docdir}' 733libdir='${exec_prefix}/lib' 734localedir='${datarootdir}/locale' 735mandir='${datarootdir}/man' 736 737ac_prev= 738ac_dashdash= 739for ac_option 740do 741 # If the previous option needs an argument, assign it. 742 if test -n "$ac_prev"; then 743 eval $ac_prev=\$ac_option 744 ac_prev= 745 continue 746 fi 747 748 case $ac_option in 749 *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; 750 *=) ac_optarg= ;; 751 *) ac_optarg=yes ;; 752 esac 753 754 # Accept the important Cygnus configure options, so we can diagnose typos. 755 756 case $ac_dashdash$ac_option in 757 --) 758 ac_dashdash=yes ;; 759 760 -bindir | --bindir | --bindi | --bind | --bin | --bi) 761 ac_prev=bindir ;; 762 -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) 763 bindir=$ac_optarg ;; 764 765 -build | --build | --buil | --bui | --bu) 766 ac_prev=build_alias ;; 767 -build=* | --build=* | --buil=* | --bui=* | --bu=*) 768 build_alias=$ac_optarg ;; 769 770 -cache-file | --cache-file | --cache-fil | --cache-fi \ 771 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) 772 ac_prev=cache_file ;; 773 -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ 774 | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) 775 cache_file=$ac_optarg ;; 776 777 --config-cache | -C) 778 cache_file=config.cache ;; 779 780 -datadir | --datadir | --datadi | --datad) 781 ac_prev=datadir ;; 782 -datadir=* | --datadir=* | --datadi=* | --datad=*) 783 datadir=$ac_optarg ;; 784 785 -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ 786 | --dataroo | --dataro | --datar) 787 ac_prev=datarootdir ;; 788 -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ 789 | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) 790 datarootdir=$ac_optarg ;; 791 792 -disable-* | --disable-*) 793 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` 794 # Reject names that are not valid shell variable names. 795 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 796 as_fn_error $? "invalid feature name: $ac_useropt" 797 ac_useropt_orig=$ac_useropt 798 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 799 case $ac_user_opts in 800 *" 801"enable_$ac_useropt" 802"*) ;; 803 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" 804 ac_unrecognized_sep=', ';; 805 esac 806 eval enable_$ac_useropt=no ;; 807 808 -docdir | --docdir | --docdi | --doc | --do) 809 ac_prev=docdir ;; 810 -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) 811 docdir=$ac_optarg ;; 812 813 -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) 814 ac_prev=dvidir ;; 815 -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) 816 dvidir=$ac_optarg ;; 817 818 -enable-* | --enable-*) 819 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` 820 # Reject names that are not valid shell variable names. 821 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 822 as_fn_error $? "invalid feature name: $ac_useropt" 823 ac_useropt_orig=$ac_useropt 824 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 825 case $ac_user_opts in 826 *" 827"enable_$ac_useropt" 828"*) ;; 829 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" 830 ac_unrecognized_sep=', ';; 831 esac 832 eval enable_$ac_useropt=\$ac_optarg ;; 833 834 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ 835 | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ 836 | --exec | --exe | --ex) 837 ac_prev=exec_prefix ;; 838 -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ 839 | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ 840 | --exec=* | --exe=* | --ex=*) 841 exec_prefix=$ac_optarg ;; 842 843 -gas | --gas | --ga | --g) 844 # Obsolete; use --with-gas. 845 with_gas=yes ;; 846 847 -help | --help | --hel | --he | -h) 848 ac_init_help=long ;; 849 -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) 850 ac_init_help=recursive ;; 851 -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) 852 ac_init_help=short ;; 853 854 -host | --host | --hos | --ho) 855 ac_prev=host_alias ;; 856 -host=* | --host=* | --hos=* | --ho=*) 857 host_alias=$ac_optarg ;; 858 859 -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) 860 ac_prev=htmldir ;; 861 -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ 862 | --ht=*) 863 htmldir=$ac_optarg ;; 864 865 -includedir | --includedir | --includedi | --included | --include \ 866 | --includ | --inclu | --incl | --inc) 867 ac_prev=includedir ;; 868 -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ 869 | --includ=* | --inclu=* | --incl=* | --inc=*) 870 includedir=$ac_optarg ;; 871 872 -infodir | --infodir | --infodi | --infod | --info | --inf) 873 ac_prev=infodir ;; 874 -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) 875 infodir=$ac_optarg ;; 876 877 -libdir | --libdir | --libdi | --libd) 878 ac_prev=libdir ;; 879 -libdir=* | --libdir=* | --libdi=* | --libd=*) 880 libdir=$ac_optarg ;; 881 882 -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ 883 | --libexe | --libex | --libe) 884 ac_prev=libexecdir ;; 885 -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ 886 | --libexe=* | --libex=* | --libe=*) 887 libexecdir=$ac_optarg ;; 888 889 -localedir | --localedir | --localedi | --localed | --locale) 890 ac_prev=localedir ;; 891 -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) 892 localedir=$ac_optarg ;; 893 894 -localstatedir | --localstatedir | --localstatedi | --localstated \ 895 | --localstate | --localstat | --localsta | --localst | --locals) 896 ac_prev=localstatedir ;; 897 -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ 898 | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) 899 localstatedir=$ac_optarg ;; 900 901 -mandir | --mandir | --mandi | --mand | --man | --ma | --m) 902 ac_prev=mandir ;; 903 -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) 904 mandir=$ac_optarg ;; 905 906 -nfp | --nfp | --nf) 907 # Obsolete; use --without-fp. 908 with_fp=no ;; 909 910 -no-create | --no-create | --no-creat | --no-crea | --no-cre \ 911 | --no-cr | --no-c | -n) 912 no_create=yes ;; 913 914 -no-recursion | --no-recursion | --no-recursio | --no-recursi \ 915 | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) 916 no_recursion=yes ;; 917 918 -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ 919 | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ 920 | --oldin | --oldi | --old | --ol | --o) 921 ac_prev=oldincludedir ;; 922 -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ 923 | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ 924 | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) 925 oldincludedir=$ac_optarg ;; 926 927 -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) 928 ac_prev=prefix ;; 929 -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) 930 prefix=$ac_optarg ;; 931 932 -program-prefix | --program-prefix | --program-prefi | --program-pref \ 933 | --program-pre | --program-pr | --program-p) 934 ac_prev=program_prefix ;; 935 -program-prefix=* | --program-prefix=* | --program-prefi=* \ 936 | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) 937 program_prefix=$ac_optarg ;; 938 939 -program-suffix | --program-suffix | --program-suffi | --program-suff \ 940 | --program-suf | --program-su | --program-s) 941 ac_prev=program_suffix ;; 942 -program-suffix=* | --program-suffix=* | --program-suffi=* \ 943 | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) 944 program_suffix=$ac_optarg ;; 945 946 -program-transform-name | --program-transform-name \ 947 | --program-transform-nam | --program-transform-na \ 948 | --program-transform-n | --program-transform- \ 949 | --program-transform | --program-transfor \ 950 | --program-transfo | --program-transf \ 951 | --program-trans | --program-tran \ 952 | --progr-tra | --program-tr | --program-t) 953 ac_prev=program_transform_name ;; 954 -program-transform-name=* | --program-transform-name=* \ 955 | --program-transform-nam=* | --program-transform-na=* \ 956 | --program-transform-n=* | --program-transform-=* \ 957 | --program-transform=* | --program-transfor=* \ 958 | --program-transfo=* | --program-transf=* \ 959 | --program-trans=* | --program-tran=* \ 960 | --progr-tra=* | --program-tr=* | --program-t=*) 961 program_transform_name=$ac_optarg ;; 962 963 -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) 964 ac_prev=pdfdir ;; 965 -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) 966 pdfdir=$ac_optarg ;; 967 968 -psdir | --psdir | --psdi | --psd | --ps) 969 ac_prev=psdir ;; 970 -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) 971 psdir=$ac_optarg ;; 972 973 -q | -quiet | --quiet | --quie | --qui | --qu | --q \ 974 | -silent | --silent | --silen | --sile | --sil) 975 silent=yes ;; 976 977 -runstatedir | --runstatedir | --runstatedi | --runstated \ 978 | --runstate | --runstat | --runsta | --runst | --runs \ 979 | --run | --ru | --r) 980 ac_prev=runstatedir ;; 981 -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ 982 | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ 983 | --run=* | --ru=* | --r=*) 984 runstatedir=$ac_optarg ;; 985 986 -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) 987 ac_prev=sbindir ;; 988 -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ 989 | --sbi=* | --sb=*) 990 sbindir=$ac_optarg ;; 991 992 -sharedstatedir | --sharedstatedir | --sharedstatedi \ 993 | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ 994 | --sharedst | --shareds | --shared | --share | --shar \ 995 | --sha | --sh) 996 ac_prev=sharedstatedir ;; 997 -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ 998 | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ 999 | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ 1000 | --sha=* | --sh=*) 1001 sharedstatedir=$ac_optarg ;; 1002 1003 -site | --site | --sit) 1004 ac_prev=site ;; 1005 -site=* | --site=* | --sit=*) 1006 site=$ac_optarg ;; 1007 1008 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) 1009 ac_prev=srcdir ;; 1010 -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) 1011 srcdir=$ac_optarg ;; 1012 1013 -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ 1014 | --syscon | --sysco | --sysc | --sys | --sy) 1015 ac_prev=sysconfdir ;; 1016 -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ 1017 | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) 1018 sysconfdir=$ac_optarg ;; 1019 1020 -target | --target | --targe | --targ | --tar | --ta | --t) 1021 ac_prev=target_alias ;; 1022 -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) 1023 target_alias=$ac_optarg ;; 1024 1025 -v | -verbose | --verbose | --verbos | --verbo | --verb) 1026 verbose=yes ;; 1027 1028 -version | --version | --versio | --versi | --vers | -V) 1029 ac_init_version=: ;; 1030 1031 -with-* | --with-*) 1032 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` 1033 # Reject names that are not valid shell variable names. 1034 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1035 as_fn_error $? "invalid package name: $ac_useropt" 1036 ac_useropt_orig=$ac_useropt 1037 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1038 case $ac_user_opts in 1039 *" 1040"with_$ac_useropt" 1041"*) ;; 1042 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" 1043 ac_unrecognized_sep=', ';; 1044 esac 1045 eval with_$ac_useropt=\$ac_optarg ;; 1046 1047 -without-* | --without-*) 1048 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` 1049 # Reject names that are not valid shell variable names. 1050 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1051 as_fn_error $? "invalid package name: $ac_useropt" 1052 ac_useropt_orig=$ac_useropt 1053 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1054 case $ac_user_opts in 1055 *" 1056"with_$ac_useropt" 1057"*) ;; 1058 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" 1059 ac_unrecognized_sep=', ';; 1060 esac 1061 eval with_$ac_useropt=no ;; 1062 1063 --x) 1064 # Obsolete; use --with-x. 1065 with_x=yes ;; 1066 1067 -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ 1068 | --x-incl | --x-inc | --x-in | --x-i) 1069 ac_prev=x_includes ;; 1070 -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ 1071 | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) 1072 x_includes=$ac_optarg ;; 1073 1074 -x-libraries | --x-libraries | --x-librarie | --x-librari \ 1075 | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) 1076 ac_prev=x_libraries ;; 1077 -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ 1078 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) 1079 x_libraries=$ac_optarg ;; 1080 1081 -*) as_fn_error $? "unrecognized option: \`$ac_option' 1082Try \`$0 --help' for more information" 1083 ;; 1084 1085 *=*) 1086 ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` 1087 # Reject names that are not valid shell variable names. 1088 case $ac_envvar in #( 1089 '' | [0-9]* | *[!_$as_cr_alnum]* ) 1090 as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; 1091 esac 1092 eval $ac_envvar=\$ac_optarg 1093 export $ac_envvar ;; 1094 1095 *) 1096 # FIXME: should be removed in autoconf 3.0. 1097 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 1098 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && 1099 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 1100 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" 1101 ;; 1102 1103 esac 1104done 1105 1106if test -n "$ac_prev"; then 1107 ac_option=--`echo $ac_prev | sed 's/_/-/g'` 1108 as_fn_error $? "missing argument to $ac_option" 1109fi 1110 1111if test -n "$ac_unrecognized_opts"; then 1112 case $enable_option_checking in 1113 no) ;; 1114 fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; 1115 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; 1116 esac 1117fi 1118 1119# Check all directory arguments for consistency. 1120for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ 1121 datadir sysconfdir sharedstatedir localstatedir includedir \ 1122 oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ 1123 libdir localedir mandir runstatedir 1124do 1125 eval ac_val=\$$ac_var 1126 # Remove trailing slashes. 1127 case $ac_val in 1128 */ ) 1129 ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` 1130 eval $ac_var=\$ac_val;; 1131 esac 1132 # Be sure to have absolute directory names. 1133 case $ac_val in 1134 [\\/$]* | ?:[\\/]* ) continue;; 1135 NONE | '' ) case $ac_var in *prefix ) continue;; esac;; 1136 esac 1137 as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" 1138done 1139 1140# There might be people who depend on the old broken behavior: `$host' 1141# used to hold the argument of --host etc. 1142# FIXME: To remove some day. 1143build=$build_alias 1144host=$host_alias 1145target=$target_alias 1146 1147# FIXME: To remove some day. 1148if test "x$host_alias" != x; then 1149 if test "x$build_alias" = x; then 1150 cross_compiling=maybe 1151 elif test "x$build_alias" != "x$host_alias"; then 1152 cross_compiling=yes 1153 fi 1154fi 1155 1156ac_tool_prefix= 1157test -n "$host_alias" && ac_tool_prefix=$host_alias- 1158 1159test "$silent" = yes && exec 6>/dev/null 1160 1161 1162ac_pwd=`pwd` && test -n "$ac_pwd" && 1163ac_ls_di=`ls -di .` && 1164ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || 1165 as_fn_error $? "working directory cannot be determined" 1166test "X$ac_ls_di" = "X$ac_pwd_ls_di" || 1167 as_fn_error $? "pwd does not report name of working directory" 1168 1169 1170# Find the source files, if location was not specified. 1171if test -z "$srcdir"; then 1172 ac_srcdir_defaulted=yes 1173 # Try the directory containing this script, then the parent directory. 1174 ac_confdir=`$as_dirname -- "$as_myself" || 1175$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 1176 X"$as_myself" : 'X\(//\)[^/]' \| \ 1177 X"$as_myself" : 'X\(//\)$' \| \ 1178 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || 1179$as_echo X"$as_myself" | 1180 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 1181 s//\1/ 1182 q 1183 } 1184 /^X\(\/\/\)[^/].*/{ 1185 s//\1/ 1186 q 1187 } 1188 /^X\(\/\/\)$/{ 1189 s//\1/ 1190 q 1191 } 1192 /^X\(\/\).*/{ 1193 s//\1/ 1194 q 1195 } 1196 s/.*/./; q'` 1197 srcdir=$ac_confdir 1198 if test ! -r "$srcdir/$ac_unique_file"; then 1199 srcdir=.. 1200 fi 1201else 1202 ac_srcdir_defaulted=no 1203fi 1204if test ! -r "$srcdir/$ac_unique_file"; then 1205 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." 1206 as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" 1207fi 1208ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" 1209ac_abs_confdir=`( 1210 cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" 1211 pwd)` 1212# When building in place, set srcdir=. 1213if test "$ac_abs_confdir" = "$ac_pwd"; then 1214 srcdir=. 1215fi 1216# Remove unnecessary trailing slashes from srcdir. 1217# Double slashes in file names in object file debugging info 1218# mess up M-x gdb in Emacs. 1219case $srcdir in 1220*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; 1221esac 1222for ac_var in $ac_precious_vars; do 1223 eval ac_env_${ac_var}_set=\${${ac_var}+set} 1224 eval ac_env_${ac_var}_value=\$${ac_var} 1225 eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} 1226 eval ac_cv_env_${ac_var}_value=\$${ac_var} 1227done 1228 1229# 1230# Report the --help message. 1231# 1232if test "$ac_init_help" = "long"; then 1233 # Omit some internal or obsolete options to make the list less imposing. 1234 # This message is too long to be a string in the A/UX 3.1 sh. 1235 cat <<_ACEOF 1236\`configure' configures ELFIOTest 3.9 to adapt to many kinds of systems. 1237 1238Usage: $0 [OPTION]... [VAR=VALUE]... 1239 1240To assign environment variables (e.g., CC, CFLAGS...), specify them as 1241VAR=VALUE. See below for descriptions of some of the useful variables. 1242 1243Defaults for the options are specified in brackets. 1244 1245Configuration: 1246 -h, --help display this help and exit 1247 --help=short display options specific to this package 1248 --help=recursive display the short help of all the included packages 1249 -V, --version display version information and exit 1250 -q, --quiet, --silent do not print \`checking ...' messages 1251 --cache-file=FILE cache test results in FILE [disabled] 1252 -C, --config-cache alias for \`--cache-file=config.cache' 1253 -n, --no-create do not create output files 1254 --srcdir=DIR find the sources in DIR [configure dir or \`..'] 1255 1256Installation directories: 1257 --prefix=PREFIX install architecture-independent files in PREFIX 1258 [$ac_default_prefix] 1259 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX 1260 [PREFIX] 1261 1262By default, \`make install' will install all the files in 1263\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify 1264an installation prefix other than \`$ac_default_prefix' using \`--prefix', 1265for instance \`--prefix=\$HOME'. 1266 1267For better control, use the options below. 1268 1269Fine tuning of the installation directories: 1270 --bindir=DIR user executables [EPREFIX/bin] 1271 --sbindir=DIR system admin executables [EPREFIX/sbin] 1272 --libexecdir=DIR program executables [EPREFIX/libexec] 1273 --sysconfdir=DIR read-only single-machine data [PREFIX/etc] 1274 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] 1275 --localstatedir=DIR modifiable single-machine data [PREFIX/var] 1276 --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] 1277 --libdir=DIR object code libraries [EPREFIX/lib] 1278 --includedir=DIR C header files [PREFIX/include] 1279 --oldincludedir=DIR C header files for non-gcc [/usr/include] 1280 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] 1281 --datadir=DIR read-only architecture-independent data [DATAROOTDIR] 1282 --infodir=DIR info documentation [DATAROOTDIR/info] 1283 --localedir=DIR locale-dependent data [DATAROOTDIR/locale] 1284 --mandir=DIR man documentation [DATAROOTDIR/man] 1285 --docdir=DIR documentation root [DATAROOTDIR/doc/elfiotest] 1286 --htmldir=DIR html documentation [DOCDIR] 1287 --dvidir=DIR dvi documentation [DOCDIR] 1288 --pdfdir=DIR pdf documentation [DOCDIR] 1289 --psdir=DIR ps documentation [DOCDIR] 1290_ACEOF 1291 1292 cat <<\_ACEOF 1293 1294Program names: 1295 --program-prefix=PREFIX prepend PREFIX to installed program names 1296 --program-suffix=SUFFIX append SUFFIX to installed program names 1297 --program-transform-name=PROGRAM run sed PROGRAM on installed program names 1298_ACEOF 1299fi 1300 1301if test -n "$ac_init_help"; then 1302 case $ac_init_help in 1303 short | recursive ) echo "Configuration of ELFIOTest 3.9:";; 1304 esac 1305 cat <<\_ACEOF 1306 1307Optional Features: 1308 --disable-option-checking ignore unrecognized --enable/--with options 1309 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1310 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1311 --enable-silent-rules less verbose build output (undo: "make V=1") 1312 --disable-silent-rules verbose build output (undo: "make V=0") 1313 --enable-dependency-tracking 1314 do not reject slow dependency extractors 1315 --disable-dependency-tracking 1316 speeds up one-time build 1317 1318Some influential environment variables: 1319 CXX C++ compiler command 1320 CXXFLAGS C++ compiler flags 1321 LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a 1322 nonstandard directory <lib dir> 1323 LIBS libraries to pass to the linker, e.g. -l<library> 1324 CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if 1325 you have headers in a nonstandard directory <include dir> 1326 1327Use these variables to override the choices made by `configure' or to help 1328it to find libraries and programs with nonstandard names/locations. 1329 1330Report bugs to the package provider. 1331_ACEOF 1332ac_status=$? 1333fi 1334 1335if test "$ac_init_help" = "recursive"; then 1336 # If there are subdirs, report their specific --help. 1337 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue 1338 test -d "$ac_dir" || 1339 { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || 1340 continue 1341 ac_builddir=. 1342 1343case "$ac_dir" in 1344.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; 1345*) 1346 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` 1347 # A ".." for each directory in $ac_dir_suffix. 1348 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` 1349 case $ac_top_builddir_sub in 1350 "") ac_top_builddir_sub=. ac_top_build_prefix= ;; 1351 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; 1352 esac ;; 1353esac 1354ac_abs_top_builddir=$ac_pwd 1355ac_abs_builddir=$ac_pwd$ac_dir_suffix 1356# for backward compatibility: 1357ac_top_builddir=$ac_top_build_prefix 1358 1359case $srcdir in 1360 .) # We are building in place. 1361 ac_srcdir=. 1362 ac_top_srcdir=$ac_top_builddir_sub 1363 ac_abs_top_srcdir=$ac_pwd ;; 1364 [\\/]* | ?:[\\/]* ) # Absolute name. 1365 ac_srcdir=$srcdir$ac_dir_suffix; 1366 ac_top_srcdir=$srcdir 1367 ac_abs_top_srcdir=$srcdir ;; 1368 *) # Relative name. 1369 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix 1370 ac_top_srcdir=$ac_top_build_prefix$srcdir 1371 ac_abs_top_srcdir=$ac_pwd/$srcdir ;; 1372esac 1373ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix 1374 1375 cd "$ac_dir" || { ac_status=$?; continue; } 1376 # Check for guested configure. 1377 if test -f "$ac_srcdir/configure.gnu"; then 1378 echo && 1379 $SHELL "$ac_srcdir/configure.gnu" --help=recursive 1380 elif test -f "$ac_srcdir/configure"; then 1381 echo && 1382 $SHELL "$ac_srcdir/configure" --help=recursive 1383 else 1384 $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 1385 fi || ac_status=$? 1386 cd "$ac_pwd" || { ac_status=$?; break; } 1387 done 1388fi 1389 1390test -n "$ac_init_help" && exit $ac_status 1391if $ac_init_version; then 1392 cat <<\_ACEOF 1393ELFIOTest configure 3.9 1394generated by GNU Autoconf 2.69 1395 1396Copyright (C) 2012 Free Software Foundation, Inc. 1397This configure script is free software; the Free Software Foundation 1398gives unlimited permission to copy, distribute and modify it. 1399_ACEOF 1400 exit 1401fi 1402 1403## ------------------------ ## 1404## Autoconf initialization. ## 1405## ------------------------ ## 1406 1407# ac_fn_cxx_try_compile LINENO 1408# ---------------------------- 1409# Try to compile conftest.$ac_ext, and return whether this succeeded. 1410ac_fn_cxx_try_compile () 1411{ 1412 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1413 rm -f conftest.$ac_objext 1414 if { { ac_try="$ac_compile" 1415case "(($ac_try" in 1416 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 1417 *) ac_try_echo=$ac_try;; 1418esac 1419eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 1420$as_echo "$ac_try_echo"; } >&5 1421 (eval "$ac_compile") 2>conftest.err 1422 ac_status=$? 1423 if test -s conftest.err; then 1424 grep -v '^ *+' conftest.err >conftest.er1 1425 cat conftest.er1 >&5 1426 mv -f conftest.er1 conftest.err 1427 fi 1428 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 1429 test $ac_status = 0; } && { 1430 test -z "$ac_cxx_werror_flag" || 1431 test ! -s conftest.err 1432 } && test -s conftest.$ac_objext; then : 1433 ac_retval=0 1434else 1435 $as_echo "$as_me: failed program was:" >&5 1436sed 's/^/| /' conftest.$ac_ext >&5 1437 1438 ac_retval=1 1439fi 1440 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno 1441 as_fn_set_status $ac_retval 1442 1443} # ac_fn_cxx_try_compile 1444cat >config.log <<_ACEOF 1445This file contains any messages produced by compilers while 1446running configure, to aid debugging if configure makes a mistake. 1447 1448It was created by ELFIOTest $as_me 3.9, which was 1449generated by GNU Autoconf 2.69. Invocation command line was 1450 1451 $ $0 $@ 1452 1453_ACEOF 1454exec 5>>config.log 1455{ 1456cat <<_ASUNAME 1457## --------- ## 1458## Platform. ## 1459## --------- ## 1460 1461hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` 1462uname -m = `(uname -m) 2>/dev/null || echo unknown` 1463uname -r = `(uname -r) 2>/dev/null || echo unknown` 1464uname -s = `(uname -s) 2>/dev/null || echo unknown` 1465uname -v = `(uname -v) 2>/dev/null || echo unknown` 1466 1467/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` 1468/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` 1469 1470/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` 1471/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` 1472/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` 1473/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` 1474/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` 1475/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` 1476/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` 1477 1478_ASUNAME 1479 1480as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 1481for as_dir in $PATH 1482do 1483 IFS=$as_save_IFS 1484 test -z "$as_dir" && as_dir=. 1485 $as_echo "PATH: $as_dir" 1486 done 1487IFS=$as_save_IFS 1488 1489} >&5 1490 1491cat >&5 <<_ACEOF 1492 1493 1494## ----------- ## 1495## Core tests. ## 1496## ----------- ## 1497 1498_ACEOF 1499 1500 1501# Keep a trace of the command line. 1502# Strip out --no-create and --no-recursion so they do not pile up. 1503# Strip out --silent because we don't want to record it for future runs. 1504# Also quote any args containing shell meta-characters. 1505# Make two passes to allow for proper duplicate-argument suppression. 1506ac_configure_args= 1507ac_configure_args0= 1508ac_configure_args1= 1509ac_must_keep_next=false 1510for ac_pass in 1 2 1511do 1512 for ac_arg 1513 do 1514 case $ac_arg in 1515 -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; 1516 -q | -quiet | --quiet | --quie | --qui | --qu | --q \ 1517 | -silent | --silent | --silen | --sile | --sil) 1518 continue ;; 1519 *\'*) 1520 ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; 1521 esac 1522 case $ac_pass in 1523 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 1524 2) 1525 as_fn_append ac_configure_args1 " '$ac_arg'" 1526 if test $ac_must_keep_next = true; then 1527 ac_must_keep_next=false # Got value, back to normal. 1528 else 1529 case $ac_arg in 1530 *=* | --config-cache | -C | -disable-* | --disable-* \ 1531 | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ 1532 | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ 1533 | -with-* | --with-* | -without-* | --without-* | --x) 1534 case "$ac_configure_args0 " in 1535 "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; 1536 esac 1537 ;; 1538 -* ) ac_must_keep_next=true ;; 1539 esac 1540 fi 1541 as_fn_append ac_configure_args " '$ac_arg'" 1542 ;; 1543 esac 1544 done 1545done 1546{ ac_configure_args0=; unset ac_configure_args0;} 1547{ ac_configure_args1=; unset ac_configure_args1;} 1548 1549# When interrupted or exit'd, cleanup temporary files, and complete 1550# config.log. We remove comments because anyway the quotes in there 1551# would cause problems or look ugly. 1552# WARNING: Use '\'' to represent an apostrophe within the trap. 1553# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. 1554trap 'exit_status=$? 1555 # Save into config.log some information that might help in debugging. 1556 { 1557 echo 1558 1559 $as_echo "## ---------------- ## 1560## Cache variables. ## 1561## ---------------- ##" 1562 echo 1563 # The following way of writing the cache mishandles newlines in values, 1564( 1565 for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do 1566 eval ac_val=\$$ac_var 1567 case $ac_val in #( 1568 *${as_nl}*) 1569 case $ac_var in #( 1570 *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 1571$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; 1572 esac 1573 case $ac_var in #( 1574 _ | IFS | as_nl) ;; #( 1575 BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( 1576 *) { eval $ac_var=; unset $ac_var;} ;; 1577 esac ;; 1578 esac 1579 done 1580 (set) 2>&1 | 1581 case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( 1582 *${as_nl}ac_space=\ *) 1583 sed -n \ 1584 "s/'\''/'\''\\\\'\'''\''/g; 1585 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" 1586 ;; #( 1587 *) 1588 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" 1589 ;; 1590 esac | 1591 sort 1592) 1593 echo 1594 1595 $as_echo "## ----------------- ## 1596## Output variables. ## 1597## ----------------- ##" 1598 echo 1599 for ac_var in $ac_subst_vars 1600 do 1601 eval ac_val=\$$ac_var 1602 case $ac_val in 1603 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; 1604 esac 1605 $as_echo "$ac_var='\''$ac_val'\''" 1606 done | sort 1607 echo 1608 1609 if test -n "$ac_subst_files"; then 1610 $as_echo "## ------------------- ## 1611## File substitutions. ## 1612## ------------------- ##" 1613 echo 1614 for ac_var in $ac_subst_files 1615 do 1616 eval ac_val=\$$ac_var 1617 case $ac_val in 1618 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; 1619 esac 1620 $as_echo "$ac_var='\''$ac_val'\''" 1621 done | sort 1622 echo 1623 fi 1624 1625 if test -s confdefs.h; then 1626 $as_echo "## ----------- ## 1627## confdefs.h. ## 1628## ----------- ##" 1629 echo 1630 cat confdefs.h 1631 echo 1632 fi 1633 test "$ac_signal" != 0 && 1634 $as_echo "$as_me: caught signal $ac_signal" 1635 $as_echo "$as_me: exit $exit_status" 1636 } >&5 1637 rm -f core *.core core.conftest.* && 1638 rm -f -r conftest* confdefs* conf$$* $ac_clean_files && 1639 exit $exit_status 1640' 0 1641for ac_signal in 1 2 13 15; do 1642 trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal 1643done 1644ac_signal=0 1645 1646# confdefs.h avoids OS command line length limits that DEFS can exceed. 1647rm -f -r conftest* confdefs.h 1648 1649$as_echo "/* confdefs.h */" > confdefs.h 1650 1651# Predefined preprocessor variables. 1652 1653cat >>confdefs.h <<_ACEOF 1654#define PACKAGE_NAME "$PACKAGE_NAME" 1655_ACEOF 1656 1657cat >>confdefs.h <<_ACEOF 1658#define PACKAGE_TARNAME "$PACKAGE_TARNAME" 1659_ACEOF 1660 1661cat >>confdefs.h <<_ACEOF 1662#define PACKAGE_VERSION "$PACKAGE_VERSION" 1663_ACEOF 1664 1665cat >>confdefs.h <<_ACEOF 1666#define PACKAGE_STRING "$PACKAGE_STRING" 1667_ACEOF 1668 1669cat >>confdefs.h <<_ACEOF 1670#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" 1671_ACEOF 1672 1673cat >>confdefs.h <<_ACEOF 1674#define PACKAGE_URL "$PACKAGE_URL" 1675_ACEOF 1676 1677 1678# Let the site file select an alternate cache file if it wants to. 1679# Prefer an explicitly selected file to automatically selected ones. 1680ac_site_file1=NONE 1681ac_site_file2=NONE 1682if test -n "$CONFIG_SITE"; then 1683 # We do not want a PATH search for config.site. 1684 case $CONFIG_SITE in #(( 1685 -*) ac_site_file1=./$CONFIG_SITE;; 1686 */*) ac_site_file1=$CONFIG_SITE;; 1687 *) ac_site_file1=./$CONFIG_SITE;; 1688 esac 1689elif test "x$prefix" != xNONE; then 1690 ac_site_file1=$prefix/share/config.site 1691 ac_site_file2=$prefix/etc/config.site 1692else 1693 ac_site_file1=$ac_default_prefix/share/config.site 1694 ac_site_file2=$ac_default_prefix/etc/config.site 1695fi 1696for ac_site_file in "$ac_site_file1" "$ac_site_file2" 1697do 1698 test "x$ac_site_file" = xNONE && continue 1699 if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then 1700 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 1701$as_echo "$as_me: loading site script $ac_site_file" >&6;} 1702 sed 's/^/| /' "$ac_site_file" >&5 1703 . "$ac_site_file" \ 1704 || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 1705$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 1706as_fn_error $? "failed to load site script $ac_site_file 1707See \`config.log' for more details" "$LINENO" 5; } 1708 fi 1709done 1710 1711if test -r "$cache_file"; then 1712 # Some versions of bash will fail to source /dev/null (special files 1713 # actually), so we avoid doing that. DJGPP emulates it as a regular file. 1714 if test /dev/null != "$cache_file" && test -f "$cache_file"; then 1715 { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 1716$as_echo "$as_me: loading cache $cache_file" >&6;} 1717 case $cache_file in 1718 [\\/]* | ?:[\\/]* ) . "$cache_file";; 1719 *) . "./$cache_file";; 1720 esac 1721 fi 1722else 1723 { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 1724$as_echo "$as_me: creating cache $cache_file" >&6;} 1725 >$cache_file 1726fi 1727 1728# Check that the precious variables saved in the cache have kept the same 1729# value. 1730ac_cache_corrupted=false 1731for ac_var in $ac_precious_vars; do 1732 eval ac_old_set=\$ac_cv_env_${ac_var}_set 1733 eval ac_new_set=\$ac_env_${ac_var}_set 1734 eval ac_old_val=\$ac_cv_env_${ac_var}_value 1735 eval ac_new_val=\$ac_env_${ac_var}_value 1736 case $ac_old_set,$ac_new_set in 1737 set,) 1738 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 1739$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} 1740 ac_cache_corrupted=: ;; 1741 ,set) 1742 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 1743$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} 1744 ac_cache_corrupted=: ;; 1745 ,);; 1746 *) 1747 if test "x$ac_old_val" != "x$ac_new_val"; then 1748 # differences in whitespace do not lead to failure. 1749 ac_old_val_w=`echo x $ac_old_val` 1750 ac_new_val_w=`echo x $ac_new_val` 1751 if test "$ac_old_val_w" != "$ac_new_val_w"; then 1752 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 1753$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} 1754 ac_cache_corrupted=: 1755 else 1756 { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 1757$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} 1758 eval $ac_var=\$ac_old_val 1759 fi 1760 { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 1761$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} 1762 { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 1763$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} 1764 fi;; 1765 esac 1766 # Pass precious variables to config.status. 1767 if test "$ac_new_set" = set; then 1768 case $ac_new_val in 1769 *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; 1770 *) ac_arg=$ac_var=$ac_new_val ;; 1771 esac 1772 case " $ac_configure_args " in 1773 *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. 1774 *) as_fn_append ac_configure_args " '$ac_arg'" ;; 1775 esac 1776 fi 1777done 1778if $ac_cache_corrupted; then 1779 { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 1780$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 1781 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 1782$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} 1783 as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 1784fi 1785## -------------------- ## 1786## Main body of script. ## 1787## -------------------- ## 1788 1789ac_ext=c 1790ac_cpp='$CPP $CPPFLAGS' 1791ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' 1792ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 1793ac_compiler_gnu=$ac_cv_c_compiler_gnu 1794 1795 1796am__api_version='1.16' 1797 1798ac_aux_dir= 1799for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do 1800 if test -f "$ac_dir/install-sh"; then 1801 ac_aux_dir=$ac_dir 1802 ac_install_sh="$ac_aux_dir/install-sh -c" 1803 break 1804 elif test -f "$ac_dir/install.sh"; then 1805 ac_aux_dir=$ac_dir 1806 ac_install_sh="$ac_aux_dir/install.sh -c" 1807 break 1808 elif test -f "$ac_dir/shtool"; then 1809 ac_aux_dir=$ac_dir 1810 ac_install_sh="$ac_aux_dir/shtool install -c" 1811 break 1812 fi 1813done 1814if test -z "$ac_aux_dir"; then 1815 as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 1816fi 1817 1818# These three variables are undocumented and unsupported, 1819# and are intended to be withdrawn in a future Autoconf release. 1820# They can cause serious problems if a builder's source tree is in a directory 1821# whose full name contains unusual characters. 1822ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. 1823ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. 1824ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. 1825 1826 1827# Find a good install program. We prefer a C program (faster), 1828# so one script is as good as another. But avoid the broken or 1829# incompatible versions: 1830# SysV /etc/install, /usr/sbin/install 1831# SunOS /usr/etc/install 1832# IRIX /sbin/install 1833# AIX /bin/install 1834# AmigaOS /C/install, which installs bootblocks on floppy discs 1835# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag 1836# AFS /usr/afsws/bin/install, which mishandles nonexistent args 1837# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" 1838# OS/2's system install, which has a completely different semantic 1839# ./install, which can be erroneously created by make from ./install.sh. 1840# Reject install programs that cannot install multiple files. 1841{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 1842$as_echo_n "checking for a BSD-compatible install... " >&6; } 1843if test -z "$INSTALL"; then 1844if ${ac_cv_path_install+:} false; then : 1845 $as_echo_n "(cached) " >&6 1846else 1847 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 1848for as_dir in $PATH 1849do 1850 IFS=$as_save_IFS 1851 test -z "$as_dir" && as_dir=. 1852 # Account for people who put trailing slashes in PATH elements. 1853case $as_dir/ in #(( 1854 ./ | .// | /[cC]/* | \ 1855 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ 1856 ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ 1857 /usr/ucb/* ) ;; 1858 *) 1859 # OSF1 and SCO ODT 3.0 have their own names for install. 1860 # Don't use installbsd from OSF since it installs stuff as root 1861 # by default. 1862 for ac_prog in ginstall scoinst install; do 1863 for ac_exec_ext in '' $ac_executable_extensions; do 1864 if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then 1865 if test $ac_prog = install && 1866 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then 1867 # AIX install. It has an incompatible calling convention. 1868 : 1869 elif test $ac_prog = install && 1870 grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then 1871 # program-specific install script used by HP pwplus--don't use. 1872 : 1873 else 1874 rm -rf conftest.one conftest.two conftest.dir 1875 echo one > conftest.one 1876 echo two > conftest.two 1877 mkdir conftest.dir 1878 if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && 1879 test -s conftest.one && test -s conftest.two && 1880 test -s conftest.dir/conftest.one && 1881 test -s conftest.dir/conftest.two 1882 then 1883 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" 1884 break 3 1885 fi 1886 fi 1887 fi 1888 done 1889 done 1890 ;; 1891esac 1892 1893 done 1894IFS=$as_save_IFS 1895 1896rm -rf conftest.one conftest.two conftest.dir 1897 1898fi 1899 if test "${ac_cv_path_install+set}" = set; then 1900 INSTALL=$ac_cv_path_install 1901 else 1902 # As a last resort, use the slow shell script. Don't cache a 1903 # value for INSTALL within a source directory, because that will 1904 # break other packages using the cache if that directory is 1905 # removed, or if the value is a relative name. 1906 INSTALL=$ac_install_sh 1907 fi 1908fi 1909{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 1910$as_echo "$INSTALL" >&6; } 1911 1912# Use test -z because SunOS4 sh mishandles braces in ${var-val}. 1913# It thinks the first close brace ends the variable substitution. 1914test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' 1915 1916test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' 1917 1918test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' 1919 1920{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 1921$as_echo_n "checking whether build environment is sane... " >&6; } 1922# Reject unsafe characters in $srcdir or the absolute working directory 1923# name. Accept space and tab only in the latter. 1924am_lf=' 1925' 1926case `pwd` in 1927 *[\\\"\#\$\&\'\`$am_lf]*) 1928 as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; 1929esac 1930case $srcdir in 1931 *[\\\"\#\$\&\'\`$am_lf\ \ ]*) 1932 as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; 1933esac 1934 1935# Do 'set' in a subshell so we don't clobber the current shell's 1936# arguments. Must try -L first in case configure is actually a 1937# symlink; some systems play weird games with the mod time of symlinks 1938# (eg FreeBSD returns the mod time of the symlink's containing 1939# directory). 1940if ( 1941 am_has_slept=no 1942 for am_try in 1 2; do 1943 echo "timestamp, slept: $am_has_slept" > conftest.file 1944 set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` 1945 if test "$*" = "X"; then 1946 # -L didn't work. 1947 set X `ls -t "$srcdir/configure" conftest.file` 1948 fi 1949 if test "$*" != "X $srcdir/configure conftest.file" \ 1950 && test "$*" != "X conftest.file $srcdir/configure"; then 1951 1952 # If neither matched, then we have a broken ls. This can happen 1953 # if, for instance, CONFIG_SHELL is bash and it inherits a 1954 # broken ls alias from the environment. This has actually 1955 # happened. Such a system could not be considered "sane". 1956 as_fn_error $? "ls -t appears to fail. Make sure there is not a broken 1957 alias in your environment" "$LINENO" 5 1958 fi 1959 if test "$2" = conftest.file || test $am_try -eq 2; then 1960 break 1961 fi 1962 # Just in case. 1963 sleep 1 1964 am_has_slept=yes 1965 done 1966 test "$2" = conftest.file 1967 ) 1968then 1969 # Ok. 1970 : 1971else 1972 as_fn_error $? "newly created file is older than distributed files! 1973Check your system clock" "$LINENO" 5 1974fi 1975{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 1976$as_echo "yes" >&6; } 1977# If we didn't sleep, we still need to ensure time stamps of config.status and 1978# generated files are strictly newer. 1979am_sleep_pid= 1980if grep 'slept: no' conftest.file >/dev/null 2>&1; then 1981 ( sleep 1 ) & 1982 am_sleep_pid=$! 1983fi 1984 1985rm -f conftest.file 1986 1987test "$program_prefix" != NONE && 1988 program_transform_name="s&^&$program_prefix&;$program_transform_name" 1989# Use a double $ so make ignores it. 1990test "$program_suffix" != NONE && 1991 program_transform_name="s&\$&$program_suffix&;$program_transform_name" 1992# Double any \ or $. 1993# By default was `s,x,x', remove it if useless. 1994ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' 1995program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` 1996 1997# Expand $ac_aux_dir to an absolute path. 1998am_aux_dir=`cd "$ac_aux_dir" && pwd` 1999 2000if test x"${MISSING+set}" != xset; then 2001 case $am_aux_dir in 2002 *\ * | *\ *) 2003 MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; 2004 *) 2005 MISSING="\${SHELL} $am_aux_dir/missing" ;; 2006 esac 2007fi 2008# Use eval to expand $SHELL 2009if eval "$MISSING --is-lightweight"; then 2010 am_missing_run="$MISSING " 2011else 2012 am_missing_run= 2013 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 2014$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} 2015fi 2016 2017if test x"${install_sh+set}" != xset; then 2018 case $am_aux_dir in 2019 *\ * | *\ *) 2020 install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; 2021 *) 2022 install_sh="\${SHELL} $am_aux_dir/install-sh" 2023 esac 2024fi 2025 2026# Installed binaries are usually stripped using 'strip' when the user 2027# run "make install-strip". However 'strip' might not be the right 2028# tool to use in cross-compilation environments, therefore Automake 2029# will honor the 'STRIP' environment variable to overrule this program. 2030if test "$cross_compiling" != no; then 2031 if test -n "$ac_tool_prefix"; then 2032 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. 2033set dummy ${ac_tool_prefix}strip; ac_word=$2 2034{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 2035$as_echo_n "checking for $ac_word... " >&6; } 2036if ${ac_cv_prog_STRIP+:} false; then : 2037 $as_echo_n "(cached) " >&6 2038else 2039 if test -n "$STRIP"; then 2040 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 2041else 2042as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 2043for as_dir in $PATH 2044do 2045 IFS=$as_save_IFS 2046 test -z "$as_dir" && as_dir=. 2047 for ac_exec_ext in '' $ac_executable_extensions; do 2048 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2049 ac_cv_prog_STRIP="${ac_tool_prefix}strip" 2050 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 2051 break 2 2052 fi 2053done 2054 done 2055IFS=$as_save_IFS 2056 2057fi 2058fi 2059STRIP=$ac_cv_prog_STRIP 2060if test -n "$STRIP"; then 2061 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 2062$as_echo "$STRIP" >&6; } 2063else 2064 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 2065$as_echo "no" >&6; } 2066fi 2067 2068 2069fi 2070if test -z "$ac_cv_prog_STRIP"; then 2071 ac_ct_STRIP=$STRIP 2072 # Extract the first word of "strip", so it can be a program name with args. 2073set dummy strip; ac_word=$2 2074{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 2075$as_echo_n "checking for $ac_word... " >&6; } 2076if ${ac_cv_prog_ac_ct_STRIP+:} false; then : 2077 $as_echo_n "(cached) " >&6 2078else 2079 if test -n "$ac_ct_STRIP"; then 2080 ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. 2081else 2082as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 2083for as_dir in $PATH 2084do 2085 IFS=$as_save_IFS 2086 test -z "$as_dir" && as_dir=. 2087 for ac_exec_ext in '' $ac_executable_extensions; do 2088 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2089 ac_cv_prog_ac_ct_STRIP="strip" 2090 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 2091 break 2 2092 fi 2093done 2094 done 2095IFS=$as_save_IFS 2096 2097fi 2098fi 2099ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP 2100if test -n "$ac_ct_STRIP"; then 2101 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 2102$as_echo "$ac_ct_STRIP" >&6; } 2103else 2104 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 2105$as_echo "no" >&6; } 2106fi 2107 2108 if test "x$ac_ct_STRIP" = x; then 2109 STRIP=":" 2110 else 2111 case $cross_compiling:$ac_tool_warned in 2112yes:) 2113{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 2114$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} 2115ac_tool_warned=yes ;; 2116esac 2117 STRIP=$ac_ct_STRIP 2118 fi 2119else 2120 STRIP="$ac_cv_prog_STRIP" 2121fi 2122 2123fi 2124INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" 2125 2126{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 2127$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } 2128if test -z "$MKDIR_P"; then 2129 if ${ac_cv_path_mkdir+:} false; then : 2130 $as_echo_n "(cached) " >&6 2131else 2132 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 2133for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin 2134do 2135 IFS=$as_save_IFS 2136 test -z "$as_dir" && as_dir=. 2137 for ac_prog in mkdir gmkdir; do 2138 for ac_exec_ext in '' $ac_executable_extensions; do 2139 as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue 2140 case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 2141 'mkdir (GNU coreutils) '* | \ 2142 'mkdir (coreutils) '* | \ 2143 'mkdir (fileutils) '4.1*) 2144 ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext 2145 break 3;; 2146 esac 2147 done 2148 done 2149 done 2150IFS=$as_save_IFS 2151 2152fi 2153 2154 test -d ./--version && rmdir ./--version 2155 if test "${ac_cv_path_mkdir+set}" = set; then 2156 MKDIR_P="$ac_cv_path_mkdir -p" 2157 else 2158 # As a last resort, use the slow shell script. Don't cache a 2159 # value for MKDIR_P within a source directory, because that will 2160 # break other packages using the cache if that directory is 2161 # removed, or if the value is a relative name. 2162 MKDIR_P="$ac_install_sh -d" 2163 fi 2164fi 2165{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 2166$as_echo "$MKDIR_P" >&6; } 2167 2168for ac_prog in gawk mawk nawk awk 2169do 2170 # Extract the first word of "$ac_prog", so it can be a program name with args. 2171set dummy $ac_prog; ac_word=$2 2172{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 2173$as_echo_n "checking for $ac_word... " >&6; } 2174if ${ac_cv_prog_AWK+:} false; then : 2175 $as_echo_n "(cached) " >&6 2176else 2177 if test -n "$AWK"; then 2178 ac_cv_prog_AWK="$AWK" # Let the user override the test. 2179else 2180as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 2181for as_dir in $PATH 2182do 2183 IFS=$as_save_IFS 2184 test -z "$as_dir" && as_dir=. 2185 for ac_exec_ext in '' $ac_executable_extensions; do 2186 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2187 ac_cv_prog_AWK="$ac_prog" 2188 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 2189 break 2 2190 fi 2191done 2192 done 2193IFS=$as_save_IFS 2194 2195fi 2196fi 2197AWK=$ac_cv_prog_AWK 2198if test -n "$AWK"; then 2199 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 2200$as_echo "$AWK" >&6; } 2201else 2202 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 2203$as_echo "no" >&6; } 2204fi 2205 2206 2207 test -n "$AWK" && break 2208done 2209 2210{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 2211$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } 2212set x ${MAKE-make} 2213ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` 2214if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : 2215 $as_echo_n "(cached) " >&6 2216else 2217 cat >conftest.make <<\_ACEOF 2218SHELL = /bin/sh 2219all: 2220 @echo '@@@%%%=$(MAKE)=@@@%%%' 2221_ACEOF 2222# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. 2223case `${MAKE-make} -f conftest.make 2>/dev/null` in 2224 *@@@%%%=?*=@@@%%%*) 2225 eval ac_cv_prog_make_${ac_make}_set=yes;; 2226 *) 2227 eval ac_cv_prog_make_${ac_make}_set=no;; 2228esac 2229rm -f conftest.make 2230fi 2231if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then 2232 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 2233$as_echo "yes" >&6; } 2234 SET_MAKE= 2235else 2236 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 2237$as_echo "no" >&6; } 2238 SET_MAKE="MAKE=${MAKE-make}" 2239fi 2240 2241rm -rf .tst 2>/dev/null 2242mkdir .tst 2>/dev/null 2243if test -d .tst; then 2244 am__leading_dot=. 2245else 2246 am__leading_dot=_ 2247fi 2248rmdir .tst 2>/dev/null 2249 2250# Check whether --enable-silent-rules was given. 2251if test "${enable_silent_rules+set}" = set; then : 2252 enableval=$enable_silent_rules; 2253fi 2254 2255case $enable_silent_rules in # ((( 2256 yes) AM_DEFAULT_VERBOSITY=0;; 2257 no) AM_DEFAULT_VERBOSITY=1;; 2258 *) AM_DEFAULT_VERBOSITY=1;; 2259esac 2260am_make=${MAKE-make} 2261{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 2262$as_echo_n "checking whether $am_make supports nested variables... " >&6; } 2263if ${am_cv_make_support_nested_variables+:} false; then : 2264 $as_echo_n "(cached) " >&6 2265else 2266 if $as_echo 'TRUE=$(BAR$(V)) 2267BAR0=false 2268BAR1=true 2269V=1 2270am__doit: 2271 @$(TRUE) 2272.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then 2273 am_cv_make_support_nested_variables=yes 2274else 2275 am_cv_make_support_nested_variables=no 2276fi 2277fi 2278{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 2279$as_echo "$am_cv_make_support_nested_variables" >&6; } 2280if test $am_cv_make_support_nested_variables = yes; then 2281 AM_V='$(V)' 2282 AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' 2283else 2284 AM_V=$AM_DEFAULT_VERBOSITY 2285 AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY 2286fi 2287AM_BACKSLASH='\' 2288 2289if test "`cd $srcdir && pwd`" != "`pwd`"; then 2290 # Use -I$(srcdir) only when $(srcdir) != ., so that make's output 2291 # is not polluted with repeated "-I." 2292 am__isrc=' -I$(srcdir)' 2293 # test to see if srcdir already configured 2294 if test -f $srcdir/config.status; then 2295 as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 2296 fi 2297fi 2298 2299# test whether we have cygpath 2300if test -z "$CYGPATH_W"; then 2301 if (cygpath --version) >/dev/null 2>/dev/null; then 2302 CYGPATH_W='cygpath -w' 2303 else 2304 CYGPATH_W=echo 2305 fi 2306fi 2307 2308 2309# Define the identity of the package. 2310 PACKAGE='elfiotest' 2311 VERSION='3.9' 2312 2313 2314cat >>confdefs.h <<_ACEOF 2315#define PACKAGE "$PACKAGE" 2316_ACEOF 2317 2318 2319cat >>confdefs.h <<_ACEOF 2320#define VERSION "$VERSION" 2321_ACEOF 2322 2323# Some tools Automake needs. 2324 2325ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} 2326 2327 2328AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} 2329 2330 2331AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} 2332 2333 2334AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} 2335 2336 2337MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} 2338 2339# For better backward compatibility. To be removed once Automake 1.9.x 2340# dies out for good. For more background, see: 2341# <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html> 2342# <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html> 2343mkdir_p='$(MKDIR_P)' 2344 2345# We need awk for the "check" target (and possibly the TAP driver). The 2346# system "awk" is bad on some platforms. 2347# Always define AMTAR for backward compatibility. Yes, it's still used 2348# in the wild :-( We should find a proper way to deprecate it ... 2349AMTAR='$${TAR-tar}' 2350 2351 2352# We'll loop over all known methods to create a tar archive until one works. 2353_am_tools='gnutar pax cpio none' 2354 2355am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' 2356 2357 2358 2359 2360 2361 2362# POSIX will say in a future version that running "rm -f" with no argument 2363# is OK; and we want to be able to make that assumption in our Makefile 2364# recipes. So use an aggressive probe to check that the usage we want is 2365# actually supported "in the wild" to an acceptable degree. 2366# See automake bug#10828. 2367# To make any issue more visible, cause the running configure to be aborted 2368# by default if the 'rm' program in use doesn't match our expectations; the 2369# user can still override this though. 2370if rm -f && rm -fr && rm -rf; then : OK; else 2371 cat >&2 <<'END' 2372Oops! 2373 2374Your 'rm' program seems unable to run without file operands specified 2375on the command line, even when the '-f' option is present. This is contrary 2376to the behaviour of most rm programs out there, and not conforming with 2377the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542> 2378 2379Please tell bug-automake@gnu.org about your system, including the value 2380of your $PATH and any error possibly output before this message. This 2381can help us improve future automake versions. 2382 2383END 2384 if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then 2385 echo 'Configuration will proceed anyway, since you have set the' >&2 2386 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 2387 echo >&2 2388 else 2389 cat >&2 <<'END' 2390Aborting the configuration process, to ensure you take notice of the issue. 2391 2392You can download and install GNU coreutils to get an 'rm' implementation 2393that behaves properly: <https://www.gnu.org/software/coreutils/>. 2394 2395If you want to complete the configuration process using your problematic 2396'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM 2397to "yes", and re-run configure. 2398 2399END 2400 as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 2401 fi 2402fi 2403 2404ac_ext=cpp 2405ac_cpp='$CXXCPP $CPPFLAGS' 2406ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' 2407ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 2408ac_compiler_gnu=$ac_cv_cxx_compiler_gnu 2409if test -z "$CXX"; then 2410 if test -n "$CCC"; then 2411 CXX=$CCC 2412 else 2413 if test -n "$ac_tool_prefix"; then 2414 for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC 2415 do 2416 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. 2417set dummy $ac_tool_prefix$ac_prog; ac_word=$2 2418{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 2419$as_echo_n "checking for $ac_word... " >&6; } 2420if ${ac_cv_prog_CXX+:} false; then : 2421 $as_echo_n "(cached) " >&6 2422else 2423 if test -n "$CXX"; then 2424 ac_cv_prog_CXX="$CXX" # Let the user override the test. 2425else 2426as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 2427for as_dir in $PATH 2428do 2429 IFS=$as_save_IFS 2430 test -z "$as_dir" && as_dir=. 2431 for ac_exec_ext in '' $ac_executable_extensions; do 2432 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2433 ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" 2434 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 2435 break 2 2436 fi 2437done 2438 done 2439IFS=$as_save_IFS 2440 2441fi 2442fi 2443CXX=$ac_cv_prog_CXX 2444if test -n "$CXX"; then 2445 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 2446$as_echo "$CXX" >&6; } 2447else 2448 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 2449$as_echo "no" >&6; } 2450fi 2451 2452 2453 test -n "$CXX" && break 2454 done 2455fi 2456if test -z "$CXX"; then 2457 ac_ct_CXX=$CXX 2458 for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC 2459do 2460 # Extract the first word of "$ac_prog", so it can be a program name with args. 2461set dummy $ac_prog; ac_word=$2 2462{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 2463$as_echo_n "checking for $ac_word... " >&6; } 2464if ${ac_cv_prog_ac_ct_CXX+:} false; then : 2465 $as_echo_n "(cached) " >&6 2466else 2467 if test -n "$ac_ct_CXX"; then 2468 ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. 2469else 2470as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 2471for as_dir in $PATH 2472do 2473 IFS=$as_save_IFS 2474 test -z "$as_dir" && as_dir=. 2475 for ac_exec_ext in '' $ac_executable_extensions; do 2476 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2477 ac_cv_prog_ac_ct_CXX="$ac_prog" 2478 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 2479 break 2 2480 fi 2481done 2482 done 2483IFS=$as_save_IFS 2484 2485fi 2486fi 2487ac_ct_CXX=$ac_cv_prog_ac_ct_CXX 2488if test -n "$ac_ct_CXX"; then 2489 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 2490$as_echo "$ac_ct_CXX" >&6; } 2491else 2492 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 2493$as_echo "no" >&6; } 2494fi 2495 2496 2497 test -n "$ac_ct_CXX" && break 2498done 2499 2500 if test "x$ac_ct_CXX" = x; then 2501 CXX="g++" 2502 else 2503 case $cross_compiling:$ac_tool_warned in 2504yes:) 2505{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 2506$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} 2507ac_tool_warned=yes ;; 2508esac 2509 CXX=$ac_ct_CXX 2510 fi 2511fi 2512 2513 fi 2514fi 2515# Provide some information about the compiler. 2516$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 2517set X $ac_compile 2518ac_compiler=$2 2519for ac_option in --version -v -V -qversion; do 2520 { { ac_try="$ac_compiler $ac_option >&5" 2521case "(($ac_try" in 2522 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2523 *) ac_try_echo=$ac_try;; 2524esac 2525eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 2526$as_echo "$ac_try_echo"; } >&5 2527 (eval "$ac_compiler $ac_option >&5") 2>conftest.err 2528 ac_status=$? 2529 if test -s conftest.err; then 2530 sed '10a\ 2531... rest of stderr output deleted ... 2532 10q' conftest.err >conftest.er1 2533 cat conftest.er1 >&5 2534 fi 2535 rm -f conftest.er1 conftest.err 2536 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 2537 test $ac_status = 0; } 2538done 2539 2540cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2541/* end confdefs.h. */ 2542 2543int 2544main () 2545{ 2546 2547 ; 2548 return 0; 2549} 2550_ACEOF 2551ac_clean_files_save=$ac_clean_files 2552ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" 2553# Try to create an executable without -o first, disregard a.out. 2554# It will help us diagnose broken compilers, and finding out an intuition 2555# of exeext. 2556{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C++ compiler works" >&5 2557$as_echo_n "checking whether the C++ compiler works... " >&6; } 2558ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` 2559 2560# The possible output files: 2561ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" 2562 2563ac_rmfiles= 2564for ac_file in $ac_files 2565do 2566 case $ac_file in 2567 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; 2568 * ) ac_rmfiles="$ac_rmfiles $ac_file";; 2569 esac 2570done 2571rm -f $ac_rmfiles 2572 2573if { { ac_try="$ac_link_default" 2574case "(($ac_try" in 2575 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2576 *) ac_try_echo=$ac_try;; 2577esac 2578eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 2579$as_echo "$ac_try_echo"; } >&5 2580 (eval "$ac_link_default") 2>&5 2581 ac_status=$? 2582 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 2583 test $ac_status = 0; }; then : 2584 # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. 2585# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' 2586# in a Makefile. We should not override ac_cv_exeext if it was cached, 2587# so that the user can short-circuit this test for compilers unknown to 2588# Autoconf. 2589for ac_file in $ac_files '' 2590do 2591 test -f "$ac_file" || continue 2592 case $ac_file in 2593 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) 2594 ;; 2595 [ab].out ) 2596 # We found the default executable, but exeext='' is most 2597 # certainly right. 2598 break;; 2599 *.* ) 2600 if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; 2601 then :; else 2602 ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` 2603 fi 2604 # We set ac_cv_exeext here because the later test for it is not 2605 # safe: cross compilers may not add the suffix if given an `-o' 2606 # argument, so we may need to know it at that point already. 2607 # Even if this section looks crufty: it has the advantage of 2608 # actually working. 2609 break;; 2610 * ) 2611 break;; 2612 esac 2613done 2614test "$ac_cv_exeext" = no && ac_cv_exeext= 2615 2616else 2617 ac_file='' 2618fi 2619if test -z "$ac_file"; then : 2620 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 2621$as_echo "no" >&6; } 2622$as_echo "$as_me: failed program was:" >&5 2623sed 's/^/| /' conftest.$ac_ext >&5 2624 2625{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 2626$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2627as_fn_error 77 "C++ compiler cannot create executables 2628See \`config.log' for more details" "$LINENO" 5; } 2629else 2630 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 2631$as_echo "yes" >&6; } 2632fi 2633{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler default output file name" >&5 2634$as_echo_n "checking for C++ compiler default output file name... " >&6; } 2635{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 2636$as_echo "$ac_file" >&6; } 2637ac_exeext=$ac_cv_exeext 2638 2639rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out 2640ac_clean_files=$ac_clean_files_save 2641{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 2642$as_echo_n "checking for suffix of executables... " >&6; } 2643if { { ac_try="$ac_link" 2644case "(($ac_try" in 2645 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2646 *) ac_try_echo=$ac_try;; 2647esac 2648eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 2649$as_echo "$ac_try_echo"; } >&5 2650 (eval "$ac_link") 2>&5 2651 ac_status=$? 2652 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 2653 test $ac_status = 0; }; then : 2654 # If both `conftest.exe' and `conftest' are `present' (well, observable) 2655# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will 2656# work properly (i.e., refer to `conftest.exe'), while it won't with 2657# `rm'. 2658for ac_file in conftest.exe conftest conftest.*; do 2659 test -f "$ac_file" || continue 2660 case $ac_file in 2661 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; 2662 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` 2663 break;; 2664 * ) break;; 2665 esac 2666done 2667else 2668 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 2669$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2670as_fn_error $? "cannot compute suffix of executables: cannot compile and link 2671See \`config.log' for more details" "$LINENO" 5; } 2672fi 2673rm -f conftest conftest$ac_cv_exeext 2674{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 2675$as_echo "$ac_cv_exeext" >&6; } 2676 2677rm -f conftest.$ac_ext 2678EXEEXT=$ac_cv_exeext 2679ac_exeext=$EXEEXT 2680cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2681/* end confdefs.h. */ 2682#include <stdio.h> 2683int 2684main () 2685{ 2686FILE *f = fopen ("conftest.out", "w"); 2687 return ferror (f) || fclose (f) != 0; 2688 2689 ; 2690 return 0; 2691} 2692_ACEOF 2693ac_clean_files="$ac_clean_files conftest.out" 2694# Check that the compiler produces executables we can run. If not, either 2695# the compiler is broken, or we cross compile. 2696{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 2697$as_echo_n "checking whether we are cross compiling... " >&6; } 2698if test "$cross_compiling" != yes; then 2699 { { ac_try="$ac_link" 2700case "(($ac_try" in 2701 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2702 *) ac_try_echo=$ac_try;; 2703esac 2704eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 2705$as_echo "$ac_try_echo"; } >&5 2706 (eval "$ac_link") 2>&5 2707 ac_status=$? 2708 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 2709 test $ac_status = 0; } 2710 if { ac_try='./conftest$ac_cv_exeext' 2711 { { case "(($ac_try" in 2712 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2713 *) ac_try_echo=$ac_try;; 2714esac 2715eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 2716$as_echo "$ac_try_echo"; } >&5 2717 (eval "$ac_try") 2>&5 2718 ac_status=$? 2719 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 2720 test $ac_status = 0; }; }; then 2721 cross_compiling=no 2722 else 2723 if test "$cross_compiling" = maybe; then 2724 cross_compiling=yes 2725 else 2726 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 2727$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2728as_fn_error $? "cannot run C++ compiled programs. 2729If you meant to cross compile, use \`--host'. 2730See \`config.log' for more details" "$LINENO" 5; } 2731 fi 2732 fi 2733fi 2734{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 2735$as_echo "$cross_compiling" >&6; } 2736 2737rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out 2738ac_clean_files=$ac_clean_files_save 2739{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 2740$as_echo_n "checking for suffix of object files... " >&6; } 2741if ${ac_cv_objext+:} false; then : 2742 $as_echo_n "(cached) " >&6 2743else 2744 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2745/* end confdefs.h. */ 2746 2747int 2748main () 2749{ 2750 2751 ; 2752 return 0; 2753} 2754_ACEOF 2755rm -f conftest.o conftest.obj 2756if { { ac_try="$ac_compile" 2757case "(($ac_try" in 2758 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2759 *) ac_try_echo=$ac_try;; 2760esac 2761eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 2762$as_echo "$ac_try_echo"; } >&5 2763 (eval "$ac_compile") 2>&5 2764 ac_status=$? 2765 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 2766 test $ac_status = 0; }; then : 2767 for ac_file in conftest.o conftest.obj conftest.*; do 2768 test -f "$ac_file" || continue; 2769 case $ac_file in 2770 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; 2771 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` 2772 break;; 2773 esac 2774done 2775else 2776 $as_echo "$as_me: failed program was:" >&5 2777sed 's/^/| /' conftest.$ac_ext >&5 2778 2779{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 2780$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2781as_fn_error $? "cannot compute suffix of object files: cannot compile 2782See \`config.log' for more details" "$LINENO" 5; } 2783fi 2784rm -f conftest.$ac_cv_objext conftest.$ac_ext 2785fi 2786{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 2787$as_echo "$ac_cv_objext" >&6; } 2788OBJEXT=$ac_cv_objext 2789ac_objext=$OBJEXT 2790{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 2791$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } 2792if ${ac_cv_cxx_compiler_gnu+:} false; then : 2793 $as_echo_n "(cached) " >&6 2794else 2795 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2796/* end confdefs.h. */ 2797 2798int 2799main () 2800{ 2801#ifndef __GNUC__ 2802 choke me 2803#endif 2804 2805 ; 2806 return 0; 2807} 2808_ACEOF 2809if ac_fn_cxx_try_compile "$LINENO"; then : 2810 ac_compiler_gnu=yes 2811else 2812 ac_compiler_gnu=no 2813fi 2814rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 2815ac_cv_cxx_compiler_gnu=$ac_compiler_gnu 2816 2817fi 2818{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 2819$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } 2820if test $ac_compiler_gnu = yes; then 2821 GXX=yes 2822else 2823 GXX= 2824fi 2825ac_test_CXXFLAGS=${CXXFLAGS+set} 2826ac_save_CXXFLAGS=$CXXFLAGS 2827{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 2828$as_echo_n "checking whether $CXX accepts -g... " >&6; } 2829if ${ac_cv_prog_cxx_g+:} false; then : 2830 $as_echo_n "(cached) " >&6 2831else 2832 ac_save_cxx_werror_flag=$ac_cxx_werror_flag 2833 ac_cxx_werror_flag=yes 2834 ac_cv_prog_cxx_g=no 2835 CXXFLAGS="-g" 2836 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2837/* end confdefs.h. */ 2838 2839int 2840main () 2841{ 2842 2843 ; 2844 return 0; 2845} 2846_ACEOF 2847if ac_fn_cxx_try_compile "$LINENO"; then : 2848 ac_cv_prog_cxx_g=yes 2849else 2850 CXXFLAGS="" 2851 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2852/* end confdefs.h. */ 2853 2854int 2855main () 2856{ 2857 2858 ; 2859 return 0; 2860} 2861_ACEOF 2862if ac_fn_cxx_try_compile "$LINENO"; then : 2863 2864else 2865 ac_cxx_werror_flag=$ac_save_cxx_werror_flag 2866 CXXFLAGS="-g" 2867 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2868/* end confdefs.h. */ 2869 2870int 2871main () 2872{ 2873 2874 ; 2875 return 0; 2876} 2877_ACEOF 2878if ac_fn_cxx_try_compile "$LINENO"; then : 2879 ac_cv_prog_cxx_g=yes 2880fi 2881rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 2882fi 2883rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 2884fi 2885rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 2886 ac_cxx_werror_flag=$ac_save_cxx_werror_flag 2887fi 2888{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 2889$as_echo "$ac_cv_prog_cxx_g" >&6; } 2890if test "$ac_test_CXXFLAGS" = set; then 2891 CXXFLAGS=$ac_save_CXXFLAGS 2892elif test $ac_cv_prog_cxx_g = yes; then 2893 if test "$GXX" = yes; then 2894 CXXFLAGS="-g -O2" 2895 else 2896 CXXFLAGS="-g" 2897 fi 2898else 2899 if test "$GXX" = yes; then 2900 CXXFLAGS="-O2" 2901 else 2902 CXXFLAGS= 2903 fi 2904fi 2905ac_ext=c 2906ac_cpp='$CPP $CPPFLAGS' 2907ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' 2908ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 2909ac_compiler_gnu=$ac_cv_c_compiler_gnu 2910DEPDIR="${am__leading_dot}deps" 2911 2912ac_config_commands="$ac_config_commands depfiles" 2913 2914{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5 2915$as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; } 2916cat > confinc.mk << 'END' 2917am__doit: 2918 @echo this is the am__doit target >confinc.out 2919.PHONY: am__doit 2920END 2921am__include="#" 2922am__quote= 2923# BSD make does it like this. 2924echo '.include "confinc.mk" # ignored' > confmf.BSD 2925# Other make implementations (GNU, Solaris 10, AIX) do it like this. 2926echo 'include confinc.mk # ignored' > confmf.GNU 2927_am_result=no 2928for s in GNU BSD; do 2929 { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5 2930 (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5 2931 ac_status=$? 2932 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2933 (exit $ac_status); } 2934 case $?:`cat confinc.out 2>/dev/null` in #( 2935 '0:this is the am__doit target') : 2936 case $s in #( 2937 BSD) : 2938 am__include='.include' am__quote='"' ;; #( 2939 *) : 2940 am__include='include' am__quote='' ;; 2941esac ;; #( 2942 *) : 2943 ;; 2944esac 2945 if test "$am__include" != "#"; then 2946 _am_result="yes ($s style)" 2947 break 2948 fi 2949done 2950rm -f confinc.* confmf.* 2951{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5 2952$as_echo "${_am_result}" >&6; } 2953 2954# Check whether --enable-dependency-tracking was given. 2955if test "${enable_dependency_tracking+set}" = set; then : 2956 enableval=$enable_dependency_tracking; 2957fi 2958 2959if test "x$enable_dependency_tracking" != xno; then 2960 am_depcomp="$ac_aux_dir/depcomp" 2961 AMDEPBACKSLASH='\' 2962 am__nodep='_no' 2963fi 2964 if test "x$enable_dependency_tracking" != xno; then 2965 AMDEP_TRUE= 2966 AMDEP_FALSE='#' 2967else 2968 AMDEP_TRUE='#' 2969 AMDEP_FALSE= 2970fi 2971 2972 2973 2974depcc="$CXX" am_compiler_list= 2975 2976{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 2977$as_echo_n "checking dependency style of $depcc... " >&6; } 2978if ${am_cv_CXX_dependencies_compiler_type+:} false; then : 2979 $as_echo_n "(cached) " >&6 2980else 2981 if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then 2982 # We make a subdir and do the tests there. Otherwise we can end up 2983 # making bogus files that we don't know about and never remove. For 2984 # instance it was reported that on HP-UX the gcc test will end up 2985 # making a dummy file named 'D' -- because '-MD' means "put the output 2986 # in D". 2987 rm -rf conftest.dir 2988 mkdir conftest.dir 2989 # Copy depcomp to subdir because otherwise we won't find it if we're 2990 # using a relative directory. 2991 cp "$am_depcomp" conftest.dir 2992 cd conftest.dir 2993 # We will build objects and dependencies in a subdirectory because 2994 # it helps to detect inapplicable dependency modes. For instance 2995 # both Tru64's cc and ICC support -MD to output dependencies as a 2996 # side effect of compilation, but ICC will put the dependencies in 2997 # the current directory while Tru64 will put them in the object 2998 # directory. 2999 mkdir sub 3000 3001 am_cv_CXX_dependencies_compiler_type=none 3002 if test "$am_compiler_list" = ""; then 3003 am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` 3004 fi 3005 am__universal=false 3006 case " $depcc " in #( 3007 *\ -arch\ *\ -arch\ *) am__universal=true ;; 3008 esac 3009 3010 for depmode in $am_compiler_list; do 3011 # Setup a source with many dependencies, because some compilers 3012 # like to wrap large dependency lists on column 80 (with \), and 3013 # we should not choose a depcomp mode which is confused by this. 3014 # 3015 # We need to recreate these files for each test, as the compiler may 3016 # overwrite some of them when testing with obscure command lines. 3017 # This happens at least with the AIX C compiler. 3018 : > sub/conftest.c 3019 for i in 1 2 3 4 5 6; do 3020 echo '#include "conftst'$i'.h"' >> sub/conftest.c 3021 # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with 3022 # Solaris 10 /bin/sh. 3023 echo '/* dummy */' > sub/conftst$i.h 3024 done 3025 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf 3026 3027 # We check with '-c' and '-o' for the sake of the "dashmstdout" 3028 # mode. It turns out that the SunPro C++ compiler does not properly 3029 # handle '-M -o', and we need to detect this. Also, some Intel 3030 # versions had trouble with output in subdirs. 3031 am__obj=sub/conftest.${OBJEXT-o} 3032 am__minus_obj="-o $am__obj" 3033 case $depmode in 3034 gcc) 3035 # This depmode causes a compiler race in universal mode. 3036 test "$am__universal" = false || continue 3037 ;; 3038 nosideeffect) 3039 # After this tag, mechanisms are not by side-effect, so they'll 3040 # only be used when explicitly requested. 3041 if test "x$enable_dependency_tracking" = xyes; then 3042 continue 3043 else 3044 break 3045 fi 3046 ;; 3047 msvc7 | msvc7msys | msvisualcpp | msvcmsys) 3048 # This compiler won't grok '-c -o', but also, the minuso test has 3049 # not run yet. These depmodes are late enough in the game, and 3050 # so weak that their functioning should not be impacted. 3051 am__obj=conftest.${OBJEXT-o} 3052 am__minus_obj= 3053 ;; 3054 none) break ;; 3055 esac 3056 if depmode=$depmode \ 3057 source=sub/conftest.c object=$am__obj \ 3058 depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ 3059 $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ 3060 >/dev/null 2>conftest.err && 3061 grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && 3062 grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && 3063 grep $am__obj sub/conftest.Po > /dev/null 2>&1 && 3064 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then 3065 # icc doesn't choke on unknown options, it will just issue warnings 3066 # or remarks (even with -Werror). So we grep stderr for any message 3067 # that says an option was ignored or not supported. 3068 # When given -MP, icc 7.0 and 7.1 complain thusly: 3069 # icc: Command line warning: ignoring option '-M'; no argument required 3070 # The diagnosis changed in icc 8.0: 3071 # icc: Command line remark: option '-MP' not supported 3072 if (grep 'ignoring option' conftest.err || 3073 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else 3074 am_cv_CXX_dependencies_compiler_type=$depmode 3075 break 3076 fi 3077 fi 3078 done 3079 3080 cd .. 3081 rm -rf conftest.dir 3082else 3083 am_cv_CXX_dependencies_compiler_type=none 3084fi 3085 3086fi 3087{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 3088$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } 3089CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type 3090 3091 if 3092 test "x$enable_dependency_tracking" != xno \ 3093 && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then 3094 am__fastdepCXX_TRUE= 3095 am__fastdepCXX_FALSE='#' 3096else 3097 am__fastdepCXX_TRUE='#' 3098 am__fastdepCXX_FALSE= 3099fi 3100 3101 3102ac_config_files="$ac_config_files Makefile" 3103 3104cat >confcache <<\_ACEOF 3105# This file is a shell script that caches the results of configure 3106# tests run on this system so they can be shared between configure 3107# scripts and configure runs, see configure's option --config-cache. 3108# It is not useful on other systems. If it contains results you don't 3109# want to keep, you may remove or edit it. 3110# 3111# config.status only pays attention to the cache file if you give it 3112# the --recheck option to rerun configure. 3113# 3114# `ac_cv_env_foo' variables (set or unset) will be overridden when 3115# loading this file, other *unset* `ac_cv_foo' will be assigned the 3116# following values. 3117 3118_ACEOF 3119 3120# The following way of writing the cache mishandles newlines in values, 3121# but we know of no workaround that is simple, portable, and efficient. 3122# So, we kill variables containing newlines. 3123# Ultrix sh set writes to stderr and can't be redirected directly, 3124# and sets the high bit in the cache file unless we assign to the vars. 3125( 3126 for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do 3127 eval ac_val=\$$ac_var 3128 case $ac_val in #( 3129 *${as_nl}*) 3130 case $ac_var in #( 3131 *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 3132$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; 3133 esac 3134 case $ac_var in #( 3135 _ | IFS | as_nl) ;; #( 3136 BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( 3137 *) { eval $ac_var=; unset $ac_var;} ;; 3138 esac ;; 3139 esac 3140 done 3141 3142 (set) 2>&1 | 3143 case $as_nl`(ac_space=' '; set) 2>&1` in #( 3144 *${as_nl}ac_space=\ *) 3145 # `set' does not quote correctly, so add quotes: double-quote 3146 # substitution turns \\\\ into \\, and sed turns \\ into \. 3147 sed -n \ 3148 "s/'/'\\\\''/g; 3149 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" 3150 ;; #( 3151 *) 3152 # `set' quotes correctly as required by POSIX, so do not add quotes. 3153 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" 3154 ;; 3155 esac | 3156 sort 3157) | 3158 sed ' 3159 /^ac_cv_env_/b end 3160 t clear 3161 :clear 3162 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ 3163 t end 3164 s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ 3165 :end' >>confcache 3166if diff "$cache_file" confcache >/dev/null 2>&1; then :; else 3167 if test -w "$cache_file"; then 3168 if test "x$cache_file" != "x/dev/null"; then 3169 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 3170$as_echo "$as_me: updating cache $cache_file" >&6;} 3171 if test ! -f "$cache_file" || test -h "$cache_file"; then 3172 cat confcache >"$cache_file" 3173 else 3174 case $cache_file in #( 3175 */* | ?:*) 3176 mv -f confcache "$cache_file"$$ && 3177 mv -f "$cache_file"$$ "$cache_file" ;; #( 3178 *) 3179 mv -f confcache "$cache_file" ;; 3180 esac 3181 fi 3182 fi 3183 else 3184 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 3185$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} 3186 fi 3187fi 3188rm -f confcache 3189 3190test "x$prefix" = xNONE && prefix=$ac_default_prefix 3191# Let make expand exec_prefix. 3192test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' 3193 3194# Transform confdefs.h into DEFS. 3195# Protect against shell expansion while executing Makefile rules. 3196# Protect against Makefile macro expansion. 3197# 3198# If the first sed substitution is executed (which looks for macros that 3199# take arguments), then branch to the quote section. Otherwise, 3200# look for a macro that doesn't take arguments. 3201ac_script=' 3202:mline 3203/\\$/{ 3204 N 3205 s,\\\n,, 3206 b mline 3207} 3208t clear 3209:clear 3210s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g 3211t quote 3212s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g 3213t quote 3214b any 3215:quote 3216s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g 3217s/\[/\\&/g 3218s/\]/\\&/g 3219s/\$/$$/g 3220H 3221:any 3222${ 3223 g 3224 s/^\n// 3225 s/\n/ /g 3226 p 3227} 3228' 3229DEFS=`sed -n "$ac_script" confdefs.h` 3230 3231 3232ac_libobjs= 3233ac_ltlibobjs= 3234U= 3235for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue 3236 # 1. Remove the extension, and $U if already installed. 3237 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' 3238 ac_i=`$as_echo "$ac_i" | sed "$ac_script"` 3239 # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR 3240 # will be set to the directory where LIBOBJS objects are built. 3241 as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" 3242 as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' 3243done 3244LIBOBJS=$ac_libobjs 3245 3246LTLIBOBJS=$ac_ltlibobjs 3247 3248 3249{ $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 3250$as_echo_n "checking that generated files are newer than configure... " >&6; } 3251 if test -n "$am_sleep_pid"; then 3252 # Hide warnings about reused PIDs. 3253 wait $am_sleep_pid 2>/dev/null 3254 fi 3255 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3256$as_echo "done" >&6; } 3257 if test -n "$EXEEXT"; then 3258 am__EXEEXT_TRUE= 3259 am__EXEEXT_FALSE='#' 3260else 3261 am__EXEEXT_TRUE='#' 3262 am__EXEEXT_FALSE= 3263fi 3264 3265if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then 3266 as_fn_error $? "conditional \"AMDEP\" was never defined. 3267Usually this means the macro was only invoked conditionally." "$LINENO" 5 3268fi 3269if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then 3270 as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. 3271Usually this means the macro was only invoked conditionally." "$LINENO" 5 3272fi 3273 3274: "${CONFIG_STATUS=./config.status}" 3275ac_write_fail=0 3276ac_clean_files_save=$ac_clean_files 3277ac_clean_files="$ac_clean_files $CONFIG_STATUS" 3278{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 3279$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} 3280as_write_fail=0 3281cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 3282#! $SHELL 3283# Generated by $as_me. 3284# Run this file to recreate the current configuration. 3285# Compiler output produced by configure, useful for debugging 3286# configure, is in config.log if it exists. 3287 3288debug=false 3289ac_cs_recheck=false 3290ac_cs_silent=false 3291 3292SHELL=\${CONFIG_SHELL-$SHELL} 3293export SHELL 3294_ASEOF 3295cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 3296## -------------------- ## 3297## M4sh Initialization. ## 3298## -------------------- ## 3299 3300# Be more Bourne compatible 3301DUALCASE=1; export DUALCASE # for MKS sh 3302if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 3303 emulate sh 3304 NULLCMD=: 3305 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 3306 # is contrary to our usage. Disable this feature. 3307 alias -g '${1+"$@"}'='"$@"' 3308 setopt NO_GLOB_SUBST 3309else 3310 case `(set -o) 2>/dev/null` in #( 3311 *posix*) : 3312 set -o posix ;; #( 3313 *) : 3314 ;; 3315esac 3316fi 3317 3318 3319as_nl=' 3320' 3321export as_nl 3322# Printing a long string crashes Solaris 7 /usr/bin/printf. 3323as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' 3324as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo 3325as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo 3326# Prefer a ksh shell builtin over an external printf program on Solaris, 3327# but without wasting forks for bash or zsh. 3328if test -z "$BASH_VERSION$ZSH_VERSION" \ 3329 && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then 3330 as_echo='print -r --' 3331 as_echo_n='print -rn --' 3332elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then 3333 as_echo='printf %s\n' 3334 as_echo_n='printf %s' 3335else 3336 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then 3337 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' 3338 as_echo_n='/usr/ucb/echo -n' 3339 else 3340 as_echo_body='eval expr "X$1" : "X\\(.*\\)"' 3341 as_echo_n_body='eval 3342 arg=$1; 3343 case $arg in #( 3344 *"$as_nl"*) 3345 expr "X$arg" : "X\\(.*\\)$as_nl"; 3346 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; 3347 esac; 3348 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" 3349 ' 3350 export as_echo_n_body 3351 as_echo_n='sh -c $as_echo_n_body as_echo' 3352 fi 3353 export as_echo_body 3354 as_echo='sh -c $as_echo_body as_echo' 3355fi 3356 3357# The user is always right. 3358if test "${PATH_SEPARATOR+set}" != set; then 3359 PATH_SEPARATOR=: 3360 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { 3361 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || 3362 PATH_SEPARATOR=';' 3363 } 3364fi 3365 3366 3367# IFS 3368# We need space, tab and new line, in precisely that order. Quoting is 3369# there to prevent editors from complaining about space-tab. 3370# (If _AS_PATH_WALK were called with IFS unset, it would disable word 3371# splitting by setting IFS to empty value.) 3372IFS=" "" $as_nl" 3373 3374# Find who we are. Look in the path if we contain no directory separator. 3375as_myself= 3376case $0 in #(( 3377 *[\\/]* ) as_myself=$0 ;; 3378 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 3379for as_dir in $PATH 3380do 3381 IFS=$as_save_IFS 3382 test -z "$as_dir" && as_dir=. 3383 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break 3384 done 3385IFS=$as_save_IFS 3386 3387 ;; 3388esac 3389# We did not find ourselves, most probably we were run as `sh COMMAND' 3390# in which case we are not to be found in the path. 3391if test "x$as_myself" = x; then 3392 as_myself=$0 3393fi 3394if test ! -f "$as_myself"; then 3395 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 3396 exit 1 3397fi 3398 3399# Unset variables that we do not need and which cause bugs (e.g. in 3400# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" 3401# suppresses any "Segmentation fault" message there. '((' could 3402# trigger a bug in pdksh 5.2.14. 3403for as_var in BASH_ENV ENV MAIL MAILPATH 3404do eval test x\${$as_var+set} = xset \ 3405 && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : 3406done 3407PS1='$ ' 3408PS2='> ' 3409PS4='+ ' 3410 3411# NLS nuisances. 3412LC_ALL=C 3413export LC_ALL 3414LANGUAGE=C 3415export LANGUAGE 3416 3417# CDPATH. 3418(unset CDPATH) >/dev/null 2>&1 && unset CDPATH 3419 3420 3421# as_fn_error STATUS ERROR [LINENO LOG_FD] 3422# ---------------------------------------- 3423# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are 3424# provided, also output the error to LOG_FD, referencing LINENO. Then exit the 3425# script with STATUS, using 1 if that was 0. 3426as_fn_error () 3427{ 3428 as_status=$1; test $as_status -eq 0 && as_status=1 3429 if test "$4"; then 3430 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 3431 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 3432 fi 3433 $as_echo "$as_me: error: $2" >&2 3434 as_fn_exit $as_status 3435} # as_fn_error 3436 3437 3438# as_fn_set_status STATUS 3439# ----------------------- 3440# Set $? to STATUS, without forking. 3441as_fn_set_status () 3442{ 3443 return $1 3444} # as_fn_set_status 3445 3446# as_fn_exit STATUS 3447# ----------------- 3448# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. 3449as_fn_exit () 3450{ 3451 set +e 3452 as_fn_set_status $1 3453 exit $1 3454} # as_fn_exit 3455 3456# as_fn_unset VAR 3457# --------------- 3458# Portably unset VAR. 3459as_fn_unset () 3460{ 3461 { eval $1=; unset $1;} 3462} 3463as_unset=as_fn_unset 3464# as_fn_append VAR VALUE 3465# ---------------------- 3466# Append the text in VALUE to the end of the definition contained in VAR. Take 3467# advantage of any shell optimizations that allow amortized linear growth over 3468# repeated appends, instead of the typical quadratic growth present in naive 3469# implementations. 3470if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : 3471 eval 'as_fn_append () 3472 { 3473 eval $1+=\$2 3474 }' 3475else 3476 as_fn_append () 3477 { 3478 eval $1=\$$1\$2 3479 } 3480fi # as_fn_append 3481 3482# as_fn_arith ARG... 3483# ------------------ 3484# Perform arithmetic evaluation on the ARGs, and store the result in the 3485# global $as_val. Take advantage of shells that can avoid forks. The arguments 3486# must be portable across $(()) and expr. 3487if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : 3488 eval 'as_fn_arith () 3489 { 3490 as_val=$(( $* )) 3491 }' 3492else 3493 as_fn_arith () 3494 { 3495 as_val=`expr "$@" || test $? -eq 1` 3496 } 3497fi # as_fn_arith 3498 3499 3500if expr a : '\(a\)' >/dev/null 2>&1 && 3501 test "X`expr 00001 : '.*\(...\)'`" = X001; then 3502 as_expr=expr 3503else 3504 as_expr=false 3505fi 3506 3507if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then 3508 as_basename=basename 3509else 3510 as_basename=false 3511fi 3512 3513if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then 3514 as_dirname=dirname 3515else 3516 as_dirname=false 3517fi 3518 3519as_me=`$as_basename -- "$0" || 3520$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ 3521 X"$0" : 'X\(//\)$' \| \ 3522 X"$0" : 'X\(/\)' \| . 2>/dev/null || 3523$as_echo X/"$0" | 3524 sed '/^.*\/\([^/][^/]*\)\/*$/{ 3525 s//\1/ 3526 q 3527 } 3528 /^X\/\(\/\/\)$/{ 3529 s//\1/ 3530 q 3531 } 3532 /^X\/\(\/\).*/{ 3533 s//\1/ 3534 q 3535 } 3536 s/.*/./; q'` 3537 3538# Avoid depending upon Character Ranges. 3539as_cr_letters='abcdefghijklmnopqrstuvwxyz' 3540as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' 3541as_cr_Letters=$as_cr_letters$as_cr_LETTERS 3542as_cr_digits='0123456789' 3543as_cr_alnum=$as_cr_Letters$as_cr_digits 3544 3545ECHO_C= ECHO_N= ECHO_T= 3546case `echo -n x` in #((((( 3547-n*) 3548 case `echo 'xy\c'` in 3549 *c*) ECHO_T=' ';; # ECHO_T is single tab character. 3550 xy) ECHO_C='\c';; 3551 *) echo `echo ksh88 bug on AIX 6.1` > /dev/null 3552 ECHO_T=' ';; 3553 esac;; 3554*) 3555 ECHO_N='-n';; 3556esac 3557 3558rm -f conf$$ conf$$.exe conf$$.file 3559if test -d conf$$.dir; then 3560 rm -f conf$$.dir/conf$$.file 3561else 3562 rm -f conf$$.dir 3563 mkdir conf$$.dir 2>/dev/null 3564fi 3565if (echo >conf$$.file) 2>/dev/null; then 3566 if ln -s conf$$.file conf$$ 2>/dev/null; then 3567 as_ln_s='ln -s' 3568 # ... but there are two gotchas: 3569 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. 3570 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. 3571 # In both cases, we have to default to `cp -pR'. 3572 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || 3573 as_ln_s='cp -pR' 3574 elif ln conf$$.file conf$$ 2>/dev/null; then 3575 as_ln_s=ln 3576 else 3577 as_ln_s='cp -pR' 3578 fi 3579else 3580 as_ln_s='cp -pR' 3581fi 3582rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file 3583rmdir conf$$.dir 2>/dev/null 3584 3585 3586# as_fn_mkdir_p 3587# ------------- 3588# Create "$as_dir" as a directory, including parents if necessary. 3589as_fn_mkdir_p () 3590{ 3591 3592 case $as_dir in #( 3593 -*) as_dir=./$as_dir;; 3594 esac 3595 test -d "$as_dir" || eval $as_mkdir_p || { 3596 as_dirs= 3597 while :; do 3598 case $as_dir in #( 3599 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( 3600 *) as_qdir=$as_dir;; 3601 esac 3602 as_dirs="'$as_qdir' $as_dirs" 3603 as_dir=`$as_dirname -- "$as_dir" || 3604$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 3605 X"$as_dir" : 'X\(//\)[^/]' \| \ 3606 X"$as_dir" : 'X\(//\)$' \| \ 3607 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || 3608$as_echo X"$as_dir" | 3609 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 3610 s//\1/ 3611 q 3612 } 3613 /^X\(\/\/\)[^/].*/{ 3614 s//\1/ 3615 q 3616 } 3617 /^X\(\/\/\)$/{ 3618 s//\1/ 3619 q 3620 } 3621 /^X\(\/\).*/{ 3622 s//\1/ 3623 q 3624 } 3625 s/.*/./; q'` 3626 test -d "$as_dir" && break 3627 done 3628 test -z "$as_dirs" || eval "mkdir $as_dirs" 3629 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" 3630 3631 3632} # as_fn_mkdir_p 3633if mkdir -p . 2>/dev/null; then 3634 as_mkdir_p='mkdir -p "$as_dir"' 3635else 3636 test -d ./-p && rmdir ./-p 3637 as_mkdir_p=false 3638fi 3639 3640 3641# as_fn_executable_p FILE 3642# ----------------------- 3643# Test if FILE is an executable regular file. 3644as_fn_executable_p () 3645{ 3646 test -f "$1" && test -x "$1" 3647} # as_fn_executable_p 3648as_test_x='test -x' 3649as_executable_p=as_fn_executable_p 3650 3651# Sed expression to map a string onto a valid CPP name. 3652as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" 3653 3654# Sed expression to map a string onto a valid variable name. 3655as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" 3656 3657 3658exec 6>&1 3659## ----------------------------------- ## 3660## Main body of $CONFIG_STATUS script. ## 3661## ----------------------------------- ## 3662_ASEOF 3663test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 3664 3665cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 3666# Save the log message, to keep $0 and so on meaningful, and to 3667# report actual input values of CONFIG_FILES etc. instead of their 3668# values after options handling. 3669ac_log=" 3670This file was extended by ELFIOTest $as_me 3.9, which was 3671generated by GNU Autoconf 2.69. Invocation command line was 3672 3673 CONFIG_FILES = $CONFIG_FILES 3674 CONFIG_HEADERS = $CONFIG_HEADERS 3675 CONFIG_LINKS = $CONFIG_LINKS 3676 CONFIG_COMMANDS = $CONFIG_COMMANDS 3677 $ $0 $@ 3678 3679on `(hostname || uname -n) 2>/dev/null | sed 1q` 3680" 3681 3682_ACEOF 3683 3684case $ac_config_files in *" 3685"*) set x $ac_config_files; shift; ac_config_files=$*;; 3686esac 3687 3688 3689 3690cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 3691# Files that config.status was made for. 3692config_files="$ac_config_files" 3693config_commands="$ac_config_commands" 3694 3695_ACEOF 3696 3697cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 3698ac_cs_usage="\ 3699\`$as_me' instantiates files and other configuration actions 3700from templates according to the current configuration. Unless the files 3701and actions are specified as TAGs, all are instantiated by default. 3702 3703Usage: $0 [OPTION]... [TAG]... 3704 3705 -h, --help print this help, then exit 3706 -V, --version print version number and configuration settings, then exit 3707 --config print configuration, then exit 3708 -q, --quiet, --silent 3709 do not print progress messages 3710 -d, --debug don't remove temporary files 3711 --recheck update $as_me by reconfiguring in the same conditions 3712 --file=FILE[:TEMPLATE] 3713 instantiate the configuration file FILE 3714 3715Configuration files: 3716$config_files 3717 3718Configuration commands: 3719$config_commands 3720 3721Report bugs to the package provider." 3722 3723_ACEOF 3724cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 3725ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" 3726ac_cs_version="\\ 3727ELFIOTest config.status 3.9 3728configured by $0, generated by GNU Autoconf 2.69, 3729 with options \\"\$ac_cs_config\\" 3730 3731Copyright (C) 2012 Free Software Foundation, Inc. 3732This config.status script is free software; the Free Software Foundation 3733gives unlimited permission to copy, distribute and modify it." 3734 3735ac_pwd='$ac_pwd' 3736srcdir='$srcdir' 3737INSTALL='$INSTALL' 3738MKDIR_P='$MKDIR_P' 3739AWK='$AWK' 3740test -n "\$AWK" || AWK=awk 3741_ACEOF 3742 3743cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 3744# The default lists apply if the user does not specify any file. 3745ac_need_defaults=: 3746while test $# != 0 3747do 3748 case $1 in 3749 --*=?*) 3750 ac_option=`expr "X$1" : 'X\([^=]*\)='` 3751 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` 3752 ac_shift=: 3753 ;; 3754 --*=) 3755 ac_option=`expr "X$1" : 'X\([^=]*\)='` 3756 ac_optarg= 3757 ac_shift=: 3758 ;; 3759 *) 3760 ac_option=$1 3761 ac_optarg=$2 3762 ac_shift=shift 3763 ;; 3764 esac 3765 3766 case $ac_option in 3767 # Handling of the options. 3768 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) 3769 ac_cs_recheck=: ;; 3770 --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) 3771 $as_echo "$ac_cs_version"; exit ;; 3772 --config | --confi | --conf | --con | --co | --c ) 3773 $as_echo "$ac_cs_config"; exit ;; 3774 --debug | --debu | --deb | --de | --d | -d ) 3775 debug=: ;; 3776 --file | --fil | --fi | --f ) 3777 $ac_shift 3778 case $ac_optarg in 3779 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; 3780 '') as_fn_error $? "missing file argument" ;; 3781 esac 3782 as_fn_append CONFIG_FILES " '$ac_optarg'" 3783 ac_need_defaults=false;; 3784 --he | --h | --help | --hel | -h ) 3785 $as_echo "$ac_cs_usage"; exit ;; 3786 -q | -quiet | --quiet | --quie | --qui | --qu | --q \ 3787 | -silent | --silent | --silen | --sile | --sil | --si | --s) 3788 ac_cs_silent=: ;; 3789 3790 # This is an error. 3791 -*) as_fn_error $? "unrecognized option: \`$1' 3792Try \`$0 --help' for more information." ;; 3793 3794 *) as_fn_append ac_config_targets " $1" 3795 ac_need_defaults=false ;; 3796 3797 esac 3798 shift 3799done 3800 3801ac_configure_extra_args= 3802 3803if $ac_cs_silent; then 3804 exec 6>/dev/null 3805 ac_configure_extra_args="$ac_configure_extra_args --silent" 3806fi 3807 3808_ACEOF 3809cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 3810if \$ac_cs_recheck; then 3811 set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion 3812 shift 3813 \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 3814 CONFIG_SHELL='$SHELL' 3815 export CONFIG_SHELL 3816 exec "\$@" 3817fi 3818 3819_ACEOF 3820cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 3821exec 5>>config.log 3822{ 3823 echo 3824 sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX 3825## Running $as_me. ## 3826_ASBOX 3827 $as_echo "$ac_log" 3828} >&5 3829 3830_ACEOF 3831cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 3832# 3833# INIT-COMMANDS 3834# 3835AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}" 3836 3837_ACEOF 3838 3839cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 3840 3841# Handling of arguments. 3842for ac_config_target in $ac_config_targets 3843do 3844 case $ac_config_target in 3845 "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; 3846 "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; 3847 3848 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; 3849 esac 3850done 3851 3852 3853# If the user did not use the arguments to specify the items to instantiate, 3854# then the envvar interface is used. Set only those that are not. 3855# We use the long form for the default assignment because of an extremely 3856# bizarre bug on SunOS 4.1.3. 3857if $ac_need_defaults; then 3858 test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files 3859 test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands 3860fi 3861 3862# Have a temporary directory for convenience. Make it in the build tree 3863# simply because there is no reason against having it here, and in addition, 3864# creating and moving files from /tmp can sometimes cause problems. 3865# Hook for its removal unless debugging. 3866# Note that there is a small window in which the directory will not be cleaned: 3867# after its creation but before its name has been assigned to `$tmp'. 3868$debug || 3869{ 3870 tmp= ac_tmp= 3871 trap 'exit_status=$? 3872 : "${ac_tmp:=$tmp}" 3873 { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status 3874' 0 3875 trap 'as_fn_exit 1' 1 2 13 15 3876} 3877# Create a (secure) tmp directory for tmp files. 3878 3879{ 3880 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && 3881 test -d "$tmp" 3882} || 3883{ 3884 tmp=./conf$$-$RANDOM 3885 (umask 077 && mkdir "$tmp") 3886} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 3887ac_tmp=$tmp 3888 3889# Set up the scripts for CONFIG_FILES section. 3890# No need to generate them if there are no CONFIG_FILES. 3891# This happens for instance with `./config.status config.h'. 3892if test -n "$CONFIG_FILES"; then 3893 3894 3895ac_cr=`echo X | tr X '\015'` 3896# On cygwin, bash can eat \r inside `` if the user requested igncr. 3897# But we know of no other shell where ac_cr would be empty at this 3898# point, so we can use a bashism as a fallback. 3899if test "x$ac_cr" = x; then 3900 eval ac_cr=\$\'\\r\' 3901fi 3902ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` 3903if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then 3904 ac_cs_awk_cr='\\r' 3905else 3906 ac_cs_awk_cr=$ac_cr 3907fi 3908 3909echo 'BEGIN {' >"$ac_tmp/subs1.awk" && 3910_ACEOF 3911 3912 3913{ 3914 echo "cat >conf$$subs.awk <<_ACEOF" && 3915 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && 3916 echo "_ACEOF" 3917} >conf$$subs.sh || 3918 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 3919ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` 3920ac_delim='%!_!# ' 3921for ac_last_try in false false false false false :; do 3922 . ./conf$$subs.sh || 3923 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 3924 3925 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` 3926 if test $ac_delim_n = $ac_delim_num; then 3927 break 3928 elif $ac_last_try; then 3929 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 3930 else 3931 ac_delim="$ac_delim!$ac_delim _$ac_delim!! " 3932 fi 3933done 3934rm -f conf$$subs.sh 3935 3936cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 3937cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && 3938_ACEOF 3939sed -n ' 3940h 3941s/^/S["/; s/!.*/"]=/ 3942p 3943g 3944s/^[^!]*!// 3945:repl 3946t repl 3947s/'"$ac_delim"'$// 3948t delim 3949:nl 3950h 3951s/\(.\{148\}\)..*/\1/ 3952t more1 3953s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ 3954p 3955n 3956b repl 3957:more1 3958s/["\\]/\\&/g; s/^/"/; s/$/"\\/ 3959p 3960g 3961s/.\{148\}// 3962t nl 3963:delim 3964h 3965s/\(.\{148\}\)..*/\1/ 3966t more2 3967s/["\\]/\\&/g; s/^/"/; s/$/"/ 3968p 3969b 3970:more2 3971s/["\\]/\\&/g; s/^/"/; s/$/"\\/ 3972p 3973g 3974s/.\{148\}// 3975t delim 3976' <conf$$subs.awk | sed ' 3977/^[^""]/{ 3978 N 3979 s/\n// 3980} 3981' >>$CONFIG_STATUS || ac_write_fail=1 3982rm -f conf$$subs.awk 3983cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 3984_ACAWK 3985cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && 3986 for (key in S) S_is_set[key] = 1 3987 FS = "" 3988 3989} 3990{ 3991 line = $ 0 3992 nfields = split(line, field, "@") 3993 substed = 0 3994 len = length(field[1]) 3995 for (i = 2; i < nfields; i++) { 3996 key = field[i] 3997 keylen = length(key) 3998 if (S_is_set[key]) { 3999 value = S[key] 4000 line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) 4001 len += length(value) + length(field[++i]) 4002 substed = 1 4003 } else 4004 len += 1 + keylen 4005 } 4006 4007 print line 4008} 4009 4010_ACAWK 4011_ACEOF 4012cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 4013if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then 4014 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" 4015else 4016 cat 4017fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ 4018 || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 4019_ACEOF 4020 4021# VPATH may cause trouble with some makes, so we remove sole $(srcdir), 4022# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and 4023# trailing colons and then remove the whole line if VPATH becomes empty 4024# (actually we leave an empty line to preserve line numbers). 4025if test "x$srcdir" = x.; then 4026 ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ 4027h 4028s/// 4029s/^/:/ 4030s/[ ]*$/:/ 4031s/:\$(srcdir):/:/g 4032s/:\${srcdir}:/:/g 4033s/:@srcdir@:/:/g 4034s/^:*// 4035s/:*$// 4036x 4037s/\(=[ ]*\).*/\1/ 4038G 4039s/\n// 4040s/^[^=]*=[ ]*$// 4041}' 4042fi 4043 4044cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 4045fi # test -n "$CONFIG_FILES" 4046 4047 4048eval set X " :F $CONFIG_FILES :C $CONFIG_COMMANDS" 4049shift 4050for ac_tag 4051do 4052 case $ac_tag in 4053 :[FHLC]) ac_mode=$ac_tag; continue;; 4054 esac 4055 case $ac_mode$ac_tag in 4056 :[FHL]*:*);; 4057 :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; 4058 :[FH]-) ac_tag=-:-;; 4059 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; 4060 esac 4061 ac_save_IFS=$IFS 4062 IFS=: 4063 set x $ac_tag 4064 IFS=$ac_save_IFS 4065 shift 4066 ac_file=$1 4067 shift 4068 4069 case $ac_mode in 4070 :L) ac_source=$1;; 4071 :[FH]) 4072 ac_file_inputs= 4073 for ac_f 4074 do 4075 case $ac_f in 4076 -) ac_f="$ac_tmp/stdin";; 4077 *) # Look for the file first in the build tree, then in the source tree 4078 # (if the path is not absolute). The absolute path cannot be DOS-style, 4079 # because $ac_f cannot contain `:'. 4080 test -f "$ac_f" || 4081 case $ac_f in 4082 [\\/$]*) false;; 4083 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; 4084 esac || 4085 as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; 4086 esac 4087 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac 4088 as_fn_append ac_file_inputs " '$ac_f'" 4089 done 4090 4091 # Let's still pretend it is `configure' which instantiates (i.e., don't 4092 # use $as_me), people would be surprised to read: 4093 # /* config.h. Generated by config.status. */ 4094 configure_input='Generated from '` 4095 $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' 4096 `' by configure.' 4097 if test x"$ac_file" != x-; then 4098 configure_input="$ac_file. $configure_input" 4099 { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 4100$as_echo "$as_me: creating $ac_file" >&6;} 4101 fi 4102 # Neutralize special characters interpreted by sed in replacement strings. 4103 case $configure_input in #( 4104 *\&* | *\|* | *\\* ) 4105 ac_sed_conf_input=`$as_echo "$configure_input" | 4106 sed 's/[\\\\&|]/\\\\&/g'`;; #( 4107 *) ac_sed_conf_input=$configure_input;; 4108 esac 4109 4110 case $ac_tag in 4111 *:-:* | *:-) cat >"$ac_tmp/stdin" \ 4112 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; 4113 esac 4114 ;; 4115 esac 4116 4117 ac_dir=`$as_dirname -- "$ac_file" || 4118$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 4119 X"$ac_file" : 'X\(//\)[^/]' \| \ 4120 X"$ac_file" : 'X\(//\)$' \| \ 4121 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || 4122$as_echo X"$ac_file" | 4123 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 4124 s//\1/ 4125 q 4126 } 4127 /^X\(\/\/\)[^/].*/{ 4128 s//\1/ 4129 q 4130 } 4131 /^X\(\/\/\)$/{ 4132 s//\1/ 4133 q 4134 } 4135 /^X\(\/\).*/{ 4136 s//\1/ 4137 q 4138 } 4139 s/.*/./; q'` 4140 as_dir="$ac_dir"; as_fn_mkdir_p 4141 ac_builddir=. 4142 4143case "$ac_dir" in 4144.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; 4145*) 4146 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` 4147 # A ".." for each directory in $ac_dir_suffix. 4148 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` 4149 case $ac_top_builddir_sub in 4150 "") ac_top_builddir_sub=. ac_top_build_prefix= ;; 4151 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; 4152 esac ;; 4153esac 4154ac_abs_top_builddir=$ac_pwd 4155ac_abs_builddir=$ac_pwd$ac_dir_suffix 4156# for backward compatibility: 4157ac_top_builddir=$ac_top_build_prefix 4158 4159case $srcdir in 4160 .) # We are building in place. 4161 ac_srcdir=. 4162 ac_top_srcdir=$ac_top_builddir_sub 4163 ac_abs_top_srcdir=$ac_pwd ;; 4164 [\\/]* | ?:[\\/]* ) # Absolute name. 4165 ac_srcdir=$srcdir$ac_dir_suffix; 4166 ac_top_srcdir=$srcdir 4167 ac_abs_top_srcdir=$srcdir ;; 4168 *) # Relative name. 4169 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix 4170 ac_top_srcdir=$ac_top_build_prefix$srcdir 4171 ac_abs_top_srcdir=$ac_pwd/$srcdir ;; 4172esac 4173ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix 4174 4175 4176 case $ac_mode in 4177 :F) 4178 # 4179 # CONFIG_FILE 4180 # 4181 4182 case $INSTALL in 4183 [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; 4184 *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; 4185 esac 4186 ac_MKDIR_P=$MKDIR_P 4187 case $MKDIR_P in 4188 [\\/$]* | ?:[\\/]* ) ;; 4189 */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; 4190 esac 4191_ACEOF 4192 4193cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 4194# If the template does not know about datarootdir, expand it. 4195# FIXME: This hack should be removed a few years after 2.60. 4196ac_datarootdir_hack=; ac_datarootdir_seen= 4197ac_sed_dataroot=' 4198/datarootdir/ { 4199 p 4200 q 4201} 4202/@datadir@/p 4203/@docdir@/p 4204/@infodir@/p 4205/@localedir@/p 4206/@mandir@/p' 4207case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in 4208*datarootdir*) ac_datarootdir_seen=yes;; 4209*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) 4210 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 4211$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} 4212_ACEOF 4213cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 4214 ac_datarootdir_hack=' 4215 s&@datadir@&$datadir&g 4216 s&@docdir@&$docdir&g 4217 s&@infodir@&$infodir&g 4218 s&@localedir@&$localedir&g 4219 s&@mandir@&$mandir&g 4220 s&\\\${datarootdir}&$datarootdir&g' ;; 4221esac 4222_ACEOF 4223 4224# Neutralize VPATH when `$srcdir' = `.'. 4225# Shell code in configure.ac might set extrasub. 4226# FIXME: do we really want to maintain this feature? 4227cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 4228ac_sed_extra="$ac_vpsub 4229$extrasub 4230_ACEOF 4231cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 4232:t 4233/@[a-zA-Z_][a-zA-Z_0-9]*@/!b 4234s|@configure_input@|$ac_sed_conf_input|;t t 4235s&@top_builddir@&$ac_top_builddir_sub&;t t 4236s&@top_build_prefix@&$ac_top_build_prefix&;t t 4237s&@srcdir@&$ac_srcdir&;t t 4238s&@abs_srcdir@&$ac_abs_srcdir&;t t 4239s&@top_srcdir@&$ac_top_srcdir&;t t 4240s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t 4241s&@builddir@&$ac_builddir&;t t 4242s&@abs_builddir@&$ac_abs_builddir&;t t 4243s&@abs_top_builddir@&$ac_abs_top_builddir&;t t 4244s&@INSTALL@&$ac_INSTALL&;t t 4245s&@MKDIR_P@&$ac_MKDIR_P&;t t 4246$ac_datarootdir_hack 4247" 4248eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ 4249 >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 4250 4251test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && 4252 { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && 4253 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ 4254 "$ac_tmp/out"`; test -z "$ac_out"; } && 4255 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' 4256which seems to be undefined. Please make sure it is defined" >&5 4257$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' 4258which seems to be undefined. Please make sure it is defined" >&2;} 4259 4260 rm -f "$ac_tmp/stdin" 4261 case $ac_file in 4262 -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; 4263 *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; 4264 esac \ 4265 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 4266 ;; 4267 4268 4269 :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 4270$as_echo "$as_me: executing $ac_file commands" >&6;} 4271 ;; 4272 esac 4273 4274 4275 case $ac_file$ac_mode in 4276 "depfiles":C) test x"$AMDEP_TRUE" != x"" || { 4277 # Older Autoconf quotes --file arguments for eval, but not when files 4278 # are listed without --file. Let's play safe and only enable the eval 4279 # if we detect the quoting. 4280 # TODO: see whether this extra hack can be removed once we start 4281 # requiring Autoconf 2.70 or later. 4282 case $CONFIG_FILES in #( 4283 *\'*) : 4284 eval set x "$CONFIG_FILES" ;; #( 4285 *) : 4286 set x $CONFIG_FILES ;; #( 4287 *) : 4288 ;; 4289esac 4290 shift 4291 # Used to flag and report bootstrapping failures. 4292 am_rc=0 4293 for am_mf 4294 do 4295 # Strip MF so we end up with the name of the file. 4296 am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'` 4297 # Check whether this is an Automake generated Makefile which includes 4298 # dependency-tracking related rules and includes. 4299 # Grep'ing the whole file directly is not great: AIX grep has a line 4300 # limit of 2048, but all sed's we know have understand at least 4000. 4301 sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ 4302 || continue 4303 am_dirpart=`$as_dirname -- "$am_mf" || 4304$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 4305 X"$am_mf" : 'X\(//\)[^/]' \| \ 4306 X"$am_mf" : 'X\(//\)$' \| \ 4307 X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || 4308$as_echo X"$am_mf" | 4309 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 4310 s//\1/ 4311 q 4312 } 4313 /^X\(\/\/\)[^/].*/{ 4314 s//\1/ 4315 q 4316 } 4317 /^X\(\/\/\)$/{ 4318 s//\1/ 4319 q 4320 } 4321 /^X\(\/\).*/{ 4322 s//\1/ 4323 q 4324 } 4325 s/.*/./; q'` 4326 am_filepart=`$as_basename -- "$am_mf" || 4327$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \ 4328 X"$am_mf" : 'X\(//\)$' \| \ 4329 X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || 4330$as_echo X/"$am_mf" | 4331 sed '/^.*\/\([^/][^/]*\)\/*$/{ 4332 s//\1/ 4333 q 4334 } 4335 /^X\/\(\/\/\)$/{ 4336 s//\1/ 4337 q 4338 } 4339 /^X\/\(\/\).*/{ 4340 s//\1/ 4341 q 4342 } 4343 s/.*/./; q'` 4344 { echo "$as_me:$LINENO: cd "$am_dirpart" \ 4345 && sed -e '/# am--include-marker/d' "$am_filepart" \ 4346 | $MAKE -f - am--depfiles" >&5 4347 (cd "$am_dirpart" \ 4348 && sed -e '/# am--include-marker/d' "$am_filepart" \ 4349 | $MAKE -f - am--depfiles) >&5 2>&5 4350 ac_status=$? 4351 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4352 (exit $ac_status); } || am_rc=$? 4353 done 4354 if test $am_rc -ne 0; then 4355 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 4356$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 4357as_fn_error $? "Something went wrong bootstrapping makefile fragments 4358 for automatic dependency tracking. Try re-running configure with the 4359 '--disable-dependency-tracking' option to at least be able to build 4360 the package (albeit without support for automatic dependency tracking). 4361See \`config.log' for more details" "$LINENO" 5; } 4362 fi 4363 { am_dirpart=; unset am_dirpart;} 4364 { am_filepart=; unset am_filepart;} 4365 { am_mf=; unset am_mf;} 4366 { am_rc=; unset am_rc;} 4367 rm -f conftest-deps.mk 4368} 4369 ;; 4370 4371 esac 4372done # for ac_tag 4373 4374 4375as_fn_exit 0 4376_ACEOF 4377ac_clean_files=$ac_clean_files_save 4378 4379test $ac_write_fail = 0 || 4380 as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 4381 4382 4383# configure is writing to config.log, and then calls config.status. 4384# config.status does its own redirection, appending to config.log. 4385# Unfortunately, on DOS this fails, as config.log is still kept open 4386# by configure, so config.status won't be able to write to it; its 4387# output is simply discarded. So we exec the FD to /dev/null, 4388# effectively closing config.log, so it can be properly (re)opened and 4389# appended to by config.status. When coming back to configure, we 4390# need to make the FD available again. 4391if test "$no_create" != yes; then 4392 ac_cs_success=: 4393 ac_config_status_args= 4394 test "$silent" = yes && 4395 ac_config_status_args="$ac_config_status_args --quiet" 4396 exec 5>/dev/null 4397 $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false 4398 exec 5>>config.log 4399 # Use ||, not &&, to avoid exiting from the if with $? = 1, which 4400 # would make configure fail if this is the last instruction. 4401 $ac_cs_success || as_fn_exit 1 4402fi 4403if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then 4404 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 4405$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} 4406fi 4407 4408