Changeset 80 for trunk/src/gcc/libf2c/libI77
- Timestamp:
- May 2, 2003, 12:30:43 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gcc/libf2c/libI77/configure
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r79 r80 521 521 fi 522 522 523 echo $ac_n "checking for path separator""... $ac_c" 1>&6 524 echo "configure:525: checking for path separator" >&5 525 # Filter path to get backslahes into forwardslashes 526 case "`uname -s 2> /dev/null`" in 527 OS/2) 528 PATH=`echo -E "$PATH" | sed 's+\\\\+/+g'` 529 PATH_IFS=';' 530 ;; 531 *) 532 PATH_IFS=':' 533 ;; 534 esac 535 echo "$ac_t""${PATH_IFS}" 1>&6 536 537 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 538 echo "configure:539: checking for Cygwin environment" >&5 539 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then 540 echo $ac_n "(cached) $ac_c" 1>&6 541 else 542 cat > conftest.$ac_ext <<EOF 543 #line 544 "configure" 544 #include "confdefs.h" 545 546 int main() { 547 548 #ifndef __CYGWIN__ 549 #define __CYGWIN__ __CYGWIN32__ 550 #endif 551 return __CYGWIN__; 552 ; return 0; } 553 EOF 554 if { (eval echo configure:555: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 555 rm -rf conftest* 556 ac_cv_cygwin=yes 557 else 558 echo "configure: failed program was:" >&5 559 cat conftest.$ac_ext >&5 560 rm -rf conftest* 561 ac_cv_cygwin=no 562 fi 563 rm -f conftest* 564 rm -f conftest* 565 fi 566 567 echo "$ac_t""$ac_cv_cygwin" 1>&6 568 CYGWIN= 569 test "$ac_cv_cygwin" = yes && CYGWIN=yes 570 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 571 echo "configure:572: checking for mingw32 environment" >&5 572 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then 573 echo $ac_n "(cached) $ac_c" 1>&6 574 else 575 cat > conftest.$ac_ext <<EOF 576 #line 577 "configure" 577 #include "confdefs.h" 578 579 int main() { 580 return __MINGW32__; 581 ; return 0; } 582 EOF 583 if { (eval echo configure:584: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 584 rm -rf conftest* 585 ac_cv_mingw32=yes 586 else 587 echo "configure: failed program was:" >&5 588 cat conftest.$ac_ext >&5 589 rm -rf conftest* 590 ac_cv_mingw32=no 591 fi 592 rm -f conftest* 593 rm -f conftest* 594 fi 595 596 echo "$ac_t""$ac_cv_mingw32" 1>&6 597 MINGW32= 598 test "$ac_cv_mingw32" = yes && MINGW32=yes 599 echo $ac_n "checking for EMX/OS2 environment""... $ac_c" 1>&6 600 echo "configure:601: checking for EMX/OS2 environment" >&5 601 if eval "test \"`echo '$''{'ac_cv_emxos2'+set}'`\" = set"; then 602 echo $ac_n "(cached) $ac_c" 1>&6 603 else 604 : ${CC=gcc.exe} 605 cat > conftest.$ac_ext <<EOF 606 #line 607 "configure" 607 #include "confdefs.h" 608 609 int main() { 610 return __EMX__; 611 ; return 0; } 612 EOF 613 if { (eval echo configure:614: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 614 rm -rf conftest* 615 ac_cv_emxos2=yes 616 else 617 echo "configure: failed program was:" >&5 618 cat conftest.$ac_ext >&5 619 rm -rf conftest* 620 ac_cv_emxos2=no 621 fi 622 rm -f conftest* 623 rm -f conftest* 624 fi 625 626 echo "$ac_t""$ac_cv_emxos2" 1>&6 627 if eval "test \"`echo '$''{'ac_cv_libpre'+set}'`\" = set"; then 628 echo $ac_n "(cached) $ac_c" 1>&6 629 else 630 if test "$ac_cv_emxos2" = yes ; then 631 ac_cv_libpre= 632 else 633 ac_cv_libpre=lib 634 fi 635 636 fi 637 638 EMXOS2= 639 test "$ac_cv_emxos2" = yes && EMXOS2=yes 640 641 642 643 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 644 echo "configure:645: checking for executable suffix" >&5 645 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 646 echo $ac_n "(cached) $ac_c" 1>&6 647 else 648 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 649 ac_cv_exeext=.exe 650 else 651 rm -f conftest* 652 echo 'int main () { return 0; }' > conftest.$ac_ext 653 ac_cv_exeext= 654 if { (eval echo configure:655: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 655 for file in conftest.*; do 656 case $file in 657 *.c | *.o | *.obj) ;; 658 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; 659 esac 660 done 661 else 662 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; } 663 fi 664 rm -f conftest* 665 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no 666 fi 667 fi 668 669 EXEEXT="" 670 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} 671 echo "$ac_t""${ac_cv_exeext}" 1>&6 672 ac_exeext=$EXEEXT 673 523 674 524 675 … … 557 708 set dummy gcc; ac_word=$2 558 709 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 559 echo "configure: 560: checking for $ac_word" >&5710 echo "configure:711: checking for $ac_word" >&5 560 711 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 561 712 echo $ac_n "(cached) $ac_c" 1>&6 … … 564 715 ac_cv_prog_CC="$CC" # Let the user override the test. 565 716 else 566 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"717 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 567 718 ac_dummy="$PATH" 568 719 for ac_dir in $ac_dummy; do 569 720 test -z "$ac_dir" && ac_dir=. 570 if test -f $ac_dir/$ac_word; then 721 if test -f $ac_dir/$ac_word -o \ 722 -f $ac_dir/$ac_word$ac_exeext ; then 571 723 ac_cv_prog_CC="gcc" 572 724 break … … 587 739 set dummy cc; ac_word=$2 588 740 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 589 echo "configure: 590: checking for $ac_word" >&5741 echo "configure:742: checking for $ac_word" >&5 590 742 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 591 743 echo $ac_n "(cached) $ac_c" 1>&6 … … 594 746 ac_cv_prog_CC="$CC" # Let the user override the test. 595 747 else 596 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"748 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 597 749 ac_prog_rejected=no 598 750 ac_dummy="$PATH" 599 751 for ac_dir in $ac_dummy; do 600 752 test -z "$ac_dir" && ac_dir=. 601 if test -f $ac_dir/$ac_word; then 602 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 753 if test -f $ac_dir/$ac_word -o \ 754 -f $ac_dir/$ac_word$ac_exeext ; then 755 if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \ 756 "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then 603 757 ac_prog_rejected=yes 604 758 continue … … 638 792 set dummy cl; ac_word=$2 639 793 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 640 echo "configure: 641: checking for $ac_word" >&5794 echo "configure:795: checking for $ac_word" >&5 641 795 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 642 796 echo $ac_n "(cached) $ac_c" 1>&6 … … 645 799 ac_cv_prog_CC="$CC" # Let the user override the test. 646 800 else 647 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"801 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 648 802 ac_dummy="$PATH" 649 803 for ac_dir in $ac_dummy; do 650 804 test -z "$ac_dir" && ac_dir=. 651 if test -f $ac_dir/$ac_word; then 805 if test -f $ac_dir/$ac_word -o \ 806 -f $ac_dir/$ac_word$ac_exeext ; then 652 807 ac_cv_prog_CC="cl" 653 808 break … … 671 826 672 827 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 673 echo "configure: 674: checking whether we are using GNU C" >&5828 echo "configure:829: checking whether we are using GNU C" >&5 674 829 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 675 830 echo $ac_n "(cached) $ac_c" 1>&6 … … 680 835 #endif 681 836 EOF 682 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure: 683: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then837 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:838: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 683 838 ac_cv_prog_gcc=yes 684 839 else … … 699 854 CFLAGS= 700 855 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 701 echo "configure: 702: checking whether ${CC-cc} accepts -g" >&5856 echo "configure:857: checking whether ${CC-cc} accepts -g" >&5 702 857 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 703 858 echo $ac_n "(cached) $ac_c" 1>&6 … … 737 892 738 893 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 739 echo "configure: 740: checking whether ${MAKE-make} sets \${MAKE}" >&5894 echo "configure:895: checking whether ${MAKE-make} sets \${MAKE}" >&5 740 895 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 741 896 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 767 922 # Sanity check for the cross-compilation case: 768 923 echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 769 echo "configure: 770: checking how to run the C preprocessor" >&5924 echo "configure:925: checking how to run the C preprocessor" >&5 770 925 # On Suns, sometimes $CPP names a directory. 771 926 if test -n "$CPP" && test -d "$CPP"; then … … 782 937 # not just through cpp. 783 938 cat > conftest.$ac_ext <<EOF 784 #line 785 "configure" 939 #include <sys/types.h> 940 #line 941 "configure" 785 941 #include "confdefs.h" 786 942 #include <assert.h> … … 788 944 EOF 789 945 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 790 { (eval echo configure: 791: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }946 { (eval echo configure:947: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 791 947 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 792 948 if test -z "$ac_err"; then … … 799 955 CPP="${CC-cc} -E -traditional-cpp" 800 956 cat > conftest.$ac_ext <<EOF 801 #line 802 "configure" 957 #include <sys/types.h> 958 #line 959 "configure" 802 959 #include "confdefs.h" 803 960 #include <assert.h> … … 805 962 EOF 806 963 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 807 { (eval echo configure: 808: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }964 { (eval echo configure:965: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 808 965 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 809 966 if test -z "$ac_err"; then … … 816 973 CPP="${CC-cc} -nologo -E" 817 974 cat > conftest.$ac_ext <<EOF 818 #line 819 "configure" 975 #include <sys/types.h> 976 #line 977 "configure" 819 977 #include "confdefs.h" 820 978 #include <assert.h> … … 822 980 EOF 823 981 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 824 { (eval echo configure: 825: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }982 { (eval echo configure:983: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 825 983 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 826 984 if test -z "$ac_err"; then … … 848 1006 ac_safe=`echo "stdio.h" | sed 'y%./+-%__p_%'` 849 1007 echo $ac_n "checking for stdio.h""... $ac_c" 1>&6 850 echo "configure: 851: checking for stdio.h" >&51008 echo "configure:1009: checking for stdio.h" >&5 851 1009 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 852 1010 echo $ac_n "(cached) $ac_c" 1>&6 853 1011 else 854 1012 cat > conftest.$ac_ext <<EOF 855 #line 856 "configure" 1013 #include <sys/types.h> 1014 #line 1015 "configure" 856 1015 #include "confdefs.h" 857 1016 #include <stdio.h> 858 1017 EOF 859 1018 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 860 { (eval echo configure: 861: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1019 { (eval echo configure:1020: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 861 1020 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 862 1021 if test -z "$ac_err"; then … … 886 1045 887 1046 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 888 echo "configure: 889: checking for ANSI C header files" >&51047 echo "configure:1048: checking for ANSI C header files" >&5 889 1048 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 890 1049 echo $ac_n "(cached) $ac_c" 1>&6 891 1050 else 892 1051 cat > conftest.$ac_ext <<EOF 893 #line 894 "configure" 1052 #include <sys/types.h> 1053 #line 1054 "configure" 894 1054 #include "confdefs.h" 895 1055 #include <stdlib.h> … … 899 1059 EOF 900 1060 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 901 { (eval echo configure: 902: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1061 { (eval echo configure:1062: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 902 1062 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 903 1063 if test -z "$ac_err"; then … … 916 1076 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 917 1077 cat > conftest.$ac_ext <<EOF 918 #line 919 "configure"1078 #line 1079 "configure" 919 1079 #include "confdefs.h" 920 1080 #include <string.h> … … 934 1094 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 935 1095 cat > conftest.$ac_ext <<EOF 936 #line 937 "configure"1096 #line 1097 "configure" 937 1097 #include "confdefs.h" 938 1098 #include <stdlib.h> … … 955 1115 else 956 1116 cat > conftest.$ac_ext <<EOF 957 #line 958 "configure"1117 #line 1118 "configure" 958 1118 #include "confdefs.h" 959 1119 #include <ctype.h> … … 966 1126 967 1127 EOF 968 if { (eval echo configure: 969: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null1128 if { (eval echo configure:1129: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 969 1129 then 970 1130 : … … 991 1151 992 1152 echo $ac_n "checking for posix""... $ac_c" 1>&6 993 echo "configure: 994: checking for posix" >&51153 echo "configure:1154: checking for posix" >&5 994 1154 if eval "test \"`echo '$''{'g77_cv_header_posix'+set}'`\" = set"; then 995 1155 echo $ac_n "(cached) $ac_c" 1>&6 996 1156 else 997 1157 cat > conftest.$ac_ext <<EOF 998 #line 999 "configure"1158 #line 1159 "configure" 999 1159 #include "confdefs.h" 1000 1160 #include <sys/types.h> … … 1022 1182 # header isn't actually like checking the functions, though... 1023 1183 echo $ac_n "checking for GNU library""... $ac_c" 1>&6 1024 echo "configure:1 025: checking for GNU library" >&51184 echo "configure:1185: checking for GNU library" >&5 1025 1185 if eval "test \"`echo '$''{'g77_cv_lib_gnu'+set}'`\" = set"; then 1026 1186 echo $ac_n "(cached) $ac_c" 1>&6 1027 1187 else 1028 1188 cat > conftest.$ac_ext <<EOF 1029 #line 1 030 "configure"1189 #line 1190 "configure" 1030 1190 #include "confdefs.h" 1031 1191 #include <stdio.h> … … 1051 1211 # Apparently cygwin needs to be special-cased. 1052 1212 echo $ac_n "checking for cyg\`win'32""... $ac_c" 1>&6 1053 echo "configure:1 054: checking for cyg\`win'32" >&51213 echo "configure:1214: checking for cyg\`win'32" >&5 1054 1214 if eval "test \"`echo '$''{'g77_cv_sys_cygwin32'+set}'`\" = set"; then 1055 1215 echo $ac_n "(cached) $ac_c" 1>&6 1056 1216 else 1057 1217 cat > conftest.$ac_ext <<EOF 1058 #line 1 059 "configure"1218 #line 1219 "configure" 1059 1219 #include "confdefs.h" 1060 1220 #ifdef __CYGWIN32__ … … 1079 1239 # ditto for mingw32. 1080 1240 echo $ac_n "checking for mingw32""... $ac_c" 1>&6 1081 echo "configure:1 082: checking for mingw32" >&51241 echo "configure:1242: checking for mingw32" >&5 1082 1242 if eval "test \"`echo '$''{'g77_cv_sys_mingw32'+set}'`\" = set"; then 1083 1243 echo $ac_n "(cached) $ac_c" 1>&6 1084 1244 else 1085 1245 cat > conftest.$ac_ext <<EOF 1086 #line 1 087 "configure"1246 #line 1247 "configure" 1087 1247 #include "confdefs.h" 1088 1248 #ifdef __MINGW32__ … … 1107 1267 1108 1268 echo $ac_n "checking for working const""... $ac_c" 1>&6 1109 echo "configure:1 110: checking for working const" >&51269 echo "configure:1270: checking for working const" >&5 1110 1270 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then 1111 1271 echo $ac_n "(cached) $ac_c" 1>&6 1112 1272 else 1113 1273 cat > conftest.$ac_ext <<EOF 1114 #line 1 115 "configure"1274 #line 1275 "configure" 1115 1275 #include "confdefs.h" 1116 1276 … … 1161 1321 ; return 0; } 1162 1322 EOF 1163 if { (eval echo configure:1 164: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1323 if { (eval echo configure:1324: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1164 1324 rm -rf conftest* 1165 1325 ac_cv_c_const=yes … … 1182 1342 1183 1343 echo $ac_n "checking for size_t""... $ac_c" 1>&6 1184 echo "configure:1 185: checking for size_t" >&51344 echo "configure:1345: checking for size_t" >&5 1185 1345 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then 1186 1346 echo $ac_n "(cached) $ac_c" 1>&6 1187 1347 else 1188 1348 cat > conftest.$ac_ext <<EOF 1189 #line 1 190 "configure"1349 #line 1350 "configure" 1190 1350 #include "confdefs.h" 1191 1351 #include <sys/types.h> … … 1220 1380 # (as of cygwin b18). Likewise on mingw. 1221 1381 echo $ac_n "checking for fstat""... $ac_c" 1>&6 1222 echo "configure:1 223: checking for fstat" >&51382 echo "configure:1383: checking for fstat" >&5 1223 1383 if eval "test \"`echo '$''{'ac_cv_func_fstat'+set}'`\" = set"; then 1224 1384 echo $ac_n "(cached) $ac_c" 1>&6 1225 1385 else 1226 1386 cat > conftest.$ac_ext <<EOF 1227 #line 1 228 "configure"1387 #line 1388 "configure" 1228 1388 #include "confdefs.h" 1229 1389 /* System header to define __stub macros and hopefully few prototypes, … … 1248 1408 ; return 0; } 1249 1409 EOF 1250 if { (eval echo configure:1 251: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1410 if { (eval echo configure:1411: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1251 1411 rm -rf conftest* 1252 1412 eval "ac_cv_func_fstat=yes" … … 1268 1428 1269 1429 echo $ac_n "checking need for NON_UNIX_STDIO""... $ac_c" 1>&6 1270 echo "configure:1 271: checking need for NON_UNIX_STDIO" >&51430 echo "configure:1431: checking need for NON_UNIX_STDIO" >&5 1271 1431 if test $g77_cv_sys_cygwin32 = yes \ 1272 1432 || test $g77_cv_sys_mingw32 = yes \ … … 1284 1444 do 1285 1445 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1286 echo "configure:1 287: checking for $ac_func" >&51446 echo "configure:1447: checking for $ac_func" >&5 1287 1447 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1288 1448 echo $ac_n "(cached) $ac_c" 1>&6 1289 1449 else 1290 1450 cat > conftest.$ac_ext <<EOF 1291 #line 1 292 "configure"1451 #line 1452 "configure" 1292 1452 #include "confdefs.h" 1293 1453 /* System header to define __stub macros and hopefully few prototypes, … … 1312 1472 ; return 0; } 1313 1473 EOF 1314 if { (eval echo configure:1 315: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1474 if { (eval echo configure:1475: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1315 1475 rm -rf conftest* 1316 1476 eval "ac_cv_func_$ac_func=yes" … … 1339 1499 do 1340 1500 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1341 echo "configure:1 342: checking for $ac_func" >&51501 echo "configure:1502: checking for $ac_func" >&5 1342 1502 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1343 1503 echo $ac_n "(cached) $ac_c" 1>&6 1344 1504 else 1345 1505 cat > conftest.$ac_ext <<EOF 1346 #line 1 347 "configure"1506 #line 1507 "configure" 1347 1507 #include "confdefs.h" 1348 1508 /* System header to define __stub macros and hopefully few prototypes, … … 1367 1527 ; return 0; } 1368 1528 EOF 1369 if { (eval echo configure:1 370: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1529 if { (eval echo configure:1530: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1370 1530 rm -rf conftest* 1371 1531 eval "ac_cv_func_$ac_func=yes" … … 1394 1554 do 1395 1555 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1396 echo "configure:1 397: checking for $ac_func" >&51556 echo "configure:1557: checking for $ac_func" >&5 1397 1557 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1398 1558 echo $ac_n "(cached) $ac_c" 1>&6 1399 1559 else 1400 1560 cat > conftest.$ac_ext <<EOF 1401 #line 1 402 "configure"1561 #line 1562 "configure" 1402 1562 #include "confdefs.h" 1403 1563 /* System header to define __stub macros and hopefully few prototypes, … … 1422 1582 ; return 0; } 1423 1583 EOF 1424 if { (eval echo configure:1 425: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1584 if { (eval echo configure:1585: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1425 1585 rm -rf conftest* 1426 1586 eval "ac_cv_func_$ac_func=yes" … … 1449 1609 do 1450 1610 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1451 echo "configure:1 452: checking for $ac_func" >&51611 echo "configure:1612: checking for $ac_func" >&5 1452 1612 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1453 1613 echo $ac_n "(cached) $ac_c" 1>&6 1454 1614 else 1455 1615 cat > conftest.$ac_ext <<EOF 1456 #line 1 457 "configure"1616 #line 1617 "configure" 1457 1617 #include "confdefs.h" 1458 1618 /* System header to define __stub macros and hopefully few prototypes, … … 1477 1637 ; return 0; } 1478 1638 EOF 1479 if { (eval echo configure:1 480: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1639 if { (eval echo configure:1640: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1480 1640 rm -rf conftest* 1481 1641 eval "ac_cv_func_$ac_func=yes" … … 1504 1664 do 1505 1665 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1506 echo "configure:1 507: checking for $ac_func" >&51666 echo "configure:1667: checking for $ac_func" >&5 1507 1667 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1508 1668 echo $ac_n "(cached) $ac_c" 1>&6 1509 1669 else 1510 1670 cat > conftest.$ac_ext <<EOF 1511 #line 1 512 "configure"1671 #line 1672 "configure" 1512 1672 #include "confdefs.h" 1513 1673 /* System header to define __stub macros and hopefully few prototypes, … … 1532 1692 ; return 0; } 1533 1693 EOF 1534 if { (eval echo configure:1 535: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1694 if { (eval echo configure:1695: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1535 1695 rm -rf conftest* 1536 1696 eval "ac_cv_func_$ac_func=yes" … … 1559 1719 do 1560 1720 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1561 echo "configure:1 562: checking for $ac_func" >&51721 echo "configure:1722: checking for $ac_func" >&5 1562 1722 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1563 1723 echo $ac_n "(cached) $ac_c" 1>&6 1564 1724 else 1565 1725 cat > conftest.$ac_ext <<EOF 1566 #line 1 567 "configure"1726 #line 1727 "configure" 1567 1727 #include "confdefs.h" 1568 1728 /* System header to define __stub macros and hopefully few prototypes, … … 1587 1747 ; return 0; } 1588 1748 EOF 1589 if { (eval echo configure:1 590: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1749 if { (eval echo configure:1750: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1590 1750 rm -rf conftest* 1591 1751 eval "ac_cv_func_$ac_func=yes" … … 1617 1777 # we're posix-conformant, so always do the test. 1618 1778 echo $ac_n "checking for ansi/posix sprintf result""... $ac_c" 1>&6 1619 echo "configure:1 620: checking for ansi/posix sprintf result" >&51779 echo "configure:1780: checking for ansi/posix sprintf result" >&5 1620 1780 if test "$cross_compiling" = yes; then 1621 1781 g77_cv_sys_sprintf_ansi=no 1622 1782 else 1623 1783 cat > conftest.$ac_ext <<EOF 1624 #line 1 625 "configure"1784 #line 1785 "configure" 1625 1785 #include "confdefs.h" 1626 1786 #include <stdio.h> … … 1629 1789 1630 1790 EOF 1631 if { (eval echo configure:1 632: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null1791 if { (eval echo configure:1792: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 1632 1792 then 1633 1793 g77_cv_sys_sprintf_ansi=yes … … 1660 1820 # define NON_ANSI_RW_MODES on unix (can't hurt) 1661 1821 echo $ac_n "checking NON_ANSI_RW_MODES""... $ac_c" 1>&6 1662 echo "configure:1 663: checking NON_ANSI_RW_MODES" >&51822 echo "configure:1823: checking NON_ANSI_RW_MODES" >&5 1663 1823 cat > conftest.$ac_ext <<EOF 1664 #line 1 665 "configure"1824 #line 1825 "configure" 1665 1825 #include "confdefs.h" 1666 1826 #ifdef unix … … 1707 1867 1708 1868 echo $ac_n "checking for off_t""... $ac_c" 1>&6 1709 echo "configure:1 710: checking for off_t" >&51869 echo "configure:1870: checking for off_t" >&5 1710 1870 if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then 1711 1871 echo $ac_n "(cached) $ac_c" 1>&6 1712 1872 else 1713 1873 cat > conftest.$ac_ext <<EOF 1714 #line 1 715 "configure"1874 #line 1875 "configure" 1715 1875 #include "confdefs.h" 1716 1876 #include <sys/types.h> … … 1820 1980 # Run this file to recreate the current configuration. 1821 1981 # This directory was configured as follows, 1982 EOF 1983 echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS 1984 cat >> $CONFIG_STATUS <<EOF 1822 1985 # on host `(hostname || uname -n) 2>/dev/null | sed 1q`: 1823 1986 # … … 1844 2007 1845 2008 ac_given_srcdir=$srcdir 2009 PATHIFS="$PATH_IFS" 1846 2010 1847 2011 trap 'rm -fr `echo "Makefile config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 … … 1854 2018 $ac_vpsub 1855 2019 $extrasub 2020 s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g 1856 2021 s%@SHELL@%$SHELL%g 1857 2022 s%@CFLAGS@%$CFLAGS%g … … 1877 2042 s%@infodir@%$infodir%g 1878 2043 s%@mandir@%$mandir%g 2044 s%@PATH_IFS@%$PATH_IFS%g 2045 s%@EXEEXT@%$EXEEXT%g 1879 2046 s%@CC@%$CC%g 1880 2047 s%@LIBTOOL@%$LIBTOOL%g … … 1952 2119 if test -z "$ac_dots"; then top_srcdir=. 1953 2120 else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; 1954 /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 2121 /* | [A-Za-z]:*) 2122 srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 1955 2123 *) # Relative path. 1956 2124 srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" … … 1968 2136 esac 1969 2137 1970 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s% :% $ac_given_srcdir/%g"`2138 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%$PATHIFS% $ac_given_srcdir/%g"` 1971 2139 sed -e "$ac_comsub 1972 2140 s%@configure_input@%$configure_input%g … … 2014 2182 2015 2183 rm -f conftest.frag conftest.in conftest.out 2016 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 2184 # kso the other way around might work better with drive letters and such. 2185 # ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 2186 ac_file_inputs=`echo $ac_file_in|sed -e "s%:% $ac_given_srcdir/%g" -e "s%^%$ac_given_srcdir/%" ` 2017 2187 cat $ac_file_inputs > conftest.in 2018 2188 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.