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

Regenerated configure on OS/2.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gcc/boehm-gc/configure

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r79 r80  
    554554fi
    555555
     556echo $ac_n "checking for path separator""... $ac_c" 1>&6
     557echo "configure:558: checking for path separator" >&5
     558# Filter path to get backslahes into forwardslashes
     559case "`uname -s 2> /dev/null`" in
     560OS/2)
     561  PATH=`echo -E "$PATH" | sed 's+\\\\+/+g'`
     562  PATH_IFS=';'
     563  ;;
     564*)
     565  PATH_IFS=':'
     566  ;;
     567esac
     568echo "$ac_t""${PATH_IFS}" 1>&6
     569
     570echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6
     571echo "configure:572: checking for Cygwin environment" >&5
     572if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then
     573  echo $ac_n "(cached) $ac_c" 1>&6
     574else
     575  cat > conftest.$ac_ext <<EOF
     576#line 577 "configure"
     577#include "confdefs.h"
     578
     579int main() {
     580
     581#ifndef __CYGWIN__
     582#define __CYGWIN__ __CYGWIN32__
     583#endif
     584return __CYGWIN__;
     585; return 0; }
     586EOF
     587if { (eval echo configure:588: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     588  rm -rf conftest*
     589  ac_cv_cygwin=yes
     590else
     591  echo "configure: failed program was:" >&5
     592  cat conftest.$ac_ext >&5
     593  rm -rf conftest*
     594  ac_cv_cygwin=no
     595fi
     596rm -f conftest*
     597rm -f conftest*
     598fi
     599
     600echo "$ac_t""$ac_cv_cygwin" 1>&6
     601CYGWIN=
     602test "$ac_cv_cygwin" = yes && CYGWIN=yes
     603echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6
     604echo "configure:605: checking for mingw32 environment" >&5
     605if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then
     606  echo $ac_n "(cached) $ac_c" 1>&6
     607else
     608  cat > conftest.$ac_ext <<EOF
     609#line 610 "configure"
     610#include "confdefs.h"
     611
     612int main() {
     613return __MINGW32__;
     614; return 0; }
     615EOF
     616if { (eval echo configure:617: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     617  rm -rf conftest*
     618  ac_cv_mingw32=yes
     619else
     620  echo "configure: failed program was:" >&5
     621  cat conftest.$ac_ext >&5
     622  rm -rf conftest*
     623  ac_cv_mingw32=no
     624fi
     625rm -f conftest*
     626rm -f conftest*
     627fi
     628
     629echo "$ac_t""$ac_cv_mingw32" 1>&6
     630MINGW32=
     631test "$ac_cv_mingw32" = yes && MINGW32=yes
     632echo $ac_n "checking for EMX/OS2 environment""... $ac_c" 1>&6
     633echo "configure:634: checking for EMX/OS2 environment" >&5
     634if eval "test \"`echo '$''{'ac_cv_emxos2'+set}'`\" = set"; then
     635  echo $ac_n "(cached) $ac_c" 1>&6
     636else
     637  : ${CC=gcc.exe}
     638cat > conftest.$ac_ext <<EOF
     639#line 640 "configure"
     640#include "confdefs.h"
     641
     642int main() {
     643return __EMX__;
     644; return 0; }
     645EOF
     646if { (eval echo configure:647: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     647  rm -rf conftest*
     648  ac_cv_emxos2=yes
     649else
     650  echo "configure: failed program was:" >&5
     651  cat conftest.$ac_ext >&5
     652  rm -rf conftest*
     653  ac_cv_emxos2=no
     654fi
     655rm -f conftest*
     656rm -f conftest*
     657fi
     658
     659echo "$ac_t""$ac_cv_emxos2" 1>&6
     660if eval "test \"`echo '$''{'ac_cv_libpre'+set}'`\" = set"; then
     661  echo $ac_n "(cached) $ac_c" 1>&6
     662else
     663  if test "$ac_cv_emxos2" = yes ; then
     664  ac_cv_libpre=
     665else
     666  ac_cv_libpre=lib
     667fi
     668
     669fi
     670
     671EMXOS2=
     672test "$ac_cv_emxos2" = yes && EMXOS2=yes
     673
     674
     675
     676echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
     677echo "configure:678: checking for executable suffix" >&5
     678if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then
     679  echo $ac_n "(cached) $ac_c" 1>&6
     680else
     681  if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then
     682  ac_cv_exeext=.exe
     683else
     684  rm -f conftest*
     685  echo 'int main () { return 0; }' > conftest.$ac_ext
     686  ac_cv_exeext=
     687  if { (eval echo configure:688: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
     688    for file in conftest.*; do
     689      case $file in
     690      *.c | *.o | *.obj) ;;
     691      *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;
     692      esac
     693    done
     694  else
     695    { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; }
     696  fi
     697  rm -f conftest*
     698  test x"${ac_cv_exeext}" = x && ac_cv_exeext=no
     699fi
     700fi
     701
     702EXEEXT=""
     703test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext}
     704echo "$ac_t""${ac_cv_exeext}" 1>&6
     705ac_exeext=$EXEEXT
     706
    556707
    557708
     
    594745# ./install, which can be erroneously created by make from ./install.sh.
    595746echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    596 echo "configure:597: checking for a BSD compatible install" >&5
     747echo "configure:748: checking for a BSD compatible install" >&5
    597748if test -z "$INSTALL"; then
    598749if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
    599750  echo $ac_n "(cached) $ac_c" 1>&6
    600751else
    601     IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS=":"
     752    IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS"
    602753  for ac_dir in $PATH; do
    603754    # Account for people who put trailing slashes in PATH elements.
    604755    case "$ac_dir/" in
    605756    /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
     757    # We reject the install program from OS/2 or W3.1
     758    */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;;
    606759    *)
    607760      # OSF1 and SCO ODT 3.0 have their own names for install.
     
    609762      # by default.
    610763      for ac_prog in ginstall scoinst install; do
    611         if test -f $ac_dir/$ac_prog; then
     764        if test -f $ac_dir/$ac_prog$ac_exeext; then
    612765          if test $ac_prog = install &&
    613766            grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
     
    615768            :
    616769          else
    617             ac_cv_path_install="$ac_dir/$ac_prog -c"
     770            ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c"
    618771            break 2
    619772          fi
     
    647800
    648801echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    649 echo "configure:650: checking whether build environment is sane" >&5
     802echo "configure:803: checking whether build environment is sane" >&5
    650803# Just in case
    651804sleep 1
     
    704857
    705858echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    706 echo "configure:707: checking whether ${MAKE-make} sets \${MAKE}" >&5
     859echo "configure:860: checking whether ${MAKE-make} sets \${MAKE}" >&5
    707860set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    708861if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    736889fi
    737890
    738 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6
    739 echo "configure:740: checking for Cygwin environment" >&5
    740 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then
    741   echo $ac_n "(cached) $ac_c" 1>&6
    742 else
    743   cat > conftest.$ac_ext <<EOF
    744 #line 745 "configure"
    745 #include "confdefs.h"
    746 
    747 int main() {
    748 
    749 #ifndef __CYGWIN__
    750 #define __CYGWIN__ __CYGWIN32__
    751 #endif
    752 return __CYGWIN__;
    753 ; return 0; }
    754 EOF
    755 if { (eval echo configure:756: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    756   rm -rf conftest*
    757   ac_cv_cygwin=yes
    758 else
    759   echo "configure: failed program was:" >&5
    760   cat conftest.$ac_ext >&5
    761   rm -rf conftest*
    762   ac_cv_cygwin=no
    763 fi
    764 rm -f conftest*
    765 rm -f conftest*
    766 fi
    767 
    768 echo "$ac_t""$ac_cv_cygwin" 1>&6
    769 CYGWIN=
    770 test "$ac_cv_cygwin" = yes && CYGWIN=yes
    771 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6
    772 echo "configure:773: checking for mingw32 environment" >&5
    773 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then
    774   echo $ac_n "(cached) $ac_c" 1>&6
    775 else
    776   cat > conftest.$ac_ext <<EOF
    777 #line 778 "configure"
    778 #include "confdefs.h"
    779 
    780 int main() {
    781 return __MINGW32__;
    782 ; return 0; }
    783 EOF
    784 if { (eval echo configure:785: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    785   rm -rf conftest*
    786   ac_cv_mingw32=yes
    787 else
    788   echo "configure: failed program was:" >&5
    789   cat conftest.$ac_ext >&5
    790   rm -rf conftest*
    791   ac_cv_mingw32=no
    792 fi
    793 rm -f conftest*
    794 rm -f conftest*
    795 fi
    796 
    797 echo "$ac_t""$ac_cv_mingw32" 1>&6
    798 MINGW32=
    799 test "$ac_cv_mingw32" = yes && MINGW32=yes
    800891
    801892# Check whether --enable-multilib or --disable-multilib was given.
     
    893984
    894985echo $ac_n "checking host system type""... $ac_c" 1>&6
    895 echo "configure:896: checking host system type" >&5
     986echo "configure:987: checking host system type" >&5
    896987
    897988host_alias=$host
     
    9141005
    9151006echo $ac_n "checking target system type""... $ac_c" 1>&6
    916 echo "configure:917: checking target system type" >&5
     1007echo "configure:1008: checking target system type" >&5
    9171008
    9181009target_alias=$target
     
    9321023
    9331024echo $ac_n "checking build system type""... $ac_c" 1>&6
    934 echo "configure:935: checking build system type" >&5
     1025echo "configure:1026: checking build system type" >&5
    9351026
    9361027build_alias=$build
     
    9721063missing_dir=`cd $ac_aux_dir && pwd`
    9731064echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    974 echo "configure:975: checking for working aclocal" >&5
     1065echo "configure:1066: checking for working aclocal" >&5
    9751066# Run test in a subshell; some versions of sh will print an error if
    9761067# an executable is not found, even if stderr is redirected.
     
    9851076
    9861077echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    987 echo "configure:988: checking for working autoconf" >&5
     1078echo "configure:1079: checking for working autoconf" >&5
    9881079# Run test in a subshell; some versions of sh will print an error if
    9891080# an executable is not found, even if stderr is redirected.
     
    9981089
    9991090echo $ac_n "checking for working automake""... $ac_c" 1>&6
    1000 echo "configure:1001: checking for working automake" >&5
     1091echo "configure:1092: checking for working automake" >&5
    10011092# Run test in a subshell; some versions of sh will print an error if
    10021093# an executable is not found, even if stderr is redirected.
     
    10111102
    10121103echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    1013 echo "configure:1014: checking for working autoheader" >&5
     1104echo "configure:1105: checking for working autoheader" >&5
    10141105# Run test in a subshell; some versions of sh will print an error if
    10151106# an executable is not found, even if stderr is redirected.
     
    10241115
    10251116echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    1026 echo "configure:1027: checking for working makeinfo" >&5
     1117echo "configure:1118: checking for working makeinfo" >&5
    10271118# Run test in a subshell; some versions of sh will print an error if
    10281119# an executable is not found, even if stderr is redirected.
     
    10501141set dummy gcc; ac_word=$2
    10511142echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1052 echo "configure:1053: checking for $ac_word" >&5
     1143echo "configure:1144: checking for $ac_word" >&5
    10531144if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    10541145  echo $ac_n "(cached) $ac_c" 1>&6
     
    10571148  ac_cv_prog_CC="$CC" # Let the user override the test.
    10581149else
    1059   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1150  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    10601151  ac_dummy="$PATH"
    10611152  for ac_dir in $ac_dummy; do
    10621153    test -z "$ac_dir" && ac_dir=.
    1063     if test -f $ac_dir/$ac_word; then
     1154    if test -f $ac_dir/$ac_word -o \
     1155            -f $ac_dir/$ac_word$ac_exeext ; then
    10641156      ac_cv_prog_CC="gcc"
    10651157      break
     
    10801172set dummy cc; ac_word=$2
    10811173echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1082 echo "configure:1083: checking for $ac_word" >&5
     1174echo "configure:1175: checking for $ac_word" >&5
    10831175if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    10841176  echo $ac_n "(cached) $ac_c" 1>&6
     
    10871179  ac_cv_prog_CC="$CC" # Let the user override the test.
    10881180else
    1089   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1181  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    10901182  ac_prog_rejected=no
    10911183  ac_dummy="$PATH"
    10921184  for ac_dir in $ac_dummy; do
    10931185    test -z "$ac_dir" && ac_dir=.
    1094     if test -f $ac_dir/$ac_word; then
    1095       if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
     1186    if test -f $ac_dir/$ac_word -o \
     1187            -f $ac_dir/$ac_word$ac_exeext ; then
     1188      if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \
     1189               "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then
    10961190        ac_prog_rejected=yes
    10971191        continue
     
    11291223
    11301224echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    1131 echo "configure:1132: checking whether we are using GNU C" >&5
     1225echo "configure:1226: checking whether we are using GNU C" >&5
    11321226if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    11331227  echo $ac_n "(cached) $ac_c" 1>&6
     
    11381232#endif
    11391233EOF
    1140 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1141: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1234if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1235: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
    11411235  ac_cv_prog_gcc=yes
    11421236else
     
    11531247  CFLAGS=
    11541248  echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    1155 echo "configure:1156: checking whether ${CC-cc} accepts -g" >&5
     1249echo "configure:1250: checking whether ${CC-cc} accepts -g" >&5
    11561250if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    11571251  echo $ac_n "(cached) $ac_c" 1>&6
     
    11901284set dummy $ac_prog; ac_word=$2
    11911285echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1192 echo "configure:1193: checking for $ac_word" >&5
     1286echo "configure:1287: checking for $ac_word" >&5
    11931287if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then
    11941288  echo $ac_n "(cached) $ac_c" 1>&6
     
    11971291  ac_cv_prog_CXX="$CXX" # Let the user override the test.
    11981292else
    1199   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1293  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    12001294  ac_dummy="$PATH"
    12011295  for ac_dir in $ac_dummy; do
    12021296    test -z "$ac_dir" && ac_dir=.
    1203     if test -f $ac_dir/$ac_word; then
     1297    if test -f $ac_dir/$ac_word -o \
     1298            -f $ac_dir/$ac_word$ac_exeext ; then
    12041299      ac_cv_prog_CXX="$ac_prog"
    12051300      break
     
    12231318
    12241319echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6
    1225 echo "configure:1226: checking whether we are using GNU C++" >&5
     1320echo "configure:1321: checking whether we are using GNU C++" >&5
    12261321if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then
    12271322  echo $ac_n "(cached) $ac_c" 1>&6
     
    12321327#endif
    12331328EOF
    1234 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1235: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1329if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1330: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
    12351330  ac_cv_prog_gxx=yes
    12361331else
     
    12471342  CXXFLAGS=
    12481343  echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6
    1249 echo "configure:1250: checking whether ${CXX-g++} accepts -g" >&5
     1344echo "configure:1345: checking whether ${CXX-g++} accepts -g" >&5
    12501345if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then
    12511346  echo $ac_n "(cached) $ac_c" 1>&6
     
    12801375# be run before AC_CANONICAL_HOST.
    12811376echo $ac_n "checking build system type""... $ac_c" 1>&6
    1282 echo "configure:1283: checking build system type" >&5
     1377echo "configure:1378: checking build system type" >&5
    12831378
    12841379build_alias=$build
     
    13011396set dummy ${ac_tool_prefix}as; ac_word=$2
    13021397echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1303 echo "configure:1304: checking for $ac_word" >&5
     1398echo "configure:1399: checking for $ac_word" >&5
    13041399if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then
    13051400  echo $ac_n "(cached) $ac_c" 1>&6
     
    13081403  ac_cv_prog_AS="$AS" # Let the user override the test.
    13091404else
    1310   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1405  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    13111406  ac_dummy="$PATH"
    13121407  for ac_dir in $ac_dummy; do
    13131408    test -z "$ac_dir" && ac_dir=.
    1314     if test -f $ac_dir/$ac_word; then
     1409    if test -f $ac_dir/$ac_word -o \
     1410            -f $ac_dir/$ac_word$ac_exeext ; then
    13151411      ac_cv_prog_AS="${ac_tool_prefix}as"
    13161412      break
     
    13331429set dummy ${ac_tool_prefix}ar; ac_word=$2
    13341430echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1335 echo "configure:1336: checking for $ac_word" >&5
     1431echo "configure:1432: checking for $ac_word" >&5
    13361432if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then
    13371433  echo $ac_n "(cached) $ac_c" 1>&6
     
    13401436  ac_cv_prog_AR="$AR" # Let the user override the test.
    13411437else
    1342   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1438  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    13431439  ac_dummy="$PATH"
    13441440  for ac_dir in $ac_dummy; do
    13451441    test -z "$ac_dir" && ac_dir=.
    1346     if test -f $ac_dir/$ac_word; then
     1442    if test -f $ac_dir/$ac_word -o \
     1443            -f $ac_dir/$ac_word$ac_exeext ; then
    13471444      ac_cv_prog_AR="${ac_tool_prefix}ar"
    13481445      break
     
    13651462set dummy ${ac_tool_prefix}ranlib; ac_word=$2
    13661463echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1367 echo "configure:1368: checking for $ac_word" >&5
     1464echo "configure:1465: checking for $ac_word" >&5
    13681465if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    13691466  echo $ac_n "(cached) $ac_c" 1>&6
     
    13721469  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
    13731470else
    1374   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1471  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    13751472  ac_dummy="$PATH"
    13761473  for ac_dir in $ac_dummy; do
    13771474    test -z "$ac_dir" && ac_dir=.
    1378     if test -f $ac_dir/$ac_word; then
     1475    if test -f $ac_dir/$ac_word -o \
     1476            -f $ac_dir/$ac_word$ac_exeext ; then
    13791477      ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
    13801478      break
     
    13971495set dummy ranlib; ac_word=$2
    13981496echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1399 echo "configure:1400: checking for $ac_word" >&5
     1497echo "configure:1498: checking for $ac_word" >&5
    14001498if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    14011499  echo $ac_n "(cached) $ac_c" 1>&6
     
    14041502  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
    14051503else
    1406   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1504  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    14071505  ac_dummy="$PATH"
    14081506  for ac_dir in $ac_dummy; do
    14091507    test -z "$ac_dir" && ac_dir=.
    1410     if test -f $ac_dir/$ac_word; then
     1508    if test -f $ac_dir/$ac_word -o \
     1509            -f $ac_dir/$ac_word$ac_exeext ; then
    14111510      ac_cv_prog_RANLIB="ranlib"
    14121511      break
     
    14421541# ./install, which can be erroneously created by make from ./install.sh.
    14431542echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    1444 echo "configure:1445: checking for a BSD compatible install" >&5
     1543echo "configure:1544: checking for a BSD compatible install" >&5
    14451544if test -z "$INSTALL"; then
    14461545if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
    14471546  echo $ac_n "(cached) $ac_c" 1>&6
    14481547else
    1449     IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS=":"
     1548    IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS"
    14501549  for ac_dir in $PATH; do
    14511550    # Account for people who put trailing slashes in PATH elements.
    14521551    case "$ac_dir/" in
    14531552    /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
     1553    # We reject the install program from OS/2 or W3.1
     1554    */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;;
    14541555    *)
    14551556      # OSF1 and SCO ODT 3.0 have their own names for install.
     
    14571558      # by default.
    14581559      for ac_prog in ginstall scoinst install; do
    1459         if test -f $ac_dir/$ac_prog; then
     1560        if test -f $ac_dir/$ac_prog$ac_exeext; then
    14601561          if test $ac_prog = install &&
    14611562            grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
     
    14631564            :
    14641565          else
    1465             ac_cv_path_install="$ac_dir/$ac_prog -c"
     1566            ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c"
    14661567            break 2
    14671568          fi
     
    14961597
    14971598echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6
    1498 echo "configure:1499: checking whether to enable maintainer-specific portions of Makefiles" >&5
     1599echo "configure:1600: checking whether to enable maintainer-specific portions of Makefiles" >&5
    14991600    # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
    15001601if test "${enable_maintainer_mode+set}" = set; then
     
    15331634 
    15341635
     1636
    15351637echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
    1536 echo "configure:1537: checking for executable suffix" >&5
     1638echo "configure:1639: checking for executable suffix" >&5
    15371639if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then
    15381640  echo $ac_n "(cached) $ac_c" 1>&6
    15391641else
    1540   if test "$CYGWIN" = yes || test "$MINGW32" = yes; then
     1642  if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then
    15411643  ac_cv_exeext=.exe
    15421644else
     
    15441646  echo 'int main () { return 0; }' > conftest.$ac_ext
    15451647  ac_cv_exeext=
    1546   if { (eval echo configure:1547: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
     1648  if { (eval echo configure:1649: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
    15471649    for file in conftest.*; do
    15481650      case $file in
     
    16661768  # Check if gcc -print-prog-name=ld gives a path.
    16671769  echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6
    1668 echo "configure:1669: checking for ld used by GCC" >&5
     1770echo "configure:1771: checking for ld used by GCC" >&5
    16691771  case $host in
    16701772  *-*-mingw*)
     
    16961798elif test "$with_gnu_ld" = yes; then
    16971799  echo $ac_n "checking for GNU ld""... $ac_c" 1>&6
    1698 echo "configure:1699: checking for GNU ld" >&5
     1800echo "configure:1801: checking for GNU ld" >&5
    16991801else
    17001802  echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6
    1701 echo "configure:1702: checking for non-GNU ld" >&5
     1803echo "configure:1804: checking for non-GNU ld" >&5
    17021804fi
    17031805if eval "test \"`echo '$''{'lt_cv_path_LD'+set}'`\" = set"; then
     
    17341836test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; }
    17351837echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6
    1736 echo "configure:1737: checking if the linker ($LD) is GNU ld" >&5
     1838echo "configure:1839: checking if the linker ($LD) is GNU ld" >&5
    17371839if eval "test \"`echo '$''{'lt_cv_prog_gnu_ld'+set}'`\" = set"; then
    17381840  echo $ac_n "(cached) $ac_c" 1>&6
     
    17511853
    17521854echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6
    1753 echo "configure:1754: checking for $LD option to reload object files" >&5
     1855echo "configure:1856: checking for $LD option to reload object files" >&5
    17541856if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then
    17551857  echo $ac_n "(cached) $ac_c" 1>&6
     
    17631865
    17641866echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6
    1765 echo "configure:1766: checking for BSD-compatible nm" >&5
     1867echo "configure:1868: checking for BSD-compatible nm" >&5
    17661868if eval "test \"`echo '$''{'lt_cv_path_NM'+set}'`\" = set"; then
    17671869  echo $ac_n "(cached) $ac_c" 1>&6
     
    18011903
    18021904echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
    1803 echo "configure:1804: checking whether ln -s works" >&5
     1905echo "configure:1906: checking whether ln -s works" >&5
    18041906if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
    18051907  echo $ac_n "(cached) $ac_c" 1>&6
     
    18111913  ac_cv_prog_LN_S="ln -s"
    18121914else
    1813   ac_cv_prog_LN_S=ln
    1814 fi
     1915  echo A > conftestdata;
     1916  if ln conftestdata conftestdata2 2>/dev/null; then
     1917    ac_cv_prog_LN_S=ln
     1918  else
     1919    ac_cv_prog_LN_S=cp
     1920  fi
     1921fi
     1922rm -f conftestdata*
    18151923fi
    18161924LN_S="$ac_cv_prog_LN_S"
     
    18221930
    18231931echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6
    1824 echo "configure:1825: checking how to recognise dependant libraries" >&5
     1932echo "configure:1933: checking how to recognise dependant libraries" >&5
    18251933if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then
    18261934  echo $ac_n "(cached) $ac_c" 1>&6
     
    19862094
    19872095echo $ac_n "checking for object suffix""... $ac_c" 1>&6
    1988 echo "configure:1989: checking for object suffix" >&5
     2096echo "configure:2097: checking for object suffix" >&5
    19892097if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then
    19902098  echo $ac_n "(cached) $ac_c" 1>&6
     
    19922100  rm -f conftest*
    19932101echo 'int i = 1;' > conftest.$ac_ext
    1994 if { (eval echo configure:1995: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     2102if { (eval echo configure:2103: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    19952103  for ac_file in conftest.*; do
    19962104    case $ac_file in
     
    20162124  if test "$file_magic_cmd" = '$MAGIC_CMD'; then
    20172125    echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6
    2018 echo "configure:2019: checking for ${ac_tool_prefix}file" >&5
     2126echo "configure:2127: checking for ${ac_tool_prefix}file" >&5
    20192127if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then
    20202128  echo $ac_n "(cached) $ac_c" 1>&6
     
    20782186  if test -n "$ac_tool_prefix"; then
    20792187    echo $ac_n "checking for file""... $ac_c" 1>&6
    2080 echo "configure:2081: checking for file" >&5
     2188echo "configure:2189: checking for file" >&5
    20812189if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then
    20822190  echo $ac_n "(cached) $ac_c" 1>&6
     
    21492257set dummy ${ac_tool_prefix}ranlib; ac_word=$2
    21502258echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2151 echo "configure:2152: checking for $ac_word" >&5
     2259echo "configure:2260: checking for $ac_word" >&5
    21522260if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    21532261  echo $ac_n "(cached) $ac_c" 1>&6
     
    21562264  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
    21572265else
    2158   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2266  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    21592267  ac_dummy="$PATH"
    21602268  for ac_dir in $ac_dummy; do
    21612269    test -z "$ac_dir" && ac_dir=.
    2162     if test -f $ac_dir/$ac_word; then
     2270    if test -f $ac_dir/$ac_word -o \
     2271            -f $ac_dir/$ac_word$ac_exeext ; then
    21632272      ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
    21642273      break
     
    21812290set dummy ranlib; ac_word=$2
    21822291echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2183 echo "configure:2184: checking for $ac_word" >&5
     2292echo "configure:2293: checking for $ac_word" >&5
    21842293if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    21852294  echo $ac_n "(cached) $ac_c" 1>&6
     
    21882297  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
    21892298else
    2190   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2299  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    21912300  ac_dummy="$PATH"
    21922301  for ac_dir in $ac_dummy; do
    21932302    test -z "$ac_dir" && ac_dir=.
    2194     if test -f $ac_dir/$ac_word; then
     2303    if test -f $ac_dir/$ac_word -o \
     2304            -f $ac_dir/$ac_word$ac_exeext ; then
    21952305      ac_cv_prog_RANLIB="ranlib"
    21962306      break
     
    22162326set dummy ${ac_tool_prefix}strip; ac_word=$2
    22172327echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2218 echo "configure:2219: checking for $ac_word" >&5
     2328echo "configure:2329: checking for $ac_word" >&5
    22192329if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
    22202330  echo $ac_n "(cached) $ac_c" 1>&6
     
    22232333  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
    22242334else
    2225   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2335  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    22262336  ac_dummy="$PATH"
    22272337  for ac_dir in $ac_dummy; do
    22282338    test -z "$ac_dir" && ac_dir=.
    2229     if test -f $ac_dir/$ac_word; then
     2339    if test -f $ac_dir/$ac_word -o \
     2340            -f $ac_dir/$ac_word$ac_exeext ; then
    22302341      ac_cv_prog_STRIP="${ac_tool_prefix}strip"
    22312342      break
     
    22482359set dummy strip; ac_word=$2
    22492360echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2250 echo "configure:2251: checking for $ac_word" >&5
     2361echo "configure:2362: checking for $ac_word" >&5
    22512362if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
    22522363  echo $ac_n "(cached) $ac_c" 1>&6
     
    22552366  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
    22562367else
    2257   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2368  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    22582369  ac_dummy="$PATH"
    22592370  for ac_dir in $ac_dummy; do
    22602371    test -z "$ac_dir" && ac_dir=.
    2261     if test -f $ac_dir/$ac_word; then
     2372    if test -f $ac_dir/$ac_word -o \
     2373            -f $ac_dir/$ac_word$ac_exeext ; then
    22622374      ac_cv_prog_STRIP="strip"
    22632375      break
     
    23152427*-*-irix6*)
    23162428  # Find out which ABI we are using.
    2317   echo '#line 2318 "configure"' > conftest.$ac_ext
    2318   if { (eval echo configure:2319: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     2429  echo '#line 2430 "configure"' > conftest.$ac_ext
     2430  if { (eval echo configure:2431: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    23192431    case `/usr/bin/file conftest.$ac_objext` in
    23202432    *32-bit*)
     
    23372449  CFLAGS="$CFLAGS -belf"
    23382450  echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6
    2339 echo "configure:2340: checking whether the C compiler needs -belf" >&5
     2451echo "configure:2452: checking whether the C compiler needs -belf" >&5
    23402452if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then
    23412453  echo $ac_n "(cached) $ac_c" 1>&6
     
    23502462
    23512463     cat > conftest.$ac_ext <<EOF
    2352 #line 2353 "configure"
     2464#line 2465 "configure"
    23532465#include "confdefs.h"
    23542466
     
    23572469; return 0; }
    23582470EOF
    2359 if { (eval echo configure:2360: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     2471if { (eval echo configure:2472: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    23602472  rm -rf conftest*
    23612473  lt_cv_cc_needs_belf=yes
     
    23872499
    23882500echo $ac_n "checking how to run the C++ preprocessor""... $ac_c" 1>&6
    2389 echo "configure:2390: checking how to run the C++ preprocessor" >&5
     2501echo "configure:2502: checking how to run the C++ preprocessor" >&5
    23902502if test -z "$CXXCPP"; then
    23912503if eval "test \"`echo '$''{'ac_cv_prog_CXXCPP'+set}'`\" = set"; then
     
    24002512  CXXCPP="${CXX-g++} -E"
    24012513  cat > conftest.$ac_ext <<EOF
    2402 #line 2403 "configure"
     2514#include <sys/types.h>
     2515#line 2516 "configure"
    24032516#include "confdefs.h"
    24042517#include <stdlib.h>
    24052518EOF
    24062519ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2407 { (eval echo configure:2408: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2520{ (eval echo configure:2521: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    24082521ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    24092522if test -z "$ac_err"; then
     
    25522665
    25532666echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6
    2554 echo "configure:2555: checking whether to enable maintainer-specific portions of Makefiles" >&5
     2667echo "configure:2668: checking whether to enable maintainer-specific portions of Makefiles" >&5
    25552668    # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
    25562669if test "${enable_maintainer_mode+set}" = set; then
     
    25842697 
    25852698
     2699
    25862700echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
    2587 echo "configure:2588: checking for executable suffix" >&5
     2701echo "configure:2702: checking for executable suffix" >&5
    25882702if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then
    25892703  echo $ac_n "(cached) $ac_c" 1>&6
    25902704else
    2591   if test "$CYGWIN" = yes || test "$MINGW32" = yes; then
     2705  if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then
    25922706  ac_cv_exeext=.exe
    25932707else
     
    25952709  echo 'int main () { return 0; }' > conftest.$ac_ext
    25962710  ac_cv_exeext=
    2597   if { (eval echo configure:2598: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
     2711  if { (eval echo configure:2712: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
    25982712    for file in conftest.*; do
    25992713      case $file in
     
    26182732
    26192733echo $ac_n "checking for thread model used by GCC""... $ac_c" 1>&6
    2620 echo "configure:2621: checking for thread model used by GCC" >&5
     2734echo "configure:2735: checking for thread model used by GCC" >&5
    26212735THREADS=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'`
    26222736if test -z "$THREADS"; then
     
    27492863
    27502864echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6
    2751 echo "configure:2752: checking for dlopen in -ldl" >&5
     2865echo "configure:2866: checking for dlopen in -ldl" >&5
    27522866ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'`
    27532867if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    27572871LIBS="-ldl  $LIBS"
    27582872cat > conftest.$ac_ext <<EOF
    2759 #line 2760 "configure"
     2873#line 2874 "configure"
    27602874#include "confdefs.h"
    27612875/* Override any gcc2 internal prototype to avoid an error.  */
     
    27682882; return 0; }
    27692883EOF
    2770 if { (eval echo configure:2771: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     2884if { (eval echo configure:2885: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    27712885  rm -rf conftest*
    27722886  eval "ac_cv_lib_$ac_lib_var=yes"
     
    30853199# Protect against shell expansion while executing Makefile rules.
    30863200# Protect against Makefile macro expansion.
    3087 #
    3088 # If the first sed substitution is executed (which looks for macros that
    3089 # take arguments), then we branch to the quote section.  Otherwise,
    3090 # look for a macro that doesn't take arguments.
    3091 cat >confdef2opt.sed <<\_ACEOF
    3092 t clear
    3093 : clear
    3094 s,^[    ]*#[    ]*define[       ][      ]*\([^  (][^    (]*([^)]*)\)[   ]*\(.*\),-D\1=\2,g
    3095 t quote
    3096 s,^[    ]*#[    ]*define[       ][      ]*\([^  ][^     ]*\)[   ]*\(.*\),-D\1=\2,g
    3097 t quote
    3098 d
    3099 : quote
    3100 s,[     `~#$^&*(){}\\|;'"<>?],\\&,g
    3101 s,\[,\\&,g
    3102 s,\],\\&,g
    3103 s,\$,$$,g
    3104 p
    3105 _ACEOF
    3106 # We use echo to avoid assuming a particular line-breaking character.
    3107 # The extra dot is to prevent the shell from consuming trailing
    3108 # line-breaks from the sub-command output.  A line-break within
    3109 # single-quotes doesn't work because, if this script is created in a
    3110 # platform that uses two characters for line-breaks (e.g., DOS), tr
    3111 # would break.
    3112 ac_LF_and_DOT=`echo; echo .`
    3113 DEFS=`sed -n -f confdef2opt.sed confdefs.h | tr "$ac_LF_and_DOT" ' .'`
    3114 rm -f confdef2opt.sed
     3201cat > conftest.defs <<\EOF
     3202s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%-D\1=\2%g
     3203s%[     `~#$^&*(){}\\|;'"<>?]%\\&%g
     3204s%\[%\\&%g
     3205s%\]%\\&%g
     3206s%\$%$$%g
     3207EOF
     3208DEFS=`sed -f conftest.defs confdefs.h | tr '\012\015' '  '`
     3209rm -f conftest.defs
    31153210
    31163211
     
    31253220# Run this file to recreate the current configuration.
    31263221# This directory was configured as follows,
     3222EOF
     3223echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS
     3224cat >> $CONFIG_STATUS <<EOF
    31273225# on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
    31283226#
     
    31503248ac_given_srcdir=$srcdir
    31513249ac_given_INSTALL="$INSTALL"
     3250PATHIFS="$PATH_IFS"
    31523251
    31533252trap 'rm -fr `echo "Makefile include/Makefile" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
     
    31603259$ac_vpsub
    31613260$extrasub
     3261s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g
    31623262s%@SHELL@%$SHELL%g
    31633263s%@CFLAGS@%$CFLAGS%g
     
    31833283s%@infodir@%$infodir%g
    31843284s%@mandir@%$mandir%g
     3285s%@PATH_IFS@%$PATH_IFS%g
     3286s%@EXEEXT@%$EXEEXT%g
    31853287s%@gc_basedir@%$gc_basedir%g
    31863288s%@host@%$host%g
     
    32193321s%@MAINTAINER_MODE_FALSE@%$MAINTAINER_MODE_FALSE%g
    32203322s%@MAINT@%$MAINT%g
    3221 s%@EXEEXT@%$EXEEXT%g
    32223323s%@GC_CFLAGS@%$GC_CFLAGS%g
    32233324s%@LN_S@%$LN_S%g
     
    33053406      if test -z "$ac_dots"; then top_srcdir=.
    33063407      else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
    3307   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
     3408  /* | [A-Za-z]:*)
     3409    srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
    33083410  *) # Relative path.
    33093411    srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
     
    33123414
    33133415  case "$ac_given_INSTALL" in
    3314   [/$]*) INSTALL="$ac_given_INSTALL" ;;
     3416  [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;;
    33153417  *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
    33163418  esac
     
    33253427  esac
    33263428
    3327   ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
     3429  ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%$PATHIFS% $ac_given_srcdir/%g"`
    33283430  sed -e "$ac_comsub
    33293431s%@configure_input@%$configure_input%g
Note: See TracChangeset for help on using the changeset viewer.