
1: #! /bin/sh 2: # Guess values for system-dependent variables and create Makefiles. 3: # Generated by GNU Autoconf 2.59. 4: # 5: # Copyright (C) 2003 Free Software Foundation, Inc. 6: # This configure script is free software; the Free Software Foundation 7: # gives unlimited permission to copy, distribute and modify it. 8: ## --------------------- ## 9: ## M4sh Initialization. ## 10: ## --------------------- ## 11: 12: # Be Bourne compatible 13: if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 14: emulate sh 15: NULLCMD=: 16: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which 17: # is contrary to our usage. Disable this feature. 18: alias -g '${1+"$@"}'='"$@"' 19: elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then 20: set -o posix 21: fi 22: DUALCASE=1; export DUALCASE # for MKS sh 23: 24: # Support unset when possible. 25: if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then 26: as_unset=unset 27: else 28: as_unset=false 29: fi 30: 31: 32: # Work around bugs in pre-3.0 UWIN ksh. 33: $as_unset ENV MAIL MAILPATH 34: PS1='$ ' 35: PS2='> ' 36: PS4='+ ' 37: 38: # NLS nuisances. 39: for as_var in \ 40: LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ 41: LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ 42: LC_TELEPHONE LC_TIME 43: do 44: if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then 45: eval $as_var=C; export $as_var 46: else 47: $as_unset $as_var 48: fi 49: done 50: 51: # Required to use basename. 52: if expr a : '\(a\)' >/dev/null 2>&1; then 53: as_expr=expr 54: else 55: as_expr=false 56: fi 57: 58: if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then 59: as_basename=basename 60: else 61: as_basename=false 62: fi 63: 64: 65: # Name of the executable. 66: as_me=`$as_basename "$0" || 67: $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ 68: X"$0" : 'X\(//\)$' \| \ 69: X"$0" : 'X\(/\)$' \| \ 70: . : '\(.\)' 2>/dev/null || 71: echo X/"$0" | 72: sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } 73: /^X\/\(\/\/\)$/{ s//\1/; q; } 74: /^X\/\(\/\).*/{ s//\1/; q; } 75: s/.*/./; q'` 76: 77: 78: # PATH needs CR, and LINENO needs CR and PATH. 79: # Avoid depending upon Character Ranges. 80: as_cr_letters='abcdefghijklmnopqrstuvwxyz' 81: as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' 82: as_cr_Letters=$as_cr_letters$as_cr_LETTERS 83: as_cr_digits='0123456789' 84: as_cr_alnum=$as_cr_Letters$as_cr_digits 85: 86: # The user is always right. 87: if test "${PATH_SEPARATOR+set}" != set; then 88: echo "#! /bin/sh" >conf$$.sh 89: echo "exit 0" >>conf$$.sh 90: chmod +x conf$$.sh 91: if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then 92: PATH_SEPARATOR=';' 93: else 94: PATH_SEPARATOR=: 95: fi 96: rm -f conf$$.sh 97: fi 98: 99: 100: as_lineno_1=$LINENO 101: as_lineno_2=$LINENO 102: as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` 103: test "x$as_lineno_1" != "x$as_lineno_2" && 104: test "x$as_lineno_3" = "x$as_lineno_2" || { 105: # Find who we are. Look in the path if we contain no path at all 106: # relative or not. 107: case $0 in 108: *[\\/]* ) as_myself=$0 ;; 109: *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 110: for as_dir in $PATH 111: do 112: IFS=$as_save_IFS 113: test -z "$as_dir" && as_dir=. 114: test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break 115: done 116: 117: ;; 118: esac 119: # We did not find ourselves, most probably we were run as `sh COMMAND' 120: # in which case we are not to be found in the path. 121: if test "x$as_myself" = x; then 122: as_myself=$0 123: fi 124: if test ! -f "$as_myself"; then 125: { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 126: { (exit 1); exit 1; }; } 127: fi 128: case $CONFIG_SHELL in 129: '') 130: as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 131: for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH 132: do 133: IFS=$as_save_IFS 134: test -z "$as_dir" && as_dir=. 135: for as_base in sh bash ksh sh5; do 136: case $as_dir in 137: /*) 138: if ("$as_dir/$as_base" -c ' 139: as_lineno_1=$LINENO 140: as_lineno_2=$LINENO 141: as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` 142: test "x$as_lineno_1" != "x$as_lineno_2" && 143: test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then 144: $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } 145: $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } 146: CONFIG_SHELL=$as_dir/$as_base 147: export CONFIG_SHELL 148: exec "$CONFIG_SHELL" "$0" ${1+"$@"} 149: fi;; 150: esac 151: done 152: done 153: ;; 154: esac 155: 156: # Create $as_me.lineno as a copy of $as_myself, but with $LINENO 157: # uniformly replaced by the line number. The first 'sed' inserts a 158: # line-number line before each line; the second 'sed' does the real 159: # work. The second script uses 'N' to pair each line-number line 160: # with the numbered line, and appends trailing '-' during 161: # substitution so that $LINENO is not a special case at line end. 162: # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the 163: # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) 164: sed '=' <$as_myself | 165: sed ' 166: N 167: s,$,-, 168: : loop 169: s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, 170: t loop 171: s,-$,, 172: s,^['$as_cr_digits']*\n,, 173: ' >$as_me.lineno && 174: chmod +x $as_me.lineno || 175: { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 176: { (exit 1); exit 1; }; } 177: 178: # Don't try to exec as it changes $[0], causing all sort of problems 179: # (the dirname of $[0] is not the place where we might find the 180: # original and so on. Autoconf is especially sensible to this). 181: . ./$as_me.lineno 182: # Exit status is that of the last command. 183: exit 184: } 185: 186: 187: case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in 188: *c*,-n*) ECHO_N= ECHO_C=' 189: ' ECHO_T=' ' ;; 190: *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; 191: *) ECHO_N= ECHO_C='\c' ECHO_T= ;; 192: esac 193: 194: if expr a : '\(a\)' >/dev/null 2>&1; then 195: as_expr=expr 196: else 197: as_expr=false 198: fi 199: 200: rm -f conf$$ conf$$.exe conf$$.file 201: echo >conf$$.file 202: if ln -s conf$$.file conf$$ 2>/dev/null; then 203: # We could just check for DJGPP; but this test a) works b) is more generic 204: # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). 205: if test -f conf$$.exe; then 206: # Don't use ln at all; we don't have any links 207: as_ln_s='cp -p' 208: else 209: as_ln_s='ln -s' 210: fi 211: elif ln conf$$.file conf$$ 2>/dev/null; then 212: as_ln_s=ln 213: else 214: as_ln_s='cp -p' 215: fi 216: rm -f conf$$ conf$$.exe conf$$.file 217: 218: if mkdir -p . 2>/dev/null; then 219: as_mkdir_p=: 220: else 221: test -d ./-p && rmdir ./-p 222: as_mkdir_p=false 223: fi 224: 225: as_executable_p="test -f" 226: 227: # Sed expression to map a string onto a valid CPP name. 228: as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" 229: 230: # Sed expression to map a string onto a valid variable name. 231: as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" 232: 233: 234: # IFS 235: # We need space, tab and new line, in precisely that order. 236: as_nl=' 237: ' 238: IFS=" $as_nl" 239: 240: # CDPATH. 241: $as_unset CDPATH 242: 243: 244: # Name of the host. 245: # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, 246: # so uname gets run too. 247: ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` 248: 249: exec 6>&1 250: 251: # 252: # Initializations. 253: # 254: ac_default_prefix=/usr/local 255: ac_config_libobj_dir=. 256: cross_compiling=no 257: subdirs= 258: MFLAGS= 259: MAKEFLAGS= 260: SHELL=${CONFIG_SHELL-/bin/sh} 261: 262: # Maximum number of lines to put in a shell here document. 263: # This variable seems obsolete. It should probably be removed, and 264: # only ac_max_sed_lines should be used. 265: : ${ac_max_here_lines=38} 266: 267: # Identity of this package. 268: PACKAGE_NAME= 269: PACKAGE_TARNAME= 270: PACKAGE_VERSION= 271: PACKAGE_STRING= 272: PACKAGE_BUGREPORT= 273: 274: ac_unique_file="move-if-change" 275: ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os build_noncanonical host_noncanonical target_noncanonical host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA LN LN_S TOPLEVEL_CONFIGURE_ARGUMENTS build_libsubdir build_subdir host_subdir target_subdir CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CXX CXXFLAGS ac_ct_CXX GNATBIND ac_ct_GNATBIND GNATMAKE ac_ct_GNATMAKE do_compare gmplibs gmpinc stage1_languages SYSROOT_CFLAGS_FOR_TARGET RPATH_ENVVAR tooldir build_tooldir CONFIGURE_GDB_TK GDB_TK INSTALL_GDB_TK build_configargs build_configdirs host_configargs configdirs target_configargs CC_FOR_BUILD config_shell YACC BISON M4 LEX FLEX MAKEINFO EXPECT RUNTEST AR AS DLLTOOL LD LIPO NM RANLIB STRIP WINDRES WINDMC OBJCOPY OBJDUMP CFLAGS_FOR_BUILD CC_FOR_TARGET CXX_FOR_TARGET GCC_FOR_TARGET GCJ_FOR_TARGET GFORTRAN_FOR_TARGET AR_FOR_TARGET AS_FOR_TARGET DLLTOOL_FOR_TARGET LD_FOR_TARGET LIPO_FOR_TARGET NM_FOR_TARGET OBJDUMP_FOR_TARGET RANLIB_FOR_TARGET STRIP_FOR_TARGET WINDRES_FOR_TARGET WINDMC_FOR_TARGET RAW_CXX_FOR_TARGET FLAGS_FOR_TARGET COMPILER_AS_FOR_TARGET COMPILER_LD_FOR_TARGET COMPILER_NM_FOR_TARGET MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT stage1_cflags stage1_checking stage2_werror_flag datarootdir docdir pdfdir htmldir LIBOBJS LTLIBOBJS' 276: ac_subst_files='serialization_dependencies host_makefile_frag target_makefile_frag alphaieee_frag ospace_frag' 277: 278: # Initialize some variables set by options. 279: ac_init_help= 280: ac_init_version=false 281: # The variables have the same names as the options, with 282: # dashes changed to underlines. 283: cache_file=/dev/null 284: exec_prefix=NONE 285: no_create= 286: no_recursion= 287: prefix=NONE 288: program_prefix=NONE 289: program_suffix=NONE 290: program_transform_name=s,x,x, 291: silent= 292: site= 293: srcdir= 294: verbose= 295: x_includes=NONE 296: x_libraries=NONE 297: 298: # Installation directory options. 299: # These are left unexpanded so users can "make install exec_prefix=/foo" 300: # and all the variables that are supposed to be based on exec_prefix 301: # by default will actually change. 302: # Use braces instead of parens because sh, perl, etc. also accept them. 303: bindir='${exec_prefix}/bin' 304: sbindir='${exec_prefix}/sbin' 305: libexecdir='${exec_prefix}/libexec' 306: datadir='${prefix}/share' 307: sysconfdir='${prefix}/etc' 308: sharedstatedir='${prefix}/com' 309: localstatedir='${prefix}/var' 310: libdir='${exec_prefix}/lib' 311: includedir='${prefix}/include' 312: oldincludedir='/usr/include' 313: infodir='${prefix}/info' 314: mandir='${prefix}/man' 315: 316: ac_prev= 317: for ac_option 318: do 319: # If the previous option needs an argument, assign it. 320: if test -n "$ac_prev"; then 321: eval "$ac_prev=\$ac_option" 322: ac_prev= 323: continue 324: fi 325: 326: ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` 327: 328: # Accept the important Cygnus configure options, so we can diagnose typos. 329: 330: case $ac_option in 331: 332: -bindir | --bindir | --bindi | --bind | --bin | --bi) 333: ac_prev=bindir ;; 334: -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) 335: bindir=$ac_optarg ;; 336: 337: -build | --build | --buil | --bui | --bu) 338: ac_prev=build_alias ;; 339: -build=* | --build=* | --buil=* | --bui=* | --bu=*) 340: build_alias=$ac_optarg ;; 341: 342: -cache-file | --cache-file | --cache-fil | --cache-fi \ 343: | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) 344: ac_prev=cache_file ;; 345: -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ 346: | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) 347: cache_file=$ac_optarg ;; 348: 349: --config-cache | -C) 350: cache_file=config.cache ;; 351: 352: -datadir | --datadir | --datadi | --datad | --data | --dat | --da) 353: ac_prev=datadir ;; 354: -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ 355: | --da=*) 356: datadir=$ac_optarg ;; 357: 358: -disable-* | --disable-*) 359: ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` 360: # Reject names that are not valid shell variable names. 361: expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && 362: { echo "$as_me: error: invalid feature name: $ac_feature" >&2 363: { (exit 1); exit 1; }; } 364: ac_feature=`echo $ac_feature | sed 's/-/_/g'` 365: eval "enable_$ac_feature=no" ;; 366: 367: -enable-* | --enable-*) 368: ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` 369: # Reject names that are not valid shell variable names. 370: expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && 371: { echo "$as_me: error: invalid feature name: $ac_feature" >&2 372: { (exit 1); exit 1; }; } 373: ac_feature=`echo $ac_feature | sed 's/-/_/g'` 374: case $ac_option in 375: *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; 376: *) ac_optarg=yes ;; 377: esac 378: eval "enable_$ac_feature='$ac_optarg'" ;; 379: 380: -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ 381: | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ 382: | --exec | --exe | --ex) 383: ac_prev=exec_prefix ;; 384: -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ 385: | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ 386: | --exec=* | --exe=* | --ex=*) 387: exec_prefix=$ac_optarg ;; 388: 389: -gas | --gas | --ga | --g) 390: # Obsolete; use --with-gas. 391: with_gas=yes ;; 392: 393: -help | --help | --hel | --he | -h) 394: ac_init_help=long ;; 395: -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) 396: ac_init_help=recursive ;; 397: -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) 398: ac_init_help=short ;; 399: 400: -host | --host | --hos | --ho) 401: ac_prev=host_alias ;; 402: -host=* | --host=* | --hos=* | --ho=*) 403: host_alias=$ac_optarg ;; 404: 405: -includedir | --includedir | --includedi | --included | --include \ 406: | --includ | --inclu | --incl | --inc) 407: ac_prev=includedir ;; 408: -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ 409: | --includ=* | --inclu=* | --incl=* | --inc=*) 410: includedir=$ac_optarg ;; 411: 412: -infodir | --infodir | --infodi | --infod | --info | --inf) 413: ac_prev=infodir ;; 414: -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) 415: infodir=$ac_optarg ;; 416: 417: -libdir | --libdir | --libdi | --libd) 418: ac_prev=libdir ;; 419: -libdir=* | --libdir=* | --libdi=* | --libd=*) 420: libdir=$ac_optarg ;; 421: 422: -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ 423: | --libexe | --libex | --libe) 424: ac_prev=libexecdir ;; 425: -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ 426: | --libexe=* | --libex=* | --libe=*) 427: libexecdir=$ac_optarg ;; 428: 429: -localstatedir | --localstatedir | --localstatedi | --localstated \ 430: | --localstate | --localstat | --localsta | --localst \ 431: | --locals | --local | --loca | --loc | --lo) 432: ac_prev=localstatedir ;; 433: -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ 434: | --localstate=* | --localstat=* | --localsta=* | --localst=* \ 435: | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) 436: localstatedir=$ac_optarg ;; 437: 438: -mandir | --mandir | --mandi | --mand | --man | --ma | --m) 439: ac_prev=mandir ;; 440: -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) 441: mandir=$ac_optarg ;; 442: 443: -nfp | --nfp | --nf) 444: # Obsolete; use --without-fp. 445: with_fp=no ;; 446: 447: -no-create | --no-create | --no-creat | --no-crea | --no-cre \ 448: | --no-cr | --no-c | -n) 449: no_create=yes ;; 450: 451: -no-recursion | --no-recursion | --no-recursio | --no-recursi \ 452: | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) 453: no_recursion=yes ;; 454: 455: -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ 456: | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ 457: | --oldin | --oldi | --old | --ol | --o) 458: ac_prev=oldincludedir ;; 459: -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ 460: | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ 461: | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) 462: oldincludedir=$ac_optarg ;; 463: 464: -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) 465: ac_prev=prefix ;; 466: -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) 467: prefix=$ac_optarg ;; 468: 469: -program-prefix | --program-prefix | --program-prefi | --program-pref \ 470: | --program-pre | --program-pr | --program-p) 471: ac_prev=program_prefix ;; 472: -program-prefix=* | --program-prefix=* | --program-prefi=* \ 473: | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) 474: program_prefix=$ac_optarg ;; 475: 476: -program-suffix | --program-suffix | --program-suffi | --program-suff \ 477: | --program-suf | --program-su | --program-s) 478: ac_prev=program_suffix ;; 479: -program-suffix=* | --program-suffix=* | --program-suffi=* \ 480: | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) 481: program_suffix=$ac_optarg ;; 482: 483: -program-transform-name | --program-transform-name \ 484: | --program-transform-nam | --program-transform-na \ 485: | --program-transform-n | --program-transform- \ 486: | --program-transform | --program-transfor \ 487: | --program-transfo | --program-transf \ 488: | --program-trans | --program-tran \ 489: | --progr-tra | --program-tr | --program-t) 490: ac_prev=program_transform_name ;; 491: -program-transform-name=* | --program-transform-name=* \ 492: | --program-transform-nam=* | --program-transform-na=* \ 493: | --program-transform-n=* | --program-transform-=* \ 494: | --program-transform=* | --program-transfor=* \ 495: | --program-transfo=* | --program-transf=* \ 496: | --program-trans=* | --program-tran=* \ 497: | --progr-tra=* | --program-tr=* | --program-t=*) 498: program_transform_name=$ac_optarg ;; 499: 500: -q | -quiet | --quiet | --quie | --qui | --qu | --q \ 501: | -silent | --silent | --silen | --sile | --sil) 502: silent=yes ;; 503: 504: -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) 505: ac_prev=sbindir ;; 506: -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ 507: | --sbi=* | --sb=*) 508: sbindir=$ac_optarg ;; 509: 510: -sharedstatedir | --sharedstatedir | --sharedstatedi \ 511: | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ 512: | --sharedst | --shareds | --shared | --share | --shar \ 513: | --sha | --sh) 514: ac_prev=sharedstatedir ;; 515: -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ 516: | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ 517: | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ 518: | --sha=* | --sh=*) 519: sharedstatedir=$ac_optarg ;; 520: 521: -site | --site | --sit) 522: ac_prev=site ;; 523: -site=* | --site=* | --sit=*) 524: site=$ac_optarg ;; 525: 526: -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) 527: ac_prev=srcdir ;; 528: -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) 529: srcdir=$ac_optarg ;; 530: 531: -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ 532: | --syscon | --sysco | --sysc | --sys | --sy) 533: ac_prev=sysconfdir ;; 534: -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ 535: | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) 536: sysconfdir=$ac_optarg ;; 537: 538: -target | --target | --targe | --targ | --tar | --ta | --t) 539: ac_prev=target_alias ;; 540: -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) 541: target_alias=$ac_optarg ;; 542: 543: -v | -verbose | --verbose | --verbos | --verbo | --verb) 544: verbose=yes ;; 545: 546: -version | --version | --versio | --versi | --vers | -V) 547: ac_init_version=: ;; 548: 549: -with-* | --with-*) 550: ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` 551: # Reject names that are not valid shell variable names. 552: expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && 553: { echo "$as_me: error: invalid package name: $ac_package" >&2 554: { (exit 1); exit 1; }; } 555: ac_package=`echo $ac_package| sed 's/-/_/g'` 556: case $ac_option in 557: *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; 558: *) ac_optarg=yes ;; 559: esac 560: eval "with_$ac_package='$ac_optarg'" ;; 561: 562: -without-* | --without-*) 563: ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` 564: # Reject names that are not valid shell variable names. 565: expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && 566: { echo "$as_me: error: invalid package name: $ac_package" >&2 567: { (exit 1); exit 1; }; } 568: ac_package=`echo $ac_package | sed 's/-/_/g'` 569: eval "with_$ac_package=no" ;; 570: 571: --x) 572: # Obsolete; use --with-x. 573: with_x=yes ;; 574: 575: -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ 576: | --x-incl | --x-inc | --x-in | --x-i) 577: ac_prev=x_includes ;; 578: -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ 579: | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) 580: x_includes=$ac_optarg ;; 581: 582: -x-libraries | --x-libraries | --x-librarie | --x-librari \ 583: | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) 584: ac_prev=x_libraries ;; 585: -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ 586: | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) 587: x_libraries=$ac_optarg ;; 588: 589: -*) { echo "$as_me: error: unrecognized option: $ac_option 590: Try \`$0 --help' for more information." >&2 591: { (exit 1); exit 1; }; } 592: ;; 593: 594: *=*) 595: ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` 596: # Reject names that are not valid shell variable names. 597: expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && 598: { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 599: { (exit 1); exit 1; }; } 600: ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` 601: eval "$ac_envvar='$ac_optarg'" 602: export $ac_envvar ;; 603: 604: *) 605: # FIXME: should be removed in autoconf 3.0. 606: echo "$as_me: WARNING: you should use --build, --host, --target" >&2 607: expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && 608: echo "$as_me: WARNING: invalid host type: $ac_option" >&2 609: : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} 610: ;; 611: 612: esac 613: done 614: 615: if test -n "$ac_prev"; then 616: ac_option=--`echo $ac_prev | sed 's/_/-/g'` 617: { echo "$as_me: error: missing argument to $ac_option" >&2 618: { (exit 1); exit 1; }; } 619: fi 620: 621: # Be sure to have absolute paths. 622: for ac_var in exec_prefix prefix 623: do 624: eval ac_val=$`echo $ac_var` 625: case $ac_val in 626: [\\/$]* | ?:[\\/]* | NONE | '' ) ;; 627: *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 628: { (exit 1); exit 1; }; };; 629: esac 630: done 631: 632: # Be sure to have absolute paths. 633: for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ 634: localstatedir libdir includedir oldincludedir infodir mandir 635: do 636: eval ac_val=$`echo $ac_var` 637: case $ac_val in 638: [\\/$]* | ?:[\\/]* ) ;; 639: *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 640: { (exit 1); exit 1; }; };; 641: esac 642: done 643: 644: # There might be people who depend on the old broken behavior: `$host' 645: # used to hold the argument of --host etc. 646: # FIXME: To remove some day. 647: build=$build_alias 648: host=$host_alias 649: target=$target_alias 650: 651: # FIXME: To remove some day. 652: if test "x$host_alias" != x; then 653: if test "x$build_alias" = x; then 654: cross_compiling=maybe 655: echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. 656: If a cross compiler is detected then cross compile mode will be used." >&2 657: elif test "x$build_alias" != "x$host_alias"; then 658: cross_compiling=yes 659: fi 660: fi 661: 662: ac_tool_prefix= 663: test -n "$host_alias" && ac_tool_prefix=$host_alias- 664: 665: test "$silent" = yes && exec 6>/dev/null 666: 667: 668: # Find the source files, if location was not specified. 669: if test -z "$srcdir"; then 670: ac_srcdir_defaulted=yes 671: # Try the directory containing this script, then its parent. 672: ac_confdir=`(dirname "$0") 2>/dev/null || 673: $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 674: X"$0" : 'X\(//\)[^/]' \| \ 675: X"$0" : 'X\(//\)$' \| \ 676: X"$0" : 'X\(/\)' \| \ 677: . : '\(.\)' 2>/dev/null || 678: echo X"$0" | 679: sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } 680: /^X\(\/\/\)[^/].*/{ s//\1/; q; } 681: /^X\(\/\/\)$/{ s//\1/; q; } 682: /^X\(\/\).*/{ s//\1/; q; } 683: s/.*/./; q'` 684: srcdir=$ac_confdir 685: if test ! -r $srcdir/$ac_unique_file; then 686: srcdir=.. 687: fi 688: else 689: ac_srcdir_defaulted=no 690: fi 691: if test ! -r $srcdir/$ac_unique_file; then 692: if test "$ac_srcdir_defaulted" = yes; then 693: { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 694: { (exit 1); exit 1; }; } 695: else 696: { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 697: { (exit 1); exit 1; }; } 698: fi 699: fi 700: (cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || 701: { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 702: { (exit 1); exit 1; }; } 703: srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` 704: ac_env_build_alias_set=${build_alias+set} 705: ac_env_build_alias_value=$build_alias 706: ac_cv_env_build_alias_set=${build_alias+set} 707: ac_cv_env_build_alias_value=$build_alias 708: ac_env_host_alias_set=${host_alias+set} 709: ac_env_host_alias_value=$host_alias 710: ac_cv_env_host_alias_set=${host_alias+set} 711: ac_cv_env_host_alias_value=$host_alias 712: ac_env_target_alias_set=${target_alias+set} 713: ac_env_target_alias_value=$target_alias 714: ac_cv_env_target_alias_set=${target_alias+set} 715: ac_cv_env_target_alias_value=$target_alias 716: ac_env_CC_set=${CC+set} 717: ac_env_CC_value=$CC 718: ac_cv_env_CC_set=${CC+set} 719: ac_cv_env_CC_value=$CC 720: ac_env_CFLAGS_set=${CFLAGS+set} 721: ac_env_CFLAGS_value=$CFLAGS 722: ac_cv_env_CFLAGS_set=${CFLAGS+set} 723: ac_cv_env_CFLAGS_value=$CFLAGS 724: ac_env_LDFLAGS_set=${LDFLAGS+set} 725: ac_env_LDFLAGS_value=$LDFLAGS 726: ac_cv_env_LDFLAGS_set=${LDFLAGS+set} 727: ac_cv_env_LDFLAGS_value=$LDFLAGS 728: ac_env_CPPFLAGS_set=${CPPFLAGS+set} 729: ac_env_CPPFLAGS_value=$CPPFLAGS 730: ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} 731: ac_cv_env_CPPFLAGS_value=$CPPFLAGS 732: ac_env_CXX_set=${CXX+set} 733: ac_env_CXX_value=$CXX 734: ac_cv_env_CXX_set=${CXX+set} 735: ac_cv_env_CXX_value=$CXX 736: ac_env_CXXFLAGS_set=${CXXFLAGS+set} 737: ac_env_CXXFLAGS_value=$CXXFLAGS 738: ac_cv_env_CXXFLAGS_set=${CXXFLAGS+set} 739: ac_cv_env_CXXFLAGS_value=$CXXFLAGS 740: ac_env_AR_set=${AR+set} 741: ac_env_AR_value=$AR 742: ac_cv_env_AR_set=${AR+set} 743: ac_cv_env_AR_value=$AR 744: ac_env_AS_set=${AS+set} 745: ac_env_AS_value=$AS 746: ac_cv_env_AS_set=${AS+set} 747: ac_cv_env_AS_value=$AS 748: ac_env_DLLTOOL_set=${DLLTOOL+set} 749: ac_env_DLLTOOL_value=$DLLTOOL 750: ac_cv_env_DLLTOOL_set=${DLLTOOL+set} 751: ac_cv_env_DLLTOOL_value=$DLLTOOL 752: ac_env_LD_set=${LD+set} 753: ac_env_LD_value=$LD 754: ac_cv_env_LD_set=${LD+set} 755: ac_cv_env_LD_value=$LD 756: ac_env_LIPO_set=${LIPO+set} 757: ac_env_LIPO_value=$LIPO 758: ac_cv_env_LIPO_set=${LIPO+set} 759: ac_cv_env_LIPO_value=$LIPO 760: ac_env_NM_set=${NM+set} 761: ac_env_NM_value=$NM 762: ac_cv_env_NM_set=${NM+set} 763: ac_cv_env_NM_value=$NM 764: ac_env_RANLIB_set=${RANLIB+set} 765: ac_env_RANLIB_value=$RANLIB 766: ac_cv_env_RANLIB_set=${RANLIB+set} 767: ac_cv_env_RANLIB_value=$RANLIB 768: ac_env_STRIP_set=${STRIP+set} 769: ac_env_STRIP_value=$STRIP 770: ac_cv_env_STRIP_set=${STRIP+set} 771: ac_cv_env_STRIP_value=$STRIP 772: ac_env_WINDRES_set=${WINDRES+set} 773: ac_env_WINDRES_value=$WINDRES 774: ac_cv_env_WINDRES_set=${WINDRES+set} 775: ac_cv_env_WINDRES_value=$WINDRES 776: ac_env_WINDMC_set=${WINDMC+set} 777: ac_env_WINDMC_value=$WINDMC 778: ac_cv_env_WINDMC_set=${WINDMC+set} 779: ac_cv_env_WINDMC_value=$WINDMC 780: ac_env_OBJCOPY_set=${OBJCOPY+set} 781: ac_env_OBJCOPY_value=$OBJCOPY 782: ac_cv_env_OBJCOPY_set=${OBJCOPY+set} 783: ac_cv_env_OBJCOPY_value=$OBJCOPY 784: ac_env_OBJDUMP_set=${OBJDUMP+set} 785: ac_env_OBJDUMP_value=$OBJDUMP 786: ac_cv_env_OBJDUMP_set=${OBJDUMP+set} 787: ac_cv_env_OBJDUMP_value=$OBJDUMP 788: ac_env_CC_FOR_TARGET_set=${CC_FOR_TARGET+set} 789: ac_env_CC_FOR_TARGET_value=$CC_FOR_TARGET 790: ac_cv_env_CC_FOR_TARGET_set=${CC_FOR_TARGET+set} 791: ac_cv_env_CC_FOR_TARGET_value=$CC_FOR_TARGET 792: ac_env_CXX_FOR_TARGET_set=${CXX_FOR_TARGET+set} 793: ac_env_CXX_FOR_TARGET_value=$CXX_FOR_TARGET 794: ac_cv_env_CXX_FOR_TARGET_set=${CXX_FOR_TARGET+set} 795: ac_cv_env_CXX_FOR_TARGET_value=$CXX_FOR_TARGET 796: ac_env_GCC_FOR_TARGET_set=${GCC_FOR_TARGET+set} 797: ac_env_GCC_FOR_TARGET_value=$GCC_FOR_TARGET 798: ac_cv_env_GCC_FOR_TARGET_set=${GCC_FOR_TARGET+set}