Changeset 80 for trunk/src/gcc/libf2c/configure
- Timestamp:
- May 2, 2003, 12:30:43 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gcc/libf2c/configure
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r79 r80 542 542 fi 543 543 544 echo $ac_n "checking for path separator""... $ac_c" 1>&6 545 echo "configure:546: checking for path separator" >&5 546 # Filter path to get backslahes into forwardslashes 547 case "`uname -s 2> /dev/null`" in 548 OS/2) 549 PATH=`echo -E "$PATH" | sed 's+\\\\+/+g'` 550 PATH_IFS=';' 551 ;; 552 *) 553 PATH_IFS=':' 554 ;; 555 esac 556 echo "$ac_t""${PATH_IFS}" 1>&6 557 558 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 559 echo "configure:560: checking for Cygwin environment" >&5 560 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then 561 echo $ac_n "(cached) $ac_c" 1>&6 562 else 563 cat > conftest.$ac_ext <<EOF 564 #line 565 "configure" 565 #include "confdefs.h" 566 567 int main() { 568 569 #ifndef __CYGWIN__ 570 #define __CYGWIN__ __CYGWIN32__ 571 #endif 572 return __CYGWIN__; 573 ; return 0; } 574 EOF 575 if { (eval echo configure:576: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 576 rm -rf conftest* 577 ac_cv_cygwin=yes 578 else 579 echo "configure: failed program was:" >&5 580 cat conftest.$ac_ext >&5 581 rm -rf conftest* 582 ac_cv_cygwin=no 583 fi 584 rm -f conftest* 585 rm -f conftest* 586 fi 587 588 echo "$ac_t""$ac_cv_cygwin" 1>&6 589 CYGWIN= 590 test "$ac_cv_cygwin" = yes && CYGWIN=yes 591 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 592 echo "configure:593: checking for mingw32 environment" >&5 593 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then 594 echo $ac_n "(cached) $ac_c" 1>&6 595 else 596 cat > conftest.$ac_ext <<EOF 597 #line 598 "configure" 598 #include "confdefs.h" 599 600 int main() { 601 return __MINGW32__; 602 ; return 0; } 603 EOF 604 if { (eval echo configure:605: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 605 rm -rf conftest* 606 ac_cv_mingw32=yes 607 else 608 echo "configure: failed program was:" >&5 609 cat conftest.$ac_ext >&5 610 rm -rf conftest* 611 ac_cv_mingw32=no 612 fi 613 rm -f conftest* 614 rm -f conftest* 615 fi 616 617 echo "$ac_t""$ac_cv_mingw32" 1>&6 618 MINGW32= 619 test "$ac_cv_mingw32" = yes && MINGW32=yes 620 echo $ac_n "checking for EMX/OS2 environment""... $ac_c" 1>&6 621 echo "configure:622: checking for EMX/OS2 environment" >&5 622 if eval "test \"`echo '$''{'ac_cv_emxos2'+set}'`\" = set"; then 623 echo $ac_n "(cached) $ac_c" 1>&6 624 else 625 : ${CC=gcc.exe} 626 cat > conftest.$ac_ext <<EOF 627 #line 628 "configure" 628 #include "confdefs.h" 629 630 int main() { 631 return __EMX__; 632 ; return 0; } 633 EOF 634 if { (eval echo configure:635: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 635 rm -rf conftest* 636 ac_cv_emxos2=yes 637 else 638 echo "configure: failed program was:" >&5 639 cat conftest.$ac_ext >&5 640 rm -rf conftest* 641 ac_cv_emxos2=no 642 fi 643 rm -f conftest* 644 rm -f conftest* 645 fi 646 647 echo "$ac_t""$ac_cv_emxos2" 1>&6 648 if eval "test \"`echo '$''{'ac_cv_libpre'+set}'`\" = set"; then 649 echo $ac_n "(cached) $ac_c" 1>&6 650 else 651 if test "$ac_cv_emxos2" = yes ; then 652 ac_cv_libpre= 653 else 654 ac_cv_libpre=lib 655 fi 656 657 fi 658 659 EMXOS2= 660 test "$ac_cv_emxos2" = yes && EMXOS2=yes 661 662 663 664 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 665 echo "configure:666: checking for executable suffix" >&5 666 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 667 echo $ac_n "(cached) $ac_c" 1>&6 668 else 669 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 670 ac_cv_exeext=.exe 671 else 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 687 fi 688 fi 689 690 EXEEXT="" 691 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} 692 echo "$ac_t""${ac_cv_exeext}" 1>&6 693 ac_exeext=$EXEEXT 694 544 695 545 696 … … 632 783 633 784 echo $ac_n "checking host system type""... $ac_c" 1>&6 634 echo "configure: 635: checking host system type" >&5785 echo "configure:786: checking host system type" >&5 635 786 636 787 host_alias=$host … … 653 804 654 805 echo $ac_n "checking target system type""... $ac_c" 1>&6 655 echo "configure: 656: checking target system type" >&5806 echo "configure:807: checking target system type" >&5 656 807 657 808 target_alias=$target … … 671 822 672 823 echo $ac_n "checking build system type""... $ac_c" 1>&6 673 echo "configure: 674: checking build system type" >&5824 echo "configure:825: checking build system type" >&5 674 825 675 826 build_alias=$build … … 702 853 fi 703 854 704 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6705 echo "configure:706: checking for Cygwin environment" >&5706 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then707 echo $ac_n "(cached) $ac_c" 1>&6708 else709 cat > conftest.$ac_ext <<EOF710 #line 711 "configure"711 #include "confdefs.h"712 713 int main() {714 715 #ifndef __CYGWIN__716 #define __CYGWIN__ __CYGWIN32__717 #endif718 return __CYGWIN__;719 ; return 0; }720 EOF721 if { (eval echo configure:722: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then722 rm -rf conftest*723 ac_cv_cygwin=yes724 else725 echo "configure: failed program was:" >&5726 cat conftest.$ac_ext >&5727 rm -rf conftest*728 ac_cv_cygwin=no729 fi730 rm -f conftest*731 rm -f conftest*732 fi733 734 echo "$ac_t""$ac_cv_cygwin" 1>&6735 CYGWIN=736 test "$ac_cv_cygwin" = yes && CYGWIN=yes737 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6738 echo "configure:739: checking for mingw32 environment" >&5739 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then740 echo $ac_n "(cached) $ac_c" 1>&6741 else742 cat > conftest.$ac_ext <<EOF743 #line 744 "configure"744 #include "confdefs.h"745 746 int main() {747 return __MINGW32__;748 ; return 0; }749 EOF750 if { (eval echo configure:751: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then751 rm -rf conftest*752 ac_cv_mingw32=yes753 else754 echo "configure: failed program was:" >&5755 cat conftest.$ac_ext >&5756 rm -rf conftest*757 ac_cv_mingw32=no758 fi759 rm -f conftest*760 rm -f conftest*761 fi762 763 echo "$ac_t""$ac_cv_mingw32" 1>&6764 MINGW32=765 test "$ac_cv_mingw32" = yes && MINGW32=yes766 855 767 856 # Export build and source directories. … … 783 872 #ac_cv_prog_LN_S='cp -p' 784 873 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 785 echo "configure: 786: checking whether ln -s works" >&5874 echo "configure:875: checking whether ln -s works" >&5 786 875 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then 787 876 echo $ac_n "(cached) $ac_c" 1>&6 … … 793 882 ac_cv_prog_LN_S="ln -s" 794 883 else 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 890 fi 891 rm -f conftestdata* 797 892 fi 798 893 LN_S="$ac_cv_prog_LN_S" … … 839 934 set dummy gcc; ac_word=$2 840 935 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 841 echo "configure: 842: checking for $ac_word" >&5936 echo "configure:937: checking for $ac_word" >&5 842 937 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 843 938 echo $ac_n "(cached) $ac_c" 1>&6 … … 846 941 ac_cv_prog_CC="$CC" # Let the user override the test. 847 942 else 848 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"943 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 849 944 ac_dummy="$PATH" 850 945 for ac_dir in $ac_dummy; do 851 946 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 853 949 ac_cv_prog_CC="gcc" 854 950 break … … 869 965 set dummy cc; ac_word=$2 870 966 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 871 echo "configure: 872: checking for $ac_word" >&5967 echo "configure:968: checking for $ac_word" >&5 872 968 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 873 969 echo $ac_n "(cached) $ac_c" 1>&6 … … 876 972 ac_cv_prog_CC="$CC" # Let the user override the test. 877 973 else 878 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"974 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 879 975 ac_prog_rejected=no 880 976 ac_dummy="$PATH" 881 977 for ac_dir in $ac_dummy; do 882 978 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 885 983 ac_prog_rejected=yes 886 984 continue … … 918 1016 919 1017 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 920 echo "configure: 921: checking whether we are using GNU C" >&51018 echo "configure:1019: checking whether we are using GNU C" >&5 921 1019 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 922 1020 echo $ac_n "(cached) $ac_c" 1>&6 … … 927 1025 #endif 928 1026 EOF 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; then1027 if { 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 930 1028 ac_cv_prog_gcc=yes 931 1029 else … … 942 1040 CFLAGS= 943 1041 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 944 echo "configure: 945: checking whether ${CC-cc} accepts -g" >&51042 echo "configure:1043: checking whether ${CC-cc} accepts -g" >&5 945 1043 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 946 1044 echo $ac_n "(cached) $ac_c" 1>&6 … … 973 1071 set dummy ${ac_tool_prefix}as; ac_word=$2 974 1072 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 975 echo "configure: 976: checking for $ac_word" >&51073 echo "configure:1074: checking for $ac_word" >&5 976 1074 if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then 977 1075 echo $ac_n "(cached) $ac_c" 1>&6 … … 980 1078 ac_cv_prog_AS="$AS" # Let the user override the test. 981 1079 else 982 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1080 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 983 1081 ac_dummy="$PATH" 984 1082 for ac_dir in $ac_dummy; do 985 1083 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 987 1086 ac_cv_prog_AS="${ac_tool_prefix}as" 988 1087 break … … 1005 1104 set dummy ${ac_tool_prefix}ar; ac_word=$2 1006 1105 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1007 echo "configure:1 008: checking for $ac_word" >&51106 echo "configure:1107: checking for $ac_word" >&5 1008 1107 if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then 1009 1108 echo $ac_n "(cached) $ac_c" 1>&6 … … 1012 1111 ac_cv_prog_AR="$AR" # Let the user override the test. 1013 1112 else 1014 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1113 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1015 1114 ac_dummy="$PATH" 1016 1115 for ac_dir in $ac_dummy; do 1017 1116 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 1019 1119 ac_cv_prog_AR="${ac_tool_prefix}ar" 1020 1120 break … … 1037 1137 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 1038 1138 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1039 echo "configure:1 040: checking for $ac_word" >&51139 echo "configure:1140: checking for $ac_word" >&5 1040 1140 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1041 1141 echo $ac_n "(cached) $ac_c" 1>&6 … … 1044 1144 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1045 1145 else 1046 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1146 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1047 1147 ac_dummy="$PATH" 1048 1148 for ac_dir in $ac_dummy; do 1049 1149 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 1051 1152 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 1052 1153 break … … 1069 1170 set dummy ranlib; ac_word=$2 1070 1171 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1071 echo "configure:1 072: checking for $ac_word" >&51172 echo "configure:1173: checking for $ac_word" >&5 1072 1173 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1073 1174 echo $ac_n "(cached) $ac_c" 1>&6 … … 1076 1177 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1077 1178 else 1078 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1179 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1079 1180 ac_dummy="$PATH" 1080 1181 for ac_dir in $ac_dummy; do 1081 1182 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 1083 1185 ac_cv_prog_RANLIB="ranlib" 1084 1186 break … … 1113 1215 # ./install, which can be erroneously created by make from ./install.sh. 1114 1216 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 1115 echo "configure:1 116: checking for a BSD compatible install" >&51217 echo "configure:1218: checking for a BSD compatible install" >&5 1116 1218 if test -z "$INSTALL"; then 1117 1219 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 1118 1220 echo $ac_n "(cached) $ac_c" 1>&6 1119 1221 else 1120 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"1222 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 1121 1223 for ac_dir in $PATH; do 1122 1224 # Account for people who put trailing slashes in PATH elements. 1123 1225 case "$ac_dir/" in 1124 1226 /|./|.//|/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/*) ;; 1125 1229 *) 1126 1230 # OSF1 and SCO ODT 3.0 have their own names for install. … … 1128 1232 # by default. 1129 1233 for ac_prog in ginstall scoinst install; do 1130 if test -f $ac_dir/$ac_prog ; then1234 if test -f $ac_dir/$ac_prog$ac_exeext; then 1131 1235 if test $ac_prog = install && 1132 1236 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 1134 1238 : 1135 1239 else 1136 ac_cv_path_install="$ac_dir/$ac_prog -c"1240 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 1137 1241 break 2 1138 1242 fi … … 1180 1284 1181 1285 1286 1182 1287 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 1183 echo "configure:1 184: checking for executable suffix" >&51288 echo "configure:1289: checking for executable suffix" >&5 1184 1289 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 1185 1290 echo $ac_n "(cached) $ac_c" 1>&6 1186 1291 else 1187 if test "$CYGWIN" = yes || test "$MINGW32" = yes ; then1292 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 1188 1293 ac_cv_exeext=.exe 1189 1294 else … … 1191 1296 echo 'int main () { return 0; }' > conftest.$ac_ext 1192 1297 ac_cv_exeext= 1193 if { (eval echo configure:1 194: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then1298 if { (eval echo configure:1299: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 1194 1299 for file in conftest.*; do 1195 1300 case $file in … … 1221 1326 1222 1327 echo $ac_n "checking for interface version number""... $ac_c" 1>&6 1223 echo "configure:1 224: checking for interface version number" >&51328 echo "configure:1329: checking for interface version number" >&5 1224 1329 libstdcxx_interface=$INTERFACE 1225 1330 echo "$ac_t""$libstdcxx_interface" 1>&6 … … 1227 1332 # Process the option "--enable-version-specific-runtime-libs" 1228 1333 echo $ac_n "checking for --enable-version-specific-runtime-libs""... $ac_c" 1>&6 1229 echo "configure:1 230: checking for --enable-version-specific-runtime-libs" >&51334 echo "configure:1335: checking for --enable-version-specific-runtime-libs" >&5 1230 1335 # Check whether --enable-version-specific-runtime-libs or --disable-version-specific-runtime-libs was given. 1231 1336 if test "${enable_version_specific_runtime_libs+set}" = set; then … … 1282 1387 rm -f skip-this-dir 1283 1388 echo $ac_n "checking if compiler $compiler_name has been built""... $ac_c" 1>&6 1284 echo "configure:1 285: checking if compiler $compiler_name has been built" >&51389 echo "configure:1390: checking if compiler $compiler_name has been built" >&5 1285 1390 if eval "test \"`echo '$''{'g77_cv_compiler_exists'+set}'`\" = set"; then 1286 1391 echo $ac_n "(cached) $ac_c" 1>&6 … … 1390 1495 # Check if gcc -print-prog-name=ld gives a path. 1391 1496 echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 1392 echo "configure:1 393: checking for ld used by GCC" >&51497 echo "configure:1498: checking for ld used by GCC" >&5 1393 1498 case $host in 1394 1499 *-*-mingw*) … … 1420 1525 elif test "$with_gnu_ld" = yes; then 1421 1526 echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 1422 echo "configure:1 423: checking for GNU ld" >&51527 echo "configure:1528: checking for GNU ld" >&5 1423 1528 else 1424 1529 echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 1425 echo "configure:1 426: checking for non-GNU ld" >&51530 echo "configure:1531: checking for non-GNU ld" >&5 1426 1531 fi 1427 1532 if eval "test \"`echo '$''{'lt_cv_path_LD'+set}'`\" = set"; then … … 1458 1563 test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } 1459 1564 echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 1460 echo "configure:1 461: checking if the linker ($LD) is GNU ld" >&51565 echo "configure:1566: checking if the linker ($LD) is GNU ld" >&5 1461 1566 if eval "test \"`echo '$''{'lt_cv_prog_gnu_ld'+set}'`\" = set"; then 1462 1567 echo $ac_n "(cached) $ac_c" 1>&6 … … 1475 1580 1476 1581 echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6 1477 echo "configure:1 478: checking for $LD option to reload object files" >&51582 echo "configure:1583: checking for $LD option to reload object files" >&5 1478 1583 if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then 1479 1584 echo $ac_n "(cached) $ac_c" 1>&6 … … 1487 1592 1488 1593 echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 1489 echo "configure:1 490: checking for BSD-compatible nm" >&51594 echo "configure:1595: checking for BSD-compatible nm" >&5 1490 1595 if eval "test \"`echo '$''{'lt_cv_path_NM'+set}'`\" = set"; then 1491 1596 echo $ac_n "(cached) $ac_c" 1>&6 … … 1525 1630 1526 1631 echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6 1527 echo "configure:1 528: checking how to recognise dependant libraries" >&51632 echo "configure:1633: checking how to recognise dependant libraries" >&5 1528 1633 if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then 1529 1634 echo $ac_n "(cached) $ac_c" 1>&6 … … 1689 1794 1690 1795 echo $ac_n "checking for object suffix""... $ac_c" 1>&6 1691 echo "configure:1 692: checking for object suffix" >&51796 echo "configure:1797: checking for object suffix" >&5 1692 1797 if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then 1693 1798 echo $ac_n "(cached) $ac_c" 1>&6 … … 1695 1800 rm -f conftest* 1696 1801 echo 'int i = 1;' > conftest.$ac_ext 1697 if { (eval echo configure:1 698: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1802 if { (eval echo configure:1803: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1698 1803 for ac_file in conftest.*; do 1699 1804 case $ac_file in … … 1719 1824 if test "$file_magic_cmd" = '$MAGIC_CMD'; then 1720 1825 echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6 1721 echo "configure:1 722: checking for ${ac_tool_prefix}file" >&51826 echo "configure:1827: checking for ${ac_tool_prefix}file" >&5 1722 1827 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 1723 1828 echo $ac_n "(cached) $ac_c" 1>&6 … … 1781 1886 if test -n "$ac_tool_prefix"; then 1782 1887 echo $ac_n "checking for file""... $ac_c" 1>&6 1783 echo "configure:1 784: checking for file" >&51888 echo "configure:1889: checking for file" >&5 1784 1889 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 1785 1890 echo $ac_n "(cached) $ac_c" 1>&6 … … 1852 1957 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 1853 1958 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1854 echo "configure:1 855: checking for $ac_word" >&51959 echo "configure:1960: checking for $ac_word" >&5 1855 1960 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1856 1961 echo $ac_n "(cached) $ac_c" 1>&6 … … 1859 1964 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1860 1965 else 1861 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1966 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1862 1967 ac_dummy="$PATH" 1863 1968 for ac_dir in $ac_dummy; do 1864 1969 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 1866 1972 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 1867 1973 break … … 1884 1990 set dummy ranlib; ac_word=$2 1885 1991 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1886 echo "configure:1 887: checking for $ac_word" >&51992 echo "configure:1993: checking for $ac_word" >&5 1887 1993 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1888 1994 echo $ac_n "(cached) $ac_c" 1>&6 … … 1891 1997 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1892 1998 else 1893 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1999 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1894 2000 ac_dummy="$PATH" 1895 2001 for ac_dir in $ac_dummy; do 1896 2002 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 1898 2005 ac_cv_prog_RANLIB="ranlib" 1899 2006 break … … 1919 2026 set dummy ${ac_tool_prefix}strip; ac_word=$2 1920 2027 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1921 echo "configure: 1922: checking for $ac_word" >&52028 echo "configure:2029: checking for $ac_word" >&5 1922 2029 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 1923 2030 echo $ac_n "(cached) $ac_c" 1>&6 … … 1926 2033 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 1927 2034 else 1928 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2035 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1929 2036 ac_dummy="$PATH" 1930 2037 for ac_dir in $ac_dummy; do 1931 2038 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 1933 2041 ac_cv_prog_STRIP="${ac_tool_prefix}strip" 1934 2042 break … … 1951 2059 set dummy strip; ac_word=$2 1952 2060 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1953 echo "configure: 1954: checking for $ac_word" >&52061 echo "configure:2062: checking for $ac_word" >&5 1954 2062 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 1955 2063 echo $ac_n "(cached) $ac_c" 1>&6 … … 1958 2066 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 1959 2067 else 1960 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2068 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1961 2069 ac_dummy="$PATH" 1962 2070 for ac_dir in $ac_dummy; do 1963 2071 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 1965 2074 ac_cv_prog_STRIP="strip" 1966 2075 break … … 2018 2127 *-*-irix6*) 2019 2128 # Find out which ABI we are using. 2020 echo '#line 2 021"configure"' > conftest.$ac_ext2021 if { (eval echo configure:2 022: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2129 echo '#line 2130 "configure"' > conftest.$ac_ext 2130 if { (eval echo configure:2131: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2022 2131 case `/usr/bin/file conftest.$ac_objext` in 2023 2132 *32-bit*) … … 2040 2149 CFLAGS="$CFLAGS -belf" 2041 2150 echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 2042 echo "configure:2 043: checking whether the C compiler needs -belf" >&52151 echo "configure:2152: checking whether the C compiler needs -belf" >&5 2043 2152 if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then 2044 2153 echo $ac_n "(cached) $ac_c" 1>&6 … … 2053 2162 2054 2163 cat > conftest.$ac_ext <<EOF 2055 #line 2 056"configure"2164 #line 2165 "configure" 2056 2165 #include "confdefs.h" 2057 2166 … … 2060 2169 ; return 0; } 2061 2170 EOF 2062 if { (eval echo configure:2 063: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2171 if { (eval echo configure:2172: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2063 2172 rm -rf conftest* 2064 2173 lt_cv_cc_needs_belf=yes … … 2184 2293 set dummy ranlib; ac_word=$2 2185 2294 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2186 echo "configure:2 187: checking for $ac_word" >&52295 echo "configure:2296: checking for $ac_word" >&5 2187 2296 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 2188 2297 echo $ac_n "(cached) $ac_c" 1>&6 … … 2191 2300 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 2192 2301 else 2193 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2302 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2194 2303 ac_dummy="$PATH" 2195 2304 for ac_dir in $ac_dummy; do 2196 2305 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 2198 2308 ac_cv_prog_RANLIB="ranlib" 2199 2309 break … … 2224 2334 # ./install, which can be erroneously created by make from ./install.sh. 2225 2335 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 2226 echo "configure:2 227: checking for a BSD compatible install" >&52336 echo "configure:2337: checking for a BSD compatible install" >&5 2227 2337 if test -z "$INSTALL"; then 2228 2338 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 2229 2339 echo $ac_n "(cached) $ac_c" 1>&6 2230 2340 else 2231 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"2341 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 2232 2342 for ac_dir in $PATH; do 2233 2343 # Account for people who put trailing slashes in PATH elements. 2234 2344 case "$ac_dir/" in 2235 2345 /|./|.//|/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/*) ;; 2236 2348 *) 2237 2349 # OSF1 and SCO ODT 3.0 have their own names for install. … … 2239 2351 # by default. 2240 2352 for ac_prog in ginstall scoinst install; do 2241 if test -f $ac_dir/$ac_prog ; then2353 if test -f $ac_dir/$ac_prog$ac_exeext; then 2242 2354 if test $ac_prog = install && 2243 2355 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 2245 2357 : 2246 2358 else 2247 ac_cv_path_install="$ac_dir/$ac_prog -c"2359 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 2248 2360 break 2 2249 2361 fi … … 2277 2389 2278 2390 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 2279 echo "configure:2 280: checking whether ${MAKE-make} sets \${MAKE}" >&52391 echo "configure:2392: checking whether ${MAKE-make} sets \${MAKE}" >&5 2280 2392 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 2281 2393 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 2306 2418 # Sanity check for the cross-compilation case: 2307 2419 echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 2308 echo "configure:2 309: checking how to run the C preprocessor" >&52420 echo "configure:2421: checking how to run the C preprocessor" >&5 2309 2421 # On Suns, sometimes $CPP names a directory. 2310 2422 if test -n "$CPP" && test -d "$CPP"; then … … 2321 2433 # not just through cpp. 2322 2434 cat > conftest.$ac_ext <<EOF 2323 #line 2324 "configure" 2435 #include <sys/types.h> 2436 #line 2437 "configure" 2324 2437 #include "confdefs.h" 2325 2438 #include <assert.h> … … 2327 2440 EOF 2328 2441 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2329 { (eval echo configure:2 330: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2442 { (eval echo configure:2443: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2330 2443 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2331 2444 if test -z "$ac_err"; then … … 2338 2451 CPP="${CC-cc} -E -traditional-cpp" 2339 2452 cat > conftest.$ac_ext <<EOF 2340 #line 2341 "configure" 2453 #include <sys/types.h> 2454 #line 2455 "configure" 2341 2455 #include "confdefs.h" 2342 2456 #include <assert.h> … … 2344 2458 EOF 2345 2459 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2346 { (eval echo configure:2 347: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2460 { (eval echo configure:2461: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2347 2461 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2348 2462 if test -z "$ac_err"; then … … 2355 2469 CPP="${CC-cc} -nologo -E" 2356 2470 cat > conftest.$ac_ext <<EOF 2357 #line 2358 "configure" 2471 #include <sys/types.h> 2472 #line 2473 "configure" 2358 2473 #include "confdefs.h" 2359 2474 #include <assert.h> … … 2361 2476 EOF 2362 2477 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2363 { (eval echo configure:2 364: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2478 { (eval echo configure:2479: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2364 2479 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2365 2480 if test -z "$ac_err"; then … … 2387 2502 ac_safe=`echo "stdio.h" | sed 'y%./+-%__p_%'` 2388 2503 echo $ac_n "checking for stdio.h""... $ac_c" 1>&6 2389 echo "configure:2 390: checking for stdio.h" >&52504 echo "configure:2505: checking for stdio.h" >&5 2390 2505 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2391 2506 echo $ac_n "(cached) $ac_c" 1>&6 2392 2507 else 2393 2508 cat > conftest.$ac_ext <<EOF 2394 #line 2395 "configure" 2509 #include <sys/types.h> 2510 #line 2511 "configure" 2395 2511 #include "confdefs.h" 2396 2512 #include <stdio.h> 2397 2513 EOF 2398 2514 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2399 { (eval echo configure:2 400: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2515 { (eval echo configure:2516: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2400 2516 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2401 2517 if test -z "$ac_err"; then … … 2425 2541 2426 2542 echo $ac_n "checking for built-in g77 integer types""... $ac_c" 1>&6 2427 echo "configure:2 428: checking for built-in g77 integer types" >&52543 echo "configure:2544: checking for built-in g77 integer types" >&5 2428 2544 if eval "test \"`echo '$''{'libf2c_cv_has_g77_builtin_types'+set}'`\" = set"; then 2429 2545 echo $ac_n "(cached) $ac_c" 1>&6 2430 2546 else 2431 2547 cat > conftest.$ac_ext <<EOF 2432 #line 2 433"configure"2548 #line 2549 "configure" 2433 2549 #include "confdefs.h" 2434 2550 … … 2440 2556 ; return 0; } 2441 2557 EOF 2442 if { (eval echo configure:2 443: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2558 if { (eval echo configure:2559: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2443 2559 rm -rf conftest* 2444 2560 libf2c_cv_has_g77_builtin_types=yes … … 2537 2653 # Protect against shell expansion while executing Makefile rules. 2538 2654 # 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 2655 cat > conftest.defs <<\EOF 2656 s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%-D\1=\2%g 2657 s%[ `~#$^&*(){}\\|;'"<>?]%\\&%g 2658 s%\[%\\&%g 2659 s%\]%\\&%g 2660 s%\$%$$%g 2661 EOF 2662 DEFS=`sed -f conftest.defs confdefs.h | tr '\012\015' ' '` 2663 rm -f conftest.defs 2567 2664 2568 2665 … … 2577 2674 # Run this file to recreate the current configuration. 2578 2675 # This directory was configured as follows, 2676 EOF 2677 echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS 2678 cat >> $CONFIG_STATUS <<EOF 2579 2679 # on host `(hostname || uname -n) 2>/dev/null | sed 1q`: 2580 2680 # … … 2602 2702 ac_given_srcdir=$srcdir 2603 2703 ac_given_INSTALL="$INSTALL" 2704 PATHIFS="$PATH_IFS" 2604 2705 2605 2706 trap 'rm -fr `echo "Makefile g2c.h:g2c.hin" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 … … 2612 2713 $ac_vpsub 2613 2714 $extrasub 2715 s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g 2614 2716 s%@SHELL@%$SHELL%g 2615 2717 s%@CFLAGS@%$CFLAGS%g … … 2635 2737 s%@infodir@%$infodir%g 2636 2738 s%@mandir@%$mandir%g 2739 s%@PATH_IFS@%$PATH_IFS%g 2740 s%@EXEEXT@%$EXEEXT%g 2637 2741 s%@toplevel_srcdir@%$toplevel_srcdir%g 2638 2742 s%@host@%$host%g … … 2661 2765 s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g 2662 2766 s%@INSTALL_DATA@%$INSTALL_DATA%g 2663 s%@EXEEXT@%$EXEEXT%g2664 2767 s%@gcc_version@%$gcc_version%g 2665 2768 s%@gcc_version_trigger@%$gcc_version_trigger%g … … 2743 2846 if test -z "$ac_dots"; then top_srcdir=. 2744 2847 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" ;; 2746 2850 *) # Relative path. 2747 2851 srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" … … 2750 2854 2751 2855 case "$ac_given_INSTALL" in 2752 [/$]* ) INSTALL="$ac_given_INSTALL" ;;2856 [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;; 2753 2857 *) INSTALL="$ac_dots$ac_given_INSTALL" ;; 2754 2858 esac … … 2763 2867 esac 2764 2868 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"` 2766 2870 sed -e "$ac_comsub 2767 2871 s%@configure_input@%$configure_input%g … … 2856 2960 .) # No --srcdir option. We are building in place. 2857 2961 ac_sub_srcdir=$srcdir ;; 2858 /* ) # Absolute path.2962 /* | [A-Za-z]:*) # Absolute path. 2859 2963 ac_sub_srcdir=$srcdir/$ac_config_dir ;; 2860 2964 *) # Relative path. … … 2866 2970 ac_sub_configure=$ac_sub_srcdir/configure 2867 2971 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 2869 2977 else 2870 2978 echo "configure: warning: no configuration information is in $ac_config_dir" 1>&2 … … 2877 2985 # Make the cache file name correct relative to the subdirectory. 2878 2986 case "$cache_file" in 2879 /* ) ac_sub_cache_file=$cache_file ;;2987 /* | [A-Za-z]:*) ac_sub_cache_file=$cache_file ;; 2880 2988 *) # Relative path. 2881 2989 ac_sub_cache_file="$ac_dots$cache_file" ;; 2882 2990 esac 2883 2991 case "$ac_given_INSTALL" in 2884 [/$]* ) INSTALL="$ac_given_INSTALL" ;;2992 [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;; 2885 2993 *) INSTALL="$ac_dots$ac_given_INSTALL" ;; 2886 2994 esac -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.