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/libf2c/configure

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r79 r80  
    542542fi
    543543
     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
     558echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6
     559echo "configure:560: checking for Cygwin environment" >&5
     560if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then
     561  echo $ac_n "(cached) $ac_c" 1>&6
     562else
     563  cat > conftest.$ac_ext <<EOF
     564#line 565 "configure"
     565#include "confdefs.h"
     566
     567int main() {
     568
     569#ifndef __CYGWIN__
     570#define __CYGWIN__ __CYGWIN32__
     571#endif
     572return __CYGWIN__;
     573; return 0; }
     574EOF
     575if { (eval echo configure:576: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     576  rm -rf conftest*
     577  ac_cv_cygwin=yes
     578else
     579  echo "configure: failed program was:" >&5
     580  cat conftest.$ac_ext >&5
     581  rm -rf conftest*
     582  ac_cv_cygwin=no
     583fi
     584rm -f conftest*
     585rm -f conftest*
     586fi
     587
     588echo "$ac_t""$ac_cv_cygwin" 1>&6
     589CYGWIN=
     590test "$ac_cv_cygwin" = yes && CYGWIN=yes
     591echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6
     592echo "configure:593: checking for mingw32 environment" >&5
     593if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then
     594  echo $ac_n "(cached) $ac_c" 1>&6
     595else
     596  cat > conftest.$ac_ext <<EOF
     597#line 598 "configure"
     598#include "confdefs.h"
     599
     600int main() {
     601return __MINGW32__;
     602; return 0; }
     603EOF
     604if { (eval echo configure:605: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     605  rm -rf conftest*
     606  ac_cv_mingw32=yes
     607else
     608  echo "configure: failed program was:" >&5
     609  cat conftest.$ac_ext >&5
     610  rm -rf conftest*
     611  ac_cv_mingw32=no
     612fi
     613rm -f conftest*
     614rm -f conftest*
     615fi
     616
     617echo "$ac_t""$ac_cv_mingw32" 1>&6
     618MINGW32=
     619test "$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
    544695
    545696
     
    632783
    633784echo $ac_n "checking host system type""... $ac_c" 1>&6
    634 echo "configure:635: checking host system type" >&5
     785echo "configure:786: checking host system type" >&5
    635786
    636787host_alias=$host
     
    653804
    654805echo $ac_n "checking target system type""... $ac_c" 1>&6
    655 echo "configure:656: checking target system type" >&5
     806echo "configure:807: checking target system type" >&5
    656807
    657808target_alias=$target
     
    671822
    672823echo $ac_n "checking build system type""... $ac_c" 1>&6
    673 echo "configure:674: checking build system type" >&5
     824echo "configure:825: checking build system type" >&5
    674825
    675826build_alias=$build
     
    702853fi
    703854
    704 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6
    705 echo "configure:706: checking for Cygwin environment" >&5
    706 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then
    707   echo $ac_n "(cached) $ac_c" 1>&6
    708 else
    709   cat > conftest.$ac_ext <<EOF
    710 #line 711 "configure"
    711 #include "confdefs.h"
    712 
    713 int main() {
    714 
    715 #ifndef __CYGWIN__
    716 #define __CYGWIN__ __CYGWIN32__
    717 #endif
    718 return __CYGWIN__;
    719 ; return 0; }
    720 EOF
    721 if { (eval echo configure:722: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    722   rm -rf conftest*
    723   ac_cv_cygwin=yes
    724 else
    725   echo "configure: failed program was:" >&5
    726   cat conftest.$ac_ext >&5
    727   rm -rf conftest*
    728   ac_cv_cygwin=no
    729 fi
    730 rm -f conftest*
    731 rm -f conftest*
    732 fi
    733 
    734 echo "$ac_t""$ac_cv_cygwin" 1>&6
    735 CYGWIN=
    736 test "$ac_cv_cygwin" = yes && CYGWIN=yes
    737 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6
    738 echo "configure:739: checking for mingw32 environment" >&5
    739 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then
    740   echo $ac_n "(cached) $ac_c" 1>&6
    741 else
    742   cat > conftest.$ac_ext <<EOF
    743 #line 744 "configure"
    744 #include "confdefs.h"
    745 
    746 int main() {
    747 return __MINGW32__;
    748 ; return 0; }
    749 EOF
    750 if { (eval echo configure:751: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    751   rm -rf conftest*
    752   ac_cv_mingw32=yes
    753 else
    754   echo "configure: failed program was:" >&5
    755   cat conftest.$ac_ext >&5
    756   rm -rf conftest*
    757   ac_cv_mingw32=no
    758 fi
    759 rm -f conftest*
    760 rm -f conftest*
    761 fi
    762 
    763 echo "$ac_t""$ac_cv_mingw32" 1>&6
    764 MINGW32=
    765 test "$ac_cv_mingw32" = yes && MINGW32=yes
    766855
    767856# Export build and source directories.
     
    783872#ac_cv_prog_LN_S='cp -p'
    784873echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
    785 echo "configure:786: checking whether ln -s works" >&5
     874echo "configure:875: checking whether ln -s works" >&5
    786875if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
    787876  echo $ac_n "(cached) $ac_c" 1>&6
     
    793882  ac_cv_prog_LN_S="ln -s"
    794883else
    795   ac_cv_prog_LN_S=ln
    796 fi
     884  echo A > conftestdata;
     885  if ln conftestdata conftestdata2 2>/dev/null; then
     886    ac_cv_prog_LN_S=ln
     887  else
     888    ac_cv_prog_LN_S=cp
     889  fi
     890fi
     891rm -f conftestdata*
    797892fi
    798893LN_S="$ac_cv_prog_LN_S"
     
    839934set dummy gcc; ac_word=$2
    840935echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    841 echo "configure:842: checking for $ac_word" >&5
     936echo "configure:937: checking for $ac_word" >&5
    842937if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    843938  echo $ac_n "(cached) $ac_c" 1>&6
     
    846941  ac_cv_prog_CC="$CC" # Let the user override the test.
    847942else
    848   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     943  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    849944  ac_dummy="$PATH"
    850945  for ac_dir in $ac_dummy; do
    851946    test -z "$ac_dir" && ac_dir=.
    852     if test -f $ac_dir/$ac_word; then
     947    if test -f $ac_dir/$ac_word -o \
     948            -f $ac_dir/$ac_word$ac_exeext ; then
    853949      ac_cv_prog_CC="gcc"
    854950      break
     
    869965set dummy cc; ac_word=$2
    870966echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    871 echo "configure:872: checking for $ac_word" >&5
     967echo "configure:968: checking for $ac_word" >&5
    872968if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    873969  echo $ac_n "(cached) $ac_c" 1>&6
     
    876972  ac_cv_prog_CC="$CC" # Let the user override the test.
    877973else
    878   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     974  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    879975  ac_prog_rejected=no
    880976  ac_dummy="$PATH"
    881977  for ac_dir in $ac_dummy; do
    882978    test -z "$ac_dir" && ac_dir=.
    883     if test -f $ac_dir/$ac_word; then
    884       if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
     979    if test -f $ac_dir/$ac_word -o \
     980            -f $ac_dir/$ac_word$ac_exeext ; then
     981      if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \
     982               "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then
    885983        ac_prog_rejected=yes
    886984        continue
     
    9181016
    9191017echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    920 echo "configure:921: checking whether we are using GNU C" >&5
     1018echo "configure:1019: checking whether we are using GNU C" >&5
    9211019if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    9221020  echo $ac_n "(cached) $ac_c" 1>&6
     
    9271025#endif
    9281026EOF
    929 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:930: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1027if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1028: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
    9301028  ac_cv_prog_gcc=yes
    9311029else
     
    9421040  CFLAGS=
    9431041  echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    944 echo "configure:945: checking whether ${CC-cc} accepts -g" >&5
     1042echo "configure:1043: checking whether ${CC-cc} accepts -g" >&5
    9451043if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    9461044  echo $ac_n "(cached) $ac_c" 1>&6
     
    9731071set dummy ${ac_tool_prefix}as; ac_word=$2
    9741072echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    975 echo "configure:976: checking for $ac_word" >&5
     1073echo "configure:1074: checking for $ac_word" >&5
    9761074if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then
    9771075  echo $ac_n "(cached) $ac_c" 1>&6
     
    9801078  ac_cv_prog_AS="$AS" # Let the user override the test.
    9811079else
    982   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1080  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    9831081  ac_dummy="$PATH"
    9841082  for ac_dir in $ac_dummy; do
    9851083    test -z "$ac_dir" && ac_dir=.
    986     if test -f $ac_dir/$ac_word; then
     1084    if test -f $ac_dir/$ac_word -o \
     1085            -f $ac_dir/$ac_word$ac_exeext ; then
    9871086      ac_cv_prog_AS="${ac_tool_prefix}as"
    9881087      break
     
    10051104set dummy ${ac_tool_prefix}ar; ac_word=$2
    10061105echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1007 echo "configure:1008: checking for $ac_word" >&5
     1106echo "configure:1107: checking for $ac_word" >&5
    10081107if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then
    10091108  echo $ac_n "(cached) $ac_c" 1>&6
     
    10121111  ac_cv_prog_AR="$AR" # Let the user override the test.
    10131112else
    1014   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1113  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    10151114  ac_dummy="$PATH"
    10161115  for ac_dir in $ac_dummy; do
    10171116    test -z "$ac_dir" && ac_dir=.
    1018     if test -f $ac_dir/$ac_word; then
     1117    if test -f $ac_dir/$ac_word -o \
     1118            -f $ac_dir/$ac_word$ac_exeext ; then
    10191119      ac_cv_prog_AR="${ac_tool_prefix}ar"
    10201120      break
     
    10371137set dummy ${ac_tool_prefix}ranlib; ac_word=$2
    10381138echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1039 echo "configure:1040: checking for $ac_word" >&5
     1139echo "configure:1140: checking for $ac_word" >&5
    10401140if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    10411141  echo $ac_n "(cached) $ac_c" 1>&6
     
    10441144  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
    10451145else
    1046   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1146  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    10471147  ac_dummy="$PATH"
    10481148  for ac_dir in $ac_dummy; do
    10491149    test -z "$ac_dir" && ac_dir=.
    1050     if test -f $ac_dir/$ac_word; then
     1150    if test -f $ac_dir/$ac_word -o \
     1151            -f $ac_dir/$ac_word$ac_exeext ; then
    10511152      ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
    10521153      break
     
    10691170set dummy ranlib; ac_word=$2
    10701171echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1071 echo "configure:1072: checking for $ac_word" >&5
     1172echo "configure:1173: checking for $ac_word" >&5
    10721173if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    10731174  echo $ac_n "(cached) $ac_c" 1>&6
     
    10761177  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
    10771178else
    1078   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1179  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    10791180  ac_dummy="$PATH"
    10801181  for ac_dir in $ac_dummy; do
    10811182    test -z "$ac_dir" && ac_dir=.
    1082     if test -f $ac_dir/$ac_word; then
     1183    if test -f $ac_dir/$ac_word -o \
     1184            -f $ac_dir/$ac_word$ac_exeext ; then
    10831185      ac_cv_prog_RANLIB="ranlib"
    10841186      break
     
    11131215# ./install, which can be erroneously created by make from ./install.sh.
    11141216echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    1115 echo "configure:1116: checking for a BSD compatible install" >&5
     1217echo "configure:1218: checking for a BSD compatible install" >&5
    11161218if test -z "$INSTALL"; then
    11171219if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
    11181220  echo $ac_n "(cached) $ac_c" 1>&6
    11191221else
    1120     IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS=":"
     1222    IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS"
    11211223  for ac_dir in $PATH; do
    11221224    # Account for people who put trailing slashes in PATH elements.
    11231225    case "$ac_dir/" in
    11241226    /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
     1227    # We reject the install program from OS/2 or W3.1
     1228    */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;;
    11251229    *)
    11261230      # OSF1 and SCO ODT 3.0 have their own names for install.
     
    11281232      # by default.
    11291233      for ac_prog in ginstall scoinst install; do
    1130         if test -f $ac_dir/$ac_prog; then
     1234        if test -f $ac_dir/$ac_prog$ac_exeext; then
    11311235          if test $ac_prog = install &&
    11321236            grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
     
    11341238            :
    11351239          else
    1136             ac_cv_path_install="$ac_dir/$ac_prog -c"
     1240            ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c"
    11371241            break 2
    11381242          fi
     
    11801284   
    11811285
     1286
    11821287echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
    1183 echo "configure:1184: checking for executable suffix" >&5
     1288echo "configure:1289: checking for executable suffix" >&5
    11841289if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then
    11851290  echo $ac_n "(cached) $ac_c" 1>&6
    11861291else
    1187   if test "$CYGWIN" = yes || test "$MINGW32" = yes; then
     1292  if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then
    11881293  ac_cv_exeext=.exe
    11891294else
     
    11911296  echo 'int main () { return 0; }' > conftest.$ac_ext
    11921297  ac_cv_exeext=
    1193   if { (eval echo configure:1194: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
     1298  if { (eval echo configure:1299: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
    11941299    for file in conftest.*; do
    11951300      case $file in
     
    12211326
    12221327echo $ac_n "checking for interface version number""... $ac_c" 1>&6
    1223 echo "configure:1224: checking for interface version number" >&5
     1328echo "configure:1329: checking for interface version number" >&5
    12241329libstdcxx_interface=$INTERFACE
    12251330echo "$ac_t""$libstdcxx_interface" 1>&6
     
    12271332# Process the option "--enable-version-specific-runtime-libs"
    12281333echo $ac_n "checking for --enable-version-specific-runtime-libs""... $ac_c" 1>&6
    1229 echo "configure:1230: checking for --enable-version-specific-runtime-libs" >&5
     1334echo "configure:1335: checking for --enable-version-specific-runtime-libs" >&5
    12301335# Check whether --enable-version-specific-runtime-libs or --disable-version-specific-runtime-libs was given.
    12311336if test "${enable_version_specific_runtime_libs+set}" = set; then
     
    12821387rm -f skip-this-dir
    12831388echo $ac_n "checking if compiler $compiler_name has been built""... $ac_c" 1>&6
    1284 echo "configure:1285: checking if compiler $compiler_name has been built" >&5
     1389echo "configure:1390: checking if compiler $compiler_name has been built" >&5
    12851390if eval "test \"`echo '$''{'g77_cv_compiler_exists'+set}'`\" = set"; then
    12861391  echo $ac_n "(cached) $ac_c" 1>&6
     
    13901495  # Check if gcc -print-prog-name=ld gives a path.
    13911496  echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6
    1392 echo "configure:1393: checking for ld used by GCC" >&5
     1497echo "configure:1498: checking for ld used by GCC" >&5
    13931498  case $host in
    13941499  *-*-mingw*)
     
    14201525elif test "$with_gnu_ld" = yes; then
    14211526  echo $ac_n "checking for GNU ld""... $ac_c" 1>&6
    1422 echo "configure:1423: checking for GNU ld" >&5
     1527echo "configure:1528: checking for GNU ld" >&5
    14231528else
    14241529  echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6
    1425 echo "configure:1426: checking for non-GNU ld" >&5
     1530echo "configure:1531: checking for non-GNU ld" >&5
    14261531fi
    14271532if eval "test \"`echo '$''{'lt_cv_path_LD'+set}'`\" = set"; then
     
    14581563test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; }
    14591564echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6
    1460 echo "configure:1461: checking if the linker ($LD) is GNU ld" >&5
     1565echo "configure:1566: checking if the linker ($LD) is GNU ld" >&5
    14611566if eval "test \"`echo '$''{'lt_cv_prog_gnu_ld'+set}'`\" = set"; then
    14621567  echo $ac_n "(cached) $ac_c" 1>&6
     
    14751580
    14761581echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6
    1477 echo "configure:1478: checking for $LD option to reload object files" >&5
     1582echo "configure:1583: checking for $LD option to reload object files" >&5
    14781583if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then
    14791584  echo $ac_n "(cached) $ac_c" 1>&6
     
    14871592
    14881593echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6
    1489 echo "configure:1490: checking for BSD-compatible nm" >&5
     1594echo "configure:1595: checking for BSD-compatible nm" >&5
    14901595if eval "test \"`echo '$''{'lt_cv_path_NM'+set}'`\" = set"; then
    14911596  echo $ac_n "(cached) $ac_c" 1>&6
     
    15251630
    15261631echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6
    1527 echo "configure:1528: checking how to recognise dependant libraries" >&5
     1632echo "configure:1633: checking how to recognise dependant libraries" >&5
    15281633if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then
    15291634  echo $ac_n "(cached) $ac_c" 1>&6
     
    16891794
    16901795echo $ac_n "checking for object suffix""... $ac_c" 1>&6
    1691 echo "configure:1692: checking for object suffix" >&5
     1796echo "configure:1797: checking for object suffix" >&5
    16921797if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then
    16931798  echo $ac_n "(cached) $ac_c" 1>&6
     
    16951800  rm -f conftest*
    16961801echo 'int i = 1;' > conftest.$ac_ext
    1697 if { (eval echo configure:1698: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     1802if { (eval echo configure:1803: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    16981803  for ac_file in conftest.*; do
    16991804    case $ac_file in
     
    17191824  if test "$file_magic_cmd" = '$MAGIC_CMD'; then
    17201825    echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6
    1721 echo "configure:1722: checking for ${ac_tool_prefix}file" >&5
     1826echo "configure:1827: checking for ${ac_tool_prefix}file" >&5
    17221827if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then
    17231828  echo $ac_n "(cached) $ac_c" 1>&6
     
    17811886  if test -n "$ac_tool_prefix"; then
    17821887    echo $ac_n "checking for file""... $ac_c" 1>&6
    1783 echo "configure:1784: checking for file" >&5
     1888echo "configure:1889: checking for file" >&5
    17841889if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then
    17851890  echo $ac_n "(cached) $ac_c" 1>&6
     
    18521957set dummy ${ac_tool_prefix}ranlib; ac_word=$2
    18531958echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1854 echo "configure:1855: checking for $ac_word" >&5
     1959echo "configure:1960: checking for $ac_word" >&5
    18551960if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    18561961  echo $ac_n "(cached) $ac_c" 1>&6
     
    18591964  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
    18601965else
    1861   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1966  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    18621967  ac_dummy="$PATH"
    18631968  for ac_dir in $ac_dummy; do
    18641969    test -z "$ac_dir" && ac_dir=.
    1865     if test -f $ac_dir/$ac_word; then
     1970    if test -f $ac_dir/$ac_word -o \
     1971            -f $ac_dir/$ac_word$ac_exeext ; then
    18661972      ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
    18671973      break
     
    18841990set dummy ranlib; ac_word=$2
    18851991echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1886 echo "configure:1887: checking for $ac_word" >&5
     1992echo "configure:1993: checking for $ac_word" >&5
    18871993if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    18881994  echo $ac_n "(cached) $ac_c" 1>&6
     
    18911997  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
    18921998else
    1893   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     1999  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    18942000  ac_dummy="$PATH"
    18952001  for ac_dir in $ac_dummy; do
    18962002    test -z "$ac_dir" && ac_dir=.
    1897     if test -f $ac_dir/$ac_word; then
     2003    if test -f $ac_dir/$ac_word -o \
     2004            -f $ac_dir/$ac_word$ac_exeext ; then
    18982005      ac_cv_prog_RANLIB="ranlib"
    18992006      break
     
    19192026set dummy ${ac_tool_prefix}strip; ac_word=$2
    19202027echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1921 echo "configure:1922: checking for $ac_word" >&5
     2028echo "configure:2029: checking for $ac_word" >&5
    19222029if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
    19232030  echo $ac_n "(cached) $ac_c" 1>&6
     
    19262033  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
    19272034else
    1928   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2035  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    19292036  ac_dummy="$PATH"
    19302037  for ac_dir in $ac_dummy; do
    19312038    test -z "$ac_dir" && ac_dir=.
    1932     if test -f $ac_dir/$ac_word; then
     2039    if test -f $ac_dir/$ac_word -o \
     2040            -f $ac_dir/$ac_word$ac_exeext ; then
    19332041      ac_cv_prog_STRIP="${ac_tool_prefix}strip"
    19342042      break
     
    19512059set dummy strip; ac_word=$2
    19522060echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1953 echo "configure:1954: checking for $ac_word" >&5
     2061echo "configure:2062: checking for $ac_word" >&5
    19542062if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
    19552063  echo $ac_n "(cached) $ac_c" 1>&6
     
    19582066  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
    19592067else
    1960   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2068  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    19612069  ac_dummy="$PATH"
    19622070  for ac_dir in $ac_dummy; do
    19632071    test -z "$ac_dir" && ac_dir=.
    1964     if test -f $ac_dir/$ac_word; then
     2072    if test -f $ac_dir/$ac_word -o \
     2073            -f $ac_dir/$ac_word$ac_exeext ; then
    19652074      ac_cv_prog_STRIP="strip"
    19662075      break
     
    20182127*-*-irix6*)
    20192128  # Find out which ABI we are using.
    2020   echo '#line 2021 "configure"' > conftest.$ac_ext
    2021   if { (eval echo configure:2022: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     2129  echo '#line 2130 "configure"' > conftest.$ac_ext
     2130  if { (eval echo configure:2131: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    20222131    case `/usr/bin/file conftest.$ac_objext` in
    20232132    *32-bit*)
     
    20402149  CFLAGS="$CFLAGS -belf"
    20412150  echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6
    2042 echo "configure:2043: checking whether the C compiler needs -belf" >&5
     2151echo "configure:2152: checking whether the C compiler needs -belf" >&5
    20432152if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then
    20442153  echo $ac_n "(cached) $ac_c" 1>&6
     
    20532162
    20542163     cat > conftest.$ac_ext <<EOF
    2055 #line 2056 "configure"
     2164#line 2165 "configure"
    20562165#include "confdefs.h"
    20572166
     
    20602169; return 0; }
    20612170EOF
    2062 if { (eval echo configure:2063: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     2171if { (eval echo configure:2172: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    20632172  rm -rf conftest*
    20642173  lt_cv_cc_needs_belf=yes
     
    21842293set dummy ranlib; ac_word=$2
    21852294echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2186 echo "configure:2187: checking for $ac_word" >&5
     2295echo "configure:2296: checking for $ac_word" >&5
    21872296if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    21882297  echo $ac_n "(cached) $ac_c" 1>&6
     
    21912300  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
    21922301else
    2193   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
     2302  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS"
    21942303  ac_dummy="$PATH"
    21952304  for ac_dir in $ac_dummy; do
    21962305    test -z "$ac_dir" && ac_dir=.
    2197     if test -f $ac_dir/$ac_word; then
     2306    if test -f $ac_dir/$ac_word -o \
     2307            -f $ac_dir/$ac_word$ac_exeext ; then
    21982308      ac_cv_prog_RANLIB="ranlib"
    21992309      break
     
    22242334# ./install, which can be erroneously created by make from ./install.sh.
    22252335echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    2226 echo "configure:2227: checking for a BSD compatible install" >&5
     2336echo "configure:2337: checking for a BSD compatible install" >&5
    22272337if test -z "$INSTALL"; then
    22282338if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
    22292339  echo $ac_n "(cached) $ac_c" 1>&6
    22302340else
    2231     IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS=":"
     2341    IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS"
    22322342  for ac_dir in $PATH; do
    22332343    # Account for people who put trailing slashes in PATH elements.
    22342344    case "$ac_dir/" in
    22352345    /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
     2346    # We reject the install program from OS/2 or W3.1
     2347    */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;;
    22362348    *)
    22372349      # OSF1 and SCO ODT 3.0 have their own names for install.
     
    22392351      # by default.
    22402352      for ac_prog in ginstall scoinst install; do
    2241         if test -f $ac_dir/$ac_prog; then
     2353        if test -f $ac_dir/$ac_prog$ac_exeext; then
    22422354          if test $ac_prog = install &&
    22432355            grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
     
    22452357            :
    22462358          else
    2247             ac_cv_path_install="$ac_dir/$ac_prog -c"
     2359            ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c"
    22482360            break 2
    22492361          fi
     
    22772389
    22782390echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    2279 echo "configure:2280: checking whether ${MAKE-make} sets \${MAKE}" >&5
     2391echo "configure:2392: checking whether ${MAKE-make} sets \${MAKE}" >&5
    22802392set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    22812393if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    23062418# Sanity check for the cross-compilation case:
    23072419echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
    2308 echo "configure:2309: checking how to run the C preprocessor" >&5
     2420echo "configure:2421: checking how to run the C preprocessor" >&5
    23092421# On Suns, sometimes $CPP names a directory.
    23102422if test -n "$CPP" && test -d "$CPP"; then
     
    23212433  # not just through cpp.
    23222434  cat > conftest.$ac_ext <<EOF
    2323 #line 2324 "configure"
     2435#include <sys/types.h>
     2436#line 2437 "configure"
    23242437#include "confdefs.h"
    23252438#include <assert.h>
     
    23272440EOF
    23282441ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2329 { (eval echo configure:2330: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2442{ (eval echo configure:2443: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    23302443ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    23312444if test -z "$ac_err"; then
     
    23382451  CPP="${CC-cc} -E -traditional-cpp"
    23392452  cat > conftest.$ac_ext <<EOF
    2340 #line 2341 "configure"
     2453#include <sys/types.h>
     2454#line 2455 "configure"
    23412455#include "confdefs.h"
    23422456#include <assert.h>
     
    23442458EOF
    23452459ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2346 { (eval echo configure:2347: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2460{ (eval echo configure:2461: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    23472461ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    23482462if test -z "$ac_err"; then
     
    23552469  CPP="${CC-cc} -nologo -E"
    23562470  cat > conftest.$ac_ext <<EOF
    2357 #line 2358 "configure"
     2471#include <sys/types.h>
     2472#line 2473 "configure"
    23582473#include "confdefs.h"
    23592474#include <assert.h>
     
    23612476EOF
    23622477ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2363 { (eval echo configure:2364: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2478{ (eval echo configure:2479: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    23642479ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    23652480if test -z "$ac_err"; then
     
    23872502ac_safe=`echo "stdio.h" | sed 'y%./+-%__p_%'`
    23882503echo $ac_n "checking for stdio.h""... $ac_c" 1>&6
    2389 echo "configure:2390: checking for stdio.h" >&5
     2504echo "configure:2505: checking for stdio.h" >&5
    23902505if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    23912506  echo $ac_n "(cached) $ac_c" 1>&6
    23922507else
    23932508  cat > conftest.$ac_ext <<EOF
    2394 #line 2395 "configure"
     2509#include <sys/types.h>
     2510#line 2511 "configure"
    23952511#include "confdefs.h"
    23962512#include <stdio.h>
    23972513EOF
    23982514ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2399 { (eval echo configure:2400: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2515{ (eval echo configure:2516: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    24002516ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    24012517if test -z "$ac_err"; then
     
    24252541
    24262542echo $ac_n "checking for built-in g77 integer types""... $ac_c" 1>&6
    2427 echo "configure:2428: checking for built-in g77 integer types" >&5
     2543echo "configure:2544: checking for built-in g77 integer types" >&5
    24282544if eval "test \"`echo '$''{'libf2c_cv_has_g77_builtin_types'+set}'`\" = set"; then
    24292545  echo $ac_n "(cached) $ac_c" 1>&6
    24302546else
    24312547  cat > conftest.$ac_ext <<EOF
    2432 #line 2433 "configure"
     2548#line 2549 "configure"
    24332549#include "confdefs.h"
    24342550
     
    24402556; return 0; }
    24412557EOF
    2442 if { (eval echo configure:2443: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     2558if { (eval echo configure:2559: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    24432559  rm -rf conftest*
    24442560  libf2c_cv_has_g77_builtin_types=yes
     
    25372653# Protect against shell expansion while executing Makefile rules.
    25382654# Protect against Makefile macro expansion.
    2539 #
    2540 # If the first sed substitution is executed (which looks for macros that
    2541 # take arguments), then we branch to the quote section.  Otherwise,
    2542 # look for a macro that doesn't take arguments.
    2543 cat >confdef2opt.sed <<\_ACEOF
    2544 t clear
    2545 : clear
    2546 s,^[    ]*#[    ]*define[       ][      ]*\([^  (][^    (]*([^)]*)\)[   ]*\(.*\),-D\1=\2,g
    2547 t quote
    2548 s,^[    ]*#[    ]*define[       ][      ]*\([^  ][^     ]*\)[   ]*\(.*\),-D\1=\2,g
    2549 t quote
    2550 d
    2551 : quote
    2552 s,[     `~#$^&*(){}\\|;'"<>?],\\&,g
    2553 s,\[,\\&,g
    2554 s,\],\\&,g
    2555 s,\$,$$,g
    2556 p
    2557 _ACEOF
    2558 # We use echo to avoid assuming a particular line-breaking character.
    2559 # The extra dot is to prevent the shell from consuming trailing
    2560 # line-breaks from the sub-command output.  A line-break within
    2561 # single-quotes doesn't work because, if this script is created in a
    2562 # platform that uses two characters for line-breaks (e.g., DOS), tr
    2563 # would break.
    2564 ac_LF_and_DOT=`echo; echo .`
    2565 DEFS=`sed -n -f confdef2opt.sed confdefs.h | tr "$ac_LF_and_DOT" ' .'`
    2566 rm -f confdef2opt.sed
     2655cat > conftest.defs <<\EOF
     2656s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%-D\1=\2%g
     2657s%[     `~#$^&*(){}\\|;'"<>?]%\\&%g
     2658s%\[%\\&%g
     2659s%\]%\\&%g
     2660s%\$%$$%g
     2661EOF
     2662DEFS=`sed -f conftest.defs confdefs.h | tr '\012\015' '  '`
     2663rm -f conftest.defs
    25672664
    25682665
     
    25772674# Run this file to recreate the current configuration.
    25782675# This directory was configured as follows,
     2676EOF
     2677echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS
     2678cat >> $CONFIG_STATUS <<EOF
    25792679# on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
    25802680#
     
    26022702ac_given_srcdir=$srcdir
    26032703ac_given_INSTALL="$INSTALL"
     2704PATHIFS="$PATH_IFS"
    26042705
    26052706trap 'rm -fr `echo "Makefile g2c.h:g2c.hin" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
     
    26122713$ac_vpsub
    26132714$extrasub
     2715s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g
    26142716s%@SHELL@%$SHELL%g
    26152717s%@CFLAGS@%$CFLAGS%g
     
    26352737s%@infodir@%$infodir%g
    26362738s%@mandir@%$mandir%g
     2739s%@PATH_IFS@%$PATH_IFS%g
     2740s%@EXEEXT@%$EXEEXT%g
    26372741s%@toplevel_srcdir@%$toplevel_srcdir%g
    26382742s%@host@%$host%g
     
    26612765s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g
    26622766s%@INSTALL_DATA@%$INSTALL_DATA%g
    2663 s%@EXEEXT@%$EXEEXT%g
    26642767s%@gcc_version@%$gcc_version%g
    26652768s%@gcc_version_trigger@%$gcc_version_trigger%g
     
    27432846      if test -z "$ac_dots"; then top_srcdir=.
    27442847      else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
    2745   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
     2848  /* | [A-Za-z]:*)
     2849    srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
    27462850  *) # Relative path.
    27472851    srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
     
    27502854
    27512855  case "$ac_given_INSTALL" in
    2752   [/$]*) INSTALL="$ac_given_INSTALL" ;;
     2856  [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;;
    27532857  *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
    27542858  esac
     
    27632867  esac
    27642868
    2765   ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
     2869  ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%$PATHIFS% $ac_given_srcdir/%g"`
    27662870  sed -e "$ac_comsub
    27672871s%@configure_input@%$configure_input%g
     
    28562960    .) # No --srcdir option.  We are building in place.
    28572961      ac_sub_srcdir=$srcdir ;;
    2858     /*) # Absolute path.
     2962    /* | [A-Za-z]:*) # Absolute path.
    28592963      ac_sub_srcdir=$srcdir/$ac_config_dir ;;
    28602964    *) # Relative path.
     
    28662970      ac_sub_configure=$ac_sub_srcdir/configure
    28672971    elif test -f $ac_sub_srcdir/configure.in; then
    2868       ac_sub_configure=$ac_configure
     2972      ac_current_dir=`pwd`
     2973      cd $ac_sub_srcdir
     2974      autoconf
     2975      cd $ac_current_dir
     2976      ac_sub_configure=$ac_sub_srcdir/configure
    28692977    else
    28702978      echo "configure: warning: no configuration information is in $ac_config_dir" 1>&2
     
    28772985      # Make the cache file name correct relative to the subdirectory.
    28782986      case "$cache_file" in
    2879       /*) ac_sub_cache_file=$cache_file ;;
     2987      /* | [A-Za-z]:*) ac_sub_cache_file=$cache_file ;;
    28802988      *) # Relative path.
    28812989        ac_sub_cache_file="$ac_dots$cache_file" ;;
    28822990      esac
    28832991  case "$ac_given_INSTALL" in
    2884         [/$]*) INSTALL="$ac_given_INSTALL" ;;
     2992        [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;;
    28852993        *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
    28862994        esac
Note: See TracChangeset for help on using the changeset viewer.