Changeset 702


Ignore:
Timestamp:
May 4, 2007 5:22:57 PM (17 years ago)
Author:
mmc
Message:
  • Added Rappture::daemon function so that any process can be forked and run as a daemon process in the background. This was needed for the middleware filexfer server.
  • Fixed download for binary data stored in <string> results.
  • Fixed "binary" example in the zoo. You can now upload a tarball, run the simulation, and download the same tarball.
Location:
trunk
Files:
2 added
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/examples/zoo/binary/tardir.tcl

    r686 r702  
    2727$driver put output.string(dir).current $dir
    2828
     29$driver put output.string(tarball).about.label "Original Tar File"
     30$driver put output.string(tarball).current $data
     31$driver put output.string(tarball).filetype ".tgz"
     32
    2933# save the updated XML describing the run...
    3034Rappture::result $driver
  • trunk/gui/configure

    r678 r702  
    11#! /bin/sh
    22# Guess values for system-dependent variables and create Makefiles.
    3 # Generated by GNU Autoconf 2.60 for RapptureGUI 1.0.
     3# Generated by GNU Autoconf 2.61 for RapptureGUI 1.0.
    44#
    55# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
     
    1111## --------------------- ##
    1212
    13 # Be Bourne compatible
     13# Be more Bourne compatible
     14DUALCASE=1; export DUALCASE # for MKS sh
    1415if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
    1516  emulate sh
     
    2021  setopt NO_GLOB_SUBST
    2122else
    22   case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
    23 fi
    24 BIN_SH=xpg4; export BIN_SH # for Tru64
    25 DUALCASE=1; export DUALCASE # for MKS sh
     23  case `(set -o) 2>/dev/null` in
     24  *posix*) set -o posix ;;
     25esac
     26
     27fi
     28
     29
    2630
    2731
     
    216220  as_candidate_shells=
    217221    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
    218 for as_dir in /usr/bin/posix$PATH_SEPARATOR/bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
     222for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
    219223do
    220224  IFS=$as_save_IFS
     
    234238         if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
    235239                { ("$as_shell") 2> /dev/null <<\_ASEOF
    236 # Be Bourne compatible
    237240if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
    238241  emulate sh
     
    243246  setopt NO_GLOB_SUBST
    244247else
    245   case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
    246 fi
    247 BIN_SH=xpg4; export BIN_SH # for Tru64
    248 DUALCASE=1; export DUALCASE # for MKS sh
     248  case `(set -o) 2>/dev/null` in
     249  *posix*) set -o posix ;;
     250esac
     251
     252fi
     253
    249254
    250255:
     
    254259               as_have_required=yes
    255260               if { "$as_shell" 2> /dev/null <<\_ASEOF
    256 # Be Bourne compatible
    257261if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
    258262  emulate sh
     
    263267  setopt NO_GLOB_SUBST
    264268else
    265   case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
    266 fi
    267 BIN_SH=xpg4; export BIN_SH # for Tru64
    268 DUALCASE=1; export DUALCASE # for MKS sh
     269  case `(set -o) 2>/dev/null` in
     270  *posix*) set -o posix ;;
     271esac
     272
     273fi
     274
    269275
    270276:
     
    513519fi
    514520
    515 # Find out whether ``test -x'' works.  Don't use a zero-byte file, as
    516 # systems may use methods other than mode bits to determine executability.
    517 cat >conf$$.file <<_ASEOF
    518 #! /bin/sh
    519 exit 0
    520 _ASEOF
    521 chmod +x conf$$.file
    522 if test -x conf$$.file >/dev/null 2>&1; then
    523   as_executable_p="test -x"
    524 else
    525   as_executable_p=:
    526 fi
    527 rm -f conf$$.file
     521if test -x / >/dev/null 2>&1; then
     522  as_test_x='test -x'
     523else
     524  if ls -dL / >/dev/null 2>&1; then
     525    as_ls_L_option=L
     526  else
     527    as_ls_L_option=
     528  fi
     529  as_test_x='
     530    eval sh -c '\''
     531      if test -d "$1"; then
     532        test -d "$1/.";
     533      else
     534        case $1 in
     535        -*)set "./$1";;
     536        esac;
     537        case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
     538        ???[sx]*):;;*)false;;esac;fi
     539    '\'' sh
     540  '
     541fi
     542as_executable_p=$as_test_x
    528543
    529544# Sed expression to map a string onto a valid CPP name.
     
    565580ac_includes_default="\
    566581#include <stdio.h>
    567 #if HAVE_SYS_TYPES_H
     582#ifdef HAVE_SYS_TYPES_H
    568583# include <sys/types.h>
    569584#endif
    570 #if HAVE_SYS_STAT_H
     585#ifdef HAVE_SYS_STAT_H
    571586# include <sys/stat.h>
    572587#endif
    573 #if STDC_HEADERS
     588#ifdef STDC_HEADERS
    574589# include <stdlib.h>
    575590# include <stddef.h>
    576591#else
    577 # if HAVE_STDLIB_H
     592# ifdef HAVE_STDLIB_H
    578593#  include <stdlib.h>
    579594# endif
    580595#endif
    581 #if HAVE_STRING_H
    582 # if !STDC_HEADERS && HAVE_MEMORY_H
     596#ifdef HAVE_STRING_H
     597# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
    583598#  include <memory.h>
    584599# endif
    585600# include <string.h>
    586601#endif
    587 #if HAVE_STRINGS_H
     602#ifdef HAVE_STRINGS_H
    588603# include <strings.h>
    589604#endif
    590 #if HAVE_INTTYPES_H
     605#ifdef HAVE_INTTYPES_H
    591606# include <inttypes.h>
    592607#endif
    593 #if HAVE_STDINT_H
     608#ifdef HAVE_STDINT_H
    594609# include <stdint.h>
    595610#endif
    596 #if HAVE_UNISTD_H
     611#ifdef HAVE_UNISTD_H
    597612# include <unistd.h>
    598613#endif"
     
    718733CFLAGS
    719734LDFLAGS
     735LIBS
    720736CPPFLAGS
    721737CPP'
     
    825841    ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
    826842    # Reject names that are not valid shell variable names.
    827     expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
     843    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
    828844      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
    829845   { (exit 1); exit 1; }; }
    830     ac_feature=`echo $ac_feature | sed 's/-/_/g'`
     846    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
    831847    eval enable_$ac_feature=no ;;
    832848
     
    844860    ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
    845861    # Reject names that are not valid shell variable names.
    846     expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
     862    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
    847863      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
    848864   { (exit 1); exit 1; }; }
    849     ac_feature=`echo $ac_feature | sed 's/-/_/g'`
     865    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
    850866    eval enable_$ac_feature=\$ac_optarg ;;
    851867
     
    10411057    ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
    10421058    # Reject names that are not valid shell variable names.
    1043     expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
     1059    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
    10441060      { echo "$as_me: error: invalid package name: $ac_package" >&2
    10451061   { (exit 1); exit 1; }; }
    1046     ac_package=`echo $ac_package| sed 's/-/_/g'`
     1062    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
    10471063    eval with_$ac_package=\$ac_optarg ;;
    10481064
     
    10501066    ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
    10511067    # Reject names that are not valid shell variable names.
    1052     expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
     1068    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
    10531069      { echo "$as_me: error: invalid package name: $ac_package" >&2
    10541070   { (exit 1); exit 1; }; }
    1055     ac_package=`echo $ac_package | sed 's/-/_/g'`
     1071    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
    10561072    eval with_$ac_package=no ;;
    10571073
     
    13141330  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
    13151331              nonstandard directory <lib dir>
     1332  LIBS        libraries to pass to the linker, e.g. -l<library>
    13161333  CPPFLAGS    C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
    13171334              you have headers in a nonstandard directory <include dir>
     
    13821399  cat <<\_ACEOF
    13831400RapptureGUI configure 1.0
    1384 generated by GNU Autoconf 2.60
     1401generated by GNU Autoconf 2.61
    13851402
    13861403Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
     
    13961413
    13971414It was created by RapptureGUI $as_me 1.0, which was
    1398 generated by GNU Autoconf 2.60.  Invocation command line was
     1415generated by GNU Autoconf 2.61.  Invocation command line was
    13991416
    14001417  $ $0 $@
     
    18061823  test -z "$as_dir" && as_dir=.
    18071824  for ac_exec_ext in '' $ac_executable_extensions; do
    1808   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
     1825  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
    18091826    ac_cv_prog_CYGPATH="cygpath -w"
    18101827    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
     
    22032220  test -z "$as_dir" && as_dir=.
    22042221  for ac_exec_ext in '' $ac_executable_extensions; do
    2205   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
     2222  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
    22062223    ac_cv_prog_CC="${ac_tool_prefix}gcc"
    22072224    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
     
    22432260  test -z "$as_dir" && as_dir=.
    22442261  for ac_exec_ext in '' $ac_executable_extensions; do
    2245   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
     2262  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
    22462263    ac_cv_prog_ac_ct_CC="gcc"
    22472264    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
     
    23002317  test -z "$as_dir" && as_dir=.
    23012318  for ac_exec_ext in '' $ac_executable_extensions; do
    2302   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
     2319  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
    23032320    ac_cv_prog_CC="${ac_tool_prefix}cc"
    23042321    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
     
    23412358  test -z "$as_dir" && as_dir=.
    23422359  for ac_exec_ext in '' $ac_executable_extensions; do
    2343   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
     2360  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
    23442361    if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
    23452362       ac_prog_rejected=yes
     
    23992416  test -z "$as_dir" && as_dir=.
    24002417  for ac_exec_ext in '' $ac_executable_extensions; do
    2401   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
     2418  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
    24022419    ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
    24032420    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
     
    24432460  test -z "$as_dir" && as_dir=.
    24442461  for ac_exec_ext in '' $ac_executable_extensions; do
    2445   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
     2462  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
    24462463    ac_cv_prog_ac_ct_CC="$ac_prog"
    24472464    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
     
    25842601# so that the user can short-circuit this test for compilers unknown to
    25852602# Autoconf.
    2586 for ac_file in $ac_files
     2603for ac_file in $ac_files ''
    25872604do
    25882605  test -f "$ac_file" || continue
     
    26122629
    26132630else
     2631  ac_file=''
     2632fi
     2633
     2634{ echo "$as_me:$LINENO: result: $ac_file" >&5
     2635echo "${ECHO_T}$ac_file" >&6; }
     2636if test -z "$ac_file"; then
    26142637  echo "$as_me: failed program was:" >&5
    26152638sed 's/^/| /' conftest.$ac_ext >&5
     
    26232646
    26242647ac_exeext=$ac_cv_exeext
    2625 { echo "$as_me:$LINENO: result: $ac_file" >&5
    2626 echo "${ECHO_T}$ac_file" >&6; }
    26272648
    26282649# Check that the compiler produces executables we can run.  If not, either
     
    28022823  cat conftest.err >&5
    28032824  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2804   (exit $ac_status); } &&
    2805          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    2806   { (case "(($ac_try" in
    2807   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    2808   *) ac_try_echo=$ac_try;;
    2809 esac
    2810 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    2811   (eval "$ac_try") 2>&5
    2812   ac_status=$?
    2813   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2814   (exit $ac_status); }; } &&
    2815          { ac_try='test -s conftest.$ac_objext'
    2816   { (case "(($ac_try" in
    2817   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    2818   *) ac_try_echo=$ac_try;;
    2819 esac
    2820 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    2821   (eval "$ac_try") 2>&5
    2822   ac_status=$?
    2823   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2824   (exit $ac_status); }; }; then
     2825  (exit $ac_status); } && {
     2826         test -z "$ac_c_werror_flag" ||
     2827         test ! -s conftest.err
     2828       } && test -s conftest.$ac_objext; then
    28252829  ac_compiler_gnu=yes
    28262830else
     
    28772881  cat conftest.err >&5
    28782882  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2879   (exit $ac_status); } &&
    2880          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    2881   { (case "(($ac_try" in
    2882   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    2883   *) ac_try_echo=$ac_try;;
    2884 esac
    2885 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    2886   (eval "$ac_try") 2>&5
    2887   ac_status=$?
    2888   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2889   (exit $ac_status); }; } &&
    2890          { ac_try='test -s conftest.$ac_objext'
    2891   { (case "(($ac_try" in
    2892   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    2893   *) ac_try_echo=$ac_try;;
    2894 esac
    2895 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    2896   (eval "$ac_try") 2>&5
    2897   ac_status=$?
    2898   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2899   (exit $ac_status); }; }; then
     2883  (exit $ac_status); } && {
     2884         test -z "$ac_c_werror_flag" ||
     2885         test ! -s conftest.err
     2886       } && test -s conftest.$ac_objext; then
    29002887  ac_cv_prog_cc_g=yes
    29012888else
     
    29322919  cat conftest.err >&5
    29332920  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2934   (exit $ac_status); } &&
    2935          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    2936   { (case "(($ac_try" in
    2937   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    2938   *) ac_try_echo=$ac_try;;
    2939 esac
    2940 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    2941   (eval "$ac_try") 2>&5
    2942   ac_status=$?
    2943   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2944   (exit $ac_status); }; } &&
    2945          { ac_try='test -s conftest.$ac_objext'
    2946   { (case "(($ac_try" in
    2947   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    2948   *) ac_try_echo=$ac_try;;
    2949 esac
    2950 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    2951   (eval "$ac_try") 2>&5
    2952   ac_status=$?
    2953   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2954   (exit $ac_status); }; }; then
     2921  (exit $ac_status); } && {
     2922         test -z "$ac_c_werror_flag" ||
     2923         test ! -s conftest.err
     2924       } && test -s conftest.$ac_objext; then
    29552925  :
    29562926else
     
    29882958  cat conftest.err >&5
    29892959  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    2990   (exit $ac_status); } &&
    2991          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    2992   { (case "(($ac_try" in
    2993   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    2994   *) ac_try_echo=$ac_try;;
    2995 esac
    2996 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    2997   (eval "$ac_try") 2>&5
    2998   ac_status=$?
    2999   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    3000   (exit $ac_status); }; } &&
    3001          { ac_try='test -s conftest.$ac_objext'
    3002   { (case "(($ac_try" in
    3003   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    3004   *) ac_try_echo=$ac_try;;
    3005 esac
    3006 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    3007   (eval "$ac_try") 2>&5
    3008   ac_status=$?
    3009   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    3010   (exit $ac_status); }; }; then
     2960  (exit $ac_status); } && {
     2961         test -z "$ac_c_werror_flag" ||
     2962         test ! -s conftest.err
     2963       } && test -s conftest.$ac_objext; then
    30112964  ac_cv_prog_cc_g=yes
    30122965else
     
    31243077  cat conftest.err >&5
    31253078  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    3126   (exit $ac_status); } &&
    3127          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    3128   { (case "(($ac_try" in
    3129   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    3130   *) ac_try_echo=$ac_try;;
    3131 esac
    3132 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    3133   (eval "$ac_try") 2>&5
    3134   ac_status=$?
    3135   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    3136   (exit $ac_status); }; } &&
    3137          { ac_try='test -s conftest.$ac_objext'
    3138   { (case "(($ac_try" in
    3139   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    3140   *) ac_try_echo=$ac_try;;
    3141 esac
    3142 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    3143   (eval "$ac_try") 2>&5
    3144   ac_status=$?
    3145   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    3146   (exit $ac_status); }; }; then
     3079  (exit $ac_status); } && {
     3080         test -z "$ac_c_werror_flag" ||
     3081         test ! -s conftest.err
     3082       } && test -s conftest.$ac_objext; then
    31473083  ac_cv_prog_cc_c89=$ac_arg
    31483084else
     
    32333169  cat conftest.err >&5
    32343170  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    3235   (exit $ac_status); } >/dev/null; then
    3236   if test -s conftest.err; then
    3237     ac_cpp_err=$ac_c_preproc_warn_flag
    3238     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
    3239   else
    3240     ac_cpp_err=
    3241   fi
    3242 else
    3243   ac_cpp_err=yes
    3244 fi
    3245 if test -z "$ac_cpp_err"; then
     3171  (exit $ac_status); } >/dev/null && {
     3172         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
     3173         test ! -s conftest.err
     3174       }; then
    32463175  :
    32473176else
     
    32773206  cat conftest.err >&5
    32783207  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    3279   (exit $ac_status); } >/dev/null; then
    3280   if test -s conftest.err; then
    3281     ac_cpp_err=$ac_c_preproc_warn_flag
    3282     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
    3283   else
    3284     ac_cpp_err=
    3285   fi
    3286 else
    3287   ac_cpp_err=yes
    3288 fi
    3289 if test -z "$ac_cpp_err"; then
     3208  (exit $ac_status); } >/dev/null && {
     3209         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
     3210         test ! -s conftest.err
     3211       }; then
    32903212  # Broken: success on invalid input.
    32913213continue
     
    33523274  cat conftest.err >&5
    33533275  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    3354   (exit $ac_status); } >/dev/null; then
    3355   if test -s conftest.err; then
    3356     ac_cpp_err=$ac_c_preproc_warn_flag
    3357     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
    3358   else
    3359     ac_cpp_err=
    3360   fi
    3361 else
    3362   ac_cpp_err=yes
    3363 fi
    3364 if test -z "$ac_cpp_err"; then
     3276  (exit $ac_status); } >/dev/null && {
     3277         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
     3278         test ! -s conftest.err
     3279       }; then
    33653280  :
    33663281else
     
    33963311  cat conftest.err >&5
    33973312  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    3398   (exit $ac_status); } >/dev/null; then
    3399   if test -s conftest.err; then
    3400     ac_cpp_err=$ac_c_preproc_warn_flag
    3401     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
    3402   else
    3403     ac_cpp_err=
    3404   fi
    3405 else
    3406   ac_cpp_err=yes
    3407 fi
    3408 if test -z "$ac_cpp_err"; then
     3313  (exit $ac_status); } >/dev/null && {
     3314         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
     3315         test ! -s conftest.err
     3316       }; then
    34093317  # Broken: success on invalid input.
    34103318continue
     
    34763384    for ac_prog in ginstall scoinst install; do
    34773385      for ac_exec_ext in '' $ac_executable_extensions; do
    3478         if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; }; then
     3386        if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
    34793387          if test $ac_prog = install &&
    34803388            grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
     
    35773485  test -z "$as_dir" && as_dir=.
    35783486  for ac_exec_ext in '' $ac_executable_extensions; do
    3579   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
     3487  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
    35803488    ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
    35813489    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
     
    36173525  test -z "$as_dir" && as_dir=.
    36183526  for ac_exec_ext in '' $ac_executable_extensions; do
    3619   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
     3527  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
    36203528    ac_cv_prog_ac_ct_RANLIB="ranlib"
    36213529    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
     
    36873595  for ac_exec_ext in '' $ac_executable_extensions; do
    36883596    ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
    3689     { test -f "$ac_path_GREP" && $as_executable_p "$ac_path_GREP"; } || continue
     3597    { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
    36903598    # Check for GNU ac_path_GREP and select it if it is found.
    36913599  # Check for GNU $ac_path_GREP
     
    37693677  for ac_exec_ext in '' $ac_executable_extensions; do
    37703678    ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
    3771     { test -f "$ac_path_EGREP" && $as_executable_p "$ac_path_EGREP"; } || continue
     3679    { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
    37723680    # Check for GNU ac_path_EGREP and select it if it is found.
    37733681  # Check for GNU $ac_path_EGREP
     
    38653773  cat conftest.err >&5
    38663774  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    3867   (exit $ac_status); } &&
    3868          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    3869   { (case "(($ac_try" in
    3870   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    3871   *) ac_try_echo=$ac_try;;
    3872 esac
    3873 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    3874   (eval "$ac_try") 2>&5
    3875   ac_status=$?
    3876   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    3877   (exit $ac_status); }; } &&
    3878          { ac_try='test -s conftest.$ac_objext'
    3879   { (case "(($ac_try" in
    3880   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    3881   *) ac_try_echo=$ac_try;;
    3882 esac
    3883 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    3884   (eval "$ac_try") 2>&5
    3885   ac_status=$?
    3886   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    3887   (exit $ac_status); }; }; then
     3775  (exit $ac_status); } && {
     3776         test -z "$ac_c_werror_flag" ||
     3777         test ! -s conftest.err
     3778       } && test -s conftest.$ac_objext; then
    38883779  ac_cv_header_stdc=yes
    38893780else
     
    40613952  cat conftest.err >&5
    40623953  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4063   (exit $ac_status); } &&
    4064          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    4065   { (case "(($ac_try" in
    4066   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4067   *) ac_try_echo=$ac_try;;
    4068 esac
    4069 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4070   (eval "$ac_try") 2>&5
    4071   ac_status=$?
    4072   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4073   (exit $ac_status); }; } &&
    4074          { ac_try='test -s conftest.$ac_objext'
    4075   { (case "(($ac_try" in
    4076   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4077   *) ac_try_echo=$ac_try;;
    4078 esac
    4079 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4080   (eval "$ac_try") 2>&5
    4081   ac_status=$?
    4082   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4083   (exit $ac_status); }; }; then
     3954  (exit $ac_status); } && {
     3955         test -z "$ac_c_werror_flag" ||
     3956         test ! -s conftest.err
     3957       } && test -s conftest.$ac_objext; then
    40843958  eval "$as_ac_Header=yes"
    40853959else
     
    41474021  cat conftest.err >&5
    41484022  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4149   (exit $ac_status); } &&
    4150          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    4151   { (case "(($ac_try" in
    4152   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4153   *) ac_try_echo=$ac_try;;
    4154 esac
    4155 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4156   (eval "$ac_try") 2>&5
    4157   ac_status=$?
    4158   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4159   (exit $ac_status); }; } &&
    4160          { ac_try='test -s conftest.$ac_objext'
    4161   { (case "(($ac_try" in
    4162   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4163   *) ac_try_echo=$ac_try;;
    4164 esac
    4165 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4166   (eval "$ac_try") 2>&5
    4167   ac_status=$?
    4168   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4169   (exit $ac_status); }; }; then
     4023  (exit $ac_status); } && {
     4024         test -z "$ac_c_werror_flag" ||
     4025         test ! -s conftest.err
     4026       } && test -s conftest.$ac_objext; then
    41704027  { echo "$as_me:$LINENO: result: yes" >&5
    41714028echo "${ECHO_T}yes" >&6; }
     
    42044061main ()
    42054062{
    4206 #if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN
     4063#if  ! (defined BYTE_ORDER && defined BIG_ENDIAN && defined LITTLE_ENDIAN \
     4064        && BYTE_ORDER && BIG_ENDIAN && LITTLE_ENDIAN)
    42074065 bogus endian macros
    42084066#endif
     
    42254083  cat conftest.err >&5
    42264084  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4227   (exit $ac_status); } &&
    4228          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    4229   { (case "(($ac_try" in
    4230   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4231   *) ac_try_echo=$ac_try;;
    4232 esac
    4233 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4234   (eval "$ac_try") 2>&5
    4235   ac_status=$?
    4236   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4237   (exit $ac_status); }; } &&
    4238          { ac_try='test -s conftest.$ac_objext'
    4239   { (case "(($ac_try" in
    4240   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4241   *) ac_try_echo=$ac_try;;
    4242 esac
    4243 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4244   (eval "$ac_try") 2>&5
    4245   ac_status=$?
    4246   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4247   (exit $ac_status); }; }; then
     4085  (exit $ac_status); } && {
     4086         test -z "$ac_c_werror_flag" ||
     4087         test ! -s conftest.err
     4088       } && test -s conftest.$ac_objext; then
    42484089  # It does; now see whether it defined to BIG_ENDIAN or not.
    42494090cat >conftest.$ac_ext <<_ACEOF
     
    42804121  cat conftest.err >&5
    42814122  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4282   (exit $ac_status); } &&
    4283          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    4284   { (case "(($ac_try" in
    4285   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4286   *) ac_try_echo=$ac_try;;
    4287 esac
    4288 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4289   (eval "$ac_try") 2>&5
    4290   ac_status=$?
    4291   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4292   (exit $ac_status); }; } &&
    4293          { ac_try='test -s conftest.$ac_objext'
    4294   { (case "(($ac_try" in
    4295   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4296   *) ac_try_echo=$ac_try;;
    4297 esac
    4298 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4299   (eval "$ac_try") 2>&5
    4300   ac_status=$?
    4301   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4302   (exit $ac_status); }; }; then
     4123  (exit $ac_status); } && {
     4124         test -z "$ac_c_werror_flag" ||
     4125         test ! -s conftest.err
     4126       } && test -s conftest.$ac_objext; then
    43034127  ac_cv_c_bigendian=yes
    43044128else
     
    43514175  cat conftest.err >&5
    43524176  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4353   (exit $ac_status); } &&
    4354          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    4355   { (case "(($ac_try" in
    4356   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4357   *) ac_try_echo=$ac_try;;
    4358 esac
    4359 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4360   (eval "$ac_try") 2>&5
    4361   ac_status=$?
    4362   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4363   (exit $ac_status); }; } &&
    4364          { ac_try='test -s conftest.$ac_objext'
    4365   { (case "(($ac_try" in
    4366   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4367   *) ac_try_echo=$ac_try;;
    4368 esac
    4369 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4370   (eval "$ac_try") 2>&5
    4371   ac_status=$?
    4372   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4373   (exit $ac_status); }; }; then
     4177  (exit $ac_status); } && {
     4178         test -z "$ac_c_werror_flag" ||
     4179         test ! -s conftest.err
     4180       } && test -s conftest.$ac_objext; then
    43744181  if grep BIGenDianSyS conftest.$ac_objext >/dev/null ; then
    43754182  ac_cv_c_bigendian=yes
     
    45444351  cat conftest.err >&5
    45454352  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4546   (exit $ac_status); } &&
    4547          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    4548   { (case "(($ac_try" in
    4549   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4550   *) ac_try_echo=$ac_try;;
    4551 esac
    4552 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4553   (eval "$ac_try") 2>&5
    4554   ac_status=$?
    4555   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4556   (exit $ac_status); }; } &&
    4557          { ac_try='test -s conftest$ac_exeext'
    4558   { (case "(($ac_try" in
    4559   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4560   *) ac_try_echo=$ac_try;;
    4561 esac
    4562 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4563   (eval "$ac_try") 2>&5
    4564   ac_status=$?
    4565   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4566   (exit $ac_status); }; }; then
     4353  (exit $ac_status); } && {
     4354         test -z "$ac_c_werror_flag" ||
     4355         test ! -s conftest.err
     4356       } && test -s conftest$ac_exeext &&
     4357       $as_test_x conftest$ac_exeext; then
    45674358  ac_cv_func_sin=yes
    45684359else
     
    45734364fi
    45744365
    4575 rm -f core conftest.err conftest.$ac_objext \
     4366rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    45764367      conftest$ac_exeext conftest.$ac_ext
    45774368fi
     
    46204411  cat conftest.err >&5
    46214412  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4622   (exit $ac_status); } &&
    4623          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    4624   { (case "(($ac_try" in
    4625   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4626   *) ac_try_echo=$ac_try;;
    4627 esac
    4628 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4629   (eval "$ac_try") 2>&5
    4630   ac_status=$?
    4631   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4632   (exit $ac_status); }; } &&
    4633          { ac_try='test -s conftest$ac_exeext'
    4634   { (case "(($ac_try" in
    4635   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4636   *) ac_try_echo=$ac_try;;
    4637 esac
    4638 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4639   (eval "$ac_try") 2>&5
    4640   ac_status=$?
    4641   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4642   (exit $ac_status); }; }; then
     4413  (exit $ac_status); } && {
     4414         test -z "$ac_c_werror_flag" ||
     4415         test ! -s conftest.err
     4416       } && test -s conftest$ac_exeext &&
     4417       $as_test_x conftest$ac_exeext; then
    46434418  ac_cv_lib_ieee_main=yes
    46444419else
     
    46494424fi
    46504425
    4651 rm -f core conftest.err conftest.$ac_objext \
     4426rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    46524427      conftest$ac_exeext conftest.$ac_ext
    46534428LIBS=$ac_check_lib_save_LIBS
     
    47014476  cat conftest.err >&5
    47024477  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4703   (exit $ac_status); } &&
    4704          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    4705   { (case "(($ac_try" in
    4706   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4707   *) ac_try_echo=$ac_try;;
    4708 esac
    4709 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4710   (eval "$ac_try") 2>&5
    4711   ac_status=$?
    4712   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4713   (exit $ac_status); }; } &&
    4714          { ac_try='test -s conftest$ac_exeext'
    4715   { (case "(($ac_try" in
    4716   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4717   *) ac_try_echo=$ac_try;;
    4718 esac
    4719 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4720   (eval "$ac_try") 2>&5
    4721   ac_status=$?
    4722   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4723   (exit $ac_status); }; }; then
     4478  (exit $ac_status); } && {
     4479         test -z "$ac_c_werror_flag" ||
     4480         test ! -s conftest.err
     4481       } && test -s conftest$ac_exeext &&
     4482       $as_test_x conftest$ac_exeext; then
    47244483  ac_cv_lib_inet_main=yes
    47254484else
     
    47304489fi
    47314490
    4732 rm -f core conftest.err conftest.$ac_objext \
     4491rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    47334492      conftest$ac_exeext conftest.$ac_ext
    47344493LIBS=$ac_check_lib_save_LIBS
     
    47744533  cat conftest.err >&5
    47754534  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4776   (exit $ac_status); } &&
    4777          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    4778   { (case "(($ac_try" in
    4779   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4780   *) ac_try_echo=$ac_try;;
    4781 esac
    4782 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4783   (eval "$ac_try") 2>&5
    4784   ac_status=$?
    4785   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4786   (exit $ac_status); }; } &&
    4787          { ac_try='test -s conftest.$ac_objext'
    4788   { (case "(($ac_try" in
    4789   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4790   *) ac_try_echo=$ac_try;;
    4791 esac
    4792 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4793   (eval "$ac_try") 2>&5
    4794   ac_status=$?
    4795   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4796   (exit $ac_status); }; }; then
     4535  (exit $ac_status); } && {
     4536         test -z "$ac_c_werror_flag" ||
     4537         test ! -s conftest.err
     4538       } && test -s conftest.$ac_objext; then
    47974539  ac_header_compiler=yes
    47984540else
     
    48304572  cat conftest.err >&5
    48314573  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4832   (exit $ac_status); } >/dev/null; then
    4833   if test -s conftest.err; then
    4834     ac_cpp_err=$ac_c_preproc_warn_flag
    4835     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
    4836   else
    4837     ac_cpp_err=
    4838   fi
    4839 else
    4840   ac_cpp_err=yes
    4841 fi
    4842 if test -z "$ac_cpp_err"; then
     4574  (exit $ac_status); } >/dev/null && {
     4575         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
     4576         test ! -s conftest.err
     4577       }; then
    48434578  ac_header_preproc=yes
    48444579else
     
    49824717  cat conftest.err >&5
    49834718  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4984   (exit $ac_status); } &&
    4985          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    4986   { (case "(($ac_try" in
    4987   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4988   *) ac_try_echo=$ac_try;;
    4989 esac
    4990 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    4991   (eval "$ac_try") 2>&5
    4992   ac_status=$?
    4993   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    4994   (exit $ac_status); }; } &&
    4995          { ac_try='test -s conftest$ac_exeext'
    4996   { (case "(($ac_try" in
    4997   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    4998   *) ac_try_echo=$ac_try;;
    4999 esac
    5000 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5001   (eval "$ac_try") 2>&5
    5002   ac_status=$?
    5003   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5004   (exit $ac_status); }; }; then
     4719  (exit $ac_status); } && {
     4720         test -z "$ac_c_werror_flag" ||
     4721         test ! -s conftest.err
     4722       } && test -s conftest$ac_exeext &&
     4723       $as_test_x conftest$ac_exeext; then
    50054724  ac_cv_func_connect=yes
    50064725else
     
    50114730fi
    50124731
    5013 rm -f core conftest.err conftest.$ac_objext \
     4732rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    50144733      conftest$ac_exeext conftest.$ac_ext
    50154734fi
     
    50864805  cat conftest.err >&5
    50874806  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5088   (exit $ac_status); } &&
    5089          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    5090   { (case "(($ac_try" in
    5091   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5092   *) ac_try_echo=$ac_try;;
    5093 esac
    5094 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5095   (eval "$ac_try") 2>&5
    5096   ac_status=$?
    5097   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5098   (exit $ac_status); }; } &&
    5099          { ac_try='test -s conftest$ac_exeext'
    5100   { (case "(($ac_try" in
    5101   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5102   *) ac_try_echo=$ac_try;;
    5103 esac
    5104 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5105   (eval "$ac_try") 2>&5
    5106   ac_status=$?
    5107   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5108   (exit $ac_status); }; }; then
     4807  (exit $ac_status); } && {
     4808         test -z "$ac_c_werror_flag" ||
     4809         test ! -s conftest.err
     4810       } && test -s conftest$ac_exeext &&
     4811       $as_test_x conftest$ac_exeext; then
    51094812  ac_cv_func_setsockopt=yes
    51104813else
     
    51154818fi
    51164819
    5117 rm -f core conftest.err conftest.$ac_objext \
     4820rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    51184821      conftest$ac_exeext conftest.$ac_ext
    51194822fi
     
    51654868  cat conftest.err >&5
    51664869  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5167   (exit $ac_status); } &&
    5168          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    5169   { (case "(($ac_try" in
    5170   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5171   *) ac_try_echo=$ac_try;;
    5172 esac
    5173 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5174   (eval "$ac_try") 2>&5
    5175   ac_status=$?
    5176   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5177   (exit $ac_status); }; } &&
    5178          { ac_try='test -s conftest$ac_exeext'
    5179   { (case "(($ac_try" in
    5180   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5181   *) ac_try_echo=$ac_try;;
    5182 esac
    5183 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5184   (eval "$ac_try") 2>&5
    5185   ac_status=$?
    5186   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5187   (exit $ac_status); }; }; then
     4870  (exit $ac_status); } && {
     4871         test -z "$ac_c_werror_flag" ||
     4872         test ! -s conftest.err
     4873       } && test -s conftest$ac_exeext &&
     4874       $as_test_x conftest$ac_exeext; then
    51884875  ac_cv_lib_socket_setsockopt=yes
    51894876else
     
    51944881fi
    51954882
    5196 rm -f core conftest.err conftest.$ac_objext \
     4883rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    51974884      conftest$ac_exeext conftest.$ac_ext
    51984885LIBS=$ac_check_lib_save_LIBS
     
    52754962  cat conftest.err >&5
    52764963  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5277   (exit $ac_status); } &&
    5278          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    5279   { (case "(($ac_try" in
    5280   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5281   *) ac_try_echo=$ac_try;;
    5282 esac
    5283 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5284   (eval "$ac_try") 2>&5
    5285   ac_status=$?
    5286   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5287   (exit $ac_status); }; } &&
    5288          { ac_try='test -s conftest$ac_exeext'
    5289   { (case "(($ac_try" in
    5290   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5291   *) ac_try_echo=$ac_try;;
    5292 esac
    5293 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5294   (eval "$ac_try") 2>&5
    5295   ac_status=$?
    5296   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5297   (exit $ac_status); }; }; then
     4964  (exit $ac_status); } && {
     4965         test -z "$ac_c_werror_flag" ||
     4966         test ! -s conftest.err
     4967       } && test -s conftest$ac_exeext &&
     4968       $as_test_x conftest$ac_exeext; then
    52984969  ac_cv_func_accept=yes
    52994970else
     
    53044975fi
    53054976
    5306 rm -f core conftest.err conftest.$ac_objext \
     4977rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    53074978      conftest$ac_exeext conftest.$ac_ext
    53084979fi
     
    53795050  cat conftest.err >&5
    53805051  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5381   (exit $ac_status); } &&
    5382          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    5383   { (case "(($ac_try" in
    5384   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5385   *) ac_try_echo=$ac_try;;
    5386 esac
    5387 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5388   (eval "$ac_try") 2>&5
    5389   ac_status=$?
    5390   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5391   (exit $ac_status); }; } &&
    5392          { ac_try='test -s conftest$ac_exeext'
    5393   { (case "(($ac_try" in
    5394   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5395   *) ac_try_echo=$ac_try;;
    5396 esac
    5397 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5398   (eval "$ac_try") 2>&5
    5399   ac_status=$?
    5400   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5401   (exit $ac_status); }; }; then
     5052  (exit $ac_status); } && {
     5053         test -z "$ac_c_werror_flag" ||
     5054         test ! -s conftest.err
     5055       } && test -s conftest$ac_exeext &&
     5056       $as_test_x conftest$ac_exeext; then
    54025057  ac_cv_func_gethostbyname=yes
    54035058else
     
    54085063fi
    54095064
    5410 rm -f core conftest.err conftest.$ac_objext \
     5065rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    54115066      conftest$ac_exeext conftest.$ac_ext
    54125067fi
     
    54585113  cat conftest.err >&5
    54595114  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5460   (exit $ac_status); } &&
    5461          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    5462   { (case "(($ac_try" in
    5463   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5464   *) ac_try_echo=$ac_try;;
    5465 esac
    5466 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5467   (eval "$ac_try") 2>&5
    5468   ac_status=$?
    5469   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5470   (exit $ac_status); }; } &&
    5471          { ac_try='test -s conftest$ac_exeext'
    5472   { (case "(($ac_try" in
    5473   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5474   *) ac_try_echo=$ac_try;;
    5475 esac
    5476 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5477   (eval "$ac_try") 2>&5
    5478   ac_status=$?
    5479   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5480   (exit $ac_status); }; }; then
     5115  (exit $ac_status); } && {
     5116         test -z "$ac_c_werror_flag" ||
     5117         test ! -s conftest.err
     5118       } && test -s conftest$ac_exeext &&
     5119       $as_test_x conftest$ac_exeext; then
    54815120  ac_cv_lib_nsl_gethostbyname=yes
    54825121else
     
    54875126fi
    54885127
    5489 rm -f core conftest.err conftest.$ac_objext \
     5128rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    54905129      conftest$ac_exeext conftest.$ac_ext
    54915130LIBS=$ac_check_lib_save_LIBS
     
    55605199  cat conftest.err >&5
    55615200  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5562   (exit $ac_status); } &&
    5563          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    5564   { (case "(($ac_try" in
    5565   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5566   *) ac_try_echo=$ac_try;;
    5567 esac
    5568 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5569   (eval "$ac_try") 2>&5
    5570   ac_status=$?
    5571   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5572   (exit $ac_status); }; } &&
    5573          { ac_try='test -s conftest$ac_exeext'
    5574   { (case "(($ac_try" in
    5575   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5576   *) ac_try_echo=$ac_try;;
    5577 esac
    5578 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5579   (eval "$ac_try") 2>&5
    5580   ac_status=$?
    5581   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5582   (exit $ac_status); }; }; then
     5201  (exit $ac_status); } && {
     5202         test -z "$ac_c_werror_flag" ||
     5203         test ! -s conftest.err
     5204       } && test -s conftest$ac_exeext &&
     5205       $as_test_x conftest$ac_exeext; then
    55835206  tcl_cv_dirent_h=yes
    55845207else
     
    55895212fi
    55905213
    5591 rm -f core conftest.err conftest.$ac_objext \
     5214rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    55925215      conftest$ac_exeext conftest.$ac_ext
    55935216fi
     
    56375260  cat conftest.err >&5
    56385261  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5639   (exit $ac_status); } &&
    5640          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    5641   { (case "(($ac_try" in
    5642   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5643   *) ac_try_echo=$ac_try;;
    5644 esac
    5645 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5646   (eval "$ac_try") 2>&5
    5647   ac_status=$?
    5648   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5649   (exit $ac_status); }; } &&
    5650          { ac_try='test -s conftest.$ac_objext'
    5651   { (case "(($ac_try" in
    5652   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5653   *) ac_try_echo=$ac_try;;
    5654 esac
    5655 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5656   (eval "$ac_try") 2>&5
    5657   ac_status=$?
    5658   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5659   (exit $ac_status); }; }; then
     5262  (exit $ac_status); } && {
     5263         test -z "$ac_c_werror_flag" ||
     5264         test ! -s conftest.err
     5265       } && test -s conftest.$ac_objext; then
    56605266  ac_header_compiler=yes
    56615267else
     
    56935299  cat conftest.err >&5
    56945300  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5695   (exit $ac_status); } >/dev/null; then
    5696   if test -s conftest.err; then
    5697     ac_cpp_err=$ac_c_preproc_warn_flag
    5698     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
    5699   else
    5700     ac_cpp_err=
    5701   fi
    5702 else
    5703   ac_cpp_err=yes
    5704 fi
    5705 if test -z "$ac_cpp_err"; then
     5301  (exit $ac_status); } >/dev/null && {
     5302         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
     5303         test ! -s conftest.err
     5304       }; then
    57065305  ac_header_preproc=yes
    57075306else
     
    57975396  cat conftest.err >&5
    57985397  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5799   (exit $ac_status); } &&
    5800          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    5801   { (case "(($ac_try" in
    5802   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5803   *) ac_try_echo=$ac_try;;
    5804 esac
    5805 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5806   (eval "$ac_try") 2>&5
    5807   ac_status=$?
    5808   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5809   (exit $ac_status); }; } &&
    5810          { ac_try='test -s conftest.$ac_objext'
    5811   { (case "(($ac_try" in
    5812   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5813   *) ac_try_echo=$ac_try;;
    5814 esac
    5815 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5816   (eval "$ac_try") 2>&5
    5817   ac_status=$?
    5818   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5819   (exit $ac_status); }; }; then
     5398  (exit $ac_status); } && {
     5399         test -z "$ac_c_werror_flag" ||
     5400         test ! -s conftest.err
     5401       } && test -s conftest.$ac_objext; then
    58205402  ac_header_compiler=yes
    58215403else
     
    58535435  cat conftest.err >&5
    58545436  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5855   (exit $ac_status); } >/dev/null; then
    5856   if test -s conftest.err; then
    5857     ac_cpp_err=$ac_c_preproc_warn_flag
    5858     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
    5859   else
    5860     ac_cpp_err=
    5861   fi
    5862 else
    5863   ac_cpp_err=yes
    5864 fi
    5865 if test -z "$ac_cpp_err"; then
     5437  (exit $ac_status); } >/dev/null && {
     5438         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
     5439         test ! -s conftest.err
     5440       }; then
    58665441  ac_header_preproc=yes
    58675442else
     
    59575532  cat conftest.err >&5
    59585533  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5959   (exit $ac_status); } &&
    5960          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    5961   { (case "(($ac_try" in
    5962   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5963   *) ac_try_echo=$ac_try;;
    5964 esac
    5965 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5966   (eval "$ac_try") 2>&5
    5967   ac_status=$?
    5968   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5969   (exit $ac_status); }; } &&
    5970          { ac_try='test -s conftest.$ac_objext'
    5971   { (case "(($ac_try" in
    5972   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    5973   *) ac_try_echo=$ac_try;;
    5974 esac
    5975 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    5976   (eval "$ac_try") 2>&5
    5977   ac_status=$?
    5978   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    5979   (exit $ac_status); }; }; then
     5534  (exit $ac_status); } && {
     5535         test -z "$ac_c_werror_flag" ||
     5536         test ! -s conftest.err
     5537       } && test -s conftest.$ac_objext; then
    59805538  ac_header_compiler=yes
    59815539else
     
    60135571  cat conftest.err >&5
    60145572  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6015   (exit $ac_status); } >/dev/null; then
    6016   if test -s conftest.err; then
    6017     ac_cpp_err=$ac_c_preproc_warn_flag
    6018     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
    6019   else
    6020     ac_cpp_err=
    6021   fi
    6022 else
    6023   ac_cpp_err=yes
    6024 fi
    6025 if test -z "$ac_cpp_err"; then
     5573  (exit $ac_status); } >/dev/null && {
     5574         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
     5575         test ! -s conftest.err
     5576       }; then
    60265577  ac_header_preproc=yes
    60275578else
     
    61175668  cat conftest.err >&5
    61185669  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6119   (exit $ac_status); } &&
    6120          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    6121   { (case "(($ac_try" in
    6122   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    6123   *) ac_try_echo=$ac_try;;
    6124 esac
    6125 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    6126   (eval "$ac_try") 2>&5
    6127   ac_status=$?
    6128   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6129   (exit $ac_status); }; } &&
    6130          { ac_try='test -s conftest.$ac_objext'
    6131   { (case "(($ac_try" in
    6132   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    6133   *) ac_try_echo=$ac_try;;
    6134 esac
    6135 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    6136   (eval "$ac_try") 2>&5
    6137   ac_status=$?
    6138   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6139   (exit $ac_status); }; }; then
     5670  (exit $ac_status); } && {
     5671         test -z "$ac_c_werror_flag" ||
     5672         test ! -s conftest.err
     5673       } && test -s conftest.$ac_objext; then
    61405674  ac_header_compiler=yes
    61415675else
     
    61735707  cat conftest.err >&5
    61745708  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6175   (exit $ac_status); } >/dev/null; then
    6176   if test -s conftest.err; then
    6177     ac_cpp_err=$ac_c_preproc_warn_flag
    6178     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
    6179   else
    6180     ac_cpp_err=
    6181   fi
    6182 else
    6183   ac_cpp_err=yes
    6184 fi
    6185 if test -z "$ac_cpp_err"; then
     5709  (exit $ac_status); } >/dev/null && {
     5710         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
     5711         test ! -s conftest.err
     5712       }; then
    61865713  ac_header_preproc=yes
    61875714else
     
    62815808  cat conftest.err >&5
    62825809  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6283   (exit $ac_status); } &&
    6284          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    6285   { (case "(($ac_try" in
    6286   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    6287   *) ac_try_echo=$ac_try;;
    6288 esac
    6289 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    6290   (eval "$ac_try") 2>&5
    6291   ac_status=$?
    6292   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6293   (exit $ac_status); }; } &&
    6294          { ac_try='test -s conftest.$ac_objext'
    6295   { (case "(($ac_try" in
    6296   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    6297   *) ac_try_echo=$ac_try;;
    6298 esac
    6299 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    6300   (eval "$ac_try") 2>&5
    6301   ac_status=$?
    6302   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6303   (exit $ac_status); }; }; then
     5810  (exit $ac_status); } && {
     5811         test -z "$ac_c_werror_flag" ||
     5812         test ! -s conftest.err
     5813       } && test -s conftest.$ac_objext; then
    63045814  ac_header_compiler=yes
    63055815else
     
    63375847  cat conftest.err >&5
    63385848  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6339   (exit $ac_status); } >/dev/null; then
    6340   if test -s conftest.err; then
    6341     ac_cpp_err=$ac_c_preproc_warn_flag
    6342     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
    6343   else
    6344     ac_cpp_err=
    6345   fi
    6346 else
    6347   ac_cpp_err=yes
    6348 fi
    6349 if test -z "$ac_cpp_err"; then
     5849  (exit $ac_status); } >/dev/null && {
     5850         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
     5851         test ! -s conftest.err
     5852       }; then
    63505853  ac_header_preproc=yes
    63515854else
     
    64955998  cat conftest.err >&5
    64965999  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6497   (exit $ac_status); } &&
    6498          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    6499   { (case "(($ac_try" in
    6500   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    6501   *) ac_try_echo=$ac_try;;
    6502 esac
    6503 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    6504   (eval "$ac_try") 2>&5
    6505   ac_status=$?
    6506   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6507   (exit $ac_status); }; } &&
    6508          { ac_try='test -s conftest.$ac_objext'
    6509   { (case "(($ac_try" in
    6510   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    6511   *) ac_try_echo=$ac_try;;
    6512 esac
    6513 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    6514   (eval "$ac_try") 2>&5
    6515   ac_status=$?
    6516   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6517   (exit $ac_status); }; }; then
     6000  (exit $ac_status); } && {
     6001         test -z "$ac_c_werror_flag" ||
     6002         test ! -s conftest.err
     6003       } && test -s conftest.$ac_objext; then
    65186004  ac_header_compiler=yes
    65196005else
     
    65516037  cat conftest.err >&5
    65526038  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6553   (exit $ac_status); } >/dev/null; then
    6554   if test -s conftest.err; then
    6555     ac_cpp_err=$ac_c_preproc_warn_flag
    6556     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
    6557   else
    6558     ac_cpp_err=
    6559   fi
    6560 else
    6561   ac_cpp_err=yes
    6562 fi
    6563 if test -z "$ac_cpp_err"; then
     6039  (exit $ac_status); } >/dev/null && {
     6040         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
     6041         test ! -s conftest.err
     6042       }; then
    65646043  ac_header_preproc=yes
    65656044else
     
    66976176  cat conftest.err >&5
    66986177  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6699   (exit $ac_status); } &&
    6700          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    6701   { (case "(($ac_try" in
    6702   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    6703   *) ac_try_echo=$ac_try;;
    6704 esac
    6705 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    6706   (eval "$ac_try") 2>&5
    6707   ac_status=$?
    6708   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6709   (exit $ac_status); }; } &&
    6710          { ac_try='test -s conftest.$ac_objext'
    6711   { (case "(($ac_try" in
    6712   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    6713   *) ac_try_echo=$ac_try;;
    6714 esac
    6715 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    6716   (eval "$ac_try") 2>&5
    6717   ac_status=$?
    6718   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6719   (exit $ac_status); }; }; then
     6178  (exit $ac_status); } && {
     6179         test -z "$ac_c_werror_flag" ||
     6180         test ! -s conftest.err
     6181       } && test -s conftest.$ac_objext; then
    67206182  ac_header_compiler=yes
    67216183else
     
    67536215  cat conftest.err >&5
    67546216  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6755   (exit $ac_status); } >/dev/null; then
    6756   if test -s conftest.err; then
    6757     ac_cpp_err=$ac_c_preproc_warn_flag
    6758     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
    6759   else
    6760     ac_cpp_err=
    6761   fi
    6762 else
    6763   ac_cpp_err=yes
    6764 fi
    6765 if test -z "$ac_cpp_err"; then
     6217  (exit $ac_status); } >/dev/null && {
     6218         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
     6219         test ! -s conftest.err
     6220       }; then
    67666221  ac_header_preproc=yes
    67676222else
     
    68576312  cat conftest.err >&5
    68586313  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6859   (exit $ac_status); } &&
    6860          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    6861   { (case "(($ac_try" in
    6862   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    6863   *) ac_try_echo=$ac_try;;
    6864 esac
    6865 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    6866   (eval "$ac_try") 2>&5
    6867   ac_status=$?
    6868   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6869   (exit $ac_status); }; } &&
    6870          { ac_try='test -s conftest.$ac_objext'
    6871   { (case "(($ac_try" in
    6872   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    6873   *) ac_try_echo=$ac_try;;
    6874 esac
    6875 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    6876   (eval "$ac_try") 2>&5
    6877   ac_status=$?
    6878   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6879   (exit $ac_status); }; }; then
     6314  (exit $ac_status); } && {
     6315         test -z "$ac_c_werror_flag" ||
     6316         test ! -s conftest.err
     6317       } && test -s conftest.$ac_objext; then
    68806318  ac_header_compiler=yes
    68816319else
     
    69136351  cat conftest.err >&5
    69146352  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    6915   (exit $ac_status); } >/dev/null; then
    6916   if test -s conftest.err; then
    6917     ac_cpp_err=$ac_c_preproc_warn_flag
    6918     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
    6919   else
    6920     ac_cpp_err=
    6921   fi
    6922 else
    6923   ac_cpp_err=yes
    6924 fi
    6925 if test -z "$ac_cpp_err"; then
     6353  (exit $ac_status); } >/dev/null && {
     6354         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
     6355         test ! -s conftest.err
     6356       }; then
    69266357  ac_header_preproc=yes
    69276358else
     
    70246455  cat conftest.err >&5
    70256456  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    7026   (exit $ac_status); } &&
    7027          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    7028   { (case "(($ac_try" in
    7029   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    7030   *) ac_try_echo=$ac_try;;
    7031 esac
    7032 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    7033   (eval "$ac_try") 2>&5
    7034   ac_status=$?
    7035   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    7036   (exit $ac_status); }; } &&
    7037          { ac_try='test -s conftest.$ac_objext'
    7038   { (case "(($ac_try" in
    7039   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    7040   *) ac_try_echo=$ac_try;;
    7041 esac
    7042 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    7043   (eval "$ac_try") 2>&5
    7044   ac_status=$?
    7045   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    7046   (exit $ac_status); }; }; then
     6457  (exit $ac_status); } && {
     6458         test -z "$ac_c_werror_flag" ||
     6459         test ! -s conftest.err
     6460       } && test -s conftest.$ac_objext; then
    70476461  ac_header_compiler=yes
    70486462else
     
    70806494  cat conftest.err >&5
    70816495  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    7082   (exit $ac_status); } >/dev/null; then
    7083   if test -s conftest.err; then
    7084     ac_cpp_err=$ac_c_preproc_warn_flag
    7085     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
    7086   else
    7087     ac_cpp_err=
    7088   fi
    7089 else
    7090   ac_cpp_err=yes
    7091 fi
    7092 if test -z "$ac_cpp_err"; then
     6496  (exit $ac_status); } >/dev/null && {
     6497         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
     6498         test ! -s conftest.err
     6499       }; then
    70936500  ac_header_preproc=yes
    70946501else
     
    71686575
    71696576
    7170     vars="RpInit.c RpRlimit.c RpRusage.c RpSignal.c"
     6577    vars="RpInit.c RpRlimit.c RpRusage.c RpSignal.c RpDaemon.c"
    71716578    for i in $vars; do
    71726579        case $i in
     
    81327539  cat conftest.err >&5
    81337540  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8134   (exit $ac_status); } &&
    8135          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    8136   { (case "(($ac_try" in
    8137   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    8138   *) ac_try_echo=$ac_try;;
    8139 esac
    8140 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    8141   (eval "$ac_try") 2>&5
    8142   ac_status=$?
    8143   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8144   (exit $ac_status); }; } &&
    8145          { ac_try='test -s conftest$ac_exeext'
    8146   { (case "(($ac_try" in
    8147   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    8148   *) ac_try_echo=$ac_try;;
    8149 esac
    8150 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    8151   (eval "$ac_try") 2>&5
    8152   ac_status=$?
    8153   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8154   (exit $ac_status); }; }; then
     7541  (exit $ac_status); } && {
     7542         test -z "$ac_c_werror_flag" ||
     7543         test ! -s conftest.err
     7544       } && test -s conftest$ac_exeext &&
     7545       $as_test_x conftest$ac_exeext; then
    81557546  ac_cv_lib_pthread_pthread_mutex_init=yes
    81567547else
     
    81617552fi
    81627553
    8163 rm -f core conftest.err conftest.$ac_objext \
     7554rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    81647555      conftest$ac_exeext conftest.$ac_ext
    81657556LIBS=$ac_check_lib_save_LIBS
     
    82217612  cat conftest.err >&5
    82227613  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8223   (exit $ac_status); } &&
    8224          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    8225   { (case "(($ac_try" in
    8226   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    8227   *) ac_try_echo=$ac_try;;
    8228 esac
    8229 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    8230   (eval "$ac_try") 2>&5
    8231   ac_status=$?
    8232   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8233   (exit $ac_status); }; } &&
    8234          { ac_try='test -s conftest$ac_exeext'
    8235   { (case "(($ac_try" in
    8236   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    8237   *) ac_try_echo=$ac_try;;
    8238 esac
    8239 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    8240   (eval "$ac_try") 2>&5
    8241   ac_status=$?
    8242   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8243   (exit $ac_status); }; }; then
     7614  (exit $ac_status); } && {
     7615         test -z "$ac_c_werror_flag" ||
     7616         test ! -s conftest.err
     7617       } && test -s conftest$ac_exeext &&
     7618       $as_test_x conftest$ac_exeext; then
    82447619  ac_cv_lib_pthread___pthread_mutex_init=yes
    82457620else
     
    82507625fi
    82517626
    8252 rm -f core conftest.err conftest.$ac_objext \
     7627rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    82537628      conftest$ac_exeext conftest.$ac_ext
    82547629LIBS=$ac_check_lib_save_LIBS
     
    83107685  cat conftest.err >&5
    83117686  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8312   (exit $ac_status); } &&
    8313          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    8314   { (case "(($ac_try" in
    8315   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    8316   *) ac_try_echo=$ac_try;;
    8317 esac
    8318 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    8319   (eval "$ac_try") 2>&5
    8320   ac_status=$?
    8321   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8322   (exit $ac_status); }; } &&
    8323          { ac_try='test -s conftest$ac_exeext'
    8324   { (case "(($ac_try" in
    8325   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    8326   *) ac_try_echo=$ac_try;;
    8327 esac
    8328 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    8329   (eval "$ac_try") 2>&5
    8330   ac_status=$?
    8331   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8332   (exit $ac_status); }; }; then
     7687  (exit $ac_status); } && {
     7688         test -z "$ac_c_werror_flag" ||
     7689         test ! -s conftest.err
     7690       } && test -s conftest$ac_exeext &&
     7691       $as_test_x conftest$ac_exeext; then
    83337692  ac_cv_lib_pthreads_pthread_mutex_init=yes
    83347693else
     
    83397698fi
    83407699
    8341 rm -f core conftest.err conftest.$ac_objext \
     7700rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    83427701      conftest$ac_exeext conftest.$ac_ext
    83437702LIBS=$ac_check_lib_save_LIBS
     
    83977756  cat conftest.err >&5
    83987757  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8399   (exit $ac_status); } &&
    8400          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    8401   { (case "(($ac_try" in
    8402   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    8403   *) ac_try_echo=$ac_try;;
    8404 esac
    8405 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    8406   (eval "$ac_try") 2>&5
    8407   ac_status=$?
    8408   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8409   (exit $ac_status); }; } &&
    8410          { ac_try='test -s conftest$ac_exeext'
    8411   { (case "(($ac_try" in
    8412   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    8413   *) ac_try_echo=$ac_try;;
    8414 esac
    8415 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    8416   (eval "$ac_try") 2>&5
    8417   ac_status=$?
    8418   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8419   (exit $ac_status); }; }; then
     7758  (exit $ac_status); } && {
     7759         test -z "$ac_c_werror_flag" ||
     7760         test ! -s conftest.err
     7761       } && test -s conftest$ac_exeext &&
     7762       $as_test_x conftest$ac_exeext; then
    84207763  ac_cv_lib_c_pthread_mutex_init=yes
    84217764else
     
    84267769fi
    84277770
    8428 rm -f core conftest.err conftest.$ac_objext \
     7771rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    84297772      conftest$ac_exeext conftest.$ac_ext
    84307773LIBS=$ac_check_lib_save_LIBS
     
    84817824  cat conftest.err >&5
    84827825  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8483   (exit $ac_status); } &&
    8484          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    8485   { (case "(($ac_try" in
    8486   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    8487   *) ac_try_echo=$ac_try;;
    8488 esac
    8489 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    8490   (eval "$ac_try") 2>&5
    8491   ac_status=$?
    8492   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8493   (exit $ac_status); }; } &&
    8494          { ac_try='test -s conftest$ac_exeext'
    8495   { (case "(($ac_try" in
    8496   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    8497   *) ac_try_echo=$ac_try;;
    8498 esac
    8499 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    8500   (eval "$ac_try") 2>&5
    8501   ac_status=$?
    8502   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8503   (exit $ac_status); }; }; then
     7826  (exit $ac_status); } && {
     7827         test -z "$ac_c_werror_flag" ||
     7828         test ! -s conftest.err
     7829       } && test -s conftest$ac_exeext &&
     7830       $as_test_x conftest$ac_exeext; then
    85047831  ac_cv_lib_c_r_pthread_mutex_init=yes
    85057832else
     
    85107837fi
    85117838
    8512 rm -f core conftest.err conftest.$ac_objext \
     7839rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    85137840      conftest$ac_exeext conftest.$ac_ext
    85147841LIBS=$ac_check_lib_save_LIBS
     
    87638090  cat conftest.err >&5
    87648091  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8765   (exit $ac_status); } &&
    8766          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    8767   { (case "(($ac_try" in
    8768   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    8769   *) ac_try_echo=$ac_try;;
    8770 esac
    8771 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    8772   (eval "$ac_try") 2>&5
    8773   ac_status=$?
    8774   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8775   (exit $ac_status); }; } &&
    8776          { ac_try='test -s conftest$ac_exeext'
    8777   { (case "(($ac_try" in
    8778   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    8779   *) ac_try_echo=$ac_try;;
    8780 esac
    8781 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    8782   (eval "$ac_try") 2>&5
    8783   ac_status=$?
    8784   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    8785   (exit $ac_status); }; }; then
     8092  (exit $ac_status); } && {
     8093         test -z "$ac_c_werror_flag" ||
     8094         test ! -s conftest.err
     8095       } && test -s conftest$ac_exeext &&
     8096       $as_test_x conftest$ac_exeext; then
    87868097  ac_cv_lib_dl_dlopen=yes
    87878098else
     
    87928103fi
    87938104
    8794 rm -f core conftest.err conftest.$ac_objext \
     8105rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    87958106      conftest$ac_exeext conftest.$ac_ext
    87968107LIBS=$ac_check_lib_save_LIBS
     
    88518162  test -z "$as_dir" && as_dir=.
    88528163  for ac_exec_ext in '' $ac_executable_extensions; do
    8853   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
     8164  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
    88548165    ac_cv_prog_AR="ar"
    88558166    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
     
    92798590  cat conftest.err >&5
    92808591  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    9281   (exit $ac_status); } &&
    9282          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    9283   { (case "(($ac_try" in
    9284   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    9285   *) ac_try_echo=$ac_try;;
    9286 esac
    9287 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    9288   (eval "$ac_try") 2>&5
    9289   ac_status=$?
    9290   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    9291   (exit $ac_status); }; } &&
    9292          { ac_try='test -s conftest$ac_exeext'
    9293   { (case "(($ac_try" in
    9294   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    9295   *) ac_try_echo=$ac_try;;
    9296 esac
    9297 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    9298   (eval "$ac_try") 2>&5
    9299   ac_status=$?
    9300   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    9301   (exit $ac_status); }; }; then
     8592  (exit $ac_status); } && {
     8593         test -z "$ac_c_werror_flag" ||
     8594         test ! -s conftest.err
     8595       } && test -s conftest$ac_exeext &&
     8596       $as_test_x conftest$ac_exeext; then
    93028597  ac_cv_lib_bsd_gettimeofday=yes
    93038598else
     
    93088603fi
    93098604
    9310 rm -f core conftest.err conftest.$ac_objext \
     8605rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    93118606      conftest$ac_exeext conftest.$ac_ext
    93128607LIBS=$ac_check_lib_save_LIBS
     
    93848679  cat conftest.err >&5
    93858680  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    9386   (exit $ac_status); } &&
    9387          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    9388   { (case "(($ac_try" in
    9389   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    9390   *) ac_try_echo=$ac_try;;
    9391 esac
    9392 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    9393   (eval "$ac_try") 2>&5
    9394   ac_status=$?
    9395   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    9396   (exit $ac_status); }; } &&
    9397          { ac_try='test -s conftest$ac_exeext'
    9398   { (case "(($ac_try" in
    9399   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    9400   *) ac_try_echo=$ac_try;;
    9401 esac
    9402 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    9403   (eval "$ac_try") 2>&5
    9404   ac_status=$?
    9405   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    9406   (exit $ac_status); }; }; then
     8681  (exit $ac_status); } && {
     8682         test -z "$ac_c_werror_flag" ||
     8683         test ! -s conftest.err
     8684       } && test -s conftest$ac_exeext &&
     8685       $as_test_x conftest$ac_exeext; then
    94078686  ac_cv_lib_bind_inet_ntoa=yes
    94088687else
     
    94138692fi
    94148693
    9415 rm -f core conftest.err conftest.$ac_objext \
     8694rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    94168695      conftest$ac_exeext conftest.$ac_ext
    94178696LIBS=$ac_check_lib_save_LIBS
     
    95098788  cat conftest.err >&5
    95108789  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    9511   (exit $ac_status); } &&
    9512          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    9513   { (case "(($ac_try" in
    9514   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    9515   *) ac_try_echo=$ac_try;;
    9516 esac
    9517 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    9518   (eval "$ac_try") 2>&5
    9519   ac_status=$?
    9520   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    9521   (exit $ac_status); }; } &&
    9522          { ac_try='test -s conftest$ac_exeext'
    9523   { (case "(($ac_try" in
    9524   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    9525   *) ac_try_echo=$ac_try;;
    9526 esac
    9527 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    9528   (eval "$ac_try") 2>&5
    9529   ac_status=$?
    9530   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    9531   (exit $ac_status); }; }; then
     8790  (exit $ac_status); } && {
     8791         test -z "$ac_c_werror_flag" ||
     8792         test ! -s conftest.err
     8793       } && test -s conftest$ac_exeext &&
     8794       $as_test_x conftest$ac_exeext; then
    95328795  ac_cv_lib_dld_shl_load=yes
    95338796else
     
    95388801fi
    95398802
    9540 rm -f core conftest.err conftest.$ac_objext \
     8803rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    95418804      conftest$ac_exeext conftest.$ac_ext
    95428805LIBS=$ac_check_lib_save_LIBS
     
    96398902  cat conftest.err >&5
    96408903  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    9641   (exit $ac_status); } &&
    9642          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    9643   { (case "(($ac_try" in
    9644   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    9645   *) ac_try_echo=$ac_try;;
    9646 esac
    9647 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    9648   (eval "$ac_try") 2>&5
    9649   ac_status=$?
    9650   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    9651   (exit $ac_status); }; } &&
    9652          { ac_try='test -s conftest$ac_exeext'
    9653   { (case "(($ac_try" in
    9654   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    9655   *) ac_try_echo=$ac_try;;
    9656 esac
    9657 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    9658   (eval "$ac_try") 2>&5
    9659   ac_status=$?
    9660   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    9661   (exit $ac_status); }; }; then
     8904  (exit $ac_status); } && {
     8905         test -z "$ac_c_werror_flag" ||
     8906         test ! -s conftest.err
     8907       } && test -s conftest$ac_exeext &&
     8908       $as_test_x conftest$ac_exeext; then
    96628909  ac_cv_lib_dld_shl_load=yes
    96638910else
     
    96688915fi
    96698916
    9670 rm -f core conftest.err conftest.$ac_objext \
     8917rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    96718918      conftest$ac_exeext conftest.$ac_ext
    96728919LIBS=$ac_check_lib_save_LIBS
     
    100089255  cat conftest.err >&5
    100099256  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10010   (exit $ac_status); } &&
    10011          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    10012   { (case "(($ac_try" in
    10013   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10014   *) ac_try_echo=$ac_try;;
    10015 esac
    10016 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10017   (eval "$ac_try") 2>&5
    10018   ac_status=$?
    10019   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10020   (exit $ac_status); }; } &&
    10021          { ac_try='test -s conftest$ac_exeext'
    10022   { (case "(($ac_try" in
    10023   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10024   *) ac_try_echo=$ac_try;;
    10025 esac
    10026 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10027   (eval "$ac_try") 2>&5
    10028   ac_status=$?
    10029   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10030   (exit $ac_status); }; }; then
     9257  (exit $ac_status); } && {
     9258         test -z "$ac_c_werror_flag" ||
     9259         test ! -s conftest.err
     9260       } && test -s conftest$ac_exeext &&
     9261       $as_test_x conftest$ac_exeext; then
    100319262  tcl_cv_ld_single_module=yes
    100329263else
     
    100379268fi
    100389269
    10039 rm -f core conftest.err conftest.$ac_objext \
     9270rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    100409271      conftest$ac_exeext conftest.$ac_ext
    100419272                LDFLAGS=$hold_ldflags
     
    100919322  cat conftest.err >&5
    100929323  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10093   (exit $ac_status); } &&
    10094          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    10095   { (case "(($ac_try" in
    10096   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10097   *) ac_try_echo=$ac_try;;
    10098 esac
    10099 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10100   (eval "$ac_try") 2>&5
    10101   ac_status=$?
    10102   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10103   (exit $ac_status); }; } &&
    10104          { ac_try='test -s conftest$ac_exeext'
    10105   { (case "(($ac_try" in
    10106   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10107   *) ac_try_echo=$ac_try;;
    10108 esac
    10109 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10110   (eval "$ac_try") 2>&5
    10111   ac_status=$?
    10112   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10113   (exit $ac_status); }; }; then
     9324  (exit $ac_status); } && {
     9325         test -z "$ac_c_werror_flag" ||
     9326         test ! -s conftest.err
     9327       } && test -s conftest$ac_exeext &&
     9328       $as_test_x conftest$ac_exeext; then
    101149329  tcl_cv_ld_search_paths_first=yes
    101159330else
     
    101209335fi
    101219336
    10122 rm -f core conftest.err conftest.$ac_objext \
     9337rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    101239338      conftest$ac_exeext conftest.$ac_ext
    101249339                LDFLAGS=$hold_ldflags
     
    104459660  cat conftest.err >&5
    104469661  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10447   (exit $ac_status); } &&
    10448          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    10449   { (case "(($ac_try" in
    10450   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10451   *) ac_try_echo=$ac_try;;
    10452 esac
    10453 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10454   (eval "$ac_try") 2>&5
    10455   ac_status=$?
    10456   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10457   (exit $ac_status); }; } &&
    10458          { ac_try='test -s conftest$ac_exeext'
    10459   { (case "(($ac_try" in
    10460   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10461   *) ac_try_echo=$ac_try;;
    10462 esac
    10463 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10464   (eval "$ac_try") 2>&5
    10465   ac_status=$?
    10466   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10467   (exit $ac_status); }; }; then
     9662  (exit $ac_status); } && {
     9663         test -z "$ac_c_werror_flag" ||
     9664         test ! -s conftest.err
     9665       } && test -s conftest$ac_exeext &&
     9666       $as_test_x conftest$ac_exeext; then
    104689667  tcl_cv_ld_Bexport=yes
    104699668else
     
    104749673fi
    104759674
    10476 rm -f core conftest.err conftest.$ac_objext \
     9675rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    104779676      conftest$ac_exeext conftest.$ac_ext
    104789677                LDFLAGS=$hold_ldflags
     
    106109809  cat conftest.err >&5
    106119810  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10612   (exit $ac_status); } &&
    10613          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    10614   { (case "(($ac_try" in
    10615   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10616   *) ac_try_echo=$ac_try;;
    10617 esac
    10618 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10619   (eval "$ac_try") 2>&5
    10620   ac_status=$?
    10621   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10622   (exit $ac_status); }; } &&
    10623          { ac_try='test -s conftest.$ac_objext'
    10624   { (case "(($ac_try" in
    10625   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10626   *) ac_try_echo=$ac_try;;
    10627 esac
    10628 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10629   (eval "$ac_try") 2>&5
    10630   ac_status=$?
    10631   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10632   (exit $ac_status); }; }; then
     9811  (exit $ac_status); } && {
     9812         test -z "$ac_c_werror_flag" ||
     9813         test ! -s conftest.err
     9814       } && test -s conftest.$ac_objext; then
    106339815  tcl_cv_flag__isoc99_source=no
    106349816else
     
    106659847  cat conftest.err >&5
    106669848  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10667   (exit $ac_status); } &&
    10668          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    10669   { (case "(($ac_try" in
    10670   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10671   *) ac_try_echo=$ac_try;;
    10672 esac
    10673 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10674   (eval "$ac_try") 2>&5
    10675   ac_status=$?
    10676   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10677   (exit $ac_status); }; } &&
    10678          { ac_try='test -s conftest.$ac_objext'
    10679   { (case "(($ac_try" in
    10680   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10681   *) ac_try_echo=$ac_try;;
    10682 esac
    10683 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10684   (eval "$ac_try") 2>&5
    10685   ac_status=$?
    10686   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10687   (exit $ac_status); }; }; then
     9849  (exit $ac_status); } && {
     9850         test -z "$ac_c_werror_flag" ||
     9851         test ! -s conftest.err
     9852       } && test -s conftest.$ac_objext; then
    106889853  tcl_cv_flag__isoc99_source=yes
    106899854else
     
    107419906  cat conftest.err >&5
    107429907  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10743   (exit $ac_status); } &&
    10744          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    10745   { (case "(($ac_try" in
    10746   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10747   *) ac_try_echo=$ac_try;;
    10748 esac
    10749 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10750   (eval "$ac_try") 2>&5
    10751   ac_status=$?
    10752   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10753   (exit $ac_status); }; } &&
    10754          { ac_try='test -s conftest.$ac_objext'
    10755   { (case "(($ac_try" in
    10756   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10757   *) ac_try_echo=$ac_try;;
    10758 esac
    10759 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10760   (eval "$ac_try") 2>&5
    10761   ac_status=$?
    10762   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10763   (exit $ac_status); }; }; then
     9908  (exit $ac_status); } && {
     9909         test -z "$ac_c_werror_flag" ||
     9910         test ! -s conftest.err
     9911       } && test -s conftest.$ac_objext; then
    107649912  tcl_cv_flag__largefile64_source=no
    107659913else
     
    107969944  cat conftest.err >&5
    107979945  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10798   (exit $ac_status); } &&
    10799          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    10800   { (case "(($ac_try" in
    10801   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10802   *) ac_try_echo=$ac_try;;
    10803 esac
    10804 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10805   (eval "$ac_try") 2>&5
    10806   ac_status=$?
    10807   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10808   (exit $ac_status); }; } &&
    10809          { ac_try='test -s conftest.$ac_objext'
    10810   { (case "(($ac_try" in
    10811   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10812   *) ac_try_echo=$ac_try;;
    10813 esac
    10814 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10815   (eval "$ac_try") 2>&5
    10816   ac_status=$?
    10817   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10818   (exit $ac_status); }; }; then
     9946  (exit $ac_status); } && {
     9947         test -z "$ac_c_werror_flag" ||
     9948         test ! -s conftest.err
     9949       } && test -s conftest.$ac_objext; then
    108199950  tcl_cv_flag__largefile64_source=yes
    108209951else
     
    1087210003  cat conftest.err >&5
    1087310004  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10874   (exit $ac_status); } &&
    10875          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    10876   { (case "(($ac_try" in
    10877   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10878   *) ac_try_echo=$ac_try;;
    10879 esac
    10880 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10881   (eval "$ac_try") 2>&5
    10882   ac_status=$?
    10883   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10884   (exit $ac_status); }; } &&
    10885          { ac_try='test -s conftest.$ac_objext'
    10886   { (case "(($ac_try" in
    10887   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10888   *) ac_try_echo=$ac_try;;
    10889 esac
    10890 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10891   (eval "$ac_try") 2>&5
    10892   ac_status=$?
    10893   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10894   (exit $ac_status); }; }; then
     10005  (exit $ac_status); } && {
     10006         test -z "$ac_c_werror_flag" ||
     10007         test ! -s conftest.err
     10008       } && test -s conftest.$ac_objext; then
    1089510009  tcl_cv_flag__largefile_source64=no
    1089610010else
     
    1092710041  cat conftest.err >&5
    1092810042  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10929   (exit $ac_status); } &&
    10930          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    10931   { (case "(($ac_try" in
    10932   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10933   *) ac_try_echo=$ac_try;;
    10934 esac
    10935 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10936   (eval "$ac_try") 2>&5
    10937   ac_status=$?
    10938   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10939   (exit $ac_status); }; } &&
    10940          { ac_try='test -s conftest.$ac_objext'
    10941   { (case "(($ac_try" in
    10942   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    10943   *) ac_try_echo=$ac_try;;
    10944 esac
    10945 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    10946   (eval "$ac_try") 2>&5
    10947   ac_status=$?
    10948   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    10949   (exit $ac_status); }; }; then
     10043  (exit $ac_status); } && {
     10044         test -z "$ac_c_werror_flag" ||
     10045         test ! -s conftest.err
     10046       } && test -s conftest.$ac_objext; then
    1095010047  tcl_cv_flag__largefile_source64=yes
    1095110048else
     
    1101610113  cat conftest.err >&5
    1101710114  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11018   (exit $ac_status); } &&
    11019          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    11020   { (case "(($ac_try" in
    11021   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    11022   *) ac_try_echo=$ac_try;;
    11023 esac
    11024 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    11025   (eval "$ac_try") 2>&5
    11026   ac_status=$?
    11027   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11028   (exit $ac_status); }; } &&
    11029          { ac_try='test -s conftest.$ac_objext'
    11030   { (case "(($ac_try" in
    11031   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    11032   *) ac_try_echo=$ac_try;;
    11033 esac
    11034 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    11035   (eval "$ac_try") 2>&5
    11036   ac_status=$?
    11037   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11038   (exit $ac_status); }; }; then
     10115  (exit $ac_status); } && {
     10116         test -z "$ac_c_werror_flag" ||
     10117         test ! -s conftest.err
     10118       } && test -s conftest.$ac_objext; then
    1103910119  tcl_type_64bit=__int64
    1104010120else
     
    1107910159  cat conftest.err >&5
    1108010160  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11081   (exit $ac_status); } &&
    11082          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    11083   { (case "(($ac_try" in
    11084   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    11085   *) ac_try_echo=$ac_try;;
    11086 esac
    11087 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    11088   (eval "$ac_try") 2>&5
    11089   ac_status=$?
    11090   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11091   (exit $ac_status); }; } &&
    11092          { ac_try='test -s conftest.$ac_objext'
    11093   { (case "(($ac_try" in
    11094   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    11095   *) ac_try_echo=$ac_try;;
    11096 esac
    11097 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    11098   (eval "$ac_try") 2>&5
    11099   ac_status=$?
    11100   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11101   (exit $ac_status); }; }; then
     10161  (exit $ac_status); } && {
     10162         test -z "$ac_c_werror_flag" ||
     10163         test ! -s conftest.err
     10164       } && test -s conftest.$ac_objext; then
    1110210165  tcl_cv_type_64bit=${tcl_type_64bit}
    1110310166else
     
    1117010233  cat conftest.err >&5
    1117110234  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11172   (exit $ac_status); } &&
    11173          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    11174   { (case "(($ac_try" in
    11175   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    11176   *) ac_try_echo=$ac_try;;
    11177 esac
    11178 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    11179   (eval "$ac_try") 2>&5
    11180   ac_status=$?
    11181   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11182   (exit $ac_status); }; } &&
    11183          { ac_try='test -s conftest.$ac_objext'
    11184   { (case "(($ac_try" in
    11185   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    11186   *) ac_try_echo=$ac_try;;
    11187 esac
    11188 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    11189   (eval "$ac_try") 2>&5
    11190   ac_status=$?
    11191   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11192   (exit $ac_status); }; }; then
     10235  (exit $ac_status); } && {
     10236         test -z "$ac_c_werror_flag" ||
     10237         test ! -s conftest.err
     10238       } && test -s conftest.$ac_objext; then
    1119310239  tcl_cv_struct_dirent64=yes
    1119410240else
     
    1124610292  cat conftest.err >&5
    1124710293  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11248   (exit $ac_status); } &&
    11249          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    11250   { (case "(($ac_try" in
    11251   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    11252   *) ac_try_echo=$ac_try;;
    11253 esac
    11254 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    11255   (eval "$ac_try") 2>&5
    11256   ac_status=$?
    11257   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11258   (exit $ac_status); }; } &&
    11259          { ac_try='test -s conftest.$ac_objext'
    11260   { (case "(($ac_try" in
    11261   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    11262   *) ac_try_echo=$ac_try;;
    11263 esac
    11264 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    11265   (eval "$ac_try") 2>&5
    11266   ac_status=$?
    11267   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11268   (exit $ac_status); }; }; then
     10294  (exit $ac_status); } && {
     10295         test -z "$ac_c_werror_flag" ||
     10296         test ! -s conftest.err
     10297       } && test -s conftest.$ac_objext; then
    1126910298  tcl_cv_struct_stat64=yes
    1127010299else
     
    1135510384  cat conftest.err >&5
    1135610385  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11357   (exit $ac_status); } &&
    11358          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    11359   { (case "(($ac_try" in
    11360   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    11361   *) ac_try_echo=$ac_try;;
    11362 esac
    11363 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    11364   (eval "$ac_try") 2>&5
    11365   ac_status=$?
    11366   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11367   (exit $ac_status); }; } &&
    11368          { ac_try='test -s conftest$ac_exeext'
    11369   { (case "(($ac_try" in
    11370   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    11371   *) ac_try_echo=$ac_try;;
    11372 esac
    11373 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    11374   (eval "$ac_try") 2>&5
    11375   ac_status=$?
    11376   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11377   (exit $ac_status); }; }; then
     10386  (exit $ac_status); } && {
     10387         test -z "$ac_c_werror_flag" ||
     10388         test ! -s conftest.err
     10389       } && test -s conftest$ac_exeext &&
     10390       $as_test_x conftest$ac_exeext; then
    1137810391  eval "$as_ac_var=yes"
    1137910392else
     
    1138410397fi
    1138510398
    11386 rm -f core conftest.err conftest.$ac_objext \
     10399rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    1138710400      conftest$ac_exeext conftest.$ac_ext
    1138810401fi
     
    1143310446  cat conftest.err >&5
    1143410447  echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11435   (exit $ac_status); } &&
    11436          { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
    11437   { (case "(($ac_try" in
    11438   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    11439   *) ac_try_echo=$ac_try;;
    11440 esac
    11441 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    11442   (eval "$ac_try") 2>&5
    11443   ac_status=$?
    11444   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11445   (exit $ac_status); }; } &&
    11446          { ac_try='test -s conftest.$ac_objext'
    11447   { (case "(($ac_try" in
    11448   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
    11449   *) ac_try_echo=$ac_try;;
    11450 esac
    11451 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
    11452   (eval "$ac_try") 2>&5
    11453   ac_status=$?
    11454   echo "$as_me:$LINENO: \$? = $ac_status" >&5
    11455   (exit $ac_status); }; }; then
     10448  (exit $ac_status); } && {
     10449         test -z "$ac_c_werror_flag" ||
     10450         test ! -s conftest.err
     10451       } && test -s conftest.$ac_objext; then
    1145610452  tcl_cv_type_off64_t=yes
    1145710453else
     
    1191110907## --------------------- ##
    1191210908
    11913 # Be Bourne compatible
     10909# Be more Bourne compatible
     10910DUALCASE=1; export DUALCASE # for MKS sh
    1191410911if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
    1191510912  emulate sh
     
    1192010917  setopt NO_GLOB_SUBST
    1192110918else
    11922   case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
    11923 fi
    11924 BIN_SH=xpg4; export BIN_SH # for Tru64
    11925 DUALCASE=1; export DUALCASE # for MKS sh
     10919  case `(set -o) 2>/dev/null` in
     10920  *posix*) set -o posix ;;
     10921esac
     10922
     10923fi
     10924
     10925
    1192610926
    1192710927
     
    1214711147fi
    1214811148
    12149 # Find out whether ``test -x'' works.  Don't use a zero-byte file, as
    12150 # systems may use methods other than mode bits to determine executability.
    12151 cat >conf$$.file <<_ASEOF
    12152 #! /bin/sh
    12153 exit 0
    12154 _ASEOF
    12155 chmod +x conf$$.file
    12156 if test -x conf$$.file >/dev/null 2>&1; then
    12157   as_executable_p="test -x"
    12158 else
    12159   as_executable_p=:
    12160 fi
    12161 rm -f conf$$.file
     11149if test -x / >/dev/null 2>&1; then
     11150  as_test_x='test -x'
     11151else
     11152  if ls -dL / >/dev/null 2>&1; then
     11153    as_ls_L_option=L
     11154  else
     11155    as_ls_L_option=
     11156  fi
     11157  as_test_x='
     11158    eval sh -c '\''
     11159      if test -d "$1"; then
     11160        test -d "$1/.";
     11161      else
     11162        case $1 in
     11163        -*)set "./$1";;
     11164        esac;
     11165        case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
     11166        ???[sx]*):;;*)false;;esac;fi
     11167    '\'' sh
     11168  '
     11169fi
     11170as_executable_p=$as_test_x
    1216211171
    1216311172# Sed expression to map a string onto a valid CPP name.
     
    1217511184ac_log="
    1217611185This file was extended by RapptureGUI $as_me 1.0, which was
    12177 generated by GNU Autoconf 2.60.  Invocation command line was
     11186generated by GNU Autoconf 2.61.  Invocation command line was
    1217811187
    1217911188  CONFIG_FILES    = $CONFIG_FILES
     
    1220211211
    1220311212  -h, --help       print this help, then exit
    12204   -V, --version    print version number, then exit
     11213  -V, --version    print version number and configuration settings, then exit
    1220511214  -q, --quiet      do not print progress messages
    1220611215  -d, --debug      don't remove temporary files
     
    1221811227ac_cs_version="\\
    1221911228RapptureGUI config.status 1.0
    12220 configured by $0, generated by GNU Autoconf 2.60,
     11229configured by $0, generated by GNU Autoconf 2.61,
    1222111230  with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
    1222211231
  • trunk/gui/configure.in

    r678 r702  
    8484#-----------------------------------------------------------------------
    8585
    86 TEA_ADD_SOURCES([RpInit.c RpRlimit.c RpRusage.c RpSignal.c])
     86TEA_ADD_SOURCES([RpInit.c RpRlimit.c RpRusage.c RpSignal.c RpDaemon.c])
    8787TEA_ADD_HEADERS([])
    8888TEA_ADD_INCLUDES([])
  • trunk/gui/scripts/textentry.tcl

    r692 r702  
    350350        set _value $newval
    351351
    352         set size [string length $newval]
    353         foreach {factor units} {
    354             1073741824 GB
    355             1048576 MB
    356             1024 kB
    357             1 bytes
    358         } {
    359             if {$size/$factor > 0} {
    360                 if {$factor > 1} {
    361                     set size [format "%.2f" [expr {double($size)/$factor}]]
    362                 }
    363                 break
    364             }
    365         }
    366 
    367352        if {$_layout == "entry" || [string match {*x[01]} $_size]} {
    368             set newval "<binary> $size $units"
     353            set newval [Rappture::utils::hexdump -lines 0 $_value]
    369354        } else {
    370             set newval "<binary> $size $units\n\n"
    371             set tail ""
    372             set len [string length $_value]
    373             if {$len > 1600} {
    374                 set len 1600
    375                 set tail "...more..."
    376             }
    377 
    378             for {set i 0} {$i < $len} {incr i 8} {
    379                 append newval [format "%#06x: " $i]
    380                 set ascii ""
    381                 for {set j 0} {$j < 8} {incr j} {
    382                     if {$i+$j < $len} {
    383                         set char [string index $_value [expr {$i+$j}]]
    384                         binary scan $char c ichar
    385                         set hexchar [format "%02x" [expr {0xff & $ichar}]]
    386                     } else {
    387                         set char " "
    388                         set hexchar "  "
    389                     }
    390                     append newval "$hexchar "
    391                     if {[regexp {[\000-\037\177-\377]} $char]} {
    392                         append ascii "."
    393                     } else {
    394                         append ascii $char
    395                     }
    396                 }
    397                 append newval " | $ascii\n"
    398             }
    399             append newval $tail
     355            set newval [Rappture::utils::hexdump -lines 1000 $_value]
    400356        }
    401357    } else {
  • trunk/gui/scripts/textresult.tcl

    r676 r702  
    208208        } elseif {[$dataobj element -as type] == "string"} {
    209209            # add string values
    210             $itk_component(text) insert end [$dataobj get current]
     210            set data [$dataobj get current]
     211            if {[Rappture::encoding::is binary $data]} {
     212                set data [Rappture::utils::hexdump -lines 1000 $data]
     213            }
     214            $itk_component(text) insert end $data
    211215        } else {
    212216            # any other string output -- add it directly
     
    290294        }
    291295        now {
    292             return [list .txt [$itk_component(text) get 1.0 end]]
     296            if {"" == $_dataobj} {
     297                return ""
     298            }
     299            if {[$_dataobj element -as type] == "log"} {
     300                set val [$itk_component(text) get 1.0 end]
     301            } elseif {[$_dataobj element -as type] == "string"} {
     302                set val [$_dataobj get current]
     303            } else {
     304                set val [$_dataobj get]
     305            }
     306
     307            set ext [$_dataobj get filetype]
     308            if {"" == $ext && ![Rappture::encoding::is binary $val]} {
     309                set ext ".txt"
     310            }
     311            return [list $ext $val]
    293312        }
    294313        default {
  • trunk/gui/src/RpInit.c

    r503 r702  
    1616
    1717int RpRlimit_Init _ANSI_ARGS_((Tcl_Interp *interp));
     18int RpRusage_Init _ANSI_ARGS_((Tcl_Interp *interp));
     19int RpSignal_Init _ANSI_ARGS_((Tcl_Interp *interp));
     20int RpDaemon_Init _ANSI_ARGS_((Tcl_Interp *interp));
    1821
    1922#ifdef BUILD_Rappture
     
    4144        return TCL_ERROR;
    4245    }
     46    if (RpDaemon_Init(interp) != TCL_OK) {
     47        return TCL_ERROR;
     48    }
    4349    return TCL_OK;
    4450}
  • trunk/src2/core/Makefile

    r573 r702  
    1 CFLAGS = -g
    2 all: viz
     1# Makefile for Rappture2
     2# Copyright (C) 2004-2007 Derrick S. Kearney.
     3# For conditions of distribution and use, see license.terms
    34
    4 viz: viz.o libviz.a
    5         g++ $(CFLAGS) -o viz viz.o libviz.a
     5# To compile and test, type:
     6#    ./configure; make test
     7# The call of configure is optional if you don't have special requirements
     8#
     9# To install librappture2.* and rappture2.h, type:
     10#    make install
     11# To install in $HOME instead of /usr/local, use:
     12#    make install prefix=$HOME
    613
    7 libviz.a: RpOutcome.o RpMesh1D.o RpField1D.o RpMeshTri2D.o RpMeshRect3D.o RpFieldRect3D.o RpMeshPrism3D.o RpFieldPrism3D.o RpSerialBuffer.o RpSerializer.o RpSerializable.o
    8         ar crv $@ $^
     14CXX             = g++
     15
     16CFLAGS=-g -Wall
     17#CFLAGS=-O
     18#CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
     19#CFLAGS=-g -DDEBUG
     20#CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \
     21#           -Wstrict-prototypes -Wmissing-prototypes
     22
     23LDFLAGS=librappture2.a
     24LDSHARED=$(CXX)
     25CPP=$(CC) -E
     26
     27LIBS=librappture2.a
     28SHAREDLIB=librappture2.so
     29SHAREDLIBV=librappture2.so.0.0
     30SHAREDLIBM=librappture2.so.1
     31
     32AR=ar rcv
     33RANLIB=ranlib
     34TAR=tar
     35SHELL=/bin/sh
     36EXE=
     37
     38prefix = /apps/rappture/current
     39exec_prefix = ${prefix}
     40libdir = ${exec_prefix}/lib
     41includedir = ${prefix}/include
     42mandir = ${prefix}/share/man
     43man3dir = ${mandir}/man3
     44
     45OBJS = RpMesh1D.o RpField1D.o RpMeshTri2D.o RpMeshRect3D.o \
     46       RpFieldRect3D.o RpMeshPrism3D.o RpFieldPrism3D.o RpSerialBuffer.o \
     47       RpSerializer.o RpSerializable.o RpBuffer.o Ptr.o Outcome.o # Lookup.o
     48
     49OBJA =
     50# to use the asm code: make OBJA=match.o
     51
     52TEST_OBJS = test.o RpBuffer_test.o
     53
     54all: test$(EXE) RpBuffer_test$(EXE)
     55
     56check: testall
     57testall: all
     58        @LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \
     59        if ./test; then \
     60          echo '                *** test test OK ***'; \
     61        else \
     62          echo '                *** test test FAILED ***'; \
     63        fi
     64        if ./RpBuffer_test; then \
     65          echo '                *** RpBuffer_test test OK ***'; \
     66        else \
     67          echo '                *** RpBuffer_test test FAILED ***'; \
     68        fi
     69
     70librappture2.a: $(OBJS) $(OBJA)
     71        $(AR) $@ $(OBJS) $(OBJA)
     72        -@ ($(RANLIB) $@ || true) >/dev/null 2>&1
     73
     74$(SHAREDLIBV): $(OBJS)
     75        $(LDSHARED) -shared -Wl,-rpath,${libdir} -o $@ $(OBJS) -L ${libdir} -lz -lb64
     76        rm -f $(SHAREDLIB) $(SHAREDLIBM)
     77        ln -s $@ $(SHAREDLIB)
     78        ln -s $@ $(SHAREDLIBM)
     79
     80test(EXE): test.o Ptr.o Outcome.o Lookup.o
     81        $(CXX) $(CFLAGS) -o $@ test.o Ptr.o Outcome.o Lookup.o
     82
     83
     84RpBuffer_test$(EXE): RpBuffer_test.o $(LIBS)
     85        $(CXX) $(CFLAGS) -o $@ RpBuffer_test.o $(LDFLAGS) -L ${libdir} -lz -lb64
     86
     87install: $(LIBS) $(SHAREDLIBV)
     88        -@if [ ! -d $(exec_prefix) ]; then mkdir -p $(exec_prefix); fi
     89        -@if [ ! -d $(includedir)/rappture2  ]; then mkdir -p $(includedir)/rappture2; fi
     90        -@if [ ! -d $(libdir)      ]; then mkdir -p $(libdir); fi
     91        -@if [ ! -d $(man3dir)     ]; then mkdir -p $(man3dir); fi
     92        cp *.h $(includedir)/rappture2
     93        chmod 644 $(includedir)/rappture2/*.h
     94        cp $(LIBS) $(libdir)
     95        cp $(SHAREDLIBV) $(libdir)
     96        cd $(libdir); chmod 755 $(LIBS)
     97        -@(cd $(libdir); $(RANLIB) librappture2.a || true) >/dev/null 2>&1
     98        cd $(libdir); if test -f $(SHAREDLIBV); then \
     99          rm -f $(SHAREDLIB) $(SHAREDLIBM); \
     100          ln -s $(SHAREDLIBV) $(SHAREDLIB); \
     101          ln -s $(SHAREDLIBV) $(SHAREDLIBM); \
     102          (ldconfig || true)  >/dev/null 2>&1; \
     103        fi
     104#       cp rappture.3 $(man3dir)
     105#       chmod 644 $(man3dir)/rappture.3
     106# The ranlib in install is needed on NeXTSTEP which checks file times
     107# ldconfig is for Linux
     108
     109uninstall:
     110        cd $(includedir)/rappture2; rm *.h; \
     111        cd $(libdir); rm -f librappture2.a; \
     112        if test -f $(SHAREDLIBV); then \
     113          rm -f $(SHAREDLIBV) $(SHAREDLIB) $(SHAREDLIBM); \
     114        fi
     115        cd $(man3dir); rm -f rappture.3
     116
     117mostlyclean: clean
     118clean:
     119        rm -f *.o *~ viz buffer1.txt test$(EXE) RpBuffer_test$(EXE) librappture2.*
     120
     121maintainer-clean: distclean
     122distclean: clean
     123        rm Makefile
     124
     125depend:
     126        makedepend -- $(CFLAGS) -- *.[ch]
     127
     128# DO NOT DELETE THIS LINE -- make depend depends on it.
     129
     130viz: viz.o librappture2.a
     131        $(CXX) $(CFLAGS) -o viz $^
     132
     133libviz.a: Outcome.o RpMesh1D.o RpField1D.o RpMeshTri2D.o RpMeshRect3D.o RpFieldRect3D.o RpMeshPrism3D.o RpFieldPrism3D.o RpSerialBuffer.o RpSerializer.o RpSerializable.o RpBuffer.o
     134        $(AR) $@ $^
    9135
    10136viz.o: viz.cc
    11         g++ $(CFLAGS) -c -o viz.o viz.cc
     137        $(CXX) $(CFLAGS) -c -o viz.o viz.cc
    12138
    13139test: test.o Ptr.o Outcome.o Lookup.o
    14         g++ $(CFLAGS) -o test test.o Ptr.o Outcome.o Lookup.o
     140        $(CXX) $(CFLAGS) -o test test.o Ptr.o Outcome.o Lookup.o
    15141
    16142docs:
     
    22148
    23149test.o: test.cc Ptr.h
    24         g++ $(CFLAGS) -c -o test.o test.cc
     150        $(CXX) $(CFLAGS) -c -o test.o test.cc
    25151
    26152Ptr.o: Ptr.h Ptr.cpp
    27         g++ $(CFLAGS) -c -o Ptr.o Ptr.cpp
     153        $(CXX) $(CFLAGS) -c -o Ptr.o Ptr.cpp
    28154
    29 RpOutcome.o: RpOutcome.cc RpPtr.h
    30         g++ $(CFLAGS) -c -o RpOutcome.o RpOutcome.cc
     155Outcome.o: Outcome.cpp Ptr.h
     156        $(CXX) $(CFLAGS) -c -o Outcome.o Outcome.cpp
    31157
    32158Lookup.o: Lookup.cpp Ptr.h
    33         g++ $(CFLAGS) -c -o Lookup.o Lookup.cpp
     159        $(CXX) $(CFLAGS) -c -o Lookup.o Lookup.cpp
    34160
    35161RpMesh1D.o: RpMesh1D.cc RpMesh1D.h RpNode.h
    36         g++ $(CFLAGS) -c -o RpMesh1D.o RpMesh1D.cc
     162        $(CXX) $(CFLAGS) -c -o RpMesh1D.o RpMesh1D.cc
    37163
    38164RpField1D.o: RpField1D.cc RpField1D.h RpMesh1D.h RpNode.h
    39         g++ $(CFLAGS) -c -o RpField1D.o RpField1D.cc
     165        $(CXX) $(CFLAGS) -c -o RpField1D.o RpField1D.cc
    40166
    41167RpMeshTri2D.o: RpMeshTri2D.cc RpMeshTri2D.h RpNode.h
    42         g++ $(CFLAGS) -c -o RpMeshTri2D.o RpMeshTri2D.cc
     168        $(CXX) $(CFLAGS) -c -o RpMeshTri2D.o RpMeshTri2D.cc
    43169
    44170RpFieldTri2D.o: RpFieldTri2D.cc RpFieldTri2D.h RpNode.h
    45         g++ $(CFLAGS) -c -o RpFieldTri2D.o RpFieldTri2D.cc
     171        $(CXX) $(CFLAGS) -c -o RpFieldTri2D.o RpFieldTri2D.cc
    46172
    47173RpMeshRect3D.o: RpMeshRect3D.cc RpMeshRect3D.h RpNode.h
    48         g++ $(CFLAGS) -c -o RpMeshRect3D.o RpMeshRect3D.cc
     174        $(CXX) $(CFLAGS) -c -o RpMeshRect3D.o RpMeshRect3D.cc
    49175
    50176RpFieldRect3D.o: RpFieldRect3D.cc RpFieldRect3D.h RpNode.h
    51         g++ $(CFLAGS) -c -o RpFieldRect3D.o RpFieldRect3D.cc
     177        $(CXX) $(CFLAGS) -c -o RpFieldRect3D.o RpFieldRect3D.cc
    52178
    53179RpMeshPrism3D.o: RpMeshPrism3D.cc RpMeshPrism3D.h RpNode.h
    54         g++ $(CFLAGS) -c -o RpMeshPrism3D.o RpMeshPrism3D.cc
     180        $(CXX) $(CFLAGS) -c -o RpMeshPrism3D.o RpMeshPrism3D.cc
    55181
    56182RpFieldPrism3D.o: RpFieldPrism3D.cc RpFieldPrism3D.h RpNode.h
    57         g++ $(CFLAGS) -c -o RpFieldPrism3D.o RpFieldPrism3D.cc
     183        $(CXX) $(CFLAGS) -c -o RpFieldPrism3D.o RpFieldPrism3D.cc
    58184
    59185RpSerialBuffer.o: RpSerialBuffer.cc RpSerialBuffer.h
    60         g++ $(CFLAGS) -c -o RpSerialBuffer.o RpSerialBuffer.cc
     186        $(CXX) $(CFLAGS) -c -o RpSerialBuffer.o RpSerialBuffer.cc
    61187
    62188RpSerializer.o: RpSerializer.cc RpSerializer.h
    63         g++ $(CFLAGS) -c -o RpSerializer.o RpSerializer.cc
     189        $(CXX) $(CFLAGS) -c -o RpSerializer.o RpSerializer.cc
    64190
    65191RpSerializable.o: RpSerializable.cc RpSerializable.h
    66         g++ $(CFLAGS) -c -o RpSerializable.o RpSerializable.cc
     192        $(CXX) $(CFLAGS) -c -o RpSerializable.o RpSerializable.cc
    67193
    68 clean:
    69         rm -f viz test *.o
     194RpBuffer.o: RpBuffer.cc RpBuffer.h
     195        $(CXX) $(CFLAGS) -c -o $@ -I ${includedir} RpBuffer.cc
     196
     197RpBuffer_test.o: RpBuffer_test.cc
     198        $(CXX) $(CFLAGS) -c -o $@ -I ${includedir} RpBuffer_test.cc
     199
  • trunk/tcl/scripts/library.tcl

    r687 r702  
    447447        return ""
    448448    }
    449     return [string trim [Rappture::encoding::decode [$node text]]]
     449    return [Rappture::encoding::decode [string trim [$node text]]]
    450450}
    451451
Note: See TracChangeset for help on using the changeset viewer.