Synopsis - Cross-Reference
File: /Synopsis/Parsers/Cxx/configure1#! /bin/sh 2# From configure.ac Revision: 1.9 . 3# Guess values for system-dependent variables and create Makefiles. 4# Generated by GNU Autoconf 2.61 for occ 0.8. 5# 6# Report bugs to <synopsis-devel@fresco.org>. 7# 8# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 9# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. 10# This configure script is free software; the Free Software Foundation 11# gives unlimited permission to copy, distribute and modify it. 12## --------------------- ## 13## M4sh Initialization. ## 14## --------------------- ## 15 16# Be more Bourne compatible 17DUALCASE=1; export DUALCASE # for MKS sh 18if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 19 emulate sh 20 NULLCMD=: 21 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which 22 # is contrary to our usage. Disable this feature. 23 alias -g '${1+"$@"}'='"$@"' 24 setopt NO_GLOB_SUBST 25else 26 case `(set -o) 2>/dev/null` in 27 *posix*) set -o posix ;; 28esac 29 30fi 31 32 33 34 35# PATH needs CR 36# Avoid depending upon Character Ranges. 37as_cr_letters='abcdefghijklmnopqrstuvwxyz' 38as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' 39as_cr_Letters=$as_cr_letters$as_cr_LETTERS 40as_cr_digits='0123456789' 41as_cr_alnum=$as_cr_Letters$as_cr_digits 42 43# The user is always right. 44if test "${PATH_SEPARATOR+set}" != set; then 45 echo "#! /bin/sh" >conf$$.sh 46 echo "exit 0" >>conf$$.sh 47 chmod +x conf$$.sh 48 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then 49 PATH_SEPARATOR=';' 50 else 51 PATH_SEPARATOR=: 52 fi 53 rm -f conf$$.sh 54fi 55 56# Support unset when possible. 57if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then 58 as_unset=unset 59else 60 as_unset=false 61fi 62 63 64# IFS 65# We need space, tab and new line, in precisely that order. Quoting is 66# there to prevent editors from complaining about space-tab. 67# (If _AS_PATH_WALK were called with IFS unset, it would disable word 68# splitting by setting IFS to empty value.) 69as_nl=' 70' 71IFS=" "" $as_nl" 72 73# Find who we are. Look in the path if we contain no directory separator. 74case $0 in 75 *[\\/]* ) as_myself=$0 ;; 76 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 77for as_dir in $PATH 78do 79 IFS=$as_save_IFS 80 test -z "$as_dir" && as_dir=. 81 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break 82done 83IFS=$as_save_IFS 84 85 ;; 86esac 87# We did not find ourselves, most probably we were run as `sh COMMAND' 88# in which case we are not to be found in the path. 89if test "x$as_myself" = x; then 90 as_myself=$0 91fi 92if test ! -f "$as_myself"; then 93 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 94 { (exit 1); exit 1; } 95fi 96 97# Work around bugs in pre-3.0 UWIN ksh. 98for as_var in ENV MAIL MAILPATH 99do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 100done 101PS1='$ ' 102PS2='> ' 103PS4='+ ' 104 105# NLS nuisances. 106for as_var in \ 107 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ 108 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ 109 LC_TELEPHONE LC_TIME 110do 111 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then 112 eval $as_var=C; export $as_var 113 else 114 ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 115 fi 116done 117 118# Required to use basename. 119if expr a : '\(a\)' >/dev/null 2>&1 && 120 test "X`expr 00001 : '.*\(...\)'`" = X001; then 121 as_expr=expr 122else 123 as_expr=false 124fi 125 126if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then 127 as_basename=basename 128else 129 as_basename=false 130fi 131 132 133# Name of the executable. 134as_me=`$as_basename -- "$0" || 135$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ 136 X"$0" : 'X\(//\)$' \| \ 137 X"$0" : 'X\(/\)' \| . 2>/dev/null || 138echo X/"$0" | 139 sed '/^.*\/\([^/][^/]*\)\/*$/{ 140 s//\1/ 141 q 142 } 143 /^X\/\(\/\/\)$/{ 144 s//\1/ 145 q 146 } 147 /^X\/\(\/\).*/{ 148 s//\1/ 149 q 150 } 151 s/.*/./; q'` 152 153# CDPATH. 154$as_unset CDPATH 155 156 157if test "x$CONFIG_SHELL" = x; then 158 if (eval ":") 2>/dev/null; then 159 as_have_required=yes 160else 161 as_have_required=no 162fi 163 164 if test $as_have_required = yes && (eval ": 165(as_func_return () { 166 (exit \$1) 167} 168as_func_success () { 169 as_func_return 0 170} 171as_func_failure () { 172 as_func_return 1 173} 174as_func_ret_success () { 175 return 0 176} 177as_func_ret_failure () { 178 return 1 179} 180 181exitcode=0 182if as_func_success; then 183 : 184else 185 exitcode=1 186 echo as_func_success failed. 187fi 188 189if as_func_failure; then 190 exitcode=1 191 echo as_func_failure succeeded. 192fi 193 194if as_func_ret_success; then 195 : 196else 197 exitcode=1 198 echo as_func_ret_success failed. 199fi 200 201if as_func_ret_failure; then 202 exitcode=1 203 echo as_func_ret_failure succeeded. 204fi 205 206if ( set x; as_func_ret_success y && test x = \"\$1\" ); then 207 : 208else 209 exitcode=1 210 echo positional parameters were not saved. 211fi 212 213test \$exitcode = 0) || { (exit 1); exit 1; } 214 215( 216 as_lineno_1=\$LINENO 217 as_lineno_2=\$LINENO 218 test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && 219 test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } 220") 2> /dev/null; then 221 : 222else 223 as_candidate_shells= 224 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 225for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH 226do 227 IFS=$as_save_IFS 228 test -z "$as_dir" && as_dir=. 229 case $as_dir in 230 /*) 231 for as_base in sh bash ksh sh5; do 232 as_candidate_shells="$as_candidate_shells $as_dir/$as_base" 233 done;; 234 esac 235done 236IFS=$as_save_IFS 237 238 239 for as_shell in $as_candidate_shells $SHELL; do 240 # Try only shells that exist, to save several forks. 241 if { test -f "$as_shell" || test -f "$as_shell.exe"; } && 242 { ("$as_shell") 2> /dev/null <<\_ASEOF 243if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 244 emulate sh 245 NULLCMD=: 246 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which 247 # is contrary to our usage. Disable this feature. 248 alias -g '${1+"$@"}'='"$@"' 249 setopt NO_GLOB_SUBST 250else 251 case `(set -o) 2>/dev/null` in 252 *posix*) set -o posix ;; 253esac 254 255fi 256 257 258: 259_ASEOF 260}; then 261 CONFIG_SHELL=$as_shell 262 as_have_required=yes 263 if { "$as_shell" 2> /dev/null <<\_ASEOF 264if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 265 emulate sh 266 NULLCMD=: 267 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which 268 # is contrary to our usage. Disable this feature. 269 alias -g '${1+"$@"}'='"$@"' 270 setopt NO_GLOB_SUBST 271else 272 case `(set -o) 2>/dev/null` in 273 *posix*) set -o posix ;; 274esac 275 276fi 277 278 279: 280(as_func_return () { 281 (exit $1) 282} 283as_func_success () { 284 as_func_return 0 285} 286as_func_failure () { 287 as_func_return 1 288} 289as_func_ret_success () { 290 return 0 291} 292as_func_ret_failure () { 293 return 1 294} 295 296exitcode=0 297if as_func_success; then 298 : 299else 300 exitcode=1 301 echo as_func_success failed. 302fi 303 304if as_func_failure; then 305 exitcode=1 306 echo as_func_failure succeeded. 307fi 308 309if as_func_ret_success; then 310 : 311else 312 exitcode=1 313 echo as_func_ret_success failed. 314fi 315 316if as_func_ret_failure; then 317 exitcode=1 318 echo as_func_ret_failure succeeded. 319fi 320 321if ( set x; as_func_ret_success y && test x = "$1" ); then 322 : 323else 324 exitcode=1 325 echo positional parameters were not saved. 326fi 327 328test $exitcode = 0) || { (exit 1); exit 1; } 329 330( 331 as_lineno_1=$LINENO 332 as_lineno_2=$LINENO 333 test "x$as_lineno_1" != "x$as_lineno_2" && 334 test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } 335 336_ASEOF 337}; then 338 break 339fi 340 341fi 342 343 done 344 345 if test "x$CONFIG_SHELL" != x; then 346 for as_var in BASH_ENV ENV 347 do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 348 done 349 export CONFIG_SHELL 350 exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} 351fi 352 353 354 if test $as_have_required = no; then 355 echo This script requires a shell more modern than all the 356 echo shells that I found on your system. Please install a 357 echo modern shell, or manually run the script under such a 358 echo shell if you do have one. 359 { (exit 1); exit 1; } 360fi 361 362 363fi 364 365fi 366 367 368 369(eval "as_func_return () { 370 (exit \$1) 371} 372as_func_success () { 373 as_func_return 0 374} 375as_func_failure () { 376 as_func_return 1 377} 378as_func_ret_success () { 379 return 0 380} 381as_func_ret_failure () { 382 return 1 383} 384 385exitcode=0 386if as_func_success; then 387 : 388else 389 exitcode=1 390 echo as_func_success failed. 391fi 392 393if as_func_failure; then 394 exitcode=1 395 echo as_func_failure succeeded. 396fi 397 398if as_func_ret_success; then 399 : 400else 401 exitcode=1 402 echo as_func_ret_success failed. 403fi 404 405if as_func_ret_failure; then 406 exitcode=1 407 echo as_func_ret_failure succeeded. 408fi 409 410if ( set x; as_func_ret_success y && test x = \"\$1\" ); then 411 : 412else 413 exitcode=1 414 echo positional parameters were not saved. 415fi 416 417test \$exitcode = 0") || { 418 echo No shell found that supports shell functions. 419 echo Please tell autoconf@gnu.org about your system, 420 echo including any error possibly output before this 421 echo message 422} 423 424 425 426 as_lineno_1=$LINENO 427 as_lineno_2=$LINENO 428 test "x$as_lineno_1" != "x$as_lineno_2" && 429 test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { 430 431 # Create $as_me.lineno as a copy of $as_myself, but with $LINENO 432 # uniformly replaced by the line number. The first 'sed' inserts a 433 # line-number line after each line using $LINENO; the second 'sed' 434 # does the real work. The second script uses 'N' to pair each 435 # line-number line with the line containing $LINENO, and appends 436 # trailing '-' during substitution so that $LINENO is not a special 437 # case at line end. 438 # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the 439 # scripts with optimization help from Paolo Bonzini. Blame Lee 440 # E. McMahon (1931-1989) for sed's syntax. :-) 441 sed -n ' 442 p 443 /[$]LINENO/= 444 ' <$as_myself | 445 sed ' 446 s/[$]LINENO.*/&-/ 447 t lineno 448 b 449 :lineno 450 N 451 :loop 452 s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ 453 t loop 454 s/-\n.*// 455 ' >$as_me.lineno && 456 chmod +x "$as_me.lineno" || 457 { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 458 { (exit 1); exit 1; }; } 459 460 # Don't try to exec as it changes $[0], causing all sort of problems 461 # (the dirname of $[0] is not the place where we might find the 462 # original and so on. Autoconf is especially sensitive to this). 463 . "./$as_me.lineno" 464 # Exit status is that of the last command. 465 exit 466} 467 468 469if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then 470 as_dirname=dirname 471else 472 as_dirname=false 473fi 474 475ECHO_C= ECHO_N= ECHO_T= 476case `echo -n x` in 477-n*) 478 case `echo 'x\c'` in 479 *c*) ECHO_T=' ';; # ECHO_T is single tab character. 480 *) ECHO_C='\c';; 481 esac;; 482*) 483 ECHO_N='-n';; 484esac 485 486if expr a : '\(a\)' >/dev/null 2>&1 && 487 test "X`expr 00001 : '.*\(...\)'`" = X001; then 488 as_expr=expr 489else 490 as_expr=false 491fi 492 493rm -f conf$$ conf$$.exe conf$$.file 494if test -d conf$$.dir; then 495 rm -f conf$$.dir/conf$$.file 496else 497 rm -f conf$$.dir 498 mkdir conf$$.dir 499fi 500echo >conf$$.file 501if ln -s conf$$.file conf$$ 2>/dev/null; then 502 as_ln_s='ln -s' 503 # ... but there are two gotchas: 504 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. 505 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. 506 # In both cases, we have to default to `cp -p'. 507 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || 508 as_ln_s='cp -p' 509elif ln conf$$.file conf$$ 2>/dev/null; then 510 as_ln_s=ln 511else 512 as_ln_s='cp -p' 513fi 514rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file 515rmdir conf$$.dir 2>/dev/null 516 517if mkdir -p . 2>/dev/null; then 518 as_mkdir_p=: 519else 520 test -d ./-p && rmdir ./-p 521 as_mkdir_p=false 522fi 523 524if test -x / >/dev/null 2>&1; then 525 as_test_x='test -x' 526else 527 if ls -dL / >/dev/null 2>&1; then 528 as_ls_L_option=L 529 else 530 as_ls_L_option= 531 fi 532 as_test_x=' 533 eval sh -c '\'' 534 if test -d "$1"; then 535 test -d "$1/."; 536 else 537 case $1 in 538 -*)set "./$1";; 539 esac; 540 case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in 541 ???[sx]*):;;*)false;;esac;fi 542 '\'' sh 543 ' 544fi 545as_executable_p=$as_test_x 546 547# Sed expression to map a string onto a valid CPP name. 548as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" 549 550# Sed expression to map a string onto a valid variable name. 551as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" 552 553 554 555exec 7<&0 </dev/null 6>&1 556 557# Name of the host. 558# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, 559# so uname gets run too. 560ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` 561 562# 563# Initializations. 564# 565ac_default_prefix=/usr/local 566ac_clean_files= 567ac_config_libobj_dir=. 568LIBOBJS= 569cross_compiling=no 570subdirs= 571MFLAGS= 572MAKEFLAGS= 573SHELL=${CONFIG_SHELL-/bin/sh} 574 575# Identity of this package. 576PACKAGE_NAME='occ' 577PACKAGE_TARNAME='occ' 578PACKAGE_VERSION='0.8' 579PACKAGE_STRING='occ 0.8' 580PACKAGE_BUGREPORT='synopsis-devel@fresco.org' 581 582ac_subst_vars='SHELL 583PATH_SEPARATOR 584PACKAGE_NAME 585PACKAGE_TARNAME 586PACKAGE_VERSION 587PACKAGE_STRING 588PACKAGE_BUGREPORT 589exec_prefix 590prefix 591program_transform_name 592bindir 593sbindir 594libexecdir 595datarootdir 596datadir 597sysconfdir 598sharedstatedir 599localstatedir 600includedir 601oldincludedir 602docdir 603infodir 604htmldir 605dvidir 606pdfdir 607psdir 608libdir 609localedir 610mandir 611DEFS 612ECHO_C 613ECHO_N 614ECHO_T 615LIBS 616build_alias 617host_alias 618target_alias 619CC 620CFLAGS 621LDFLAGS 622CPPFLAGS 623ac_ct_CC 624EXEEXT 625OBJEXT 626CPP 627CXX 628CXXFLAGS 629ac_ct_CXX 630SYN_CPP 631SYN_LIBS 632PYTHON 633PYTHON_INCLUDE 634LIBEXT 635LDSHARED 636topdir 637LIBOBJS 638LTLIBOBJS' 639ac_subst_files='' 640 ac_precious_vars='build_alias 641host_alias 642target_alias 643CC 644CFLAGS 645LDFLAGS 646LIBS 647CPPFLAGS 648CPP 649CXX 650CXXFLAGS 651CCC' 652 653 654# Initialize some variables set by options. 655ac_init_help= 656ac_init_version=false 657# The variables have the same names as the options, with 658# dashes changed to underlines. 659cache_file=/dev/null 660exec_prefix=NONE 661no_create= 662no_recursion= 663prefix=NONE 664program_prefix=NONE 665program_suffix=NONE 666program_transform_name=s,x,x, 667silent= 668site= 669srcdir= 670verbose= 671x_includes=NONE 672x_libraries=NONE 673 674# Installation directory options. 675# These are left unexpanded so users can "make install exec_prefix=/foo" 676# and all the variables that are supposed to be based on exec_prefix 677# by default will actually change. 678# Use braces instead of parens because sh, perl, etc. also accept them. 679# (The list follows the same order as the GNU Coding Standards.) 680bindir='${exec_prefix}/bin' 681sbindir='${exec_prefix}/sbin' 682libexecdir='${exec_prefix}/libexec' 683datarootdir='${prefix}/share' 684datadir='${datarootdir}' 685sysconfdir='${prefix}/etc' 686sharedstatedir='${prefix}/com' 687localstatedir='${prefix}/var' 688includedir='${prefix}/include' 689oldincludedir='/usr/include' 690docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' 691infodir='${datarootdir}/info' 692htmldir='${docdir}' 693dvidir='${docdir}' 694pdfdir='${docdir}' 695psdir='${docdir}' 696libdir='${exec_prefix}/lib' 697localedir='${datarootdir}/locale' 698mandir='${datarootdir}/man' 699 700ac_prev= 701ac_dashdash= 702for ac_option 703do 704 # If the previous option needs an argument, assign it. 705 if test -n "$ac_prev"; then 706 eval $ac_prev=\$ac_option 707 ac_prev= 708 continue 709 fi 710 711 case $ac_option in 712 *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; 713 *) ac_optarg=yes ;; 714 esac 715 716 # Accept the important Cygnus configure options, so we can diagnose typos. 717 718 case $ac_dashdash$ac_option in 719 --) 720 ac_dashdash=yes ;; 721 722 -bindir | --bindir | --bindi | --bind | --bin | --bi) 723 ac_prev=bindir ;; 724 -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) 725 bindir=$ac_optarg ;; 726 727 -build | --build | --buil | --bui | --bu) 728 ac_prev=build_alias ;; 729 -build=* | --build=* | --buil=* | --bui=* | --bu=*) 730 build_alias=$ac_optarg ;; 731 732 -cache-file | --cache-file | --cache-fil | --cache-fi \ 733 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) 734 ac_prev=cache_file ;; 735 -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ 736 | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) 737 cache_file=$ac_optarg ;; 738 739 --config-cache | -C) 740 cache_file=config.cache ;; 741 742 -datadir | --datadir | --datadi | --datad) 743 ac_prev=datadir ;; 744 -datadir=* | --datadir=* | --datadi=* | --datad=*) 745 datadir=$ac_optarg ;; 746 747 -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ 748 | --dataroo | --dataro | --datar) 749 ac_prev=datarootdir ;; 750 -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ 751 | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) 752 datarootdir=$ac_optarg ;; 753 754 -disable-* | --disable-*) 755 ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` 756 # Reject names that are not valid shell variable names. 757 expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && 758 { echo "$as_me: error: invalid feature name: $ac_feature" >&2 759 { (exit 1); exit 1; }; } 760 ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` 761 eval enable_$ac_feature=no ;; 762 763 -docdir | --docdir | --docdi | --doc | --do) 764 ac_prev=docdir ;; 765 -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) 766 docdir=$ac_optarg ;; 767 768 -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) 769 ac_prev=dvidir ;; 770 -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) 771 dvidir=$ac_optarg ;; 772 773 -enable-* | --enable-*) 774 ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` 775 # Reject names that are not valid shell variable names. 776 expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && 777 { echo "$as_me: error: invalid feature name: $ac_feature" >&2 778 { (exit 1); exit 1; }; } 779 ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` 780 eval enable_$ac_feature=\$ac_optarg ;; 781 782 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ 783 | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ 784 | --exec | --exe | --ex) 785 ac_prev=exec_prefix ;; 786 -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ 787 | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ 788 | --exec=* | --exe=* | --ex=*) 789 exec_prefix=$ac_optarg ;; 790 791 -gas | --gas | --ga | --g) 792 # Obsolete; use --with-gas. 793 with_gas=yes ;; 794 795 -help | --help | --hel | --he | -h) 796 ac_init_help=long ;; 797 -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) 798 ac_init_help=recursive ;; 799 -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) 800 ac_init_help=short ;; 801 802 -host | --host | --hos | --ho) 803 ac_prev=host_alias ;; 804 -host=* | --host=* | --hos=* | --ho=*) 805 host_alias=$ac_optarg ;; 806 807 -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) 808 ac_prev=htmldir ;; 809 -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ 810 | --ht=*) 811 htmldir=$ac_optarg ;; 812 813 -includedir | --includedir | --includedi | --included | --include \ 814 | --includ | --inclu | --incl | --inc) 815 ac_prev=includedir ;; 816 -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ 817 | --includ=* | --inclu=* | --incl=* | --inc=*) 818 includedir=$ac_optarg ;; 819 820 -infodir | --infodir | --infodi | --infod | --info | --inf) 821 ac_prev=infodir ;; 822 -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) 823 infodir=$ac_optarg ;; 824 825 -libdir | --libdir | --libdi | --libd) 826 ac_prev=libdir ;; 827 -libdir=* | --libdir=* | --libdi=* | --libd=*) 828 libdir=$ac_optarg ;; 829 830 -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ 831 | --libexe | --libex | --libe) 832 ac_prev=libexecdir ;; 833 -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ 834 | --libexe=* | --libex=* | --libe=*) 835 libexecdir=$ac_optarg ;; 836 837 -localedir | --localedir | --localedi | --localed | --locale) 838 ac_prev=localedir ;; 839 -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) 840 localedir=$ac_optarg ;; 841 842 -localstatedir | --localstatedir | --localstatedi | --localstated \ 843 | --localstate | --localstat | --localsta | --localst | --locals) 844 ac_prev=localstatedir ;; 845 -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ 846 | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) 847 localstatedir=$ac_optarg ;; 848 849 -mandir | --mandir | --mandi | --mand | --man | --ma | --m) 850 ac_prev=mandir ;; 851 -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) 852 mandir=$ac_optarg ;; 853 854 -nfp | --nfp | --nf) 855 # Obsolete; use --without-fp. 856 with_fp=no ;; 857 858 -no-create | --no-create | --no-creat | --no-crea | --no-cre \ 859 | --no-cr | --no-c | -n) 860 no_create=yes ;; 861 862 -no-recursion | --no-recursion | --no-recursio | --no-recursi \ 863 | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) 864 no_recursion=yes ;; 865 866 -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ 867 | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ 868 | --oldin | --oldi | --old | --ol | --o) 869 ac_prev=oldincludedir ;; 870 -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ 871 | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ 872 | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) 873 oldincludedir=$ac_optarg ;; 874 875 -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) 876 ac_prev=prefix ;; 877 -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) 878 prefix=$ac_optarg ;; 879 880 -program-prefix | --program-prefix | --program-prefi | --program-pref \ 881 | --program-pre | --program-pr | --program-p) 882 ac_prev=program_prefix ;; 883 -program-prefix=* | --program-prefix=* | --program-prefi=* \ 884 | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) 885 program_prefix=$ac_optarg ;; 886 887 -program-suffix | --program-suffix | --program-suffi | --program-suff \ 888 | --program-suf | --program-su | --program-s) 889 ac_prev=program_suffix ;; 890 -program-suffix=* | --program-suffix=* | --program-suffi=* \ 891 | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) 892 program_suffix=$ac_optarg ;; 893 894 -program-transform-name | --program-transform-name \ 895 | --program-transform-nam | --program-transform-na \ 896 | --program-transform-n | --program-transform- \ 897 | --program-transform | --program-transfor \ 898 | --program-transfo | --program-transf \ 899 | --program-trans | --program-tran \ 900 | --progr-tra | --program-tr | --program-t) 901 ac_prev=program_transform_name ;; 902 -program-transform-name=* | --program-transform-name=* \ 903 | --program-transform-nam=* | --program-transform-na=* \ 904 | --program-transform-n=* | --program-transform-=* \ 905 | --program-transform=* | --program-transfor=* \ 906 | --program-transfo=* | --program-transf=* \ 907 | --program-trans=* | --program-tran=* \ 908 | --progr-tra=* | --program-tr=* | --program-t=*) 909 program_transform_name=$ac_optarg ;; 910 911 -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) 912 ac_prev=pdfdir ;; 913 -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) 914 pdfdir=$ac_optarg ;; 915 916 -psdir | --psdir | --psdi | --psd | --ps) 917 ac_prev=psdir ;; 918 -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) 919 psdir=$ac_optarg ;; 920 921 -q | -quiet | --quiet | --quie | --qui | --qu | --q \ 922 | -silent | --silent | --silen | --sile | --sil) 923 silent=yes ;; 924 925 -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) 926 ac_prev=sbindir ;; 927 -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ 928 | --sbi=* | --sb=*) 929 sbindir=$ac_optarg ;; 930 931 -sharedstatedir | --sharedstatedir | --sharedstatedi \ 932 | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ 933 | --sharedst | --shareds | --shared | --share | --shar \ 934 | --sha | --sh) 935 ac_prev=sharedstatedir ;; 936 -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ 937 | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ 938 | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ 939 | --sha=* | --sh=*) 940 sharedstatedir=$ac_optarg ;; 941 942 -site | --site | --sit) 943 ac_prev=site ;; 944 -site=* | --site=* | --sit=*) 945 site=$ac_optarg ;; 946 947 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) 948 ac_prev=srcdir ;; 949 -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) 950 srcdir=$ac_optarg ;; 951 952 -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ 953 | --syscon | --sysco | --sysc | --sys | --sy) 954 ac_prev=sysconfdir ;; 955 -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ 956 | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) 957 sysconfdir=$ac_optarg ;; 958 959 -target | --target | --targe | --targ | --tar | --ta | --t) 960 ac_prev=target_alias ;; 961 -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) 962 target_alias=$ac_optarg ;; 963 964 -v | -verbose | --verbose | --verbos | --verbo | --verb) 965 verbose=yes ;; 966 967 -version | --version | --versio | --versi | --vers | -V) 968 ac_init_version=: ;; 969 970 -with-* | --with-*) 971 ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` 972 # Reject names that are not valid shell variable names. 973 expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && 974 { echo "$as_me: error: invalid package name: $ac_package" >&2 975 { (exit 1); exit 1; }; } 976 ac_package=`echo $ac_package | sed 's/[-.]/_/g'` 977 eval with_$ac_package=\$ac_optarg ;; 978 979 -without-* | --without-*) 980 ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` 981 # Reject names that are not valid shell variable names. 982 expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && 983 { echo "$as_me: error: invalid package name: $ac_package" >&2 984 { (exit 1); exit 1; }; } 985 ac_package=`echo $ac_package | sed 's/[-.]/_/g'` 986 eval with_$ac_package=no ;; 987 988 --x) 989 # Obsolete; use --with-x. 990 with_x=yes ;; 991 992 -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ 993 | --x-incl | --x-inc | --x-in | --x-i) 994 ac_prev=x_includes ;; 995 -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ 996 | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) 997 x_includes=$ac_optarg ;; 998 999 -x-libraries | --x-libraries | --x-librarie | --x-librari \ 1000 | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) 1001 ac_prev=x_libraries ;; 1002 -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ 1003 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) 1004 x_libraries=$ac_optarg ;; 1005 1006 -*) { echo "$as_me: error: unrecognized option: $ac_option 1007Try \`$0 --help' for more information." >&2 1008 { (exit 1); exit 1; }; } 1009 ;; 1010 1011 *=*) 1012 ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` 1013 # Reject names that are not valid shell variable names. 1014 expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && 1015 { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 1016 { (exit 1); exit 1; }; } 1017 eval $ac_envvar=\$ac_optarg 1018 export $ac_envvar ;; 1019 1020 *) 1021 # FIXME: should be removed in autoconf 3.0. 1022 echo "$as_me: WARNING: you should use --build, --host, --target" >&2 1023 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && 1024 echo "$as_me: WARNING: invalid host type: $ac_option" >&2 1025 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} 1026 ;; 1027 1028 esac 1029done 1030 1031if test -n "$ac_prev"; then 1032 ac_option=--`echo $ac_prev | sed 's/_/-/g'` 1033 { echo "$as_me: error: missing argument to $ac_option" >&2 1034 { (exit 1); exit 1; }; } 1035fi 1036 1037# Be sure to have absolute directory names. 1038for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ 1039 datadir sysconfdir sharedstatedir localstatedir includedir \ 1040 oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ 1041 libdir localedir mandir 1042do 1043 eval ac_val=\$$ac_var 1044 case $ac_val in 1045 [\\/$]* | ?:[\\/]* ) continue;; 1046 NONE | '' ) case $ac_var in *prefix ) continue;; esac;; 1047 esac 1048 { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 1049 { (exit 1); exit 1; }; } 1050done 1051 1052# There might be people who depend on the old broken behavior: `$host' 1053# used to hold the argument of --host etc. 1054# FIXME: To remove some day. 1055build=$build_alias 1056host=$host_alias 1057target=$target_alias 1058 1059# FIXME: To remove some day. 1060if test "x$host_alias" != x; then 1061 if test "x$build_alias" = x; then 1062 cross_compiling=maybe 1063 echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. 1064 If a cross compiler is detected then cross compile mode will be used." >&2 1065 elif test "x$build_alias" != "x$host_alias"; then 1066 cross_compiling=yes 1067 fi 1068fi 1069 1070ac_tool_prefix= 1071test -n "$host_alias" && ac_tool_prefix=$host_alias- 1072 1073test "$silent" = yes && exec 6>/dev/null 1074 1075 1076ac_pwd=`pwd` && test -n "$ac_pwd" && 1077ac_ls_di=`ls -di .` && 1078ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || 1079 { echo "$as_me: error: Working directory cannot be determined" >&2 1080 { (exit 1); exit 1; }; } 1081test "X$ac_ls_di" = "X$ac_pwd_ls_di" || 1082 { echo "$as_me: error: pwd does not report name of working directory" >&2 1083 { (exit 1); exit 1; }; } 1084 1085 1086# Find the source files, if location was not specified. 1087if test -z "$srcdir"; then 1088 ac_srcdir_defaulted=yes 1089 # Try the directory containing this script, then the parent directory. 1090 ac_confdir=`$as_dirname -- "$0" || 1091$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 1092 X"$0" : 'X\(//\)[^/]' \| \ 1093 X"$0" : 'X\(//\)$' \| \ 1094 X"$0" : 'X\(/\)' \| . 2>/dev/null || 1095echo X"$0" | 1096 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 1097 s//\1/ 1098 q 1099 } 1100 /^X\(\/\/\)[^/].*/{ 1101 s//\1/ 1102 q 1103 } 1104 /^X\(\/\/\)$/{ 1105 s//\1/ 1106 q 1107 } 1108 /^X\(\/\).*/{ 1109 s//\1/ 1110 q 1111 } 1112 s/.*/./; q'` 1113 srcdir=$ac_confdir 1114 if test ! -r "$srcdir/$ac_unique_file"; then 1115 srcdir=.. 1116 fi 1117else 1118 ac_srcdir_defaulted=no 1119fi 1120if test ! -r "$srcdir/$ac_unique_file"; then 1121 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." 1122 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 1123 { (exit 1); exit 1; }; } 1124fi 1125ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" 1126ac_abs_confdir=`( 1127 cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 1128 { (exit 1); exit 1; }; } 1129 pwd)` 1130# When building in place, set srcdir=. 1131if test "$ac_abs_confdir" = "$ac_pwd"; then 1132 srcdir=. 1133fi 1134# Remove unnecessary trailing slashes from srcdir. 1135# Double slashes in file names in object file debugging info 1136# mess up M-x gdb in Emacs. 1137case $srcdir in 1138*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; 1139esac 1140for ac_var in $ac_precious_vars; do 1141 eval ac_env_${ac_var}_set=\${${ac_var}+set} 1142 eval ac_env_${ac_var}_value=\$${ac_var} 1143 eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} 1144 eval ac_cv_env_${ac_var}_value=\$${ac_var} 1145done 1146 1147# 1148# Report the --help message. 1149# 1150if test "$ac_init_help" = "long"; then 1151 # Omit some internal or obsolete options to make the list less imposing. 1152 # This message is too long to be a string in the A/UX 3.1 sh. 1153 cat <<_ACEOF 1154\`configure' configures occ 0.8 to adapt to many kinds of systems. 1155 1156Usage: $0 [OPTION]... [VAR=VALUE]... 1157 1158To assign environment variables (e.g., CC, CFLAGS...), specify them as 1159VAR=VALUE. See below for descriptions of some of the useful variables. 1160 1161Defaults for the options are specified in brackets. 1162 1163Configuration: 1164 -h, --help display this help and exit 1165 --help=short display options specific to this package 1166 --help=recursive display the short help of all the included packages 1167 -V, --version display version information and exit 1168 -q, --quiet, --silent do not print \`checking...' messages 1169 --cache-file=FILE cache test results in FILE [disabled] 1170 -C, --config-cache alias for \`--cache-file=config.cache' 1171 -n, --no-create do not create output files 1172 --srcdir=DIR find the sources in DIR [configure dir or \`..'] 1173 1174Installation directories: 1175 --prefix=PREFIX install architecture-independent files in PREFIX 1176 [$ac_default_prefix] 1177 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX 1178 [PREFIX] 1179 1180By default, \`make install' will install all the files in 1181\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify 1182an installation prefix other than \`$ac_default_prefix' using \`--prefix', 1183for instance \`--prefix=\$HOME'. 1184 1185For better control, use the options below. 1186 1187Fine tuning of the installation directories: 1188 --bindir=DIR user executables [EPREFIX/bin] 1189 --sbindir=DIR system admin executables [EPREFIX/sbin] 1190 --libexecdir=DIR program executables [EPREFIX/libexec] 1191 --sysconfdir=DIR read-only single-machine data [PREFIX/etc] 1192 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] 1193 --localstatedir=DIR modifiable single-machine data [PREFIX/var] 1194 --libdir=DIR object code libraries [EPREFIX/lib] 1195 --includedir=DIR C header files [PREFIX/include] 1196 --oldincludedir=DIR C header files for non-gcc [/usr/include] 1197 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] 1198 --datadir=DIR read-only architecture-independent data [DATAROOTDIR] 1199 --infodir=DIR info documentation [DATAROOTDIR/info] 1200 --localedir=DIR locale-dependent data [DATAROOTDIR/locale] 1201 --mandir=DIR man documentation [DATAROOTDIR/man] 1202 --docdir=DIR documentation root [DATAROOTDIR/doc/occ] 1203 --htmldir=DIR html documentation [DOCDIR] 1204 --dvidir=DIR dvi documentation [DOCDIR] 1205 --pdfdir=DIR pdf documentation [DOCDIR] 1206 --psdir=DIR ps documentation [DOCDIR] 1207_ACEOF 1208 1209 cat <<\_ACEOF 1210_ACEOF 1211fi 1212 1213if test -n "$ac_init_help"; then 1214 case $ac_init_help in 1215 short | recursive ) echo "Configuration of occ 0.8:";; 1216 esac 1217 cat <<\_ACEOF 1218 1219Optional Packages: 1220 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] 1221 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) 1222 --with-syn-cxx=PATH specify the Synopsis C++ library prefix 1223 --with-python=PATH specify the Python interpreter 1224 1225Some influential environment variables: 1226 CC C compiler command 1227 CFLAGS C compiler flags 1228 LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a 1229 nonstandard directory <lib dir> 1230 LIBS libraries to pass to the linker, e.g. -l<library> 1231 CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I<include dir> if 1232 you have headers in a nonstandard directory <include dir> 1233 CPP C preprocessor 1234 CXX C++ compiler command 1235 CXXFLAGS C++ compiler flags 1236 1237Use these variables to override the choices made by `configure' or to help 1238it to find libraries and programs with nonstandard names/locations. 1239 1240Report bugs to <synopsis-devel@fresco.org>. 1241_ACEOF 1242ac_status=$? 1243fi 1244 1245if test "$ac_init_help" = "recursive"; then 1246 # If there are subdirs, report their specific --help. 1247 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue 1248 test -d "$ac_dir" || continue 1249 ac_builddir=. 1250 1251case "$ac_dir" in 1252.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; 1253*) 1254 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` 1255 # A ".." for each directory in $ac_dir_suffix. 1256 ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` 1257 case $ac_top_builddir_sub in 1258 "") ac_top_builddir_sub=. ac_top_build_prefix= ;; 1259 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; 1260 esac ;; 1261esac 1262ac_abs_top_builddir=$ac_pwd 1263ac_abs_builddir=$ac_pwd$ac_dir_suffix 1264# for backward compatibility: 1265ac_top_builddir=$ac_top_build_prefix 1266 1267case $srcdir in 1268 .) # We are building in place. 1269 ac_srcdir=. 1270 ac_top_srcdir=$ac_top_builddir_sub 1271 ac_abs_top_srcdir=$ac_pwd ;; 1272 [\\/]* | ?:[\\/]* ) # Absolute name. 1273 ac_srcdir=$srcdir$ac_dir_suffix; 1274 ac_top_srcdir=$srcdir 1275 ac_abs_top_srcdir=$srcdir ;; 1276 *) # Relative name. 1277 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix 1278 ac_top_srcdir=$ac_top_build_prefix$srcdir 1279 ac_abs_top_srcdir=$ac_pwd/$srcdir ;; 1280esac 1281ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix 1282 1283 cd "$ac_dir" || { ac_status=$?; continue; } 1284 # Check for guested configure. 1285 if test -f "$ac_srcdir/configure.gnu"; then 1286 echo && 1287 $SHELL "$ac_srcdir/configure.gnu" --help=recursive 1288 elif test -f "$ac_srcdir/configure"; then 1289 echo && 1290 $SHELL "$ac_srcdir/configure" --help=recursive 1291 else 1292 echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 1293 fi || ac_status=$? 1294 cd "$ac_pwd" || { ac_status=$?; break; } 1295 done 1296fi 1297 1298test -n "$ac_init_help" && exit $ac_status 1299if $ac_init_version; then 1300 cat <<\_ACEOF 1301occ configure 0.8 1302generated by GNU Autoconf 2.61 1303 1304Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 13052002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. 1306This configure script is free software; the Free Software Foundation 1307gives unlimited permission to copy, distribute and modify it. 1308_ACEOF 1309 exit 1310fi 1311cat >config.log <<_ACEOF 1312This file contains any messages produced by compilers while 1313running configure, to aid debugging if configure makes a mistake. 1314 1315It was created by occ $as_me 0.8, which was 1316generated by GNU Autoconf 2.61. Invocation command line was 1317 1318 $ $0 $@ 1319 1320_ACEOF 1321exec 5>>config.log 1322{ 1323cat <<_ASUNAME 1324## --------- ## 1325## Platform. ## 1326## --------- ## 1327 1328hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` 1329uname -m = `(uname -m) 2>/dev/null || echo unknown` 1330uname -r = `(uname -r) 2>/dev/null || echo unknown` 1331uname -s = `(uname -s) 2>/dev/null || echo unknown` 1332uname -v = `(uname -v) 2>/dev/null || echo unknown` 1333 1334/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` 1335/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` 1336 1337/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` 1338/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` 1339/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` 1340/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` 1341/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` 1342/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` 1343/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` 1344 1345_ASUNAME 1346 1347as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 1348for as_dir in $PATH 1349do 1350 IFS=$as_save_IFS 1351 test -z "$as_dir" && as_dir=. 1352 echo "PATH: $as_dir" 1353done 1354IFS=$as_save_IFS 1355 1356} >&5 1357 1358cat >&5 <<_ACEOF 1359 1360 1361## ----------- ## 1362## Core tests. ## 1363## ----------- ## 1364 1365_ACEOF 1366 1367 1368# Keep a trace of the command line. 1369# Strip out --no-create and --no-recursion so they do not pile up. 1370# Strip out --silent because we don't want to record it for future runs. 1371# Also quote any args containing shell meta-characters. 1372# Make two passes to allow for proper duplicate-argument suppression. 1373ac_configure_args= 1374ac_configure_args0= 1375ac_configure_args1= 1376ac_must_keep_next=false 1377for ac_pass in 1 2 1378do 1379 for ac_arg 1380 do 1381 case $ac_arg in 1382 -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; 1383 -q | -quiet | --quiet | --quie | --qui | --qu | --q \ 1384 | -silent | --silent | --silen | --sile | --sil) 1385 continue ;; 1386 *\'*) 1387 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; 1388 esac 1389 case $ac_pass in 1390 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; 1391 2) 1392 ac_configure_args1="$ac_configure_args1 '$ac_arg'" 1393 if test $ac_must_keep_next = true; then 1394 ac_must_keep_next=false # Got value, back to normal. 1395 else 1396 case $ac_arg in 1397 *=* | --config-cache | -C | -disable-* | --disable-* \ 1398 | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ 1399 | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ 1400 | -with-* | --with-* | -without-* | --without-* | --x) 1401 case "$ac_configure_args0 " in 1402 "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; 1403 esac 1404 ;; 1405 -* ) ac_must_keep_next=true ;; 1406 esac 1407 fi 1408 ac_configure_args="$ac_configure_args '$ac_arg'" 1409 ;; 1410 esac 1411 done 1412done 1413$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } 1414$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } 1415 1416# When interrupted or exit'd, cleanup temporary files, and complete 1417# config.log. We remove comments because anyway the quotes in there 1418# would cause problems or look ugly. 1419# WARNING: Use '\'' to represent an apostrophe within the trap. 1420# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. 1421trap 'exit_status=$? 1422 # Save into config.log some information that might help in debugging. 1423 { 1424 echo 1425 1426 cat <<\_ASBOX 1427## ---------------- ## 1428## Cache variables. ## 1429## ---------------- ## 1430_ASBOX 1431 echo 1432 # The following way of writing the cache mishandles newlines in values, 1433( 1434 for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do 1435 eval ac_val=\$$ac_var 1436