Changeset 80 for trunk/src/gcc/libjava


Ignore:
Timestamp:
May 2, 2003, 12:30:43 PM (22 years ago)
Author:
bird
Message:

Regenerated configure on OS/2.

Location:
trunk/src/gcc/libjava
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gcc/libjava/configure

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r79 r80  
    573573fi
    574574
     575echo $ac_n "checking for path separator""... $ac_c" 1>&6
     576echo "configure:577: checking for path separator" >&5
     577# Filter path to get backslahes into forwardslashes
     578case "`uname -s 2> /dev/null`" in
     579OS/2)
     580  PATH=`echo -E "$PATH" | sed 's+\\\\+/+g'`
     581  PATH_IFS=';'
     582  ;;
     583*)
     584  PATH_IFS=':'
     585  ;;
     586esac
     587echo "$ac_t""${PATH_IFS}" 1>&6
     588
     589echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6
     590echo "configure:591: checking for Cygwin environment" >&5
     591if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then
     592  echo $ac_n "(cached) $ac_c" 1>&6
     593else
     594  cat > conftest.$ac_ext <<EOF
     595#line 596 "configure"
     596#include "confdefs.h"
     597
     598int main() {
     599
     600#ifndef __CYGWIN__
     601#define __CYGWIN__ __CYGWIN32__
     602#endif
     603return __CYGWIN__;
     604; return 0; }
     605EOF
     606if { (eval echo configure:607: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     607  rm -rf conftest*
     608  ac_cv_cygwin=yes
     609else
     610  echo "configure: failed program was:" >&5
     611  cat conftest.$ac_ext >&5
     612  rm -rf conftest*
     613  ac_cv_cygwin=no
     614fi
     615rm -f conftest*
     616rm -f conftest*
     617fi
     618
     619echo "$ac_t""$ac_cv_cygwin" 1>&6
     620CYGWIN=
     621test "$ac_cv_cygwin" = yes && CYGWIN=yes
     622echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6
     623echo "configure:624: checking for mingw32 environment" >&5
     624if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then
     625  echo $ac_n "(cached) $ac_c" 1>&6
     626else
     627  cat > conftest.$ac_ext <<EOF
     628#line 629 "configure"
     629#include "confdefs.h"
     630
     631int main() {
     632return __MINGW32__;
     633; return 0; }
     634EOF
     635if { (eval echo configure:636: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     636  rm -rf conftest*
     637  ac_cv_mingw32=yes
     638else
     639  echo "configure: failed program was:" >&5
     640  cat conftest.$ac_ext >&5
     641  rm -rf conftest*
     642  ac_cv_mingw32=no
     643fi
     644rm -f conftest*
     645rm -f conftest*
     646fi
     647
     648echo "$ac_t""$ac_cv_mingw32" 1>&6
     649MINGW32=
     650test "$ac_cv_mingw32" = yes && MINGW32=yes
     651echo $ac_n "checking for EMX/OS2 environment""... $ac_c" 1>&6
     652echo "configure:653: checking for EMX/OS2 environment" >&5
     653if eval "test \"`echo '$''{'ac_cv_emxos2'+set}'`\" = set"; then
     654  echo $ac_n "(cached) $ac_c" 1>&6
     655else
     656  : ${CC=gcc.exe}
     657cat > conftest.$ac_ext <<EOF
     658#line 659 "configure"
     659#include "confdefs.h"
     660
     661int main() {
     662return __EMX__;
     663; return 0; }
     664EOF
     665if { (eval echo configure:666: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     666  rm -rf conftest*
     667  ac_cv_emxos2=yes
     668else
     669  echo "configure: failed program was:" >&5
     670  cat conftest.$ac_ext >&5
     671  rm -rf conftest*
     672  ac_cv_emxos2=no
     673fi
     674rm -f conftest*
     675rm -f conftest*
     676fi
     677
     678echo "$ac_t""$ac_cv_emxos2" 1>&6
     679if eval "test \"`echo '$''{'ac_cv_libpre'+set}'`\" = set"; then
     680  echo $ac_n "(cached) $ac_c" 1>&6
     681else
     682  if test "$ac_cv_emxos2" = yes ; then
     683  ac_cv_libpre=
     684else
     685  ac_cv_libpre=lib
     686fi
     687
     688fi
     689
     690EMXOS2=
     691test "$ac_cv_emxos2" = yes && EMXOS2=yes
     692
     693
     694
     695echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
     696echo "configure:697: checking for executable suffix" >&5
     697if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then
     698  echo $ac_n "(cached) $ac_c" 1>&6
     699else
     700  if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then
     701  ac_cv_exeext=.exe
     702else
     703  rm -f conftest*
     704  echo 'int main () { return 0; }' > conftest.$ac_ext
     705  ac_cv_exeext=
     706  if { (eval echo configure:707: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
     707    for file in conftest.*; do
     708      case $file in
     709      *.c | *.o | *.obj) ;;
     710      *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;
     711      esac
     712    done
     713  else
     714    { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; }
     715  fi
     716  rm -f conftest*
     717  test x"${ac_cv_exeext}" = x && ac_cv_exeext=no
     718fi
     719fi
     720
     721EXEEXT=""
     722test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext}
     723echo "$ac_t""${ac_cv_exeext}" 1>&6
     724ac_exeext=$EXEEXT
     725
    575726
    576727
     
    582733
    583734echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
    584 echo "configure:585: checking whether ln -s works" >&5
     735echo "configure:736: checking whether ln -s works" >&5
    585736if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
    586737  echo $ac_n "(cached) $ac_c" 1>&6
     
    592743  ac_cv_prog_LN_S="ln -s"
    593744else
    594   ac_cv_prog_LN_S=ln
    595 fi
     745  echo A > conftestdata;
     746  if ln conftestdata conftestdata2 2>/dev/null; then
     747    ac_cv_prog_LN_S=ln
     748  else
     749    ac_cv_prog_LN_S=cp
     750  fi
     751fi
     752rm -f conftestdata*
    596753fi
    597754LN_S="$ac_cv_prog_LN_S"
     
    628785# ./install, which can be erroneously created by make from ./install.sh.
    629786echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    630 echo "configure:631: checking for a BSD compatible install" >&5
     787echo "configure:788: checking for a BSD compatible install" >&5
    631788if test -z "$INSTALL"; then
    632789if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
    633790  echo $ac_n "(cached) $ac_c" 1>&6
    634791else
    635     IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS=":"
     792    IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS"
    636793  for ac_dir in $PATH; do
    637794    # Account for people who put trailing slashes in PATH elements.
    638795    case "$ac_dir/" in
    639796    /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
     797    # We reject the install program from OS/2 or W3.1
     798    */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;;
    640799    *)
    641800      # OSF1 and SCO ODT 3.0 have their own names for install.
     
    643802      # by default.
    644803      for ac_prog in ginstall scoinst install; do
    645         if test -f $ac_dir/$ac_prog; then
     804        if test -f $ac_dir/$ac_prog$ac_exeext; then
    646805          if test $ac_prog = install &&
    647806            grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
     
    649808            :
    650809          else
    651             ac_cv_path_install="$ac_dir/$ac_prog -c"
     810            ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c"
    652811            break 2
    653812          fi
     
    681840
    682841echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    683 echo "configure:684: checking whether build environment is sane" >&5
     842echo "configure:843: checking whether build environment is sane" >&5
    684843# Just in case
    685844sleep 1
     
    738897
    739898echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    740 echo "configure:741: checking whether ${MAKE-make} sets \${MAKE}" >&5
     899echo "configure:900: checking whether ${MAKE-make} sets \${MAKE}" >&5
    741900set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    742901if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    770929fi
    771930
    772 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6
    773 echo "configure:774: checking for Cygwin environment" >&5
    774 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then
    775   echo $ac_n "(cached) $ac_c" 1>&6
    776 else
    777   cat > conftest.$ac_ext <<EOF
    778 #line 779 "configure"
    779 #include "confdefs.h"
    780 
    781 int main() {
    782 
    783 #ifndef __CYGWIN__
    784 #define __CYGWIN__ __CYGWIN32__
    785 #endif
    786 return __CYGWIN__;
    787 ; return 0; }
    788 EOF
    789 if { (eval echo configure:790: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    790   rm -rf conftest*
    791   ac_cv_cygwin=yes
    792 else
    793   echo "configure: failed program was:" >&5
    794   cat conftest.$ac_ext >&5
    795   rm -rf conftest*
    796   ac_cv_cygwin=no
    797 fi
    798 rm -f conftest*
    799 rm -f conftest*
    800 fi
    801 
    802 echo "$ac_t""$ac_cv_cygwin" 1>&6
    803 CYGWIN=
    804 test "$ac_cv_cygwin" = yes && CYGWIN=yes
    805 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6
    806 echo "configure:807: checking for mingw32 environment" >&5
    807 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then
    808   echo $ac_n "(cached) $ac_c" 1>&6
    809 else
    810   cat > conftest.$ac_ext <<EOF
    811 #line 812 "configure"
    812 #include "confdefs.h"
    813 
    814 int main() {
    815 return __MINGW32__;
    816 ; return 0; }
    817 EOF
    818 if { (eval echo configure:819: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    819   rm -rf conftest*
    820   ac_cv_mingw32=yes
    821 else
    822   echo "configure: failed program was:" >&5
    823   cat conftest.$ac_ext >&5
    824   rm -rf conftest*
    825   ac_cv_mingw32=no
    826 fi
    827 rm -f conftest*
    828 rm -f conftest*
    829 fi
    830 
    831 echo "$ac_t""$ac_cv_mingw32" 1>&6
    832 MINGW32=
    833 test "$ac_cv_mingw32" = yes && MINGW32=yes
    834931
    835932# Check whether --enable-multilib or --disable-multilib was given.
     
    9431040
    9441041echo $ac_n "checking host system type""... $ac_c" 1>&6
    945 echo "configure:946: checking host system type" >&5
     1042echo "configure:1043: checking host system type" >&5
    9461043
    9471044host_alias=$host
     
    9641061
    9651062echo $ac_n "checking target system type""... $ac_c" 1>&6
    966 echo "configure:967: checking target system type" >&5
     1063echo "configure:1064: checking target system type" >&5
    9671064
    9681065target_alias=$target
     
    9821079
    9831080echo $ac_n "checking build system type""... $ac_c" 1>&6
    984 echo "configure:985: checking build system type" >&5
     1081echo "configure:1082: checking build system type" >&5
    9851082
    9861083build_alias=$build
     
    10111108set dummy gcc; ac_word=$2
    10121109echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1013 echo "configure:1014: checking for $ac_word" >&5
     1110echo "configure:1111: checking for $ac_word" >&5
    10141111if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    10151112  echo $ac_n "(cached) $ac_c" 1>&6
     
    10181115  ac_cv_prog_CC="$CC" # Let the user override the test.
    10191116else
    1020   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1117  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    10211118  ac_dummy="$PATH"
    10221119  for ac_dir in $ac_dummy; do
    10231120    test -z "$ac_dir" && ac_dir=.
    1024     if test -f $ac_dir/$ac_word; then
     1121    if test -f $ac_dir/$ac_word -o \
     1122            -f $ac_dir/$ac_word$ac_exeext ; then
    10251123      ac_cv_prog_CC="gcc"
    10261124      break
     
    10411139set dummy cc; ac_word=$2
    10421140echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1043 echo "configure:1044: checking for $ac_word" >&5
     1141echo "configure:1142: checking for $ac_word" >&5
    10441142if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    10451143  echo $ac_n "(cached) $ac_c" 1>&6
     
    10481146  ac_cv_prog_CC="$CC" # Let the user override the test.
    10491147else
    1050   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1148  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    10511149  ac_prog_rejected=no
    10521150  ac_dummy="$PATH"
    10531151  for ac_dir in $ac_dummy; do
    10541152    test -z "$ac_dir" && ac_dir=.
    1055     if test -f $ac_dir/$ac_word; then
    1056       if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
     1153    if test -f $ac_dir/$ac_word -o \
     1154            -f $ac_dir/$ac_word$ac_exeext ; then
     1155      if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \
     1156               "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then
    10571157        ac_prog_rejected=yes
    10581158        continue
     
    10921192set dummy cl; ac_word=$2
    10931193echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1094 echo "configure:1095: checking for $ac_word" >&5
     1194echo "configure:1195: checking for $ac_word" >&5
    10951195if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    10961196  echo $ac_n "(cached) $ac_c" 1>&6
     
    10991199  ac_cv_prog_CC="$CC" # Let the user override the test.
    11001200else
    1101   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1201  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    11021202  ac_dummy="$PATH"
    11031203  for ac_dir in $ac_dummy; do
    11041204    test -z "$ac_dir" && ac_dir=.
    1105     if test -f $ac_dir/$ac_word; then
     1205    if test -f $ac_dir/$ac_word -o \
     1206            -f $ac_dir/$ac_word$ac_exeext ; then
    11061207      ac_cv_prog_CC="cl"
    11071208      break
     
    11251226
    11261227echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    1127 echo "configure:1128: checking whether we are using GNU C" >&5
     1228echo "configure:1229: checking whether we are using GNU C" >&5
    11281229if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    11291230  echo $ac_n "(cached) $ac_c" 1>&6
     
    11341235#endif
    11351236EOF
    1136 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1137: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1237if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1238: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
    11371238  ac_cv_prog_gcc=yes
    11381239else
     
    11531254CFLAGS=
    11541255echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    1155 echo "configure:1156: checking whether ${CC-cc} accepts -g" >&5
     1256echo "configure:1257: checking whether ${CC-cc} accepts -g" >&5
    11561257if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    11571258  echo $ac_n "(cached) $ac_c" 1>&6
     
    12021303set dummy $ac_prog; ac_word=$2
    12031304echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1204 echo "configure:1205: checking for $ac_word" >&5
     1305echo "configure:1306: checking for $ac_word" >&5
    12051306if eval "test \"`echo '$''{'ac_cv_prog_glibjava_CXX'+set}'`\" = set"; then
    12061307  echo $ac_n "(cached) $ac_c" 1>&6
     
    12091310  ac_cv_prog_glibjava_CXX="$glibjava_CXX" # Let the user override the test.
    12101311else
    1211   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1312  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    12121313  ac_dummy="$PATH"
    12131314  for ac_dir in $ac_dummy; do
    12141315    test -z "$ac_dir" && ac_dir=.
    1215     if test -f $ac_dir/$ac_word; then
     1316    if test -f $ac_dir/$ac_word -o \
     1317            -f $ac_dir/$ac_word$ac_exeext ; then
    12161318      ac_cv_prog_glibjava_CXX="$ac_prog"
    12171319      break
     
    12371339
    12381340echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6
    1239 echo "configure:1240: checking whether we are using GNU C++" >&5
     1341echo "configure:1342: checking whether we are using GNU C++" >&5
    12401342if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then
    12411343  echo $ac_n "(cached) $ac_c" 1>&6
     
    12461348#endif
    12471349EOF
    1248 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1249: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1350if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1351: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
    12491351  ac_cv_prog_gxx=yes
    12501352else
     
    12611363  CXXFLAGS=
    12621364  echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6
    1263 echo "configure:1264: checking whether ${CXX-g++} accepts -g" >&5
     1365echo "configure:1366: checking whether ${CXX-g++} accepts -g" >&5
    12641366if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then
    12651367  echo $ac_n "(cached) $ac_c" 1>&6
     
    13101412missing_dir=`cd $ac_aux_dir && pwd`
    13111413echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    1312 echo "configure:1313: checking for working aclocal" >&5
     1414echo "configure:1415: checking for working aclocal" >&5
    13131415# Run test in a subshell; some versions of sh will print an error if
    13141416# an executable is not found, even if stderr is redirected.
     
    13231425
    13241426echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    1325 echo "configure:1326: checking for working autoconf" >&5
     1427echo "configure:1428: checking for working autoconf" >&5
    13261428# Run test in a subshell; some versions of sh will print an error if
    13271429# an executable is not found, even if stderr is redirected.
     
    13361438
    13371439echo $ac_n "checking for working automake""... $ac_c" 1>&6
    1338 echo "configure:1339: checking for working automake" >&5
     1440echo "configure:1441: checking for working automake" >&5
    13391441# Run test in a subshell; some versions of sh will print an error if
    13401442# an executable is not found, even if stderr is redirected.
     
    13491451
    13501452echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    1351 echo "configure:1352: checking for working autoheader" >&5
     1453echo "configure:1454: checking for working autoheader" >&5
    13521454# Run test in a subshell; some versions of sh will print an error if
    13531455# an executable is not found, even if stderr is redirected.
     
    13621464
    13631465echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    1364 echo "configure:1365: checking for working makeinfo" >&5
     1466echo "configure:1467: checking for working makeinfo" >&5
    13651467# Run test in a subshell; some versions of sh will print an error if
    13661468# an executable is not found, even if stderr is redirected.
     
    13811483# be run before AC_CANONICAL_HOST.
    13821484echo $ac_n "checking build system type""... $ac_c" 1>&6
    1383 echo "configure:1384: checking build system type" >&5
     1485echo "configure:1486: checking build system type" >&5
    13841486
    13851487build_alias=$build
     
    14021504set dummy ${ac_tool_prefix}as; ac_word=$2
    14031505echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1404 echo "configure:1405: checking for $ac_word" >&5
     1506echo "configure:1507: checking for $ac_word" >&5
    14051507if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then
    14061508  echo $ac_n "(cached) $ac_c" 1>&6
     
    14091511  ac_cv_prog_AS="$AS" # Let the user override the test.
    14101512else
    1411   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1513  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    14121514  ac_dummy="$PATH"
    14131515  for ac_dir in $ac_dummy; do
    14141516    test -z "$ac_dir" && ac_dir=.
    1415     if test -f $ac_dir/$ac_word; then
     1517    if test -f $ac_dir/$ac_word -o \
     1518            -f $ac_dir/$ac_word$ac_exeext ; then
    14161519      ac_cv_prog_AS="${ac_tool_prefix}as"
    14171520      break
     
    14341537set dummy ${ac_tool_prefix}ar; ac_word=$2
    14351538echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1436 echo "configure:1437: checking for $ac_word" >&5
     1539echo "configure:1540: checking for $ac_word" >&5
    14371540if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then
    14381541  echo $ac_n "(cached) $ac_c" 1>&6
     
    14411544  ac_cv_prog_AR="$AR" # Let the user override the test.
    14421545else
    1443   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1546  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    14441547  ac_dummy="$PATH"
    14451548  for ac_dir in $ac_dummy; do
    14461549    test -z "$ac_dir" && ac_dir=.
    1447     if test -f $ac_dir/$ac_word; then
     1550    if test -f $ac_dir/$ac_word -o \
     1551            -f $ac_dir/$ac_word$ac_exeext ; then
    14481552      ac_cv_prog_AR="${ac_tool_prefix}ar"
    14491553      break
     
    14661570set dummy ${ac_tool_prefix}ranlib; ac_word=$2
    14671571echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1468 echo "configure:1469: checking for $ac_word" >&5
     1572echo "configure:1573: checking for $ac_word" >&5
    14691573if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    14701574  echo $ac_n "(cached) $ac_c" 1>&6
     
    14731577  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
    14741578else
    1475   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1579  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    14761580  ac_dummy="$PATH"
    14771581  for ac_dir in $ac_dummy; do
    14781582    test -z "$ac_dir" && ac_dir=.
    1479     if test -f $ac_dir/$ac_word; then
     1583    if test -f $ac_dir/$ac_word -o \
     1584            -f $ac_dir/$ac_word$ac_exeext ; then
    14801585      ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
    14811586      break
     
    14981603set dummy ranlib; ac_word=$2
    14991604echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1500 echo "configure:1501: checking for $ac_word" >&5
     1605echo "configure:1606: checking for $ac_word" >&5
    15011606if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    15021607  echo $ac_n "(cached) $ac_c" 1>&6
     
    15051610  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
    15061611else
    1507   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1612  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    15081613  ac_dummy="$PATH"
    15091614  for ac_dir in $ac_dummy; do
    15101615    test -z "$ac_dir" && ac_dir=.
    1511     if test -f $ac_dir/$ac_word; then
     1616    if test -f $ac_dir/$ac_word -o \
     1617            -f $ac_dir/$ac_word$ac_exeext ; then
    15121618      ac_cv_prog_RANLIB="ranlib"
    15131619      break
     
    15431649# ./install, which can be erroneously created by make from ./install.sh.
    15441650echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    1545 echo "configure:1546: checking for a BSD compatible install" >&5
     1651echo "configure:1652: checking for a BSD compatible install" >&5
    15461652if test -z "$INSTALL"; then
    15471653if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
    15481654  echo $ac_n "(cached) $ac_c" 1>&6
    15491655else
    1550     IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS=":"
     1656    IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS"
    15511657  for ac_dir in $PATH; do
    15521658    # Account for people who put trailing slashes in PATH elements.
    15531659    case "$ac_dir/" in
    15541660    /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
     1661    # We reject the install program from OS/2 or W3.1
     1662    */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;;
    15551663    *)
    15561664      # OSF1 and SCO ODT 3.0 have their own names for install.
     
    15581666      # by default.
    15591667      for ac_prog in ginstall scoinst install; do
    1560         if test -f $ac_dir/$ac_prog; then
     1668        if test -f $ac_dir/$ac_prog$ac_exeext; then
    15611669          if test $ac_prog = install &&
    15621670            grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
     
    15641672            :
    15651673          else
    1566             ac_cv_path_install="$ac_dir/$ac_prog -c"
     1674            ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c"
    15671675            break 2
    15681676          fi
     
    15971705
    15981706echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6
    1599 echo "configure:1600: checking whether to enable maintainer-specific portions of Makefiles" >&5
     1707echo "configure:1708: checking whether to enable maintainer-specific portions of Makefiles" >&5
    16001708    # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
    16011709if test "${enable_maintainer_mode+set}" = set; then
     
    16341742 
    16351743
     1744
    16361745echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
    1637 echo "configure:1638: checking for executable suffix" >&5
     1746echo "configure:1747: checking for executable suffix" >&5
    16381747if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then
    16391748  echo $ac_n "(cached) $ac_c" 1>&6
    16401749else
    1641   if test "$CYGWIN" = yes || test "$MINGW32" = yes; then
     1750  if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then
    16421751  ac_cv_exeext=.exe
    16431752else
     
    16451754  echo 'int main () { return 0; }' > conftest.$ac_ext
    16461755  ac_cv_exeext=
    1647   if { (eval echo configure:1648: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
     1756  if { (eval echo configure:1757: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
    16481757    for file in conftest.*; do
    16491758      case $file in
     
    17961905  # Check if gcc -print-prog-name=ld gives a path.
    17971906  echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6
    1798 echo "configure:1799: checking for ld used by GCC" >&5
     1907echo "configure:1908: checking for ld used by GCC" >&5
    17991908  case $host in
    18001909  *-*-mingw*)
     
    18261935elif test "$with_gnu_ld" = yes; then
    18271936  echo $ac_n "checking for GNU ld""... $ac_c" 1>&6
    1828 echo "configure:1829: checking for GNU ld" >&5
     1937echo "configure:1938: checking for GNU ld" >&5
    18291938else
    18301939  echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6
    1831 echo "configure:1832: checking for non-GNU ld" >&5
     1940echo "configure:1941: checking for non-GNU ld" >&5
    18321941fi
    18331942if eval "test \"`echo '$''{'lt_cv_path_LD'+set}'`\" = set"; then
     
    18641973test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; }
    18651974echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6
    1866 echo "configure:1867: checking if the linker ($LD) is GNU ld" >&5
     1975echo "configure:1976: checking if the linker ($LD) is GNU ld" >&5
    18671976if eval "test \"`echo '$''{'lt_cv_prog_gnu_ld'+set}'`\" = set"; then
    18681977  echo $ac_n "(cached) $ac_c" 1>&6
     
    18811990
    18821991echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6
    1883 echo "configure:1884: checking for $LD option to reload object files" >&5
     1992echo "configure:1993: checking for $LD option to reload object files" >&5
    18841993if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then
    18851994  echo $ac_n "(cached) $ac_c" 1>&6
     
    18932002
    18942003echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6
    1895 echo "configure:1896: checking for BSD-compatible nm" >&5
     2004echo "configure:2005: checking for BSD-compatible nm" >&5
    18962005if eval "test \"`echo '$''{'lt_cv_path_NM'+set}'`\" = set"; then
    18972006  echo $ac_n "(cached) $ac_c" 1>&6
     
    19312040
    19322041echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6
    1933 echo "configure:1934: checking how to recognise dependant libraries" >&5
     2042echo "configure:2043: checking how to recognise dependant libraries" >&5
    19342043if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then
    19352044  echo $ac_n "(cached) $ac_c" 1>&6
     
    20952204
    20962205echo $ac_n "checking for object suffix""... $ac_c" 1>&6
    2097 echo "configure:2098: checking for object suffix" >&5
     2206echo "configure:2207: checking for object suffix" >&5
    20982207if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then
    20992208  echo $ac_n "(cached) $ac_c" 1>&6
     
    21012210  rm -f conftest*
    21022211echo 'int i = 1;' > conftest.$ac_ext
    2103 if { (eval echo configure:2104: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     2212if { (eval echo configure:2213: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    21042213  for ac_file in conftest.*; do
    21052214    case $ac_file in
     
    21252234  if test "$file_magic_cmd" = '$MAGIC_CMD'; then
    21262235    echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6
    2127 echo "configure:2128: checking for ${ac_tool_prefix}file" >&5
     2236echo "configure:2237: checking for ${ac_tool_prefix}file" >&5
    21282237if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then
    21292238  echo $ac_n "(cached) $ac_c" 1>&6
     
    21872296  if test -n "$ac_tool_prefix"; then
    21882297    echo $ac_n "checking for file""... $ac_c" 1>&6
    2189 echo "configure:2190: checking for file" >&5
     2298echo "configure:2299: checking for file" >&5
    21902299if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then
    21912300  echo $ac_n "(cached) $ac_c" 1>&6
     
    22582367set dummy ${ac_tool_prefix}ranlib; ac_word=$2
    22592368echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2260 echo "configure:2261: checking for $ac_word" >&5
     2369echo "configure:2370: checking for $ac_word" >&5
    22612370if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    22622371  echo $ac_n "(cached) $ac_c" 1>&6
     
    22652374  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
    22662375else
    2267   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2376  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    22682377  ac_dummy="$PATH"
    22692378  for ac_dir in $ac_dummy; do
    22702379    test -z "$ac_dir" && ac_dir=.
    2271     if test -f $ac_dir/$ac_word; then
     2380    if test -f $ac_dir/$ac_word -o \
     2381            -f $ac_dir/$ac_word$ac_exeext ; then
    22722382      ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
    22732383      break
     
    22902400set dummy ranlib; ac_word=$2
    22912401echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2292 echo "configure:2293: checking for $ac_word" >&5
     2402echo "configure:2403: checking for $ac_word" >&5
    22932403if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    22942404  echo $ac_n "(cached) $ac_c" 1>&6
     
    22972407  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
    22982408else
    2299   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2409  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    23002410  ac_dummy="$PATH"
    23012411  for ac_dir in $ac_dummy; do
    23022412    test -z "$ac_dir" && ac_dir=.
    2303     if test -f $ac_dir/$ac_word; then
     2413    if test -f $ac_dir/$ac_word -o \
     2414            -f $ac_dir/$ac_word$ac_exeext ; then
    23042415      ac_cv_prog_RANLIB="ranlib"
    23052416      break
     
    23252436set dummy ${ac_tool_prefix}strip; ac_word=$2
    23262437echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2327 echo "configure:2328: checking for $ac_word" >&5
     2438echo "configure:2439: checking for $ac_word" >&5
    23282439if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
    23292440  echo $ac_n "(cached) $ac_c" 1>&6
     
    23322443  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
    23332444else
    2334   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2445  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    23352446  ac_dummy="$PATH"
    23362447  for ac_dir in $ac_dummy; do
    23372448    test -z "$ac_dir" && ac_dir=.
    2338     if test -f $ac_dir/$ac_word; then
     2449    if test -f $ac_dir/$ac_word -o \
     2450            -f $ac_dir/$ac_word$ac_exeext ; then
    23392451      ac_cv_prog_STRIP="${ac_tool_prefix}strip"
    23402452      break
     
    23572469set dummy strip; ac_word=$2
    23582470echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2359 echo "configure:2360: checking for $ac_word" >&5
     2471echo "configure:2472: checking for $ac_word" >&5
    23602472if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
    23612473  echo $ac_n "(cached) $ac_c" 1>&6
     
    23642476  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
    23652477else
    2366   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2478  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    23672479  ac_dummy="$PATH"
    23682480  for ac_dir in $ac_dummy; do
    23692481    test -z "$ac_dir" && ac_dir=.
    2370     if test -f $ac_dir/$ac_word; then
     2482    if test -f $ac_dir/$ac_word -o \
     2483            -f $ac_dir/$ac_word$ac_exeext ; then
    23712484      ac_cv_prog_STRIP="strip"
    23722485      break
     
    24242537*-*-irix6*)
    24252538  # Find out which ABI we are using.
    2426   echo '#line 2427 "configure"' > conftest.$ac_ext
    2427   if { (eval echo configure:2428: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     2539  echo '#line 2540 "configure"' > conftest.$ac_ext
     2540  if { (eval echo configure:2541: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    24282541    case `/usr/bin/file conftest.$ac_objext` in
    24292542    *32-bit*)
     
    24462559  CFLAGS="$CFLAGS -belf"
    24472560  echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6
    2448 echo "configure:2449: checking whether the C compiler needs -belf" >&5
     2561echo "configure:2562: checking whether the C compiler needs -belf" >&5
    24492562if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then
    24502563  echo $ac_n "(cached) $ac_c" 1>&6
     
    24592572
    24602573     cat > conftest.$ac_ext <<EOF
    2461 #line 2462 "configure"
     2574#line 2575 "configure"
    24622575#include "confdefs.h"
    24632576
     
    24662579; return 0; }
    24672580EOF
    2468 if { (eval echo configure:2469: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     2581if { (eval echo configure:2582: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    24692582  rm -rf conftest*
    24702583  lt_cv_cc_needs_belf=yes
     
    24962609
    24972610echo $ac_n "checking how to run the C++ preprocessor""... $ac_c" 1>&6
    2498 echo "configure:2499: checking how to run the C++ preprocessor" >&5
     2611echo "configure:2612: checking how to run the C++ preprocessor" >&5
    24992612if test -z "$CXXCPP"; then
    25002613if eval "test \"`echo '$''{'ac_cv_prog_CXXCPP'+set}'`\" = set"; then
     
    25092622  CXXCPP="${CXX-g++} -E"
    25102623  cat > conftest.$ac_ext <<EOF
    2511 #line 2512 "configure"
     2624#include <sys/types.h>
     2625#line 2626 "configure"
    25122626#include "confdefs.h"
    25132627#include <stdlib.h>
    25142628EOF
    25152629ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2516 { (eval echo configure:2517: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2630{ (eval echo configure:2631: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    25172631ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    25182632if test -z "$ac_err"; then
     
    27482862
    27492863echo $ac_n "checking for exception model to use""... $ac_c" 1>&6
    2750 echo "configure:2751: checking for exception model to use" >&5
     2864echo "configure:2865: checking for exception model to use" >&5
    27512865
    27522866ac_ext=C
     
    27632877else
    27642878  cat > conftest.$ac_ext << EOF
    2765 #line 2766 "configure"
     2879#line 2880 "configure"
    27662880struct S { ~S(); };
    27672881void bar();
     
    27742888old_CXXFLAGS="$CXXFLAGS" 
    27752889CXXFLAGS=-S
    2776 if { (eval echo configure:2777: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     2890if { (eval echo configure:2891: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    27772891  if grep _Unwind_SjLj_Resume conftest.s >/dev/null 2>&1 ; then
    27782892    enable_sjlj_exceptions=yes
     
    29043018
    29053019echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
    2906 echo "configure:2907: checking how to run the C preprocessor" >&5
     3020echo "configure:3021: checking how to run the C preprocessor" >&5
    29073021# On Suns, sometimes $CPP names a directory.
    29083022if test -n "$CPP" && test -d "$CPP"; then
     
    29193033  # not just through cpp.
    29203034  cat > conftest.$ac_ext <<EOF
    2921 #line 2922 "configure"
     3035#include <sys/types.h>
     3036#line 3037 "configure"
    29223037#include "confdefs.h"
    29233038#include <assert.h>
     
    29253040EOF
    29263041ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2927 { (eval echo configure:2928: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     3042{ (eval echo configure:3043: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    29283043ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    29293044if test -z "$ac_err"; then
     
    29363051  CPP="${CC-cc} -E -traditional-cpp"
    29373052  cat > conftest.$ac_ext <<EOF
    2938 #line 2939 "configure"
     3053#include <sys/types.h>
     3054#line 3055 "configure"
    29393055#include "confdefs.h"
    29403056#include <assert.h>
     
    29423058EOF
    29433059ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2944 { (eval echo configure:2945: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     3060{ (eval echo configure:3061: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    29453061ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    29463062if test -z "$ac_err"; then
     
    29533069  CPP="${CC-cc} -nologo -E"
    29543070  cat > conftest.$ac_ext <<EOF
    2955 #line 2956 "configure"
     3071#include <sys/types.h>
     3072#line 3073 "configure"
    29563073#include "confdefs.h"
    29573074#include <assert.h>
     
    29593076EOF
    29603077ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2961 { (eval echo configure:2962: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     3078{ (eval echo configure:3079: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    29623079ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    29633080if test -z "$ac_err"; then
     
    29843101
    29853102cat > conftest.$ac_ext <<EOF
    2986 #line 2987 "configure"
     3103#line 3104 "configure"
    29873104#include "confdefs.h"
    29883105#include <stdint.h>
     
    29993116
    30003117cat > conftest.$ac_ext <<EOF
    3001 #line 3002 "configure"
     3118#line 3119 "configure"
    30023119#include "confdefs.h"
    30033120#include <inttypes.h>
     
    30143131
    30153132cat > conftest.$ac_ext <<EOF
    3016 #line 3017 "configure"
     3133#line 3134 "configure"
    30173134#include "confdefs.h"
    30183135#include <sys/types.h>
     
    30293146
    30303147cat > conftest.$ac_ext <<EOF
    3031 #line 3032 "configure"
     3148#line 3149 "configure"
    30323149#include "confdefs.h"
    30333150#include <sys/config.h>
     
    30463163
    30473164cat > conftest.$ac_ext <<EOF
    3048 #line 3049 "configure"
     3165#line 3166 "configure"
    30493166#include "confdefs.h"
    30503167#include <time.h>
     
    30613178
    30623179cat > conftest.$ac_ext <<EOF
    3063 #line 3064 "configure"
     3180#line 3181 "configure"
    30643181#include "confdefs.h"
    30653182#include <time.h>
     
    31133230
    31143231echo $ac_n "checking for garbage collector to use""... $ac_c" 1>&6
    3115 echo "configure:3116: checking for garbage collector to use" >&5
     3232echo "configure:3233: checking for garbage collector to use" >&5
    31163233# Check whether --enable-java-gc or --disable-java-gc was given.
    31173234if test "${enable_java_gc+set}" = set; then
     
    31663283
    31673284echo $ac_n "checking for thread model used by GCC""... $ac_c" 1>&6
    3168 echo "configure:3169: checking for thread model used by GCC" >&5
     3285echo "configure:3286: checking for thread model used by GCC" >&5
    31693286THREADS=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'`
    31703287echo "$ac_t""$THREADS" 1>&6
     
    33733490do
    33743491echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    3375 echo "configure:3376: checking for $ac_func" >&5
     3492echo "configure:3493: checking for $ac_func" >&5
    33763493if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    33773494  echo $ac_n "(cached) $ac_c" 1>&6
    33783495else
    33793496  cat > conftest.$ac_ext <<EOF
    3380 #line 3381 "configure"
     3497#line 3498 "configure"
    33813498#include "confdefs.h"
    33823499/* System header to define __stub macros and hopefully few prototypes,
     
    34013518; return 0; }
    34023519EOF
    3403 if { (eval echo configure:3404: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3520if { (eval echo configure:3521: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    34043521  rm -rf conftest*
    34053522  eval "ac_cv_func_$ac_func=yes"
     
    34283545do
    34293546echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    3430 echo "configure:3431: checking for $ac_func" >&5
     3547echo "configure:3548: checking for $ac_func" >&5
    34313548if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    34323549  echo $ac_n "(cached) $ac_c" 1>&6
    34333550else
    34343551  cat > conftest.$ac_ext <<EOF
    3435 #line 3436 "configure"
     3552#line 3553 "configure"
    34363553#include "confdefs.h"
    34373554/* System header to define __stub macros and hopefully few prototypes,
     
    34563573; return 0; }
    34573574EOF
    3458 if { (eval echo configure:3459: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3575if { (eval echo configure:3576: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    34593576  rm -rf conftest*
    34603577  eval "ac_cv_func_$ac_func=yes"
     
    34833600do
    34843601echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    3485 echo "configure:3486: checking for $ac_func" >&5
     3602echo "configure:3603: checking for $ac_func" >&5
    34863603if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    34873604  echo $ac_n "(cached) $ac_c" 1>&6
    34883605else
    34893606  cat > conftest.$ac_ext <<EOF
    3490 #line 3491 "configure"
     3607#line 3608 "configure"
    34913608#include "confdefs.h"
    34923609/* System header to define __stub macros and hopefully few prototypes,
     
    35113628; return 0; }
    35123629EOF
    3513 if { (eval echo configure:3514: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3630if { (eval echo configure:3631: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    35143631  rm -rf conftest*
    35153632  eval "ac_cv_func_$ac_func=yes"
     
    35383655do
    35393656echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    3540 echo "configure:3541: checking for $ac_func" >&5
     3657echo "configure:3658: checking for $ac_func" >&5
    35413658if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    35423659  echo $ac_n "(cached) $ac_c" 1>&6
    35433660else
    35443661  cat > conftest.$ac_ext <<EOF
    3545 #line 3546 "configure"
     3662#line 3663 "configure"
    35463663#include "confdefs.h"
    35473664/* System header to define __stub macros and hopefully few prototypes,
     
    35663683; return 0; }
    35673684EOF
    3568 if { (eval echo configure:3569: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3685if { (eval echo configure:3686: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    35693686  rm -rf conftest*
    35703687  eval "ac_cv_func_$ac_func=yes"
     
    35933710do
    35943711echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    3595 echo "configure:3596: checking for $ac_func" >&5
     3712echo "configure:3713: checking for $ac_func" >&5
    35963713if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    35973714  echo $ac_n "(cached) $ac_c" 1>&6
    35983715else
    35993716  cat > conftest.$ac_ext <<EOF
    3600 #line 3601 "configure"
     3717#line 3718 "configure"
    36013718#include "confdefs.h"
    36023719/* System header to define __stub macros and hopefully few prototypes,
     
    36213738; return 0; }
    36223739EOF
    3623 if { (eval echo configure:3624: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3740if { (eval echo configure:3741: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    36243741  rm -rf conftest*
    36253742  eval "ac_cv_func_$ac_func=yes"
     
    36483765do
    36493766echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    3650 echo "configure:3651: checking for $ac_func" >&5
     3767echo "configure:3768: checking for $ac_func" >&5
    36513768if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    36523769  echo $ac_n "(cached) $ac_c" 1>&6
    36533770else
    36543771  cat > conftest.$ac_ext <<EOF
    3655 #line 3656 "configure"
     3772#line 3773 "configure"
    36563773#include "confdefs.h"
    36573774/* System header to define __stub macros and hopefully few prototypes,
     
    36763793; return 0; }
    36773794EOF
    3678 if { (eval echo configure:3679: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3795if { (eval echo configure:3796: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    36793796  rm -rf conftest*
    36803797  eval "ac_cv_func_$ac_func=yes"
     
    37033820do
    37043821echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    3705 echo "configure:3706: checking for $ac_func" >&5
     3822echo "configure:3823: checking for $ac_func" >&5
    37063823if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    37073824  echo $ac_n "(cached) $ac_c" 1>&6
    37083825else
    37093826  cat > conftest.$ac_ext <<EOF
    3710 #line 3711 "configure"
     3827#line 3828 "configure"
    37113828#include "confdefs.h"
    37123829/* System header to define __stub macros and hopefully few prototypes,
     
    37313848; return 0; }
    37323849EOF
    3733 if { (eval echo configure:3734: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3850if { (eval echo configure:3851: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    37343851  rm -rf conftest*
    37353852  eval "ac_cv_func_$ac_func=yes"
     
    37593876ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
    37603877echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
    3761 echo "configure:3762: checking for $ac_hdr" >&5
     3878echo "configure:3879: checking for $ac_hdr" >&5
    37623879if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    37633880  echo $ac_n "(cached) $ac_c" 1>&6
    37643881else
    37653882  cat > conftest.$ac_ext <<EOF
    3766 #line 3767 "configure"
     3883#include <sys/types.h>
     3884#line 3885 "configure"
    37673885#include "confdefs.h"
    37683886#include <$ac_hdr>
    37693887EOF
    37703888ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    3771 { (eval echo configure:3772: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     3889{ (eval echo configure:3890: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    37723890ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    37733891if test -z "$ac_err"; then
     
    37963914 
    37973915   echo $ac_n "checking for backtrace""... $ac_c" 1>&6
    3798 echo "configure:3799: checking for backtrace" >&5
     3916echo "configure:3917: checking for backtrace" >&5
    37993917if eval "test \"`echo '$''{'ac_cv_func_backtrace'+set}'`\" = set"; then
    38003918  echo $ac_n "(cached) $ac_c" 1>&6
    38013919else
    38023920  cat > conftest.$ac_ext <<EOF
    3803 #line 3804 "configure"
     3921#line 3922 "configure"
    38043922#include "confdefs.h"
    38053923/* System header to define __stub macros and hopefully few prototypes,
     
    38243942; return 0; }
    38253943EOF
    3826 if { (eval echo configure:3827: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3944if { (eval echo configure:3945: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    38273945  rm -rf conftest*
    38283946  eval "ac_cv_func_backtrace=yes"
     
    38573975
    38583976   echo $ac_n "checking for dladdr in -ldl""... $ac_c" 1>&6
    3859 echo "configure:3860: checking for dladdr in -ldl" >&5
     3977echo "configure:3978: checking for dladdr in -ldl" >&5
    38603978ac_lib_var=`echo dl'_'dladdr | sed 'y%./+-%__p_%'`
    38613979if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    38653983LIBS="-ldl  $LIBS"
    38663984cat > conftest.$ac_ext <<EOF
    3867 #line 3868 "configure"
     3985#line 3986 "configure"
    38683986#include "confdefs.h"
    38693987/* Override any gcc2 internal prototype to avoid an error.  */
     
    38763994; return 0; }
    38773995EOF
    3878 if { (eval echo configure:3879: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3996if { (eval echo configure:3997: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    38793997  rm -rf conftest*
    38803998  eval "ac_cv_lib_$ac_lib_var=yes"
     
    39054023ac_safe=`echo "$ac_file" | sed 'y%./+-%__p_%'`
    39064024echo $ac_n "checking for $ac_file""... $ac_c" 1>&6
    3907 echo "configure:3908: checking for $ac_file" >&5
     4025echo "configure:4026: checking for $ac_file" >&5
    39084026if eval "test \"`echo '$''{'ac_cv_file_$ac_safe'+set}'`\" = set"; then
    39094027  echo $ac_n "(cached) $ac_c" 1>&6
     
    39534071
    39544072  echo $ac_n "checking for iconv""... $ac_c" 1>&6
    3955 echo "configure:3956: checking for iconv" >&5
     4073echo "configure:4074: checking for iconv" >&5
    39564074if eval "test \"`echo '$''{'am_cv_func_iconv'+set}'`\" = set"; then
    39574075  echo $ac_n "(cached) $ac_c" 1>&6
     
    39614079    am_cv_lib_iconv=no
    39624080    cat > conftest.$ac_ext <<EOF
    3963 #line 3964 "configure"
     4081#line 4082 "configure"
    39644082#include "confdefs.h"
    39654083#include <stdlib.h>
     
    39714089; return 0; }
    39724090EOF
    3973 if { (eval echo configure:3974: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     4091if { (eval echo configure:4092: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    39744092  rm -rf conftest*
    39754093  am_cv_func_iconv=yes
     
    39834101      LIBS="$LIBS $am_cv_libiconv_ldpath -liconv"
    39844102      cat > conftest.$ac_ext <<EOF
    3985 #line 3986 "configure"
     4103#line 4104 "configure"
    39864104#include "confdefs.h"
    39874105#include <stdlib.h>
     
    39934111; return 0; }
    39944112EOF
    3995 if { (eval echo configure:3996: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     4113if { (eval echo configure:4114: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    39964114  rm -rf conftest*
    39974115  am_cv_lib_iconv=yes
     
    40144132
    40154133    echo $ac_n "checking for iconv declaration""... $ac_c" 1>&6
    4016 echo "configure:4017: checking for iconv declaration" >&5
     4134echo "configure:4135: checking for iconv declaration" >&5
    40174135    if eval "test \"`echo '$''{'am_cv_proto_iconv'+set}'`\" = set"; then
    40184136  echo $ac_n "(cached) $ac_c" 1>&6
     
    40204138 
    40214139      cat > conftest.$ac_ext <<EOF
    4022 #line 4023 "configure"
     4140#line 4141 "configure"
    40234141#include "confdefs.h"
    40244142
     
    40394157; return 0; }
    40404158EOF
    4041 if { (eval echo configure:4042: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     4159if { (eval echo configure:4160: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    40424160  rm -rf conftest*
    40434161  am_cv_proto_iconv_arg1=""
     
    40684186   if test $ac_cv_header_locale_h = yes; then
    40694187    echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6
    4070 echo "configure:4071: checking for LC_MESSAGES" >&5
     4188echo "configure:4189: checking for LC_MESSAGES" >&5
    40714189if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then
    40724190  echo $ac_n "(cached) $ac_c" 1>&6
    40734191else
    40744192  cat > conftest.$ac_ext <<EOF
    4075 #line 4076 "configure"
     4193#line 4194 "configure"
    40764194#include "confdefs.h"
    40774195#include <locale.h>
     
    40804198; return 0; }
    40814199EOF
    4082 if { (eval echo configure:4083: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     4200if { (eval echo configure:4201: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    40834201  rm -rf conftest*
    40844202  am_cv_val_LC_MESSAGES=yes
     
    41014219  fi
    41024220   echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&6
    4103 echo "configure:4104: checking whether struct tm is in sys/time.h or time.h" >&5
     4221echo "configure:4222: checking whether struct tm is in sys/time.h or time.h" >&5
    41044222if eval "test \"`echo '$''{'ac_cv_struct_tm'+set}'`\" = set"; then
    41054223  echo $ac_n "(cached) $ac_c" 1>&6
    41064224else
    41074225  cat > conftest.$ac_ext <<EOF
    4108 #line 4109 "configure"
     4226#line 4227 "configure"
    41094227#include "confdefs.h"
    41104228#include <sys/types.h>
     
    41144232; return 0; }
    41154233EOF
    4116 if { (eval echo configure:4117: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     4234if { (eval echo configure:4235: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    41174235  rm -rf conftest*
    41184236  ac_cv_struct_tm=time.h
     
    41354253
    41364254echo $ac_n "checking for tm_zone in struct tm""... $ac_c" 1>&6
    4137 echo "configure:4138: checking for tm_zone in struct tm" >&5
     4255echo "configure:4256: checking for tm_zone in struct tm" >&5
    41384256if eval "test \"`echo '$''{'ac_cv_struct_tm_zone'+set}'`\" = set"; then
    41394257  echo $ac_n "(cached) $ac_c" 1>&6
    41404258else
    41414259  cat > conftest.$ac_ext <<EOF
    4142 #line 4143 "configure"
     4260#line 4261 "configure"
    41434261#include "confdefs.h"
    41444262#include <sys/types.h>
     
    41484266; return 0; }
    41494267EOF
    4150 if { (eval echo configure:4151: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     4268if { (eval echo configure:4269: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    41514269  rm -rf conftest*
    41524270  ac_cv_struct_tm_zone=yes
     
    41684286else
    41694287  echo $ac_n "checking for tzname""... $ac_c" 1>&6
    4170 echo "configure:4171: checking for tzname" >&5
     4288echo "configure:4289: checking for tzname" >&5
    41714289if eval "test \"`echo '$''{'ac_cv_var_tzname'+set}'`\" = set"; then
    41724290  echo $ac_n "(cached) $ac_c" 1>&6
    41734291else
    41744292  cat > conftest.$ac_ext <<EOF
    4175 #line 4176 "configure"
     4293#line 4294 "configure"
    41764294#include "confdefs.h"
    41774295#include <time.h>
     
    41834301; return 0; }
    41844302EOF
    4185 if { (eval echo configure:4186: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     4303if { (eval echo configure:4304: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    41864304  rm -rf conftest*
    41874305  ac_cv_var_tzname=yes
     
    42084326do
    42094327echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    4210 echo "configure:4211: checking for $ac_func" >&5
     4328echo "configure:4329: checking for $ac_func" >&5
    42114329if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    42124330  echo $ac_n "(cached) $ac_c" 1>&6
    42134331else
    42144332  cat > conftest.$ac_ext <<EOF
    4215 #line 4216 "configure"
     4333#line 4334 "configure"
    42164334#include "confdefs.h"
    42174335/* System header to define __stub macros and hopefully few prototypes,
     
    42364354; return 0; }
    42374355EOF
    4238 if { (eval echo configure:4239: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     4356if { (eval echo configure:4357: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    42394357  rm -rf conftest*
    42404358  eval "ac_cv_func_$ac_func=yes"
     
    42634381     # Hopefully this check is robust enough.
    42644382     cat > conftest.$ac_ext <<EOF
    4265 #line 4266 "configure"
     4383#line 4384 "configure"
    42664384#include "confdefs.h"
    42674385#include <netdb.h>
     
    42834401     *)
    42844402                echo $ac_n "checking whether gethostbyname_r declaration requires -D_REENTRANT""... $ac_c" 1>&6
    4285 echo "configure:4286: checking whether gethostbyname_r declaration requires -D_REENTRANT" >&5
     4403echo "configure:4404: checking whether gethostbyname_r declaration requires -D_REENTRANT" >&5
    42864404if eval "test \"`echo '$''{'libjava_cv_gethostbyname_r_needs_reentrant'+set}'`\" = set"; then
    42874405  echo $ac_n "(cached) $ac_c" 1>&6
     
    42964414
    42974415          cat > conftest.$ac_ext <<EOF
    4298 #line 4299 "configure"
     4416#line 4417 "configure"
    42994417#include "confdefs.h"
    43004418#include <netdb.h>
     
    43034421; return 0; }
    43044422EOF
    4305 if { (eval echo configure:4306: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     4423if { (eval echo configure:4424: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    43064424  rm -rf conftest*
    43074425  libjava_cv_gethostbyname_r_needs_reentrant=no
     
    43134431                CPPFLAGS="$CPPFLAGS -D_REENTRANT"
    43144432                cat > conftest.$ac_ext <<EOF
    4315 #line 4316 "configure"
     4433#line 4434 "configure"
    43164434#include "confdefs.h"
    43174435#include <netdb.h>
     
    43204438; return 0; }
    43214439EOF
    4322 if { (eval echo configure:4323: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     4440if { (eval echo configure:4441: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    43234441  rm -rf conftest*
    43244442  libjava_cv_gethostbyname_r_needs_reentrant=yes
     
    43554473
    43564474     echo $ac_n "checking for struct hostent_data""... $ac_c" 1>&6
    4357 echo "configure:4358: checking for struct hostent_data" >&5
     4475echo "configure:4476: checking for struct hostent_data" >&5
    43584476if eval "test \"`echo '$''{'libjava_cv_struct_hostent_data'+set}'`\" = set"; then
    43594477  echo $ac_n "(cached) $ac_c" 1>&6
    43604478else
    43614479        cat > conftest.$ac_ext <<EOF
    4362 #line 4363 "configure"
     4480#line 4481 "configure"
    43634481#include "confdefs.h"
    43644482
     
    43714489; return 0; }
    43724490EOF
    4373 if { (eval echo configure:4374: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     4491if { (eval echo configure:4492: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    43744492  rm -rf conftest*
    43754493  libjava_cv_struct_hostent_data=yes
     
    44034521   # linkage check is enough, yet C++ code requires proper prototypes.)
    44044522   cat > conftest.$ac_ext <<EOF
    4405 #line 4406 "configure"
     4523#line 4524 "configure"
    44064524#include "confdefs.h"
    44074525#include <netdb.h>
     
    44144532do
    44154533echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    4416 echo "configure:4417: checking for $ac_func" >&5
     4534echo "configure:4535: checking for $ac_func" >&5
    44174535if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    44184536  echo $ac_n "(cached) $ac_c" 1>&6
    44194537else
    44204538  cat > conftest.$ac_ext <<EOF
    4421 #line 4422 "configure"
     4539#line 4540 "configure"
    44224540#include "confdefs.h"
    44234541/* System header to define __stub macros and hopefully few prototypes,
     
    44424560; return 0; }
    44434561EOF
    4444 if { (eval echo configure:4445: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     4562if { (eval echo configure:4563: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    44454563  rm -rf conftest*
    44464564  eval "ac_cv_func_$ac_func=yes"
     
    44694587     # Hopefully this check is robust enough.
    44704588     cat > conftest.$ac_ext <<EOF
    4471 #line 4472 "configure"
     4589#line 4590 "configure"
    44724590#include "confdefs.h"
    44734591#include <netdb.h>
     
    44964614do
    44974615echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    4498 echo "configure:4499: checking for $ac_func" >&5
     4616echo "configure:4617: checking for $ac_func" >&5
    44994617if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    45004618  echo $ac_n "(cached) $ac_c" 1>&6
    45014619else
    45024620  cat > conftest.$ac_ext <<EOF
    4503 #line 4504 "configure"
     4621#line 4622 "configure"
    45044622#include "confdefs.h"
    45054623/* System header to define __stub macros and hopefully few prototypes,
     
    45244642; return 0; }
    45254643EOF
    4526 if { (eval echo configure:4527: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     4644if { (eval echo configure:4645: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    45274645  rm -rf conftest*
    45284646  eval "ac_cv_func_$ac_func=yes"
     
    45484666
    45494667     cat > conftest.$ac_ext <<EOF
    4550 #line 4551 "configure"
     4668#line 4669 "configure"
    45514669#include "confdefs.h"
    45524670#include <unistd.h>
     
    45794697do
    45804698echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    4581 echo "configure:4582: checking for $ac_func" >&5
     4699echo "configure:4700: checking for $ac_func" >&5
    45824700if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    45834701  echo $ac_n "(cached) $ac_c" 1>&6
    45844702else
    45854703  cat > conftest.$ac_ext <<EOF
    4586 #line 4587 "configure"
     4704#line 4705 "configure"
    45874705#include "confdefs.h"
    45884706/* System header to define __stub macros and hopefully few prototypes,
     
    46074725; return 0; }
    46084726EOF
    4609 if { (eval echo configure:4610: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     4727if { (eval echo configure:4728: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    46104728  rm -rf conftest*
    46114729  eval "ac_cv_func_$ac_func=yes"
     
    46374755do
    46384756echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    4639 echo "configure:4640: checking for $ac_func" >&5
     4757echo "configure:4758: checking for $ac_func" >&5
    46404758if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    46414759  echo $ac_n "(cached) $ac_c" 1>&6
    46424760else
    46434761  cat > conftest.$ac_ext <<EOF
    4644 #line 4645 "configure"
     4762#line 4763 "configure"
    46454763#include "confdefs.h"
    46464764/* System header to define __stub macros and hopefully few prototypes,
     
    46654783; return 0; }
    46664784EOF
    4667 if { (eval echo configure:4668: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     4785if { (eval echo configure:4786: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    46684786  rm -rf conftest*
    46694787  eval "ac_cv_func_$ac_func=yes"
     
    46874805  echo "$ac_t""no" 1>&6
    46884806echo $ac_n "checking for sched_yield in -lrt""... $ac_c" 1>&6
    4689 echo "configure:4690: checking for sched_yield in -lrt" >&5
     4807echo "configure:4808: checking for sched_yield in -lrt" >&5
    46904808ac_lib_var=`echo rt'_'sched_yield | sed 'y%./+-%__p_%'`
    46914809if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    46954813LIBS="-lrt  $LIBS"
    46964814cat > conftest.$ac_ext <<EOF
    4697 #line 4698 "configure"
     4815#line 4816 "configure"
    46984816#include "confdefs.h"
    46994817/* Override any gcc2 internal prototype to avoid an error.  */
     
    47064824; return 0; }
    47074825EOF
    4708 if { (eval echo configure:4709: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     4826if { (eval echo configure:4827: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    47094827  rm -rf conftest*
    47104828  eval "ac_cv_lib_$ac_lib_var=yes"
     
    47324850
    47334851          echo $ac_n "checking for sched_yield in -lposix4""... $ac_c" 1>&6
    4734 echo "configure:4735: checking for sched_yield in -lposix4" >&5
     4852echo "configure:4853: checking for sched_yield in -lposix4" >&5
    47354853ac_lib_var=`echo posix4'_'sched_yield | sed 'y%./+-%__p_%'`
    47364854if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    47404858LIBS="-lposix4  $LIBS"
    47414859cat > conftest.$ac_ext <<EOF
    4742 #line 4743 "configure"
     4860#line 4861 "configure"
    47434861#include "confdefs.h"
    47444862/* Override any gcc2 internal prototype to avoid an error.  */
     
    47514869; return 0; }
    47524870EOF
    4753 if { (eval echo configure:4754: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     4871if { (eval echo configure:4872: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    47544872  rm -rf conftest*
    47554873  eval "ac_cv_lib_$ac_lib_var=yes"
     
    47874905      # or __m_count.  This is a nice hack for Linux.
    47884906      cat > conftest.$ac_ext <<EOF
    4789 #line 4790 "configure"
     4907#line 4908 "configure"
    47904908#include "confdefs.h"
    47914909#include <pthread.h>
     
    47964914; return 0; }
    47974915EOF
    4798 if { (eval echo configure:4799: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     4916if { (eval echo configure:4917: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    47994917  rm -rf conftest*
    48004918  cat >> confdefs.h <<\EOF
     
    48084926 
    48094927        cat > conftest.$ac_ext <<EOF
    4810 #line 4811 "configure"
     4928#line 4929 "configure"
    48114929#include "confdefs.h"
    48124930#include <pthread.h>
     
    48174935; return 0; }
    48184936EOF
    4819 if { (eval echo configure:4820: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     4937if { (eval echo configure:4938: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    48204938  rm -rf conftest*
    48214939  cat >> confdefs.h <<\EOF
     
    48374955do
    48384956echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    4839 echo "configure:4840: checking for $ac_func" >&5
     4957echo "configure:4958: checking for $ac_func" >&5
    48404958if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    48414959  echo $ac_n "(cached) $ac_c" 1>&6
    48424960else
    48434961  cat > conftest.$ac_ext <<EOF
    4844 #line 4845 "configure"
     4962#line 4963 "configure"
    48454963#include "confdefs.h"
    48464964/* System header to define __stub macros and hopefully few prototypes,
     
    48654983; return 0; }
    48664984EOF
    4867 if { (eval echo configure:4868: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     4985if { (eval echo configure:4986: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    48684986  rm -rf conftest*
    48694987  eval "ac_cv_func_$ac_func=yes"
     
    48965014do
    48975015echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    4898 echo "configure:4899: checking for $ac_func" >&5
     5016echo "configure:5017: checking for $ac_func" >&5
    48995017if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    49005018  echo $ac_n "(cached) $ac_c" 1>&6
    49015019else
    49025020  cat > conftest.$ac_ext <<EOF
    4903 #line 4904 "configure"
     5021#line 5022 "configure"
    49045022#include "confdefs.h"
    49055023/* System header to define __stub macros and hopefully few prototypes,
     
    49245042; return 0; }
    49255043EOF
    4926 if { (eval echo configure:4927: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     5044if { (eval echo configure:5045: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    49275045  rm -rf conftest*
    49285046  eval "ac_cv_func_$ac_func=yes"
     
    49545072do
    49555073echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    4956 echo "configure:4957: checking for $ac_func" >&5
     5074echo "configure:5075: checking for $ac_func" >&5
    49575075if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    49585076  echo $ac_n "(cached) $ac_c" 1>&6
    49595077else
    49605078  cat > conftest.$ac_ext <<EOF
    4961 #line 4962 "configure"
     5079#line 5080 "configure"
    49625080#include "confdefs.h"
    49635081/* System header to define __stub macros and hopefully few prototypes,
     
    49825100; return 0; }
    49835101EOF
    4984 if { (eval echo configure:4985: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     5102if { (eval echo configure:5103: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    49855103  rm -rf conftest*
    49865104  eval "ac_cv_func_$ac_func=yes"
     
    50115129
    50125130   echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6
    5013 echo "configure:5014: checking for dlopen in -ldl" >&5
     5131echo "configure:5132: checking for dlopen in -ldl" >&5
    50145132ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'`
    50155133if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    50195137LIBS="-ldl  $LIBS"
    50205138cat > conftest.$ac_ext <<EOF
    5021 #line 5022 "configure"
     5139#line 5140 "configure"
    50225140#include "confdefs.h"
    50235141/* Override any gcc2 internal prototype to avoid an error.  */
     
    50305148; return 0; }
    50315149EOF
    5032 if { (eval echo configure:5033: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     5150if { (eval echo configure:5151: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    50335151  rm -rf conftest*
    50345152  eval "ac_cv_lib_$ac_lib_var=yes"
     
    50755193
    50765194   echo $ac_n "checking for socket libraries""... $ac_c" 1>&6
    5077 echo "configure:5078: checking for socket libraries" >&5
     5195echo "configure:5196: checking for socket libraries" >&5
    50785196if eval "test \"`echo '$''{'gcj_cv_lib_sockets'+set}'`\" = set"; then
    50795197  echo $ac_n "(cached) $ac_c" 1>&6
     
    50835201     unset ac_cv_func_connect
    50845202     echo $ac_n "checking for connect""... $ac_c" 1>&6
    5085 echo "configure:5086: checking for connect" >&5
     5203echo "configure:5204: checking for connect" >&5
    50865204if eval "test \"`echo '$''{'ac_cv_func_connect'+set}'`\" = set"; then
    50875205  echo $ac_n "(cached) $ac_c" 1>&6
    50885206else
    50895207  cat > conftest.$ac_ext <<EOF
    5090 #line 5091 "configure"
     5208#line 5209 "configure"
    50915209#include "confdefs.h"
    50925210/* System header to define __stub macros and hopefully few prototypes,
     
    51115229; return 0; }
    51125230EOF
    5113 if { (eval echo configure:5114: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     5231if { (eval echo configure:5232: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    51145232  rm -rf conftest*
    51155233  eval "ac_cv_func_connect=yes"
     
    51345252         unset ac_cv_func_connect
    51355253         echo $ac_n "checking for main in -lsocket""... $ac_c" 1>&6
    5136 echo "configure:5137: checking for main in -lsocket" >&5
     5254echo "configure:5255: checking for main in -lsocket" >&5
    51375255ac_lib_var=`echo socket'_'main | sed 'y%./+-%__p_%'`
    51385256if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    51425260LIBS="-lsocket  $LIBS"
    51435261cat > conftest.$ac_ext <<EOF
    5144 #line 5145 "configure"
     5262#line 5263 "configure"
    51455263#include "confdefs.h"
    51465264
     
    51495267; return 0; }
    51505268EOF
    5151 if { (eval echo configure:5152: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     5269if { (eval echo configure:5270: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    51525270  rm -rf conftest*
    51535271  eval "ac_cv_lib_$ac_lib_var=yes"
     
    51765294         unset ac_cv_func_accept
    51775295         echo $ac_n "checking for accept""... $ac_c" 1>&6
    5178 echo "configure:5179: checking for accept" >&5
     5296echo "configure:5297: checking for accept" >&5
    51795297if eval "test \"`echo '$''{'ac_cv_func_accept'+set}'`\" = set"; then
    51805298  echo $ac_n "(cached) $ac_c" 1>&6
    51815299else
    51825300  cat > conftest.$ac_ext <<EOF
    5183 #line 5184 "configure"
     5301#line 5302 "configure"
    51845302#include "confdefs.h"
    51855303/* System header to define __stub macros and hopefully few prototypes,
     
    52045322; return 0; }
    52055323EOF
    5206 if { (eval echo configure:5207: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     5324if { (eval echo configure:5325: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    52075325  rm -rf conftest*
    52085326  eval "ac_cv_func_accept=yes"
     
    52315349     LIBS="$LIBS $gcj_cv_lib_sockets"
    52325350     echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6
    5233 echo "configure:5234: checking for gethostbyname" >&5
     5351echo "configure:5352: checking for gethostbyname" >&5
    52345352if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then
    52355353  echo $ac_n "(cached) $ac_c" 1>&6
    52365354else
    52375355  cat > conftest.$ac_ext <<EOF
    5238 #line 5239 "configure"
     5356#line 5357 "configure"
    52395357#include "confdefs.h"
    52405358/* System header to define __stub macros and hopefully few prototypes,
     
    52595377; return 0; }
    52605378EOF
    5261 if { (eval echo configure:5262: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     5379if { (eval echo configure:5380: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    52625380  rm -rf conftest*
    52635381  eval "ac_cv_func_gethostbyname=yes"
     
    52775395  echo "$ac_t""no" 1>&6
    52785396echo $ac_n "checking for main in -lnsl""... $ac_c" 1>&6
    5279 echo "configure:5280: checking for main in -lnsl" >&5
     5397echo "configure:5398: checking for main in -lnsl" >&5
    52805398ac_lib_var=`echo nsl'_'main | sed 'y%./+-%__p_%'`
    52815399if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    52855403LIBS="-lnsl  $LIBS"
    52865404cat > conftest.$ac_ext <<EOF
    5287 #line 5288 "configure"
     5405#line 5406 "configure"
    52885406#include "confdefs.h"
    52895407
     
    52925410; return 0; }
    52935411EOF
    5294 if { (eval echo configure:5295: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     5412if { (eval echo configure:5413: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    52955413  rm -rf conftest*
    52965414  eval "ac_cv_lib_$ac_lib_var=yes"
     
    53245442   if test "$with_system_zlib" = yes; then
    53255443      echo $ac_n "checking for deflate in -lz""... $ac_c" 1>&6
    5326 echo "configure:5327: checking for deflate in -lz" >&5
     5444echo "configure:5445: checking for deflate in -lz" >&5
    53275445ac_lib_var=`echo z'_'deflate | sed 'y%./+-%__p_%'`
    53285446if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    53325450LIBS="-lz  $LIBS"
    53335451cat > conftest.$ac_ext <<EOF
    5334 #line 5335 "configure"
     5452#line 5453 "configure"
    53355453#include "confdefs.h"
    53365454/* Override any gcc2 internal prototype to avoid an error.  */
     
    53435461; return 0; }
    53445462EOF
    5345 if { (eval echo configure:5346: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     5463if { (eval echo configure:5464: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    53465464  rm -rf conftest*
    53475465  eval "ac_cv_lib_$ac_lib_var=yes"
     
    53705488   if test "$GC" = boehm; then
    53715489      echo $ac_n "checking for main in -ldl""... $ac_c" 1>&6
    5372 echo "configure:5373: checking for main in -ldl" >&5
     5490echo "configure:5491: checking for main in -ldl" >&5
    53735491ac_lib_var=`echo dl'_'main | sed 'y%./+-%__p_%'`
    53745492if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    53785496LIBS="-ldl  $LIBS"
    53795497cat > conftest.$ac_ext <<EOF
    5380 #line 5381 "configure"
     5498#line 5499 "configure"
    53815499#include "confdefs.h"
    53825500
     
    53855503; return 0; }
    53865504EOF
    5387 if { (eval echo configure:5388: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     5505if { (eval echo configure:5506: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    53885506  rm -rf conftest*
    53895507  eval "ac_cv_lib_$ac_lib_var=yes"
     
    54515569set dummy ${ac_tool_prefix}gcj; ac_word=$2
    54525570echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    5453 echo "configure:5454: checking for $ac_word" >&5
     5571echo "configure:5572: checking for $ac_word" >&5
    54545572if eval "test \"`echo '$''{'ac_cv_prog_GCJ'+set}'`\" = set"; then
    54555573  echo $ac_n "(cached) $ac_c" 1>&6
     
    54585576  ac_cv_prog_GCJ="$GCJ" # Let the user override the test.
    54595577else
    5460   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     5578  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    54615579  ac_dummy="$PATH"
    54625580  for ac_dir in $ac_dummy; do
    54635581    test -z "$ac_dir" && ac_dir=.
    5464     if test -f $ac_dir/$ac_word; then
     5582    if test -f $ac_dir/$ac_word -o \
     5583            -f $ac_dir/$ac_word$ac_exeext ; then
    54655584      ac_cv_prog_GCJ="${ac_tool_prefix}gcj"
    54665585      break
     
    54835602set dummy gcj; ac_word=$2
    54845603echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    5485 echo "configure:5486: checking for $ac_word" >&5
     5604echo "configure:5605: checking for $ac_word" >&5
    54865605if eval "test \"`echo '$''{'ac_cv_prog_GCJ'+set}'`\" = set"; then
    54875606  echo $ac_n "(cached) $ac_c" 1>&6
     
    54905609  ac_cv_prog_GCJ="$GCJ" # Let the user override the test.
    54915610else
    5492   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     5611  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    54935612  ac_dummy="$PATH"
    54945613  for ac_dir in $ac_dummy; do
    54955614    test -z "$ac_dir" && ac_dir=.
    5496     if test -f $ac_dir/$ac_word; then
     5615    if test -f $ac_dir/$ac_word -o \
     5616            -f $ac_dir/$ac_word$ac_exeext ; then
    54975617      ac_cv_prog_GCJ="gcj"
    54985618      break
     
    55455665
    55465666echo $ac_n "checking size of void *""... $ac_c" 1>&6
    5547 echo "configure:5548: checking size of void *" >&5
     5667echo "configure:5668: checking size of void *" >&5
    55485668if eval "test \"`echo '$''{'ac_cv_sizeof_void_p'+set}'`\" = set"; then
    55495669  echo $ac_n "(cached) $ac_c" 1>&6
     
    55515671  for ac_size in 4 8 1 2 16 12  ; do # List sizes in rough order of prevalence.
    55525672  cat > conftest.$ac_ext <<EOF
    5553 #line 5554 "configure"
     5673#line 5674 "configure"
    55545674#include "confdefs.h"
    55555675#include "confdefs.h"
     
    55615681; return 0; }
    55625682EOF
    5563 if { (eval echo configure:5564: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     5683if { (eval echo configure:5684: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    55645684  rm -rf conftest*
    55655685  ac_cv_sizeof_void_p=$ac_size
     
    56685788
    56695789echo $ac_n "checking for g++ -ffloat-store bug""... $ac_c" 1>&6
    5670 echo "configure:5671: checking for g++ -ffloat-store bug" >&5
     5790echo "configure:5791: checking for g++ -ffloat-store bug" >&5
    56715791save_CFLAGS="$CFLAGS"
    56725792CFLAGS="-x c++ -O2 -ffloat-store"
    56735793cat > conftest.$ac_ext <<EOF
    5674 #line 5675 "configure"
     5794#line 5795 "configure"
    56755795#include "confdefs.h"
    56765796#include <math.h>
     
    56795799; return 0; }
    56805800EOF
    5681 if { (eval echo configure:5682: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     5801if { (eval echo configure:5802: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    56825802  rm -rf conftest*
    56835803  echo "$ac_t""no" 1>&6
     
    56995819ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
    57005820echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
    5701 echo "configure:5702: checking for $ac_hdr" >&5
     5821echo "configure:5822: checking for $ac_hdr" >&5
    57025822if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    57035823  echo $ac_n "(cached) $ac_c" 1>&6
    57045824else
    57055825  cat > conftest.$ac_ext <<EOF
    5706 #line 5707 "configure"
     5826#include <sys/types.h>
     5827#line 5828 "configure"
    57075828#include "confdefs.h"
    57085829#include <$ac_hdr>
    57095830EOF
    57105831ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    5711 { (eval echo configure:5712: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     5832{ (eval echo configure:5833: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    57125833ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    57135834if test -z "$ac_err"; then
     
    57395860ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
    57405861echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
    5741 echo "configure:5742: checking for $ac_hdr" >&5
     5862echo "configure:5863: checking for $ac_hdr" >&5
    57425863if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    57435864  echo $ac_n "(cached) $ac_c" 1>&6
    57445865else
    57455866  cat > conftest.$ac_ext <<EOF
    5746 #line 5747 "configure"
     5867#include <sys/types.h>
     5868#line 5869 "configure"
    57475869#include "confdefs.h"
    57485870#include <$ac_hdr>
    57495871EOF
    57505872ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    5751 { (eval echo configure:5752: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     5873{ (eval echo configure:5874: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    57525874ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    57535875if test -z "$ac_err"; then
     
    57795901ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
    57805902echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
    5781 echo "configure:5782: checking for $ac_hdr" >&5
     5903echo "configure:5904: checking for $ac_hdr" >&5
    57825904if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    57835905  echo $ac_n "(cached) $ac_c" 1>&6
    57845906else
    57855907  cat > conftest.$ac_ext <<EOF
    5786 #line 5787 "configure"
     5908#include <sys/types.h>
     5909#line 5910 "configure"
    57875910#include "confdefs.h"
    57885911#include <$ac_hdr>
    57895912EOF
    57905913ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    5791 { (eval echo configure:5792: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     5914{ (eval echo configure:5915: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    57925915ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    57935916if test -z "$ac_err"; then
     
    58255948
    58265949echo $ac_n "checking for sys/wait.h that is POSIX.1 compatible""... $ac_c" 1>&6
    5827 echo "configure:5828: checking for sys/wait.h that is POSIX.1 compatible" >&5
     5950echo "configure:5951: checking for sys/wait.h that is POSIX.1 compatible" >&5
    58285951if eval "test \"`echo '$''{'ac_cv_header_sys_wait_h'+set}'`\" = set"; then
    58295952  echo $ac_n "(cached) $ac_c" 1>&6
    58305953else
    58315954  cat > conftest.$ac_ext <<EOF
    5832 #line 5833 "configure"
     5955#line 5956 "configure"
    58335956#include "confdefs.h"
    58345957#include <sys/types.h>
     
    58465969; return 0; }
    58475970EOF
    5848 if { (eval echo configure:5849: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     5971if { (eval echo configure:5972: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    58495972  rm -rf conftest*
    58505973  ac_cv_header_sys_wait_h=yes
     
    58685991
    58695992echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
    5870 echo "configure:5871: checking for ANSI C header files" >&5
     5993echo "configure:5994: checking for ANSI C header files" >&5
    58715994if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
    58725995  echo $ac_n "(cached) $ac_c" 1>&6
    58735996else
    58745997  cat > conftest.$ac_ext <<EOF
    5875 #line 5876 "configure"
     5998#include <sys/types.h>
     5999#line 6000 "configure"
    58766000#include "confdefs.h"
    58776001#include <stdlib.h>
     
    58816005EOF
    58826006ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    5883 { (eval echo configure:5884: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     6007{ (eval echo configure:6008: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    58846008ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    58856009if test -z "$ac_err"; then
     
    58986022  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
    58996023cat > conftest.$ac_ext <<EOF
    5900 #line 5901 "configure"
     6024#line 6025 "configure"
    59016025#include "confdefs.h"
    59026026#include <string.h>
     
    59166040  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
    59176041cat > conftest.$ac_ext <<EOF
    5918 #line 5919 "configure"
     6042#line 6043 "configure"
    59196043#include "confdefs.h"
    59206044#include <stdlib.h>
     
    59376061else
    59386062  cat > conftest.$ac_ext <<EOF
    5939 #line 5940 "configure"
     6063#line 6064 "configure"
    59406064#include "confdefs.h"
    59416065#include <ctype.h>
     
    59486072
    59496073EOF
    5950 if { (eval echo configure:5951: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     6074if { (eval echo configure:6075: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    59516075then
    59526076  :
     
    59726096
    59736097echo $ac_n "checking for ssize_t""... $ac_c" 1>&6
    5974 echo "configure:5975: checking for ssize_t" >&5
     6098echo "configure:6099: checking for ssize_t" >&5
    59756099if eval "test \"`echo '$''{'ac_cv_type_ssize_t'+set}'`\" = set"; then
    59766100  echo $ac_n "(cached) $ac_c" 1>&6
    59776101else
    59786102  cat > conftest.$ac_ext <<EOF
    5979 #line 5980 "configure"
     6103#line 6104 "configure"
    59806104#include "confdefs.h"
    59816105#include <sys/types.h>
     
    60066130
    60076131echo $ac_n "checking for in_addr_t""... $ac_c" 1>&6
    6008 echo "configure:6009: checking for in_addr_t" >&5
     6132echo "configure:6133: checking for in_addr_t" >&5
    60096133cat > conftest.$ac_ext <<EOF
    6010 #line 6011 "configure"
     6134#line 6135 "configure"
    60116135#include "confdefs.h"
    60126136#include <sys/types.h>
     
    60226146; return 0; }
    60236147EOF
    6024 if { (eval echo configure:6025: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     6148if { (eval echo configure:6149: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    60256149  rm -rf conftest*
    60266150  cat >> confdefs.h <<\EOF
     
    60386162
    60396163echo $ac_n "checking whether struct ip_mreq is in netinet/in.h""... $ac_c" 1>&6
    6040 echo "configure:6041: checking whether struct ip_mreq is in netinet/in.h" >&5
     6164echo "configure:6165: checking whether struct ip_mreq is in netinet/in.h" >&5
    60416165cat > conftest.$ac_ext <<EOF
    6042 #line 6043 "configure"
     6166#line 6167 "configure"
    60436167#include "confdefs.h"
    60446168#include <netinet/in.h>
     
    60476171; return 0; }
    60486172EOF
    6049 if { (eval echo configure:6050: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     6173if { (eval echo configure:6174: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    60506174  rm -rf conftest*
    60516175  cat >> confdefs.h <<\EOF
     
    60636187
    60646188echo $ac_n "checking whether struct ipv6_mreq is in netinet/in.h""... $ac_c" 1>&6
    6065 echo "configure:6066: checking whether struct ipv6_mreq is in netinet/in.h" >&5
     6189echo "configure:6190: checking whether struct ipv6_mreq is in netinet/in.h" >&5
    60666190cat > conftest.$ac_ext <<EOF
    6067 #line 6068 "configure"
     6191#line 6192 "configure"
    60686192#include "confdefs.h"
    60696193#include <netinet/in.h>
     
    60726196; return 0; }
    60736197EOF
    6074 if { (eval echo configure:6075: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     6198if { (eval echo configure:6199: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    60756199  rm -rf conftest*
    60766200  cat >> confdefs.h <<\EOF
     
    60886212
    60896213echo $ac_n "checking whether struct sockaddr_in6 is in netinet/in.h""... $ac_c" 1>&6
    6090 echo "configure:6091: checking whether struct sockaddr_in6 is in netinet/in.h" >&5
     6214echo "configure:6215: checking whether struct sockaddr_in6 is in netinet/in.h" >&5
    60916215cat > conftest.$ac_ext <<EOF
    6092 #line 6093 "configure"
     6216#line 6217 "configure"
    60936217#include "confdefs.h"
    60946218#include <netinet/in.h>
     
    60976221; return 0; }
    60986222EOF
    6099 if { (eval echo configure:6100: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     6223if { (eval echo configure:6224: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    61006224  rm -rf conftest*
    61016225  cat >> confdefs.h <<\EOF
     
    61136237
    61146238echo $ac_n "checking for socklen_t in sys/socket.h""... $ac_c" 1>&6
    6115 echo "configure:6116: checking for socklen_t in sys/socket.h" >&5
     6239echo "configure:6240: checking for socklen_t in sys/socket.h" >&5
    61166240cat > conftest.$ac_ext <<EOF
    6117 #line 6118 "configure"
     6241#line 6242 "configure"
    61186242#include "confdefs.h"
    61196243#define _POSIX_PII_SOCKET
     
    61246248; return 0; }
    61256249EOF
    6126 if { (eval echo configure:6127: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     6250if { (eval echo configure:6251: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    61276251  rm -rf conftest*
    61286252  cat >> confdefs.h <<\EOF
     
    61406264
    61416265echo $ac_n "checking for tm_gmtoff in struct tm""... $ac_c" 1>&6
    6142 echo "configure:6143: checking for tm_gmtoff in struct tm" >&5
     6266echo "configure:6267: checking for tm_gmtoff in struct tm" >&5
    61436267cat > conftest.$ac_ext <<EOF
    6144 #line 6145 "configure"
     6268#line 6269 "configure"
    61456269#include "confdefs.h"
    61466270#include <time.h>
     
    61496273; return 0; }
    61506274EOF
    6151 if { (eval echo configure:6152: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     6275if { (eval echo configure:6276: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    61526276  rm -rf conftest*
    61536277  cat >> confdefs.h <<\EOF
     
    61626286  echo "$ac_t""no" 1>&6
    61636287   echo $ac_n "checking for global timezone variable""... $ac_c" 1>&6
    6164 echo "configure:6165: checking for global timezone variable" >&5
     6288echo "configure:6289: checking for global timezone variable" >&5
    61656289            cat > conftest.$ac_ext <<EOF
    6166 #line 6167 "configure"
     6290#line 6291 "configure"
    61676291#include "confdefs.h"
    61686292#include <time.h>
     
    61716295; return 0; }
    61726296EOF
    6173 if { (eval echo configure:6174: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     6297if { (eval echo configure:6298: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    61746298  rm -rf conftest*
    61756299  cat >> confdefs.h <<\EOF
     
    61916315# for constant arguments.  Useless!
    61926316echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6
    6193 echo "configure:6194: checking for working alloca.h" >&5
     6317echo "configure:6318: checking for working alloca.h" >&5
    61946318if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then
    61956319  echo $ac_n "(cached) $ac_c" 1>&6
    61966320else
    61976321  cat > conftest.$ac_ext <<EOF
    6198 #line 6199 "configure"
     6322#line 6323 "configure"
    61996323#include "confdefs.h"
    62006324#include <alloca.h>
     
    62036327; return 0; }
    62046328EOF
    6205 if { (eval echo configure:6206: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     6329if { (eval echo configure:6330: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    62066330  rm -rf conftest*
    62076331  ac_cv_header_alloca_h=yes
     
    62246348
    62256349echo $ac_n "checking for alloca""... $ac_c" 1>&6
    6226 echo "configure:6227: checking for alloca" >&5
     6350echo "configure:6351: checking for alloca" >&5
    62276351if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then
    62286352  echo $ac_n "(cached) $ac_c" 1>&6
    62296353else
    62306354  cat > conftest.$ac_ext <<EOF
    6231 #line 6232 "configure"
     6355#line 6356 "configure"
    62326356#include "confdefs.h"
    62336357
     
    62576381; return 0; }
    62586382EOF
    6259 if { (eval echo configure:6260: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     6383if { (eval echo configure:6384: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    62606384  rm -rf conftest*
    62616385  ac_cv_func_alloca_works=yes
     
    62896413
    62906414echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6
    6291 echo "configure:6292: checking whether alloca needs Cray hooks" >&5
     6415echo "configure:6416: checking whether alloca needs Cray hooks" >&5
    62926416if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then
    62936417  echo $ac_n "(cached) $ac_c" 1>&6
    62946418else
    62956419  cat > conftest.$ac_ext <<EOF
    6296 #line 6297 "configure"
     6420#line 6421 "configure"
    62976421#include "confdefs.h"
    62986422#if defined(CRAY) && ! defined(CRAY2)
     
    63196443for ac_func in _getb67 GETB67 getb67; do
    63206444  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    6321 echo "configure:6322: checking for $ac_func" >&5
     6445echo "configure:6446: checking for $ac_func" >&5
    63226446if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    63236447  echo $ac_n "(cached) $ac_c" 1>&6
    63246448else
    63256449  cat > conftest.$ac_ext <<EOF
    6326 #line 6327 "configure"
     6450#line 6451 "configure"
    63276451#include "confdefs.h"
    63286452/* System header to define __stub macros and hopefully few prototypes,
     
    63476471; return 0; }
    63486472EOF
    6349 if { (eval echo configure:6350: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     6473if { (eval echo configure:6474: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    63506474  rm -rf conftest*
    63516475  eval "ac_cv_func_$ac_func=yes"
     
    63746498
    63756499echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6
    6376 echo "configure:6377: checking stack direction for C alloca" >&5
     6500echo "configure:6501: checking stack direction for C alloca" >&5
    63776501if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then
    63786502  echo $ac_n "(cached) $ac_c" 1>&6
     
    63826506else
    63836507  cat > conftest.$ac_ext <<EOF
    6384 #line 6385 "configure"
     6508#line 6509 "configure"
    63856509#include "confdefs.h"
    63866510find_stack_direction ()
     
    64016525}
    64026526EOF
    6403 if { (eval echo configure:6404: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     6527if { (eval echo configure:6528: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    64046528then
    64056529  ac_cv_c_stack_direction=1
     
    64286552set dummy $ac_prog; ac_word=$2
    64296553echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    6430 echo "configure:6431: checking for $ac_word" >&5
     6554echo "configure:6555: checking for $ac_word" >&5
    64316555if eval "test \"`echo '$''{'ac_cv_prog_PERL'+set}'`\" = set"; then
    64326556  echo $ac_n "(cached) $ac_c" 1>&6
     
    64356559  ac_cv_prog_PERL="$PERL" # Let the user override the test.
    64366560else
    6437   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     6561  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    64386562  ac_dummy="$PATH"
    64396563  for ac_dir in $ac_dummy; do
    64406564    test -z "$ac_dir" && ac_dir=.
    6441     if test -f $ac_dir/$ac_word; then
     6565    if test -f $ac_dir/$ac_word -o \
     6566            -f $ac_dir/$ac_word$ac_exeext ; then
    64426567      ac_cv_prog_PERL="$ac_prog"
    64436568      break
     
    65126637# --without-x overrides everything else, but does not touch the cache.
    65136638echo $ac_n "checking for X""... $ac_c" 1>&6
    6514 echo "configure:6515: checking for X" >&5
     6639echo "configure:6640: checking for X" >&5
    65156640
    65166641# Check whether --with-x or --without-x was given.
     
    65406665  cat > Imakefile <<'EOF'
    65416666acfindx:
    6542         @echo 'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${USRLIBDIR}"; ac_im_libdir="${LIBDIR}"'
     6667        @sh -c 'echo \'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${DESTDIR}${USRLIBDIR}"; ac_im_libdir="${DESTDIR}${LIBDIR}"\''
    65436668EOF
    65446669  if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then
     
    65476672    # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR.
    65486673    for ac_extension in a so sl; do
    6549       if test ! -f $ac_im_usrlibdir/libX11.$ac_extension &&
    6550         test -f $ac_im_libdir/libX11.$ac_extension; then
     6674      if test ! -f $ac_im_usrlibdir/${ac_cv_libpre}X11.$ac_extension &&
     6675        test -f $ac_im_libdir/${ac_cv_libpre}X11.$ac_extension; then
    65516676        ac_im_usrlibdir=$ac_im_libdir; break
    65526677      fi
     
    65746699  # First, try using that file with no special directory specified.
    65756700cat > conftest.$ac_ext <<EOF
    6576 #line 6577 "configure"
     6701#include <sys/types.h>
     6702#line 6703 "configure"
    65776703#include "confdefs.h"
    65786704#include <$x_direct_test_include>
    65796705EOF
    65806706ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    6581 { (eval echo configure:6582: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     6707{ (eval echo configure:6708: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    65826708ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    65836709if test -z "$ac_err"; then
     
    66486774  LIBS="-l$x_direct_test_library $LIBS"
    66496775cat > conftest.$ac_ext <<EOF
    6650 #line 6651 "configure"
     6776#line 6777 "configure"
    66516777#include "confdefs.h"
    66526778
     
    66556781; return 0; }
    66566782EOF
    6657 if { (eval echo configure:6658: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     6783if { (eval echo configure:6784: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    66586784  rm -rf conftest*
    66596785  LIBS="$ac_save_LIBS"
     
    67056831do
    67066832  for ac_extension in a so sl; do
    6707     if test -r $ac_dir/lib${x_direct_test_library}.$ac_extension; then
     6833    if test -r $ac_dir/${ac_cv_libpre}${x_direct_test_library}.$ac_extension; then
    67086834      ac_x_libraries=$ac_dir
    67096835      break 2
     
    67526878    X_CFLAGS="$X_CFLAGS -I$x_includes"
    67536879  fi
     6880  test -n "$x_includes" && CPPFLAGS="$CPPFLAGS -I$x_includes"
    67546881
    67556882  # It would also be nice to do this for all -L options, not just this one.
     
    67616888    "SunOS 5"*)
    67626889      echo $ac_n "checking whether -R must be followed by a space""... $ac_c" 1>&6
    6763 echo "configure:6764: checking whether -R must be followed by a space" >&5
     6890echo "configure:6891: checking whether -R must be followed by a space" >&5
    67646891      ac_xsave_LIBS="$LIBS"; LIBS="$LIBS -R$x_libraries"
    67656892      cat > conftest.$ac_ext <<EOF
    6766 #line 6767 "configure"
     6893#line 6894 "configure"
    67676894#include "confdefs.h"
    67686895
     
    67716898; return 0; }
    67726899EOF
    6773 if { (eval echo configure:6774: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     6900if { (eval echo configure:6901: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    67746901  rm -rf conftest*
    67756902  ac_R_nospace=yes
     
    67876914        LIBS="$ac_xsave_LIBS -R $x_libraries"
    67886915        cat > conftest.$ac_ext <<EOF
    6789 #line 6790 "configure"
     6916#line 6917 "configure"
    67906917#include "confdefs.h"
    67916918
     
    67946921; return 0; }
    67956922EOF
    6796 if { (eval echo configure:6797: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     6923if { (eval echo configure:6924: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    67976924  rm -rf conftest*
    67986925  ac_R_space=yes
     
    68266953    # the Alpha needs dnet_stub (dnet does not exist).
    68276954    echo $ac_n "checking for dnet_ntoa in -ldnet""... $ac_c" 1>&6
    6828 echo "configure:6829: checking for dnet_ntoa in -ldnet" >&5
     6955echo "configure:6956: checking for dnet_ntoa in -ldnet" >&5
    68296956ac_lib_var=`echo dnet'_'dnet_ntoa | sed 'y%./+-%__p_%'`
    68306957if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    68346961LIBS="-ldnet  $LIBS"
    68356962cat > conftest.$ac_ext <<EOF
    6836 #line 6837 "configure"
     6963#line 6964 "configure"
    68376964#include "confdefs.h"
    68386965/* Override any gcc2 internal prototype to avoid an error.  */
     
    68456972; return 0; }
    68466973EOF
    6847 if { (eval echo configure:6848: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     6974if { (eval echo configure:6975: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    68486975  rm -rf conftest*
    68496976  eval "ac_cv_lib_$ac_lib_var=yes"
     
    68676994    if test $ac_cv_lib_dnet_dnet_ntoa = no; then
    68686995      echo $ac_n "checking for dnet_ntoa in -ldnet_stub""... $ac_c" 1>&6
    6869 echo "configure:6870: checking for dnet_ntoa in -ldnet_stub" >&5
     6996echo "configure:6997: checking for dnet_ntoa in -ldnet_stub" >&5
    68706997ac_lib_var=`echo dnet_stub'_'dnet_ntoa | sed 'y%./+-%__p_%'`
    68716998if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    68757002LIBS="-ldnet_stub  $LIBS"
    68767003cat > conftest.$ac_ext <<EOF
    6877 #line 6878 "configure"
     7004#line 7005 "configure"
    68787005#include "confdefs.h"
    68797006/* Override any gcc2 internal prototype to avoid an error.  */
     
    68867013; return 0; }
    68877014EOF
    6888 if { (eval echo configure:6889: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     7015if { (eval echo configure:7016: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    68897016  rm -rf conftest*
    68907017  eval "ac_cv_lib_$ac_lib_var=yes"
     
    69157042    # on Irix 5.2, according to dickey@clark.net.
    69167043    echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6
    6917 echo "configure:6918: checking for gethostbyname" >&5
     7044echo "configure:7045: checking for gethostbyname" >&5
    69187045if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then
    69197046  echo $ac_n "(cached) $ac_c" 1>&6
    69207047else
    69217048  cat > conftest.$ac_ext <<EOF
    6922 #line 6923 "configure"
     7049#line 7050 "configure"
    69237050#include "confdefs.h"
    69247051/* System header to define __stub macros and hopefully few prototypes,
     
    69437070; return 0; }
    69447071EOF
    6945 if { (eval echo configure:6946: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     7072if { (eval echo configure:7073: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    69467073  rm -rf conftest*
    69477074  eval "ac_cv_func_gethostbyname=yes"
     
    69647091    if test $ac_cv_func_gethostbyname = no; then
    69657092      echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6
    6966 echo "configure:6967: checking for gethostbyname in -lnsl" >&5
     7093echo "configure:7094: checking for gethostbyname in -lnsl" >&5
    69677094ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'`
    69687095if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    69727099LIBS="-lnsl  $LIBS"
    69737100cat > conftest.$ac_ext <<EOF
    6974 #line 6975 "configure"
     7101#line 7102 "configure"
    69757102#include "confdefs.h"
    69767103/* Override any gcc2 internal prototype to avoid an error.  */
     
    69837110; return 0; }
    69847111EOF
    6985 if { (eval echo configure:6986: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     7112if { (eval echo configure:7113: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    69867113  rm -rf conftest*
    69877114  eval "ac_cv_lib_$ac_lib_var=yes"
     
    70137140    # We assume that if connect needs -lnsl, so does gethostbyname.
    70147141    echo $ac_n "checking for connect""... $ac_c" 1>&6
    7015 echo "configure:7016: checking for connect" >&5
     7142echo "configure:7143: checking for connect" >&5
    70167143if eval "test \"`echo '$''{'ac_cv_func_connect'+set}'`\" = set"; then
    70177144  echo $ac_n "(cached) $ac_c" 1>&6
    70187145else
    70197146  cat > conftest.$ac_ext <<EOF
    7020 #line 7021 "configure"
     7147#line 7148 "configure"
    70217148#include "confdefs.h"
    70227149/* System header to define __stub macros and hopefully few prototypes,
     
    70417168; return 0; }
    70427169EOF
    7043 if { (eval echo configure:7044: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     7170if { (eval echo configure:7171: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    70447171  rm -rf conftest*
    70457172  eval "ac_cv_func_connect=yes"
     
    70627189    if test $ac_cv_func_connect = no; then
    70637190      echo $ac_n "checking for connect in -lsocket""... $ac_c" 1>&6
    7064 echo "configure:7065: checking for connect in -lsocket" >&5
     7191echo "configure:7192: checking for connect in -lsocket" >&5
    70657192ac_lib_var=`echo socket'_'connect | sed 'y%./+-%__p_%'`
    70667193if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    70707197LIBS="-lsocket $X_EXTRA_LIBS $LIBS"
    70717198cat > conftest.$ac_ext <<EOF
    7072 #line 7073 "configure"
     7199#line 7200 "configure"
    70737200#include "confdefs.h"
    70747201/* Override any gcc2 internal prototype to avoid an error.  */
     
    70817208; return 0; }
    70827209EOF
    7083 if { (eval echo configure:7084: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     7210if { (eval echo configure:7211: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    70847211  rm -rf conftest*
    70857212  eval "ac_cv_lib_$ac_lib_var=yes"
     
    71057232    # gomez@mi.uni-erlangen.de says -lposix is necessary on A/UX.
    71067233    echo $ac_n "checking for remove""... $ac_c" 1>&6
    7107 echo "configure:7108: checking for remove" >&5
     7234echo "configure:7235: checking for remove" >&5
    71087235if eval "test \"`echo '$''{'ac_cv_func_remove'+set}'`\" = set"; then
    71097236  echo $ac_n "(cached) $ac_c" 1>&6
    71107237else
    71117238  cat > conftest.$ac_ext <<EOF
    7112 #line 7113 "configure"
     7239#line 7240 "configure"
    71137240#include "confdefs.h"
    71147241/* System header to define __stub macros and hopefully few prototypes,
     
    71337260; return 0; }
    71347261EOF
    7135 if { (eval echo configure:7136: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     7262if { (eval echo configure:7263: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    71367263  rm -rf conftest*
    71377264  eval "ac_cv_func_remove=yes"
     
    71547281    if test $ac_cv_func_remove = no; then
    71557282      echo $ac_n "checking for remove in -lposix""... $ac_c" 1>&6
    7156 echo "configure:7157: checking for remove in -lposix" >&5
     7283echo "configure:7284: checking for remove in -lposix" >&5
    71577284ac_lib_var=`echo posix'_'remove | sed 'y%./+-%__p_%'`
    71587285if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    71627289LIBS="-lposix  $LIBS"
    71637290cat > conftest.$ac_ext <<EOF
    7164 #line 7165 "configure"
     7291#line 7292 "configure"
    71657292#include "confdefs.h"
    71667293/* Override any gcc2 internal prototype to avoid an error.  */
     
    71737300; return 0; }
    71747301EOF
    7175 if { (eval echo configure:7176: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     7302if { (eval echo configure:7303: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    71767303  rm -rf conftest*
    71777304  eval "ac_cv_lib_$ac_lib_var=yes"
     
    71977324    # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
    71987325    echo $ac_n "checking for shmat""... $ac_c" 1>&6
    7199 echo "configure:7200: checking for shmat" >&5
     7326echo "configure:7327: checking for shmat" >&5
    72007327if eval "test \"`echo '$''{'ac_cv_func_shmat'+set}'`\" = set"; then
    72017328  echo $ac_n "(cached) $ac_c" 1>&6
    72027329else
    72037330  cat > conftest.$ac_ext <<EOF
    7204 #line 7205 "configure"
     7331#line 7332 "configure"
    72057332#include "confdefs.h"
    72067333/* System header to define __stub macros and hopefully few prototypes,
     
    72257352; return 0; }
    72267353EOF
    7227 if { (eval echo configure:7228: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     7354if { (eval echo configure:7355: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    72287355  rm -rf conftest*
    72297356  eval "ac_cv_func_shmat=yes"
     
    72467373    if test $ac_cv_func_shmat = no; then
    72477374      echo $ac_n "checking for shmat in -lipc""... $ac_c" 1>&6
    7248 echo "configure:7249: checking for shmat in -lipc" >&5
     7375echo "configure:7376: checking for shmat in -lipc" >&5
    72497376ac_lib_var=`echo ipc'_'shmat | sed 'y%./+-%__p_%'`
    72507377if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    72547381LIBS="-lipc  $LIBS"
    72557382cat > conftest.$ac_ext <<EOF
    7256 #line 7257 "configure"
     7383#line 7384 "configure"
    72577384#include "confdefs.h"
    72587385/* Override any gcc2 internal prototype to avoid an error.  */
     
    72657392; return 0; }
    72667393EOF
    7267 if { (eval echo configure:7268: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     7394if { (eval echo configure:7395: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    72687395  rm -rf conftest*
    72697396  eval "ac_cv_lib_$ac_lib_var=yes"
     
    72817408  echo "$ac_t""yes" 1>&6
    72827409  X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
     7410else
     7411  echo "$ac_t""no" 1>&6
     7412fi
     7413
     7414    fi
     7415    # XFree86/OS2
     7416    if test $ac_cv_func_shmat = no; then
     7417      echo $ac_n "checking for shmat in -lshm""... $ac_c" 1>&6
     7418echo "configure:7419: checking for shmat in -lshm" >&5
     7419ac_lib_var=`echo shm'_'shmat | sed 'y%./+-%__p_%'`
     7420if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     7421  echo $ac_n "(cached) $ac_c" 1>&6
     7422else
     7423  ac_save_LIBS="$LIBS"
     7424LIBS="-lshm  $LIBS"
     7425cat > conftest.$ac_ext <<EOF
     7426#line 7427 "configure"
     7427#include "confdefs.h"
     7428/* Override any gcc2 internal prototype to avoid an error.  */
     7429/* We use char because int might match the return type of a gcc2
     7430    builtin and then its argument prototype would still apply.  */
     7431char shmat();
     7432
     7433int main() {
     7434shmat()
     7435; return 0; }
     7436EOF
     7437if { (eval echo configure:7438: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     7438  rm -rf conftest*
     7439  eval "ac_cv_lib_$ac_lib_var=yes"
     7440else
     7441  echo "configure: failed program was:" >&5
     7442  cat conftest.$ac_ext >&5
     7443  rm -rf conftest*
     7444  eval "ac_cv_lib_$ac_lib_var=no"
     7445fi
     7446rm -f conftest*
     7447LIBS="$ac_save_LIBS"
     7448
     7449fi
     7450if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
     7451  echo "$ac_t""yes" 1>&6
     7452  X_EXTRA_LIBS="$X_EXTRA_LIBS -lshm"
    72837453else
    72847454  echo "$ac_t""no" 1>&6
     
    72987468  #  --interran@uluru.Stanford.EDU, kb@cs.umb.edu.
    72997469  echo $ac_n "checking for IceConnectionNumber in -lICE""... $ac_c" 1>&6
    7300 echo "configure:7301: checking for IceConnectionNumber in -lICE" >&5
     7470echo "configure:7471: checking for IceConnectionNumber in -lICE" >&5
    73017471ac_lib_var=`echo ICE'_'IceConnectionNumber | sed 'y%./+-%__p_%'`
    73027472if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    73067476LIBS="-lICE $X_EXTRA_LIBS $LIBS"
    73077477cat > conftest.$ac_ext <<EOF
    7308 #line 7309 "configure"
     7478#line 7479 "configure"
    73097479#include "confdefs.h"
    73107480/* Override any gcc2 internal prototype to avoid an error.  */
     
    73177487; return 0; }
    73187488EOF
    7319 if { (eval echo configure:7320: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     7489if { (eval echo configure:7490: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    73207490  rm -rf conftest*
    73217491  eval "ac_cv_lib_$ac_lib_var=yes"
     
    74787648# Run this file to recreate the current configuration.
    74797649# This directory was configured as follows,
     7650EOF
     7651echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS
     7652cat >> $CONFIG_STATUS <<EOF
    74807653# on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
    74817654#
     
    75037676ac_given_srcdir=$srcdir
    75047677ac_given_INSTALL="$INSTALL"
     7678PATHIFS="$PATH_IFS"
    75057679
    75067680trap 'rm -fr `echo "Makefile libgcj.spec libgcj-test.spec gnu/classpath/Configuration.java gcj/Makefile include/Makefile testsuite/Makefile include/config.h gcj/libgcj-config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
     
    75137687$ac_vpsub
    75147688$extrasub
     7689s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g
    75157690s%@SHELL@%$SHELL%g
    75167691s%@CFLAGS@%$CFLAGS%g
     
    75367711s%@infodir@%$infodir%g
    75377712s%@mandir@%$mandir%g
     7713s%@PATH_IFS@%$PATH_IFS%g
     7714s%@EXEEXT@%$EXEEXT%g
    75387715s%@LN_S@%$LN_S%g
    75397716s%@libgcj_basedir@%$libgcj_basedir%g
     
    75747751s%@MAINTAINER_MODE_FALSE@%$MAINTAINER_MODE_FALSE%g
    75757752s%@MAINT@%$MAINT%g
    7576 s%@EXEEXT@%$EXEEXT%g
    75777753s%@LIBGCJ_CFLAGS@%$LIBGCJ_CFLAGS%g
    75787754s%@LIBGCJ_CXXFLAGS@%$LIBGCJ_CXXFLAGS%g
     
    77217897      if test -z "$ac_dots"; then top_srcdir=.
    77227898      else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
    7723   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
     7899  /* | [A-Za-z]:*)
     7900    srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
    77247901  *) # Relative path.
    77257902    srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
     
    77287905
    77297906  case "$ac_given_INSTALL" in
    7730   [/$]*) INSTALL="$ac_given_INSTALL" ;;
     7907  [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;;
    77317908  *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
    77327909  esac
     
    77417918  esac
    77427919
    7743   ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
     7920  ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%$PATHIFS% $ac_given_srcdir/%g"`
    77447921  sed -e "$ac_comsub
    77457922s%@configure_input@%$configure_input%g
     
    77887965
    77897966  rm -f conftest.frag conftest.in conftest.out
    7790   ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
     7967# kso the other way around might work better with drive letters and such.
     7968#  ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
     7969  ac_file_inputs=`echo $ac_file_in|sed -e "s%:% $ac_given_srcdir/%g" -e "s%^%$ac_given_srcdir/%" `
    77917970  cat $ac_file_inputs > conftest.in
    77927971
     
    78928071
    78938072  case "$srcdir" in
    7894   [/$]*) ac_rel_source="$srcdir/$ac_source" ;;
     8073  [/$]* | [A-Za-z]:*) ac_rel_source="$srcdir/$ac_source" ;;
    78958074  *) ac_rel_source="$ac_dots$srcdir/$ac_source" ;;
    78968075  esac
     
    78988077  # Make a symlink if possible; otherwise try a hard link.
    78998078  if ln -s $ac_rel_source $ac_dest 2>/dev/null ||
    7900     ln $srcdir/$ac_source $ac_dest; then :
     8079    ln $srcdir/$ac_source $ac_dest 2>/dev/null ||
     8080    cp $srcdir/$ac_source $ac_dest; then :
    79018081  else
    79028082    { echo "configure: error: can not link $ac_dest to $srcdir/$ac_source" 1>&2; exit 1; }
     
    80168196    .) # No --srcdir option.  We are building in place.
    80178197      ac_sub_srcdir=$srcdir ;;
    8018     /*) # Absolute path.
     8198    /* | [A-Za-z]:*) # Absolute path.
    80198199      ac_sub_srcdir=$srcdir/$ac_config_dir ;;
    80208200    *) # Relative path.
     
    80268206      ac_sub_configure=$ac_sub_srcdir/configure
    80278207    elif test -f $ac_sub_srcdir/configure.in; then
    8028       ac_sub_configure=$ac_configure
     8208      ac_current_dir=`pwd`
     8209      cd $ac_sub_srcdir
     8210      autoconf
     8211      cd $ac_current_dir
     8212      ac_sub_configure=$ac_sub_srcdir/configure
    80298213    else
    80308214      echo "configure: warning: no configuration information is in $ac_config_dir" 1>&2
     
    80378221      # Make the cache file name correct relative to the subdirectory.
    80388222      case "$cache_file" in
    8039       /*) ac_sub_cache_file=$cache_file ;;
     8223      /* | [A-Za-z]:*) ac_sub_cache_file=$cache_file ;;
    80408224      *) # Relative path.
    80418225        ac_sub_cache_file="$ac_dots$cache_file" ;;
    80428226      esac
    80438227  case "$ac_given_INSTALL" in
    8044         [/$]*) INSTALL="$ac_given_INSTALL" ;;
     8228        [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;;
    80458229        *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
    80468230        esac
  • trunk/src/gcc/libjava/libltdl/configure

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r79 r80  
    5050silent=
    5151site=
    52 sitefile=
    5352srcdir=
    5453target=NONE
     
    165164  --no-create             do not create output files
    166165  --quiet, --silent       do not print \`checking...' messages
    167   --site-file=FILE        use FILE as the site file
    168166  --version               print the version of autoconf that created configure
    169167Directory and file names:
     
    336334    site="$ac_optarg" ;;
    337335
    338   -site-file | --site-file | --site-fil | --site-fi | --site-f)
    339     ac_prev=sitefile ;;
    340   -site-file=* | --site-file=* | --site-fil=* | --site-fi=* | --site-f=*)
    341     sitefile="$ac_optarg" ;;
    342 
    343336  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
    344337    ac_prev=srcdir ;;
     
    506499
    507500# Prefer explicitly selected file to automatically selected ones.
    508 if test -z "$sitefile"; then
    509   if test -z "$CONFIG_SITE"; then
    510     if test "x$prefix" != xNONE; then
    511       CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
    512     else
    513       CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
    514     fi
     501if test -z "$CONFIG_SITE"; then
     502  if test "x$prefix" != xNONE; then
     503    CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
     504  else
     505    CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
    515506  fi
    516 else
    517   CONFIG_SITE="$sitefile"
    518507fi
    519508for ac_site_file in $CONFIG_SITE; do
     
    553542fi
    554543
     544echo $ac_n "checking for path separator""... $ac_c" 1>&6
     545echo "configure:546: checking for path separator" >&5
     546# Filter path to get backslahes into forwardslashes
     547case "`uname -s 2> /dev/null`" in
     548OS/2)
     549  PATH=`echo -E "$PATH" | sed 's+\\\\+/+g'`
     550  PATH_IFS=';'
     551  ;;
     552*)
     553  PATH_IFS=':'
     554  ;;
     555esac
     556echo "$ac_t""${PATH_IFS}" 1>&6
     557
    555558echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6
    556 echo "configure:557: checking for Cygwin environment" >&5
     559echo "configure:560: checking for Cygwin environment" >&5
    557560if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then
    558561  echo $ac_n "(cached) $ac_c" 1>&6
    559562else
    560563  cat > conftest.$ac_ext <<EOF
    561 #line 562 "configure"
     564#line 565 "configure"
    562565#include "confdefs.h"
    563566
     
    570573; return 0; }
    571574EOF
    572 if { (eval echo configure:573: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     575if { (eval echo configure:576: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    573576  rm -rf conftest*
    574577  ac_cv_cygwin=yes
     
    587590test "$ac_cv_cygwin" = yes && CYGWIN=yes
    588591echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6
    589 echo "configure:590: checking for mingw32 environment" >&5
     592echo "configure:593: checking for mingw32 environment" >&5
    590593if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then
    591594  echo $ac_n "(cached) $ac_c" 1>&6
    592595else
    593596  cat > conftest.$ac_ext <<EOF
    594 #line 595 "configure"
     597#line 598 "configure"
    595598#include "confdefs.h"
    596599
     
    599602; return 0; }
    600603EOF
    601 if { (eval echo configure:602: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     604if { (eval echo configure:605: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    602605  rm -rf conftest*
    603606  ac_cv_mingw32=yes
     
    615618MINGW32=
    616619test "$ac_cv_mingw32" = yes && MINGW32=yes
     620echo $ac_n "checking for EMX/OS2 environment""... $ac_c" 1>&6
     621echo "configure:622: checking for EMX/OS2 environment" >&5
     622if eval "test \"`echo '$''{'ac_cv_emxos2'+set}'`\" = set"; then
     623  echo $ac_n "(cached) $ac_c" 1>&6
     624else
     625  : ${CC=gcc.exe}
     626cat > conftest.$ac_ext <<EOF
     627#line 628 "configure"
     628#include "confdefs.h"
     629
     630int main() {
     631return __EMX__;
     632; return 0; }
     633EOF
     634if { (eval echo configure:635: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     635  rm -rf conftest*
     636  ac_cv_emxos2=yes
     637else
     638  echo "configure: failed program was:" >&5
     639  cat conftest.$ac_ext >&5
     640  rm -rf conftest*
     641  ac_cv_emxos2=no
     642fi
     643rm -f conftest*
     644rm -f conftest*
     645fi
     646
     647echo "$ac_t""$ac_cv_emxos2" 1>&6
     648if eval "test \"`echo '$''{'ac_cv_libpre'+set}'`\" = set"; then
     649  echo $ac_n "(cached) $ac_c" 1>&6
     650else
     651  if test "$ac_cv_emxos2" = yes ; then
     652  ac_cv_libpre=
     653else
     654  ac_cv_libpre=lib
     655fi
     656
     657fi
     658
     659EMXOS2=
     660test "$ac_cv_emxos2" = yes && EMXOS2=yes
     661
     662
     663
     664echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
     665echo "configure:666: checking for executable suffix" >&5
     666if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then
     667  echo $ac_n "(cached) $ac_c" 1>&6
     668else
     669  if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then
     670  ac_cv_exeext=.exe
     671else
     672  rm -f conftest*
     673  echo 'int main () { return 0; }' > conftest.$ac_ext
     674  ac_cv_exeext=
     675  if { (eval echo configure:676: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
     676    for file in conftest.*; do
     677      case $file in
     678      *.c | *.o | *.obj) ;;
     679      *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;
     680      esac
     681    done
     682  else
     683    { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; }
     684  fi
     685  rm -f conftest*
     686  test x"${ac_cv_exeext}" = x && ac_cv_exeext=no
     687fi
     688fi
     689
     690EXEEXT=""
     691test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext}
     692echo "$ac_t""${ac_cv_exeext}" 1>&6
     693ac_exeext=$EXEEXT
     694
    617695
    618696
     
    691769# ./install, which can be erroneously created by make from ./install.sh.
    692770echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    693 echo "configure:694: checking for a BSD compatible install" >&5
     771echo "configure:772: checking for a BSD compatible install" >&5
    694772if test -z "$INSTALL"; then
    695773if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
    696774  echo $ac_n "(cached) $ac_c" 1>&6
    697775else
    698     IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS=":"
     776    IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS"
    699777  for ac_dir in $PATH; do
    700778    # Account for people who put trailing slashes in PATH elements.
    701779    case "$ac_dir/" in
    702780    /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
     781    # We reject the install program from OS/2 or W3.1
     782    */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;;
    703783    *)
    704784      # OSF1 and SCO ODT 3.0 have their own names for install.
     
    706786      # by default.
    707787      for ac_prog in ginstall scoinst install; do
    708         if test -f $ac_dir/$ac_prog; then
     788        if test -f $ac_dir/$ac_prog$ac_exeext; then
    709789          if test $ac_prog = install &&
    710790            grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
     
    712792            :
    713793          else
    714             ac_cv_path_install="$ac_dir/$ac_prog -c"
     794            ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c"
    715795            break 2
    716796          fi
     
    744824
    745825echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    746 echo "configure:747: checking whether build environment is sane" >&5
     826echo "configure:827: checking whether build environment is sane" >&5
    747827# Just in case
    748828sleep 1
     
    801881
    802882echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    803 echo "configure:804: checking whether ${MAKE-make} sets \${MAKE}" >&5
     883echo "configure:884: checking whether ${MAKE-make} sets \${MAKE}" >&5
    804884set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    805885if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    840920missing_dir=`cd $ac_aux_dir && pwd`
    841921echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    842 echo "configure:843: checking for working aclocal" >&5
     922echo "configure:923: checking for working aclocal" >&5
    843923# Run test in a subshell; some versions of sh will print an error if
    844924# an executable is not found, even if stderr is redirected.
     
    853933
    854934echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    855 echo "configure:856: checking for working autoconf" >&5
     935echo "configure:936: checking for working autoconf" >&5
    856936# Run test in a subshell; some versions of sh will print an error if
    857937# an executable is not found, even if stderr is redirected.
     
    866946
    867947echo $ac_n "checking for working automake""... $ac_c" 1>&6
    868 echo "configure:869: checking for working automake" >&5
     948echo "configure:949: checking for working automake" >&5
    869949# Run test in a subshell; some versions of sh will print an error if
    870950# an executable is not found, even if stderr is redirected.
     
    879959
    880960echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    881 echo "configure:882: checking for working autoheader" >&5
     961echo "configure:962: checking for working autoheader" >&5
    882962# Run test in a subshell; some versions of sh will print an error if
    883963# an executable is not found, even if stderr is redirected.
     
    892972
    893973echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    894 echo "configure:895: checking for working makeinfo" >&5
     974echo "configure:975: checking for working makeinfo" >&5
    895975# Run test in a subshell; some versions of sh will print an error if
    896976# an executable is not found, even if stderr is redirected.
     
    909989
    910990echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6
    911 echo "configure:912: checking whether to enable maintainer-specific portions of Makefiles" >&5
     991echo "configure:992: checking whether to enable maintainer-specific portions of Makefiles" >&5
    912992    # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
    913993if test "${enable_maintainer_mode+set}" = set; then
     
    9351015set dummy gcc; ac_word=$2
    9361016echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    937 echo "configure:938: checking for $ac_word" >&5
     1017echo "configure:1018: checking for $ac_word" >&5
    9381018if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    9391019  echo $ac_n "(cached) $ac_c" 1>&6
     
    9421022  ac_cv_prog_CC="$CC" # Let the user override the test.
    9431023else
    944   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1024  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    9451025  ac_dummy="$PATH"
    9461026  for ac_dir in $ac_dummy; do
    9471027    test -z "$ac_dir" && ac_dir=.
    948     if test -f $ac_dir/$ac_word; then
     1028    if test -f $ac_dir/$ac_word -o \
     1029            -f $ac_dir/$ac_word$ac_exeext ; then
    9491030      ac_cv_prog_CC="gcc"
    9501031      break
     
    9651046set dummy cc; ac_word=$2
    9661047echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    967 echo "configure:968: checking for $ac_word" >&5
     1048echo "configure:1049: checking for $ac_word" >&5
    9681049if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    9691050  echo $ac_n "(cached) $ac_c" 1>&6
     
    9721053  ac_cv_prog_CC="$CC" # Let the user override the test.
    9731054else
    974   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1055  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    9751056  ac_prog_rejected=no
    9761057  ac_dummy="$PATH"
    9771058  for ac_dir in $ac_dummy; do
    9781059    test -z "$ac_dir" && ac_dir=.
    979     if test -f $ac_dir/$ac_word; then
    980       if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
     1060    if test -f $ac_dir/$ac_word -o \
     1061            -f $ac_dir/$ac_word$ac_exeext ; then
     1062      if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \
     1063               "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then
    9811064        ac_prog_rejected=yes
    9821065        continue
     
    10161099set dummy cl; ac_word=$2
    10171100echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1018 echo "configure:1019: checking for $ac_word" >&5
     1101echo "configure:1102: checking for $ac_word" >&5
    10191102if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    10201103  echo $ac_n "(cached) $ac_c" 1>&6
     
    10231106  ac_cv_prog_CC="$CC" # Let the user override the test.
    10241107else
    1025   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1108  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    10261109  ac_dummy="$PATH"
    10271110  for ac_dir in $ac_dummy; do
    10281111    test -z "$ac_dir" && ac_dir=.
    1029     if test -f $ac_dir/$ac_word; then
     1112    if test -f $ac_dir/$ac_word -o \
     1113            -f $ac_dir/$ac_word$ac_exeext ; then
    10301114      ac_cv_prog_CC="cl"
    10311115      break
     
    10481132
    10491133echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
    1050 echo "configure:1051: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
     1134echo "configure:1135: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
    10511135
    10521136ac_ext=c
     
    10591143cat > conftest.$ac_ext << EOF
    10601144
    1061 #line 1062 "configure"
     1145#line 1146 "configure"
    10621146#include "confdefs.h"
    10631147
    10641148main(){return(0);}
    10651149EOF
    1066 if { (eval echo configure:1067: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1150if { (eval echo configure:1151: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    10671151  ac_cv_prog_cc_works=yes
    10681152  # If we can't run a trivial program, we are probably using a cross compiler.
     
    10901174fi
    10911175echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
    1092 echo "configure:1093: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
     1176echo "configure:1177: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
    10931177echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
    10941178cross_compiling=$ac_cv_prog_cc_cross
    10951179
    10961180echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    1097 echo "configure:1098: checking whether we are using GNU C" >&5
     1181echo "configure:1182: checking whether we are using GNU C" >&5
    10981182if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    10991183  echo $ac_n "(cached) $ac_c" 1>&6
     
    11041188#endif
    11051189EOF
    1106 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1107: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1190if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1191: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
    11071191  ac_cv_prog_gcc=yes
    11081192else
     
    11231207CFLAGS=
    11241208echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    1125 echo "configure:1126: checking whether ${CC-cc} accepts -g" >&5
     1209echo "configure:1210: checking whether ${CC-cc} accepts -g" >&5
    11261210if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    11271211  echo $ac_n "(cached) $ac_c" 1>&6
     
    11551239
    11561240echo $ac_n "checking for working const""... $ac_c" 1>&6
    1157 echo "configure:1158: checking for working const" >&5
     1241echo "configure:1242: checking for working const" >&5
    11581242if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
    11591243  echo $ac_n "(cached) $ac_c" 1>&6
    11601244else
    11611245  cat > conftest.$ac_ext <<EOF
    1162 #line 1163 "configure"
     1246#line 1247 "configure"
    11631247#include "confdefs.h"
    11641248
     
    12091293; return 0; }
    12101294EOF
    1211 if { (eval echo configure:1212: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     1295if { (eval echo configure:1296: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    12121296  rm -rf conftest*
    12131297  ac_cv_c_const=yes
     
    12301314
    12311315echo $ac_n "checking for inline""... $ac_c" 1>&6
    1232 echo "configure:1233: checking for inline" >&5
     1316echo "configure:1317: checking for inline" >&5
    12331317if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then
    12341318  echo $ac_n "(cached) $ac_c" 1>&6
     
    12371321for ac_kw in inline __inline__ __inline; do
    12381322  cat > conftest.$ac_ext <<EOF
    1239 #line 1240 "configure"
     1323#line 1324 "configure"
    12401324#include "confdefs.h"
    12411325
     
    12441328; return 0; }
    12451329EOF
    1246 if { (eval echo configure:1247: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     1330if { (eval echo configure:1331: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    12471331  rm -rf conftest*
    12481332  ac_cv_c_inline=$ac_kw; break
     
    13471431
    13481432echo $ac_n "checking host system type""... $ac_c" 1>&6
    1349 echo "configure:1350: checking host system type" >&5
     1433echo "configure:1434: checking host system type" >&5
    13501434
    13511435host_alias=$host
     
    13681452
    13691453echo $ac_n "checking build system type""... $ac_c" 1>&6
    1370 echo "configure:1371: checking build system type" >&5
     1454echo "configure:1455: checking build system type" >&5
    13711455
    13721456build_alias=$build
     
    13971481  # Check if gcc -print-prog-name=ld gives a path.
    13981482  echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6
    1399 echo "configure:1400: checking for ld used by GCC" >&5
     1483echo "configure:1484: checking for ld used by GCC" >&5
    14001484  case $host in
    14011485  *-*-mingw*)
     
    14271511elif test "$with_gnu_ld" = yes; then
    14281512  echo $ac_n "checking for GNU ld""... $ac_c" 1>&6
    1429 echo "configure:1430: checking for GNU ld" >&5
     1513echo "configure:1514: checking for GNU ld" >&5
    14301514else
    14311515  echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6
    1432 echo "configure:1433: checking for non-GNU ld" >&5
     1516echo "configure:1517: checking for non-GNU ld" >&5
    14331517fi
    14341518if eval "test \"`echo '$''{'ac_cv_path_LD'+set}'`\" = set"; then
     
    14651549test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; }
    14661550echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6
    1467 echo "configure:1468: checking if the linker ($LD) is GNU ld" >&5
     1551echo "configure:1552: checking if the linker ($LD) is GNU ld" >&5
    14681552if eval "test \"`echo '$''{'ac_cv_prog_gnu_ld'+set}'`\" = set"; then
    14691553  echo $ac_n "(cached) $ac_c" 1>&6
     
    14821566
    14831567echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6
    1484 echo "configure:1485: checking for $LD option to reload object files" >&5
     1568echo "configure:1569: checking for $LD option to reload object files" >&5
    14851569if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then
    14861570  echo $ac_n "(cached) $ac_c" 1>&6
     
    14941578
    14951579echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6
    1496 echo "configure:1497: checking for BSD-compatible nm" >&5
     1580echo "configure:1581: checking for BSD-compatible nm" >&5
    14971581if eval "test \"`echo '$''{'ac_cv_path_NM'+set}'`\" = set"; then
    14981582  echo $ac_n "(cached) $ac_c" 1>&6
     
    15321616
    15331617echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
    1534 echo "configure:1535: checking whether ln -s works" >&5
     1618echo "configure:1619: checking whether ln -s works" >&5
    15351619if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
    15361620  echo $ac_n "(cached) $ac_c" 1>&6
     
    15421626  ac_cv_prog_LN_S="ln -s"
    15431627else
    1544   ac_cv_prog_LN_S=ln
    1545 fi
     1628  echo A > conftestdata;
     1629  if ln conftestdata conftestdata2 2>/dev/null; then
     1630    ac_cv_prog_LN_S=ln
     1631  else
     1632    ac_cv_prog_LN_S=cp
     1633  fi
     1634fi
     1635rm -f conftestdata*
    15461636fi
    15471637LN_S="$ac_cv_prog_LN_S"
     
    15531643
    15541644echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6
    1555 echo "configure:1556: checking how to recognise dependant libraries" >&5
     1645echo "configure:1646: checking how to recognise dependant libraries" >&5
    15561646if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then
    15571647  echo $ac_n "(cached) $ac_c" 1>&6
     
    16961786
    16971787echo $ac_n "checking for object suffix""... $ac_c" 1>&6
    1698 echo "configure:1699: checking for object suffix" >&5
     1788echo "configure:1789: checking for object suffix" >&5
    16991789if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then
    17001790  echo $ac_n "(cached) $ac_c" 1>&6
     
    17021792  rm -f conftest*
    17031793echo 'int i = 1;' > conftest.$ac_ext
    1704 if { (eval echo configure:1705: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     1794if { (eval echo configure:1795: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    17051795  for ac_file in conftest.*; do
    17061796    case $ac_file in
     
    17191809ac_objext=$ac_cv_objext
    17201810
    1721 
    1722 
    1723 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
    1724 echo "configure:1725: checking for executable suffix" >&5
    1725 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then
    1726   echo $ac_n "(cached) $ac_c" 1>&6
    1727 else
    1728   if test "$CYGWIN" = yes || test "$MINGW32" = yes; then
    1729   ac_cv_exeext=.exe
    1730 else
    1731   rm -f conftest*
    1732   echo 'int main () { return 0; }' > conftest.$ac_ext
    1733   ac_cv_exeext=
    1734   if { (eval echo configure:1735: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
    1735     for file in conftest.*; do
    1736       case $file in
    1737       *.c | *.o | *.obj | *.ilk | *.pdb) ;;
    1738       *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;
    1739       esac
    1740     done
    1741   else
    1742     { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; }
    1743   fi
    1744   rm -f conftest*
    1745   test x"${ac_cv_exeext}" = x && ac_cv_exeext=no
    1746 fi
    1747 fi
    1748 
    1749 EXEEXT=""
    1750 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext}
    1751 echo "$ac_t""${ac_cv_exeext}" 1>&6
    1752 ac_exeext=$EXEEXT
    1753 
    17541811if test $host != $build; then
    17551812  ac_tool_prefix=${host_alias}-
     
    17651822  if test "$file_magic_cmd" = '${MAGIC}'; then
    17661823    echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6
    1767 echo "configure:1768: checking for ${ac_tool_prefix}file" >&5
     1824echo "configure:1825: checking for ${ac_tool_prefix}file" >&5
    17681825if eval "test \"`echo '$''{'lt_cv_path_MAGIC'+set}'`\" = set"; then
    17691826  echo $ac_n "(cached) $ac_c" 1>&6
     
    18271884  if test -n "$ac_tool_prefix"; then
    18281885    echo $ac_n "checking for file""... $ac_c" 1>&6
    1829 echo "configure:1830: checking for file" >&5
     1886echo "configure:1887: checking for file" >&5
    18301887if eval "test \"`echo '$''{'lt_cv_path_MAGIC'+set}'`\" = set"; then
    18311888  echo $ac_n "(cached) $ac_c" 1>&6
     
    18981955set dummy ${ac_tool_prefix}ranlib; ac_word=$2
    18991956echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1900 echo "configure:1901: checking for $ac_word" >&5
     1957echo "configure:1958: checking for $ac_word" >&5
    19011958if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    19021959  echo $ac_n "(cached) $ac_c" 1>&6
     
    19051962  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
    19061963else
    1907   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1964  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    19081965  ac_dummy="$PATH"
    19091966  for ac_dir in $ac_dummy; do
    19101967    test -z "$ac_dir" && ac_dir=.
    1911     if test -f $ac_dir/$ac_word; then
     1968    if test -f $ac_dir/$ac_word -o \
     1969            -f $ac_dir/$ac_word$ac_exeext ; then
    19121970      ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
    19131971      break
     
    19301988set dummy ranlib; ac_word=$2
    19311989echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1932 echo "configure:1933: checking for $ac_word" >&5
     1990echo "configure:1991: checking for $ac_word" >&5
    19331991if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    19341992  echo $ac_n "(cached) $ac_c" 1>&6
     
    19371995  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
    19381996else
    1939   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1997  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    19401998  ac_dummy="$PATH"
    19411999  for ac_dir in $ac_dummy; do
    19422000    test -z "$ac_dir" && ac_dir=.
    1943     if test -f $ac_dir/$ac_word; then
     2001    if test -f $ac_dir/$ac_word -o \
     2002            -f $ac_dir/$ac_word$ac_exeext ; then
    19442003      ac_cv_prog_RANLIB="ranlib"
    19452004      break
     
    19652024set dummy ${ac_tool_prefix}strip; ac_word=$2
    19662025echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1967 echo "configure:1968: checking for $ac_word" >&5
     2026echo "configure:2027: checking for $ac_word" >&5
    19682027if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
    19692028  echo $ac_n "(cached) $ac_c" 1>&6
     
    19722031  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
    19732032else
    1974   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2033  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    19752034  ac_dummy="$PATH"
    19762035  for ac_dir in $ac_dummy; do
    19772036    test -z "$ac_dir" && ac_dir=.
    1978     if test -f $ac_dir/$ac_word; then
     2037    if test -f $ac_dir/$ac_word -o \
     2038            -f $ac_dir/$ac_word$ac_exeext ; then
    19792039      ac_cv_prog_STRIP="${ac_tool_prefix}strip"
    19802040      break
     
    19972057set dummy strip; ac_word=$2
    19982058echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1999 echo "configure:2000: checking for $ac_word" >&5
     2059echo "configure:2060: checking for $ac_word" >&5
    20002060if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
    20012061  echo $ac_n "(cached) $ac_c" 1>&6
     
    20042064  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
    20052065else
    2006   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2066  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    20072067  ac_dummy="$PATH"
    20082068  for ac_dir in $ac_dummy; do
    20092069    test -z "$ac_dir" && ac_dir=.
    2010     if test -f $ac_dir/$ac_word; then
     2070    if test -f $ac_dir/$ac_word -o \
     2071            -f $ac_dir/$ac_word$ac_exeext ; then
    20112072      ac_cv_prog_STRIP="strip"
    20122073      break
     
    20642125*-*-irix6*)
    20652126  # Find out which ABI we are using.
    2066   echo '#line 2067 "configure"' > conftest.$ac_ext
    2067   if { (eval echo configure:2068: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     2127  echo '#line 2128 "configure"' > conftest.$ac_ext
     2128  if { (eval echo configure:2129: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    20682129    case "`/usr/bin/file conftest.o`" in
    20692130    *32-bit*)
     
    20862147  CFLAGS="$CFLAGS -belf"
    20872148  echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6
    2088 echo "configure:2089: checking whether the C compiler needs -belf" >&5
     2149echo "configure:2150: checking whether the C compiler needs -belf" >&5
    20892150if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then
    20902151  echo $ac_n "(cached) $ac_c" 1>&6
     
    20992160
    21002161     cat > conftest.$ac_ext <<EOF
    2101 #line 2102 "configure"
     2162#line 2163 "configure"
    21022163#include "confdefs.h"
    21032164
     
    21062167; return 0; }
    21072168EOF
    2108 if { (eval echo configure:2109: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     2169if { (eval echo configure:2170: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    21092170  rm -rf conftest*
    21102171  lt_cv_cc_needs_belf=yes
     
    21362197set dummy ${ac_tool_prefix}dlltool; ac_word=$2
    21372198echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2138 echo "configure:2139: checking for $ac_word" >&5
     2199echo "configure:2200: checking for $ac_word" >&5
    21392200if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then
    21402201  echo $ac_n "(cached) $ac_c" 1>&6
     
    21432204  ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test.
    21442205else
    2145   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2206  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    21462207  ac_dummy="$PATH"
    21472208  for ac_dir in $ac_dummy; do
    21482209    test -z "$ac_dir" && ac_dir=.
    2149     if test -f $ac_dir/$ac_word; then
     2210    if test -f $ac_dir/$ac_word -o \
     2211            -f $ac_dir/$ac_word$ac_exeext ; then
    21502212      ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool"
    21512213      break
     
    21682230set dummy dlltool; ac_word=$2
    21692231echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2170 echo "configure:2171: checking for $ac_word" >&5
     2232echo "configure:2233: checking for $ac_word" >&5
    21712233if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then
    21722234  echo $ac_n "(cached) $ac_c" 1>&6
     
    21752237  ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test.
    21762238else
    2177   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2239  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    21782240  ac_dummy="$PATH"
    21792241  for ac_dir in $ac_dummy; do
    21802242    test -z "$ac_dir" && ac_dir=.
    2181     if test -f $ac_dir/$ac_word; then
     2243    if test -f $ac_dir/$ac_word -o \
     2244            -f $ac_dir/$ac_word$ac_exeext ; then
    21822245      ac_cv_prog_DLLTOOL="dlltool"
    21832246      break
     
    22032266set dummy ${ac_tool_prefix}as; ac_word=$2
    22042267echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2205 echo "configure:2206: checking for $ac_word" >&5
     2268echo "configure:2269: checking for $ac_word" >&5
    22062269if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then
    22072270  echo $ac_n "(cached) $ac_c" 1>&6
     
    22102273  ac_cv_prog_AS="$AS" # Let the user override the test.
    22112274else
    2212   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2275  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    22132276  ac_dummy="$PATH"
    22142277  for ac_dir in $ac_dummy; do
    22152278    test -z "$ac_dir" && ac_dir=.
    2216     if test -f $ac_dir/$ac_word; then
     2279    if test -f $ac_dir/$ac_word -o \
     2280            -f $ac_dir/$ac_word$ac_exeext ; then
    22172281      ac_cv_prog_AS="${ac_tool_prefix}as"
    22182282      break
     
    22352299set dummy as; ac_word=$2
    22362300echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2237 echo "configure:2238: checking for $ac_word" >&5
     2301echo "configure:2302: checking for $ac_word" >&5
    22382302if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then
    22392303  echo $ac_n "(cached) $ac_c" 1>&6
     
    22422306  ac_cv_prog_AS="$AS" # Let the user override the test.
    22432307else
    2244   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2308  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    22452309  ac_dummy="$PATH"
    22462310  for ac_dir in $ac_dummy; do
    22472311    test -z "$ac_dir" && ac_dir=.
    2248     if test -f $ac_dir/$ac_word; then
     2312    if test -f $ac_dir/$ac_word -o \
     2313            -f $ac_dir/$ac_word$ac_exeext ; then
    22492314      ac_cv_prog_AS="as"
    22502315      break
     
    22702335set dummy ${ac_tool_prefix}objdump; ac_word=$2
    22712336echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2272 echo "configure:2273: checking for $ac_word" >&5
     2337echo "configure:2338: checking for $ac_word" >&5
    22732338if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then
    22742339  echo $ac_n "(cached) $ac_c" 1>&6
     
    22772342  ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test.
    22782343else
    2279   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2344  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    22802345  ac_dummy="$PATH"
    22812346  for ac_dir in $ac_dummy; do
    22822347    test -z "$ac_dir" && ac_dir=.
    2283     if test -f $ac_dir/$ac_word; then
     2348    if test -f $ac_dir/$ac_word -o \
     2349            -f $ac_dir/$ac_word$ac_exeext ; then
    22842350      ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump"
    22852351      break
     
    23022368set dummy objdump; ac_word=$2
    23032369echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2304 echo "configure:2305: checking for $ac_word" >&5
     2370echo "configure:2371: checking for $ac_word" >&5
    23052371if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then
    23062372  echo $ac_n "(cached) $ac_c" 1>&6
     
    23092375  ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test.
    23102376else
    2311   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2377  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    23122378  ac_dummy="$PATH"
    23132379  for ac_dir in $ac_dummy; do
    23142380    test -z "$ac_dir" && ac_dir=.
    2315     if test -f $ac_dir/$ac_word; then
     2381    if test -f $ac_dir/$ac_word -o \
     2382            -f $ac_dir/$ac_word$ac_exeext ; then
    23162383      ac_cv_prog_OBJDUMP="objdump"
    23172384      break
     
    23382405  # can override, but on older systems we have to supply one
    23392406  echo $ac_n "checking if libtool should supply DllMain function""... $ac_c" 1>&6
    2340 echo "configure:2341: checking if libtool should supply DllMain function" >&5
     2407echo "configure:2408: checking if libtool should supply DllMain function" >&5
    23412408if eval "test \"`echo '$''{'lt_cv_need_dllmain'+set}'`\" = set"; then
    23422409  echo $ac_n "(cached) $ac_c" 1>&6
    23432410else
    23442411  cat > conftest.$ac_ext <<EOF
    2345 #line 2346 "configure"
     2412#line 2413 "configure"
    23462413#include "confdefs.h"
    23472414
     
    23512418; return 0; }
    23522419EOF
    2353 if { (eval echo configure:2354: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     2420if { (eval echo configure:2421: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    23542421  rm -rf conftest*
    23552422  lt_cv_need_dllmain=no
     
    23722439    CFLAGS="$CFLAGS -mdll"
    23732440    echo $ac_n "checking how to link DLLs""... $ac_c" 1>&6
    2374 echo "configure:2375: checking how to link DLLs" >&5
     2441echo "configure:2442: checking how to link DLLs" >&5
    23752442if eval "test \"`echo '$''{'lt_cv_cc_dll_switch'+set}'`\" = set"; then
    23762443  echo $ac_n "(cached) $ac_c" 1>&6
    23772444else
    23782445  cat > conftest.$ac_ext <<EOF
    2379 #line 2380 "configure"
     2446#line 2447 "configure"
    23802447#include "confdefs.h"
    23812448
     
    23842451; return 0; }
    23852452EOF
    2386 if { (eval echo configure:2387: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     2453if { (eval echo configure:2454: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    23872454  rm -rf conftest*
    23882455  lt_cv_cc_dll_switch=-mdll
     
    24962563
    24972564echo $ac_n "checking for garbage collector to use""... $ac_c" 1>&6
    2498 echo "configure:2499: checking for garbage collector to use" >&5
     2565echo "configure:2566: checking for garbage collector to use" >&5
    24992566# Check whether --enable-java-gc or --disable-java-gc was given.
    25002567if test "${enable_java_gc+set}" = set; then
     
    25192586
    25202587echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
    2521 echo "configure:2522: checking how to run the C preprocessor" >&5
     2588echo "configure:2589: checking how to run the C preprocessor" >&5
    25222589# On Suns, sometimes $CPP names a directory.
    25232590if test -n "$CPP" && test -d "$CPP"; then
     
    25342601  # not just through cpp.
    25352602  cat > conftest.$ac_ext <<EOF
    2536 #line 2537 "configure"
     2603#include <sys/types.h>
     2604#line 2605 "configure"
    25372605#include "confdefs.h"
    25382606#include <assert.h>
     
    25402608EOF
    25412609ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2542 { (eval echo configure:2543: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2610{ (eval echo configure:2611: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    25432611ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    25442612if test -z "$ac_err"; then
     
    25512619  CPP="${CC-cc} -E -traditional-cpp"
    25522620  cat > conftest.$ac_ext <<EOF
    2553 #line 2554 "configure"
     2621#include <sys/types.h>
     2622#line 2623 "configure"
    25542623#include "confdefs.h"
    25552624#include <assert.h>
     
    25572626EOF
    25582627ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2559 { (eval echo configure:2560: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2628{ (eval echo configure:2629: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    25602629ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    25612630if test -z "$ac_err"; then
     
    25682637  CPP="${CC-cc} -nologo -E"
    25692638  cat > conftest.$ac_ext <<EOF
    2570 #line 2571 "configure"
     2639#include <sys/types.h>
     2640#line 2641 "configure"
    25712641#include "confdefs.h"
    25722642#include <assert.h>
     
    25742644EOF
    25752645ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2576 { (eval echo configure:2577: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2646{ (eval echo configure:2647: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    25772647ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    25782648if test -z "$ac_err"; then
     
    26062676# Check for command to grab the raw symbol name followed by C symbol from nm.
    26072677echo $ac_n "checking command to parse $NM output""... $ac_c" 1>&6
    2608 echo "configure:2609: checking command to parse $NM output" >&5
     2678echo "configure:2679: checking command to parse $NM output" >&5
    26092679if eval "test \"`echo '$''{'ac_cv_sys_global_symbol_pipe'+set}'`\" = set"; then
    26102680  echo $ac_n "(cached) $ac_c" 1>&6
     
    26692739EOF
    26702740
    2671   if { (eval echo configure:2672: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     2741  if { (eval echo configure:2742: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    26722742    # Now try to grab the symbols.
    26732743    ac_nlist=conftest.nm
    26742744
    2675     if { (eval echo configure:2676: \"$NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist\") 1>&5; (eval $NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist) 2>&5; } && test -s "$ac_nlist"; then
     2745    if { (eval echo configure:2746: \"$NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist\") 1>&5; (eval $NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist) 2>&5; } && test -s "$ac_nlist"; then
    26762746
    26772747      # Try sorting and uniquifying the output.
     
    27252795          LIBS="conftstm.$ac_objext"
    27262796          CFLAGS="$CFLAGS$no_builtin_flag"
    2727           if { (eval echo configure:2728: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
     2797          if { (eval echo configure:2798: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
    27282798            ac_pipe_works=yes
    27292799          else
     
    27712841
    27722842echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
    2773 echo "configure:2774: checking for ANSI C header files" >&5
     2843echo "configure:2844: checking for ANSI C header files" >&5
    27742844if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
    27752845  echo $ac_n "(cached) $ac_c" 1>&6
    27762846else
    27772847  cat > conftest.$ac_ext <<EOF
    2778 #line 2779 "configure"
     2848#include <sys/types.h>
     2849#line 2850 "configure"
    27792850#include "confdefs.h"
    27802851#include <stdlib.h>
     
    27842855EOF
    27852856ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2786 { (eval echo configure:2787: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2857{ (eval echo configure:2858: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    27872858ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    27882859if test -z "$ac_err"; then
     
    28012872  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
    28022873cat > conftest.$ac_ext <<EOF
    2803 #line 2804 "configure"
     2874#line 2875 "configure"
    28042875#include "confdefs.h"
    28052876#include <string.h>
     
    28192890  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
    28202891cat > conftest.$ac_ext <<EOF
    2821 #line 2822 "configure"
     2892#line 2893 "configure"
    28222893#include "confdefs.h"
    28232894#include <stdlib.h>
     
    28402911else
    28412912  cat > conftest.$ac_ext <<EOF
    2842 #line 2843 "configure"
     2913#line 2914 "configure"
    28432914#include "confdefs.h"
    28442915#include <ctype.h>
     
    28512922
    28522923EOF
    2853 if { (eval echo configure:2854: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     2924if { (eval echo configure:2925: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    28542925then
    28552926  :
     
    29012972
    29022973echo $ac_n "checking which extension is used for shared libraries""... $ac_c" 1>&6
    2903 echo "configure:2904: checking which extension is used for shared libraries" >&5
     2974echo "configure:2975: checking which extension is used for shared libraries" >&5
    29042975if eval "test \"`echo '$''{'libltdl_cv_shlibext'+set}'`\" = set"; then
    29052976  echo $ac_n "(cached) $ac_c" 1>&6
     
    29282999
    29293000echo $ac_n "checking which variable specifies run-time library path""... $ac_c" 1>&6
    2930 echo "configure:2931: checking which variable specifies run-time library path" >&5
     3001echo "configure:3002: checking which variable specifies run-time library path" >&5
    29313002if eval "test \"`echo '$''{'libltdl_cv_shlibpath_var'+set}'`\" = set"; then
    29323003  echo $ac_n "(cached) $ac_c" 1>&6
     
    29443015
    29453016echo $ac_n "checking for the default library search path""... $ac_c" 1>&6
    2946 echo "configure:2947: checking for the default library search path" >&5
     3017echo "configure:3018: checking for the default library search path" >&5
    29473018if eval "test \"`echo '$''{'libltdl_cv_sys_search_path'+set}'`\" = set"; then
    29483019  echo $ac_n "(cached) $ac_c" 1>&6
     
    29723043
    29733044echo $ac_n "checking for objdir""... $ac_c" 1>&6
    2974 echo "configure:2975: checking for objdir" >&5
     3045echo "configure:3046: checking for objdir" >&5
    29753046if eval "test \"`echo '$''{'libltdl_cv_objdir'+set}'`\" = set"; then
    29763047  echo $ac_n "(cached) $ac_c" 1>&6
     
    29993070
    30003071echo $ac_n "checking whether libtool supports -dlopen/-dlpreopen""... $ac_c" 1>&6
    3001 echo "configure:3002: checking whether libtool supports -dlopen/-dlpreopen" >&5
     3072echo "configure:3073: checking whether libtool supports -dlopen/-dlpreopen" >&5
    30023073if eval "test \"`echo '$''{'libltdl_cv_preloaded_symbols'+set}'`\" = set"; then
    30033074  echo $ac_n "(cached) $ac_c" 1>&6
     
    30213092LIBADD_DL=
    30223093echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6
    3023 echo "configure:3024: checking for dlopen in -ldl" >&5
     3094echo "configure:3095: checking for dlopen in -ldl" >&5
    30243095ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'`
    30253096if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    30293100LIBS="-ldl  $LIBS"
    30303101cat > conftest.$ac_ext <<EOF
    3031 #line 3032 "configure"
     3102#line 3103 "configure"
    30323103#include "confdefs.h"
    30333104/* Override any gcc2 internal prototype to avoid an error.  */
     
    30403111; return 0; }
    30413112EOF
    3042 if { (eval echo configure:3043: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3113if { (eval echo configure:3114: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    30433114  rm -rf conftest*
    30443115  eval "ac_cv_lib_$ac_lib_var=yes"
     
    30623133  echo "$ac_t""no" 1>&6
    30633134echo $ac_n "checking for dlopen""... $ac_c" 1>&6
    3064 echo "configure:3065: checking for dlopen" >&5
     3135echo "configure:3136: checking for dlopen" >&5
    30653136if eval "test \"`echo '$''{'ac_cv_func_dlopen'+set}'`\" = set"; then
    30663137  echo $ac_n "(cached) $ac_c" 1>&6
    30673138else
    30683139  cat > conftest.$ac_ext <<EOF
    3069 #line 3070 "configure"
     3140#line 3141 "configure"
    30703141#include "confdefs.h"
    30713142/* System header to define __stub macros and hopefully few prototypes,
     
    30903161; return 0; }
    30913162EOF
    3092 if { (eval echo configure:3093: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3163if { (eval echo configure:3164: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    30933164  rm -rf conftest*
    30943165  eval "ac_cv_func_dlopen=yes"
     
    31113182  echo "$ac_t""no" 1>&6
    31123183echo $ac_n "checking for dlopen in -lsvld""... $ac_c" 1>&6
    3113 echo "configure:3114: checking for dlopen in -lsvld" >&5
     3184echo "configure:3185: checking for dlopen in -lsvld" >&5
    31143185ac_lib_var=`echo svld'_'dlopen | sed 'y%./+-%__p_%'`
    31153186if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    31193190LIBS="-lsvld  $LIBS"
    31203191cat > conftest.$ac_ext <<EOF
    3121 #line 3122 "configure"
     3192#line 3193 "configure"
    31223193#include "confdefs.h"
    31233194/* Override any gcc2 internal prototype to avoid an error.  */
     
    31303201; return 0; }
    31313202EOF
    3132 if { (eval echo configure:3133: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3203if { (eval echo configure:3204: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    31333204  rm -rf conftest*
    31343205  eval "ac_cv_lib_$ac_lib_var=yes"
     
    31593230
    31603231echo $ac_n "checking for shl_load""... $ac_c" 1>&6
    3161 echo "configure:3162: checking for shl_load" >&5
     3232echo "configure:3233: checking for shl_load" >&5
    31623233if eval "test \"`echo '$''{'ac_cv_func_shl_load'+set}'`\" = set"; then
    31633234  echo $ac_n "(cached) $ac_c" 1>&6
    31643235else
    31653236  cat > conftest.$ac_ext <<EOF
    3166 #line 3167 "configure"
     3237#line 3238 "configure"
    31673238#include "confdefs.h"
    31683239/* System header to define __stub macros and hopefully few prototypes,
     
    31873258; return 0; }
    31883259EOF
    3189 if { (eval echo configure:3190: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3260if { (eval echo configure:3261: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    31903261  rm -rf conftest*
    31913262  eval "ac_cv_func_shl_load=yes"
     
    32083279  echo "$ac_t""no" 1>&6
    32093280echo $ac_n "checking for shl_load in -ldld""... $ac_c" 1>&6
    3210 echo "configure:3211: checking for shl_load in -ldld" >&5
     3281echo "configure:3282: checking for shl_load in -ldld" >&5
    32113282ac_lib_var=`echo dld'_'shl_load | sed 'y%./+-%__p_%'`
    32123283if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    32163287LIBS="-ldld  $LIBS"
    32173288cat > conftest.$ac_ext <<EOF
    3218 #line 3219 "configure"
     3289#line 3290 "configure"
    32193290#include "confdefs.h"
    32203291/* Override any gcc2 internal prototype to avoid an error.  */
     
    32273298; return 0; }
    32283299EOF
    3229 if { (eval echo configure:3230: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3300if { (eval echo configure:3301: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    32303301  rm -rf conftest*
    32313302  eval "ac_cv_lib_$ac_lib_var=yes"
     
    32553326
    32563327echo $ac_n "checking for dld_link in -ldld""... $ac_c" 1>&6
    3257 echo "configure:3258: checking for dld_link in -ldld" >&5
     3328echo "configure:3329: checking for dld_link in -ldld" >&5
    32583329ac_lib_var=`echo dld'_'dld_link | sed 'y%./+-%__p_%'`
    32593330if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    32633334LIBS="-ldld  $LIBS"
    32643335cat > conftest.$ac_ext <<EOF
    3265 #line 3266 "configure"
     3336#line 3337 "configure"
    32663337#include "confdefs.h"
    32673338/* Override any gcc2 internal prototype to avoid an error.  */
     
    32743345; return 0; }
    32753346EOF
    3276 if { (eval echo configure:3277: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3347if { (eval echo configure:3348: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    32773348  rm -rf conftest*
    32783349  eval "ac_cv_lib_$ac_lib_var=yes"
     
    33053376do
    33063377echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    3307 echo "configure:3308: checking for $ac_func" >&5
     3378echo "configure:3379: checking for $ac_func" >&5
    33083379if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    33093380  echo $ac_n "(cached) $ac_c" 1>&6
    33103381else
    33113382  cat > conftest.$ac_ext <<EOF
    3312 #line 3313 "configure"
     3383#line 3384 "configure"
    33133384#include "confdefs.h"
    33143385/* System header to define __stub macros and hopefully few prototypes,
     
    33333404; return 0; }
    33343405EOF
    3335 if { (eval echo configure:3336: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3406if { (eval echo configure:3407: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    33363407  rm -rf conftest*
    33373408  eval "ac_cv_func_$ac_func=yes"
     
    33613432
    33623433echo $ac_n "checking for _ prefix in compiled symbols""... $ac_c" 1>&6
    3363 echo "configure:3364: checking for _ prefix in compiled symbols" >&5
     3434echo "configure:3435: checking for _ prefix in compiled symbols" >&5
    33643435if eval "test \"`echo '$''{'ac_cv_sys_symbol_underscore'+set}'`\" = set"; then
    33653436  echo $ac_n "(cached) $ac_c" 1>&6
     
    33703441int main(){nm_test_func;return 0;}
    33713442EOF
    3372 if { (eval echo configure:3373: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     3443if { (eval echo configure:3444: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    33733444  # Now try to grab the symbols.
    33743445  ac_nlist=conftest.nm
    3375   if { (eval echo configure:3376: \"$NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist\") 1>&5; (eval $NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist) 2>&5; } && test -s "$ac_nlist"; then
     3446  if { (eval echo configure:3447: \"$NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist\") 1>&5; (eval $NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist) 2>&5; } && test -s "$ac_nlist"; then
    33763447    # See whether the symbols have a leading underscore.
    33773448    if egrep '^. _nm_test_func' "$ac_nlist" >/dev/null; then
     
    34003471     test x"$ac_cv_lib_dl_dlopen" = xyes ; then
    34013472        echo $ac_n "checking whether we have to add an underscore for dlsym""... $ac_c" 1>&6
    3402 echo "configure:3403: checking whether we have to add an underscore for dlsym" >&5
     3473echo "configure:3474: checking whether we have to add an underscore for dlsym" >&5
    34033474if eval "test \"`echo '$''{'libltdl_cv_need_uscore'+set}'`\" = set"; then
    34043475  echo $ac_n "(cached) $ac_c" 1>&6
     
    34093480else
    34103481  cat > conftest.$ac_ext <<EOF
    3411 #line 3412 "configure"
     3482#line 3483 "configure"
    34123483#include "confdefs.h"
    34133484
     
    34563527
    34573528EOF
    3458 if { (eval echo configure:3459: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     3529if { (eval echo configure:3530: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    34593530then
    34603531  libltdl_cv_need_uscore=no
     
    34883559ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
    34893560echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
    3490 echo "configure:3491: checking for $ac_hdr" >&5
     3561echo "configure:3562: checking for $ac_hdr" >&5
    34913562if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    34923563  echo $ac_n "(cached) $ac_c" 1>&6
    34933564else
    34943565  cat > conftest.$ac_ext <<EOF
    3495 #line 3496 "configure"
     3566#include <sys/types.h>
     3567#line 3568 "configure"
    34963568#include "confdefs.h"
    34973569#include <$ac_hdr>
    34983570EOF
    34993571ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    3500 { (eval echo configure:3501: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     3572{ (eval echo configure:3573: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    35013573ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    35023574if test -z "$ac_err"; then
     
    35283600ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
    35293601echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
    3530 echo "configure:3531: checking for $ac_hdr" >&5
     3602echo "configure:3603: checking for $ac_hdr" >&5
    35313603if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    35323604  echo $ac_n "(cached) $ac_c" 1>&6
    35333605else
    35343606  cat > conftest.$ac_ext <<EOF
    3535 #line 3536 "configure"
     3607#include <sys/types.h>
     3608#line 3609 "configure"
    35363609#include "confdefs.h"
    35373610#include <$ac_hdr>
    35383611EOF
    35393612ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    3540 { (eval echo configure:3541: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     3613{ (eval echo configure:3614: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    35413614ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    35423615if test -z "$ac_err"; then
     
    35673640do
    35683641echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    3569 echo "configure:3570: checking for $ac_func" >&5
     3642echo "configure:3643: checking for $ac_func" >&5
    35703643if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    35713644  echo $ac_n "(cached) $ac_c" 1>&6
    35723645else
    35733646  cat > conftest.$ac_ext <<EOF
    3574 #line 3575 "configure"
     3647#line 3648 "configure"
    35753648#include "confdefs.h"
    35763649/* System header to define __stub macros and hopefully few prototypes,
     
    35953668; return 0; }
    35963669EOF
    3597 if { (eval echo configure:3598: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3670if { (eval echo configure:3671: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    35983671  rm -rf conftest*
    35993672  eval "ac_cv_func_$ac_func=yes"
     
    36223695do
    36233696echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    3624 echo "configure:3625: checking for $ac_func" >&5
     3697echo "configure:3698: checking for $ac_func" >&5
    36253698if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    36263699  echo $ac_n "(cached) $ac_c" 1>&6
    36273700else
    36283701  cat > conftest.$ac_ext <<EOF
    3629 #line 3630 "configure"
     3702#line 3703 "configure"
    36303703#include "confdefs.h"
    36313704/* System header to define __stub macros and hopefully few prototypes,
     
    36503723; return 0; }
    36513724EOF
    3652 if { (eval echo configure:3653: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3725if { (eval echo configure:3726: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    36533726  rm -rf conftest*
    36543727  eval "ac_cv_func_$ac_func=yes"
     
    36773750do
    36783751echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    3679 echo "configure:3680: checking for $ac_func" >&5
     3752echo "configure:3753: checking for $ac_func" >&5
    36803753if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    36813754  echo $ac_n "(cached) $ac_c" 1>&6
    36823755else
    36833756  cat > conftest.$ac_ext <<EOF
    3684 #line 3685 "configure"
     3757#line 3758 "configure"
    36853758#include "confdefs.h"
    36863759/* System header to define __stub macros and hopefully few prototypes,
     
    37053778; return 0; }
    37063779EOF
    3707 if { (eval echo configure:3708: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     3780if { (eval echo configure:3781: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    37083781  rm -rf conftest*
    37093782  eval "ac_cv_func_$ac_func=yes"
     
    38073880# Run this file to recreate the current configuration.
    38083881# This directory was configured as follows,
     3882EOF
     3883echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS
     3884cat >> $CONFIG_STATUS <<EOF
    38093885# on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
    38103886#
     
    38323908ac_given_srcdir=$srcdir
    38333909ac_given_INSTALL="$INSTALL"
     3910PATHIFS="$PATH_IFS"
    38343911
    38353912trap 'rm -fr `echo "Makefile config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
     
    38423919$ac_vpsub
    38433920$extrasub
     3921s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g
    38443922s%@SHELL@%$SHELL%g
    38453923s%@CFLAGS@%$CFLAGS%g
     
    38653943s%@infodir@%$infodir%g
    38663944s%@mandir@%$mandir%g
     3945s%@PATH_IFS@%$PATH_IFS%g
     3946s%@EXEEXT@%$EXEEXT%g
    38673947s%@mkinstalldirs@%$mkinstalldirs%g
    38683948s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
     
    38933973s%@LN_S@%$LN_S%g
    38943974s%@OBJEXT@%$OBJEXT%g
    3895 s%@EXEEXT@%$EXEEXT%g
    38963975s%@RANLIB@%$RANLIB%g
    38973976s%@STRIP@%$STRIP%g
     
    39784057      if test -z "$ac_dots"; then top_srcdir=.
    39794058      else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
    3980   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
     4059  /* | [A-Za-z]:*)
     4060    srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
    39814061  *) # Relative path.
    39824062    srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
     
    39854065
    39864066  case "$ac_given_INSTALL" in
    3987   [/$]*) INSTALL="$ac_given_INSTALL" ;;
     4067  [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;;
    39884068  *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
    39894069  esac
     
    39984078  esac
    39994079
    4000   ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
     4080  ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%$PATHIFS% $ac_given_srcdir/%g"`
    40014081  sed -e "$ac_comsub
    40024082s%@configure_input@%$configure_input%g
     
    40454125
    40464126  rm -f conftest.frag conftest.in conftest.out
    4047   ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
     4127# kso the other way around might work better with drive letters and such.
     4128#  ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
     4129  ac_file_inputs=`echo $ac_file_in|sed -e "s%:% $ac_given_srcdir/%g" -e "s%^%$ac_given_srcdir/%" `
    40484130  cat $ac_file_inputs > conftest.in
    40494131
Note: See TracChangeset for help on using the changeset viewer.