Synopsis - Cross-Reference

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