Synopsis - Cross-Reference

File: /sandbox/configure
   1#! /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 sandbox 1.0.
   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='sandbox'
 577PACKAGE_TARNAME='sandbox'
 578PACKAGE_VERSION='1.0'
 579PACKAGE_STRING='sandbox 1.0'
 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
 636BOOST_VERSION
 637BOOST_CPPFLAGS
 638BOOST_LDFLAGS
 639BOOST_LIBS
 640LIBOBJS
 641LTLIBOBJS'
 642ac_subst_files=''
 643      ac_precious_vars='build_alias
 644host_alias
 645target_alias
 646CC
 647CFLAGS
 648LDFLAGS
 649LIBS
 650CPPFLAGS
 651CPP
 652CXX
 653CXXFLAGS
 654CCC'
 655
 656
 657# Initialize some variables set by options.
 658ac_init_help=
 659ac_init_version=false
 660# The variables have the same names as the options, with
 661# dashes changed to underlines.
 662cache_file=/dev/null
 663exec_prefix=NONE
 664no_create=
 665no_recursion=
 666prefix=NONE
 667program_prefix=NONE
 668program_suffix=NONE
 669program_transform_name=s,x,x,
 670silent=
 671site=
 672srcdir=
 673verbose=
 674x_includes=NONE
 675x_libraries=NONE
 676
 677# Installation directory options.
 678# These are left unexpanded so users can "make install exec_prefix=/foo"
 679# and all the variables that are supposed to be based on exec_prefix
 680# by default will actually change.
 681# Use braces instead of parens because sh, perl, etc. also accept them.
 682# (The list follows the same order as the GNU Coding Standards.)
 683bindir='${exec_prefix}/bin'
 684sbindir='${exec_prefix}/sbin'
 685libexecdir='${exec_prefix}/libexec'
 686datarootdir='${prefix}/share'
 687datadir='${datarootdir}'
 688sysconfdir='${prefix}/etc'
 689sharedstatedir='${prefix}/com'
 690localstatedir='${prefix}/var'
 691includedir='${prefix}/include'
 692oldincludedir='/usr/include'
 693docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
 694infodir='${datarootdir}/info'
 695htmldir='${docdir}'
 696dvidir='${docdir}'
 697pdfdir='${docdir}'
 698psdir='${docdir}'
 699libdir='${exec_prefix}/lib'
 700localedir='${datarootdir}/locale'
 701mandir='${datarootdir}/man'
 702
 703ac_prev=
 704ac_dashdash=
 705for ac_option
 706do
 707  # If the previous option needs an argument, assign it.
 708  if test -n "$ac_prev"; then
 709    eval $ac_prev=\$ac_option
 710    ac_prev=
 711    continue
 712  fi
 713
 714  case $ac_option in
 715  *=*)	ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
 716  *)	ac_optarg=yes ;;
 717  esac
 718
 719  # Accept the important Cygnus configure options, so we can diagnose typos.
 720
 721  case $ac_dashdash$ac_option in
 722  --)
 723    ac_dashdash=yes ;;
 724
 725  -bindir | --bindir | --bindi | --bind | --bin | --bi)
 726    ac_prev=bindir ;;
 727  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
 728    bindir=$ac_optarg ;;
 729
 730  -build | --build | --buil | --bui | --bu)
 731    ac_prev=build_alias ;;
 732  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
 733    build_alias=$ac_optarg ;;
 734
 735  -cache-file | --cache-file | --cache-fil | --cache-fi \
 736  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
 737    ac_prev=cache_file ;;
 738  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
 739  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
 740    cache_file=$ac_optarg ;;
 741
 742  --config-cache | -C)
 743    cache_file=config.cache ;;
 744
 745  -datadir | --datadir | --datadi | --datad)
 746    ac_prev=datadir ;;
 747  -datadir=* | --datadir=* | --datadi=* | --datad=*)
 748    datadir=$ac_optarg ;;
 749
 750  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
 751  | --dataroo | --dataro | --datar)
 752    ac_prev=datarootdir ;;
 753  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
 754  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
 755    datarootdir=$ac_optarg ;;
 756
 757  -disable-* | --disable-*)
 758    ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
 759    # Reject names that are not valid shell variable names.
 760    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 761      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
 762   { (exit 1); exit 1; }; }
 763    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
 764    eval enable_$ac_feature=no ;;
 765
 766  -docdir | --docdir | --docdi | --doc | --do)
 767    ac_prev=docdir ;;
 768  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
 769    docdir=$ac_optarg ;;
 770
 771  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
 772    ac_prev=dvidir ;;
 773  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
 774    dvidir=$ac_optarg ;;
 775
 776  -enable-* | --enable-*)
 777    ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
 778    # Reject names that are not valid shell variable names.
 779    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 780      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
 781   { (exit 1); exit 1; }; }
 782    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
 783    eval enable_$ac_feature=\$ac_optarg ;;
 784
 785  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
 786  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
 787  | --exec | --exe | --ex)
 788    ac_prev=exec_prefix ;;
 789  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
 790  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
 791  | --exec=* | --exe=* | --ex=*)
 792    exec_prefix=$ac_optarg ;;
 793
 794  -gas | --gas | --ga | --g)
 795    # Obsolete; use --with-gas.
 796    with_gas=yes ;;
 797
 798  -help | --help | --hel | --he | -h)
 799    ac_init_help=long ;;
 800  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
 801    ac_init_help=recursive ;;
 802  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
 803    ac_init_help=short ;;
 804
 805  -host | --host | --hos | --ho)
 806    ac_prev=host_alias ;;
 807  -host=* | --host=* | --hos=* | --ho=*)
 808    host_alias=$ac_optarg ;;
 809
 810  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
 811    ac_prev=htmldir ;;
 812  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
 813  | --ht=*)
 814    htmldir=$ac_optarg ;;
 815
 816  -includedir | --includedir | --includedi | --included | --include \
 817  | --includ | --inclu | --incl | --inc)
 818    ac_prev=includedir ;;
 819  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
 820  | --includ=* | --inclu=* | --incl=* | --inc=*)
 821    includedir=$ac_optarg ;;
 822
 823  -infodir | --infodir | --infodi | --infod | --info | --inf)
 824    ac_prev=infodir ;;
 825  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
 826    infodir=$ac_optarg ;;
 827
 828  -libdir | --libdir | --libdi | --libd)
 829    ac_prev=libdir ;;
 830  -libdir=* | --libdir=* | --libdi=* | --libd=*)
 831    libdir=$ac_optarg ;;
 832
 833  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
 834  | --libexe | --libex | --libe)
 835    ac_prev=libexecdir ;;
 836  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
 837  | --libexe=* | --libex=* | --libe=*)
 838    libexecdir=$ac_optarg ;;
 839
 840  -localedir | --localedir | --localedi | --localed | --locale)
 841    ac_prev=localedir ;;
 842  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
 843    localedir=$ac_optarg ;;
 844
 845  -localstatedir | --localstatedir | --localstatedi | --localstated \
 846  | --localstate | --localstat | --localsta | --localst | --locals)
 847    ac_prev=localstatedir ;;
 848  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
 849  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
 850    localstatedir=$ac_optarg ;;
 851
 852  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
 853    ac_prev=mandir ;;
 854  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
 855    mandir=$ac_optarg ;;
 856
 857  -nfp | --nfp | --nf)
 858    # Obsolete; use --without-fp.
 859    with_fp=no ;;
 860
 861  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
 862  | --no-cr | --no-c | -n)
 863    no_create=yes ;;
 864
 865  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
 866  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
 867    no_recursion=yes ;;
 868
 869  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
 870  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
 871  | --oldin | --oldi | --old | --ol | --o)
 872    ac_prev=oldincludedir ;;
 873  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
 874  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
 875  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
 876    oldincludedir=$ac_optarg ;;
 877
 878  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
 879    ac_prev=prefix ;;
 880  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
 881    prefix=$ac_optarg ;;
 882
 883  -program-prefix | --program-prefix | --program-prefi | --program-pref \
 884  | --program-pre | --program-pr | --program-p)
 885    ac_prev=program_prefix ;;
 886  -program-prefix=* | --program-prefix=* | --program-prefi=* \
 887  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
 888    program_prefix=$ac_optarg ;;
 889
 890  -program-suffix | --program-suffix | --program-suffi | --program-suff \
 891  | --program-suf | --program-su | --program-s)
 892    ac_prev=program_suffix ;;
 893  -program-suffix=* | --program-suffix=* | --program-suffi=* \
 894  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
 895    program_suffix=$ac_optarg ;;
 896
 897  -program-transform-name | --program-transform-name \
 898  | --program-transform-nam | --program-transform-na \
 899  | --program-transform-n | --program-transform- \
 900  | --program-transform | --program-transfor \
 901  | --program-transfo | --program-transf \
 902  | --program-trans | --program-tran \
 903  | --progr-tra | --program-tr | --program-t)
 904    ac_prev=program_transform_name ;;
 905  -program-transform-name=* | --program-transform-name=* \
 906  | --program-transform-nam=* | --program-transform-na=* \
 907  | --program-transform-n=* | --program-transform-=* \
 908  | --program-transform=* | --program-transfor=* \
 909  | --program-transfo=* | --program-transf=* \
 910  | --program-trans=* | --program-tran=* \
 911  | --progr-tra=* | --program-tr=* | --program-t=*)
 912    program_transform_name=$ac_optarg ;;
 913
 914  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
 915    ac_prev=pdfdir ;;
 916  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
 917    pdfdir=$ac_optarg ;;
 918
 919  -psdir | --psdir | --psdi | --psd | --ps)
 920    ac_prev=psdir ;;
 921  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
 922    psdir=$ac_optarg ;;
 923
 924  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 925  | -silent | --silent | --silen | --sile | --sil)
 926    silent=yes ;;
 927
 928  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
 929    ac_prev=sbindir ;;
 930  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
 931  | --sbi=* | --sb=*)
 932    sbindir=$ac_optarg ;;
 933
 934  -sharedstatedir | --sharedstatedir | --sharedstatedi \
 935  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
 936  | --sharedst | --shareds | --shared | --share | --shar \
 937  | --sha | --sh)
 938    ac_prev=sharedstatedir ;;
 939  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
 940  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
 941  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
 942  | --sha=* | --sh=*)
 943    sharedstatedir=$ac_optarg ;;
 944
 945  -site | --site | --sit)
 946    ac_prev=site ;;
 947  -site=* | --site=* | --sit=*)
 948    site=$ac_optarg ;;
 949
 950  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
 951    ac_prev=srcdir ;;
 952  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
 953    srcdir=$ac_optarg ;;
 954
 955  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
 956  | --syscon | --sysco | --sysc | --sys | --sy)
 957    ac_prev=sysconfdir ;;
 958  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
 959  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
 960    sysconfdir=$ac_optarg ;;
 961
 962  -target | --target | --targe | --targ | --tar | --ta | --t)
 963    ac_prev=target_alias ;;
 964  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
 965    target_alias=$ac_optarg ;;
 966
 967  -v | -verbose | --verbose | --verbos | --verbo | --verb)
 968    verbose=yes ;;
 969
 970  -version | --version | --versio | --versi | --vers | -V)
 971    ac_init_version=: ;;
 972
 973  -with-* | --with-*)
 974    ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
 975    # Reject names that are not valid shell variable names.
 976    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 977      { echo "$as_me: error: invalid package name: $ac_package" >&2
 978   { (exit 1); exit 1; }; }
 979    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
 980    eval with_$ac_package=\$ac_optarg ;;
 981
 982  -without-* | --without-*)
 983    ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
 984    # Reject names that are not valid shell variable names.
 985    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 986      { echo "$as_me: error: invalid package name: $ac_package" >&2
 987   { (exit 1); exit 1; }; }
 988    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
 989    eval with_$ac_package=no ;;
 990
 991  --x)
 992    # Obsolete; use --with-x.
 993    with_x=yes ;;
 994
 995  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
 996  | --x-incl | --x-inc | --x-in | --x-i)
 997    ac_prev=x_includes ;;
 998  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
 999  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
1000    x_includes=$ac_optarg ;;
1001
1002  -x-libraries | --x-libraries | --x-librarie | --x-librari \
1003  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
1004    ac_prev=x_libraries ;;
1005  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
1006  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
1007    x_libraries=$ac_optarg ;;
1008
1009  -*) { echo "$as_me: error: unrecognized option: $ac_option
1010Try \`$0 --help' for more information." >&2
1011   { (exit 1); exit 1; }; }
1012    ;;
1013
1014  *=*)
1015    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
1016    # Reject names that are not valid shell variable names.
1017    expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
1018      { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
1019   { (exit 1); exit 1; }; }
1020    eval $ac_envvar=\$ac_optarg
1021    export $ac_envvar ;;
1022
1023  *)
1024    # FIXME: should be removed in autoconf 3.0.
1025    echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1026    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1027      echo "$as_me: WARNING: invalid host type: $ac_option" >&2
1028    : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
1029    ;;
1030
1031  esac
1032done
1033
1034if test -n "$ac_prev"; then
1035  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
1036  { echo "$as_me: error: missing argument to $ac_option" >&2
1037   { (exit 1); exit 1; }; }
1038fi
1039
1040# Be sure to have absolute directory names.
1041for ac_var in	exec_prefix prefix bindir sbindir libexecdir datarootdir \
1042		datadir sysconfdir sharedstatedir localstatedir includedir \
1043		oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
1044		libdir localedir mandir
1045do
1046  eval ac_val=\$$ac_var
1047  case $ac_val in
1048    [\\/$]* | ?:[\\/]* )  continue;;
1049    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
1050  esac
1051  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
1052   { (exit 1); exit 1; }; }
1053done
1054
1055# There might be people who depend on the old broken behavior: `$host'
1056# used to hold the argument of --host etc.
1057# FIXME: To remove some day.
1058build=$build_alias
1059host=$host_alias
1060target=$target_alias
1061
1062# FIXME: To remove some day.
1063if test "x$host_alias" != x; then
1064  if test "x$build_alias" = x; then
1065    cross_compiling=maybe
1066    echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
1067    If a cross compiler is detected then cross compile mode will be used." >&2
1068  elif test "x$build_alias" != "x$host_alias"; then
1069    cross_compiling=yes
1070  fi
1071fi
1072
1073ac_tool_prefix=
1074test -n "$host_alias" && ac_tool_prefix=$host_alias-
1075
1076test "$silent" = yes && exec 6>/dev/null
1077
1078
1079ac_pwd=`pwd` && test -n "$ac_pwd" &&
1080ac_ls_di=`ls -di .` &&
1081ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
1082  { echo "$as_me: error: Working directory cannot be determined" >&2
1083   { (exit 1); exit 1; }; }
1084test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
1085  { echo "$as_me: error: pwd does not report name of working directory" >&2
1086   { (exit 1); exit 1; }; }
1087
1088
1089# Find the source files, if location was not specified.
1090if test -z "$srcdir"; then
1091  ac_srcdir_defaulted=yes
1092  # Try the directory containing this script, then the parent directory.
1093  ac_confdir=`$as_dirname -- "$0" ||
1094$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1095	 X"$0" : 'X\(//\)[^/]' \| \
1096	 X"$0" : 'X\(//\)$' \| \
1097	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
1098echo X"$0" |
1099    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1100	    s//\1/
1101	    q
1102	  }
1103	  /^X\(\/\/\)[^/].*/{
1104	    s//\1/
1105	    q
1106	  }
1107	  /^X\(\/\/\)$/{
1108	    s//\1/
1109	    q
1110	  }
1111	  /^X\(\/\).*/{
1112	    s//\1/
1113	    q
1114	  }
1115	  s/.*/./; q'`
1116  srcdir=$ac_confdir
1117  if test ! -r "$srcdir/$ac_unique_file"; then
1118    srcdir=..
1119  fi
1120else
1121  ac_srcdir_defaulted=no
1122fi
1123if test ! -r "$srcdir/$ac_unique_file"; then
1124  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
1125  { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
1126   { (exit 1); exit 1; }; }
1127fi
1128ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
1129ac_abs_confdir=`(
1130	cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2
1131   { (exit 1); exit 1; }; }
1132	pwd)`
1133# When building in place, set srcdir=.
1134if test "$ac_abs_confdir" = "$ac_pwd"; then
1135  srcdir=.
1136fi
1137# Remove unnecessary trailing slashes from srcdir.
1138# Double slashes in file names in object file debugging info
1139# mess up M-x gdb in Emacs.
1140case $srcdir in
1141*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
1142esac
1143for ac_var in $ac_precious_vars; do
1144  eval ac_env_${ac_var}_set=\${${ac_var}+set}
1145  eval ac_env_${ac_var}_value=\$${ac_var}
1146  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
1147  eval ac_cv_env_${ac_var}_value=\$${ac_var}
1148done
1149
1150#
1151# Report the --help message.
1152#
1153if test "$ac_init_help" = "long"; then
1154  # Omit some internal or obsolete options to make the list less imposing.
1155  # This message is too long to be a string in the A/UX 3.1 sh.
1156  cat <<_ACEOF
1157\`configure' configures sandbox 1.0 to adapt to many kinds of systems.
1158
1159Usage: $0 [OPTION]... [VAR=VALUE]...
1160
1161To assign environment variables (e.g., CC, CFLAGS...), specify them as
1162VAR=VALUE.  See below for descriptions of some of the useful variables.
1163
1164Defaults for the options are specified in brackets.
1165
1166Configuration:
1167  -h, --help              display this help and exit
1168      --help=short        display options specific to this package
1169      --help=recursive    display the short help of all the included packages
1170  -V, --version           display version information and exit
1171  -q, --quiet, --silent   do not print \`checking...' messages
1172      --cache-file=FILE   cache test results in FILE [disabled]
1173  -C, --config-cache      alias for \`--cache-file=config.cache'
1174  -n, --no-create         do not create output files
1175      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
1176
1177Installation directories:
1178  --prefix=PREFIX         install architecture-independent files in PREFIX
1179			  [$ac_default_prefix]
1180  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
1181			  [PREFIX]
1182
1183By default, \`make install' will install all the files in
1184\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
1185an installation prefix other than \`$ac_default_prefix' using \`--prefix',
1186for instance \`--prefix=\$HOME'.
1187
1188For better control, use the options below.
1189
1190Fine tuning of the installation directories:
1191  --bindir=DIR           user executables [EPREFIX/bin]
1192  --sbindir=DIR          system admin executables [EPREFIX/sbin]
1193  --libexecdir=DIR       program executables [EPREFIX/libexec]
1194  --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]
1195  --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]
1196  --localstatedir=DIR    modifiable single-machine data [PREFIX/var]
1197  --libdir=DIR           object code libraries [EPREFIX/lib]
1198  --includedir=DIR       C header files [PREFIX/include]
1199  --oldincludedir=DIR    C header files for non-gcc [/usr/include]
1200  --datarootdir=DIR      read-only arch.-independent data root [PREFIX/share]
1201  --datadir=DIR          read-only architecture-independent data [DATAROOTDIR]
1202  --infodir=DIR          info documentation [DATAROOTDIR/info]
1203  --localedir=DIR        locale-dependent data [DATAROOTDIR/locale]
1204  --mandir=DIR           man documentation [DATAROOTDIR/man]
1205  --docdir=DIR           documentation root [DATAROOTDIR/doc/sandbox]
1206  --htmldir=DIR          html documentation [DOCDIR]
1207  --dvidir=DIR           dvi documentation [DOCDIR]
1208  --pdfdir=DIR           pdf documentation [DOCDIR]
1209  --psdir=DIR            ps documentation [DOCDIR]
1210_ACEOF
1211
1212  cat <<\_ACEOF
1213_ACEOF
1214fi
1215
1216if test -n "$ac_init_help"; then
1217  case $ac_init_help in
1218     short | recursive ) echo "Configuration of sandbox 1.0:";;
1219   esac
1220  cat <<\_ACEOF
1221
1222Optional Packages:
1223  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
1224  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
1225  --with-syn-cxx=PATH     specify the Synopsis C++ library prefix
1226  --with-python=PATH      specify the Python interpreter
1227  --with-boost-prefix=PREFIX
1228                          specify boost installation prefix
1229  --with-boost-version=VERSION
1230                          specify boost version
1231  --with-boost-lib-suffix=list
1232                          use the given list of suffixes when searching for
1233                          boost libraries.
1234
1235Some influential environment variables:
1236  CC          C compiler command
1237  CFLAGS      C compiler flags
1238  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
1239              nonstandard directory <lib dir>
1240  LIBS        libraries to pass to the linker, e.g. -l<library>
1241  CPPFLAGS    C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
1242              you have headers in a nonstandard directory <include dir>
1243  CPP         C preprocessor
1244  CXX         C++ compiler command
1245  CXXFLAGS    C++ compiler flags
1246
1247Use these variables to override the choices made by `configure' or to help
1248it to find libraries and programs with nonstandard names/locations.
1249
1250Report bugs to <synopsis-devel@fresco.org>.
1251_ACEOF
1252ac_status=$?
1253fi
1254
1255if test "$ac_init_help" = "recursive"; then
1256  # If there are subdirs, report their specific --help.
1257  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
1258    test -d "$ac_dir" || continue
1259    ac_builddir=.
1260
1261case "$ac_dir" in
1262.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1263*)
1264  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
1265  # A ".." for each directory in $ac_dir_suffix.
1266  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
1267  case $ac_top_builddir_sub in
1268  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1269  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1270  esac ;;
1271esac
1272ac_abs_top_builddir=$ac_pwd
1273ac_abs_builddir=$ac_pwd$ac_dir_suffix
1274# for backward compatibility:
1275ac_top_builddir=$ac_top_build_prefix
1276
1277case $srcdir in
1278  .)  # We are building in place.
1279    ac_srcdir=.
1280    ac_top_srcdir=$ac_top_builddir_sub
1281    ac_abs_top_srcdir=$ac_pwd ;;
1282  [\\/]* | ?:[\\/]* )  # Absolute name.
1283    ac_srcdir=$srcdir$ac_dir_suffix;
1284    ac_top_srcdir=$srcdir
1285    ac_abs_top_srcdir=$srcdir ;;
1286  *) # Relative name.
1287    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1288    ac_top_srcdir=$ac_top_build_prefix$srcdir
1289    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1290esac
1291ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1292
1293    cd "$ac_dir" || { ac_status=$?; continue; }
1294    # Check for guested configure.
1295    if test -f "$ac_srcdir/configure.gnu"; then
1296      echo &&
1297      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
1298    elif test -f "$ac_srcdir/configure"; then
1299      echo &&
1300      $SHELL "$ac_srcdir/configure" --help=recursive
1301    else
1302      echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
1303    fi || ac_status=$?
1304    cd "$ac_pwd" || { ac_status=$?; break; }
1305  done
1306fi
1307
1308test -n "$ac_init_help" && exit $ac_status
1309if $ac_init_version; then
1310  cat <<\_ACEOF
1311sandbox configure 1.0
1312generated by GNU Autoconf 2.61
1313
1314Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
13152002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
1316This configure script is free software; the Free Software Foundation
1317gives unlimited permission to copy, distribute and modify it.
1318_ACEOF
1319  exit
1320fi
1321cat >config.log <<_ACEOF
1322This file contains any messages produced by compilers while
1323running configure, to aid debugging if configure makes a mistake.
1324
1325It was created by sandbox $as_me 1.0, which was
1326generated by GNU Autoconf 2.61.  Invocation command line was
1327
1328  $ $0 $@
1329
1330_ACEOF
1331exec 5>>config.log
1332{
1333cat <<_ASUNAME
1334## --------- ##
1335## Platform. ##
1336## --------- ##
1337
1338hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
1339uname -m = `(uname -m) 2>/dev/null || echo unknown`
1340uname -r = `(uname -r) 2>/dev/null || echo unknown`
1341uname -s = `(uname -s) 2>/dev/null || echo unknown`
1342uname -v = `(uname -v) 2>/dev/null || echo unknown`
1343
1344/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
1345/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
1346
1347/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
1348/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
1349/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
1350/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
1351/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
1352/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
1353/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
1354
1355_ASUNAME
1356
1357as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1358for as_dir in $PATH
1359do
1360  IFS=$as_save_IFS
1361  test -z "$as_dir" && as_dir=.
1362  echo "PATH: $as_dir"
1363done
1364IFS=$as_save_IFS
1365
1366} >&5
1367
1368cat >&5 <<_ACEOF
1369
1370
1371## ----------- ##
1372## Core tests. ##
1373## ----------- ##
1374
1375_ACEOF
1376
1377
1378# Keep a trace of the command line.
1379# Strip out --no-create and --no-recursion so they do not pile up.
1380# Strip out --silent because we don't want to record it for future runs.
1381# Also quote any args containing shell meta-characters.
1382# Make two passes to allow for proper duplicate-argument suppression.
1383ac_configure_args=
1384ac_configure_args0=
1385ac_configure_args1=
1386ac_must_keep_next=false
1387for ac_pass in 1 2
1388do
1389  for ac_arg
1390  do
1391    case $ac_arg in
1392    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
1393    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1394    | -silent | --silent | --silen | --sile | --sil)
1395      continue ;;
1396    *\'*)
1397      ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1398    esac
1399    case $ac_pass in
1400    1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
1401    2)
1402      ac_configure_args1="$ac_configure_args1 '$ac_arg'"
1403      if test $ac_must_keep_next = true; then
1404	ac_must_keep_next=false # Got value, back to normal.
1405      else
1406	case $ac_arg in
1407	  *=* | --config-cache | -C | -disable-* | --disable-* \
1408	  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
1409	  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
1410	  | -with-* | --with-* | -without-* | --without-* | --x)
1411	    case "$ac_configure_args0 " in
1412	      "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
1413	    esac
1414	    ;;
1415	  -* ) ac_must_keep_next=true ;;
1416	esac
1417      fi
1418      ac_configure_args="$ac_configure_args '$ac_arg'"
1419      ;;
1420    esac
1421  done
1422done
1423$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
1424$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
1425
1426# When interrupted or exit'd, cleanup temporary files, and complete
1427# config.log.  We remove comments because anyway the quotes in there
1428# would cause problems or look ugly.
1429# WARNING: Use '\'' to represent an apostrophe within the trap.
1430# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
1431trap 'exit_status=$?
1432  # Save into config.log some information that might help in debugging.
1433  {
1434    echo
1435