Changeset 80 for trunk/src/gcc/libf2c/libU77/configure
- Timestamp:
- May 2, 2003, 12:30:43 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gcc/libf2c/libU77/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 … … 553 704 set dummy gcc; ac_word=$2 554 705 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 555 echo "configure: 556: checking for $ac_word" >&5706 echo "configure:707: checking for $ac_word" >&5 556 707 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 557 708 echo $ac_n "(cached) $ac_c" 1>&6 … … 560 711 ac_cv_prog_CC="$CC" # Let the user override the test. 561 712 else 562 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"713 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 563 714 ac_dummy="$PATH" 564 715 for ac_dir in $ac_dummy; do 565 716 test -z "$ac_dir" && ac_dir=. 566 if test -f $ac_dir/$ac_word; then 717 if test -f $ac_dir/$ac_word -o \ 718 -f $ac_dir/$ac_word$ac_exeext ; then 567 719 ac_cv_prog_CC="gcc" 568 720 break … … 583 735 set dummy cc; ac_word=$2 584 736 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 585 echo "configure: 586: checking for $ac_word" >&5737 echo "configure:738: checking for $ac_word" >&5 586 738 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 587 739 echo $ac_n "(cached) $ac_c" 1>&6 … … 590 742 ac_cv_prog_CC="$CC" # Let the user override the test. 591 743 else 592 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"744 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 593 745 ac_prog_rejected=no 594 746 ac_dummy="$PATH" 595 747 for ac_dir in $ac_dummy; do 596 748 test -z "$ac_dir" && ac_dir=. 597 if test -f $ac_dir/$ac_word; then 598 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 749 if test -f $ac_dir/$ac_word -o \ 750 -f $ac_dir/$ac_word$ac_exeext ; then 751 if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \ 752 "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then 599 753 ac_prog_rejected=yes 600 754 continue … … 634 788 set dummy cl; ac_word=$2 635 789 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 636 echo "configure: 637: checking for $ac_word" >&5790 echo "configure:791: checking for $ac_word" >&5 637 791 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 638 792 echo $ac_n "(cached) $ac_c" 1>&6 … … 641 795 ac_cv_prog_CC="$CC" # Let the user override the test. 642 796 else 643 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"797 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 644 798 ac_dummy="$PATH" 645 799 for ac_dir in $ac_dummy; do 646 800 test -z "$ac_dir" && ac_dir=. 647 if test -f $ac_dir/$ac_word; then 801 if test -f $ac_dir/$ac_word -o \ 802 -f $ac_dir/$ac_word$ac_exeext ; then 648 803 ac_cv_prog_CC="cl" 649 804 break … … 667 822 668 823 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 669 echo "configure: 670: checking whether we are using GNU C" >&5824 echo "configure:825: checking whether we are using GNU C" >&5 670 825 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 671 826 echo $ac_n "(cached) $ac_c" 1>&6 … … 676 831 #endif 677 832 EOF 678 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure: 679: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then833 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:834: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 679 834 ac_cv_prog_gcc=yes 680 835 else … … 695 850 CFLAGS= 696 851 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 697 echo "configure: 698: checking whether ${CC-cc} accepts -g" >&5852 echo "configure:853: checking whether ${CC-cc} accepts -g" >&5 698 853 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 699 854 echo $ac_n "(cached) $ac_c" 1>&6 … … 739 894 740 895 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 741 echo "configure: 742: checking whether ${MAKE-make} sets \${MAKE}" >&5896 echo "configure:897: checking whether ${MAKE-make} sets \${MAKE}" >&5 742 897 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 743 898 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 769 924 set dummy chmod; ac_word=$2 770 925 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 771 echo "configure: 772: checking for $ac_word" >&5926 echo "configure:927: checking for $ac_word" >&5 772 927 if eval "test \"`echo '$''{'ac_cv_path_ac_cv_prog_chmod'+set}'`\" = set"; then 773 928 echo $ac_n "(cached) $ac_c" 1>&6 774 929 else 775 930 case "$ac_cv_prog_chmod" in 776 /* )931 /* | [a-zA-Z]:*) 777 932 ac_cv_path_ac_cv_prog_chmod="$ac_cv_prog_chmod" # Let the user override the test with a path. 778 933 ;; 779 ?:/*) 934 ?:/*) 780 935 ac_cv_path_ac_cv_prog_chmod="$ac_cv_prog_chmod" # Let the user override the test with a dos path. 781 936 ;; 782 937 *) 783 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"938 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 784 939 ac_dummy="$PATH" 785 for ac_dir in $ac_dummy; do 940 for ac_dir in $ac_dummy; do 786 941 test -z "$ac_dir" && ac_dir=. 787 942 if test -f $ac_dir/$ac_word; then 788 943 ac_cv_path_ac_cv_prog_chmod="$ac_dir/$ac_word" 944 break 945 fi 946 if test -f $ac_dir/$ac_word$ac_exeext; then 947 ac_cv_path_ac_cv_prog_chmod="$ac_dir/$ac_word$ac_exeext" 789 948 break 790 949 fi … … 813 972 814 973 echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 815 echo "configure: 816: checking how to run the C preprocessor" >&5974 echo "configure:975: checking how to run the C preprocessor" >&5 816 975 # On Suns, sometimes $CPP names a directory. 817 976 if test -n "$CPP" && test -d "$CPP"; then … … 828 987 # not just through cpp. 829 988 cat > conftest.$ac_ext <<EOF 830 #line 831 "configure" 989 #include <sys/types.h> 990 #line 991 "configure" 831 991 #include "confdefs.h" 832 992 #include <assert.h> … … 834 994 EOF 835 995 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 836 { (eval echo configure: 837: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }996 { (eval echo configure:997: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 837 997 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 838 998 if test -z "$ac_err"; then … … 845 1005 CPP="${CC-cc} -E -traditional-cpp" 846 1006 cat > conftest.$ac_ext <<EOF 847 #line 848 "configure" 1007 #include <sys/types.h> 1008 #line 1009 "configure" 848 1009 #include "confdefs.h" 849 1010 #include <assert.h> … … 851 1012 EOF 852 1013 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 853 { (eval echo configure: 854: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1014 { (eval echo configure:1015: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 854 1015 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 855 1016 if test -z "$ac_err"; then … … 862 1023 CPP="${CC-cc} -nologo -E" 863 1024 cat > conftest.$ac_ext <<EOF 864 #line 865 "configure" 1025 #include <sys/types.h> 1026 #line 1027 "configure" 865 1027 #include "confdefs.h" 866 1028 #include <assert.h> … … 868 1030 EOF 869 1031 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 870 { (eval echo configure: 871: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1032 { (eval echo configure:1033: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 871 1033 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 872 1034 if test -z "$ac_err"; then … … 893 1055 894 1056 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 895 echo "configure: 896: checking for ANSI C header files" >&51057 echo "configure:1058: checking for ANSI C header files" >&5 896 1058 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 897 1059 echo $ac_n "(cached) $ac_c" 1>&6 898 1060 else 899 1061 cat > conftest.$ac_ext <<EOF 900 #line 901 "configure" 1062 #include <sys/types.h> 1063 #line 1064 "configure" 901 1064 #include "confdefs.h" 902 1065 #include <stdlib.h> … … 906 1069 EOF 907 1070 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 908 { (eval echo configure: 909: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1071 { (eval echo configure:1072: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 909 1072 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 910 1073 if test -z "$ac_err"; then … … 923 1086 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 924 1087 cat > conftest.$ac_ext <<EOF 925 #line 926"configure"1088 #line 1089 "configure" 926 1089 #include "confdefs.h" 927 1090 #include <string.h> … … 941 1104 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 942 1105 cat > conftest.$ac_ext <<EOF 943 #line 944"configure"1106 #line 1107 "configure" 944 1107 #include "confdefs.h" 945 1108 #include <stdlib.h> … … 962 1125 else 963 1126 cat > conftest.$ac_ext <<EOF 964 #line 965"configure"1127 #line 1128 "configure" 965 1128 #include "confdefs.h" 966 1129 #include <ctype.h> … … 973 1136 974 1137 EOF 975 if { (eval echo configure: 976: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null1138 if { (eval echo configure:1139: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 976 1139 then 977 1140 : … … 998 1161 999 1162 echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 1000 echo "configure:1 001: checking whether time.h and sys/time.h may both be included" >&51163 echo "configure:1164: checking whether time.h and sys/time.h may both be included" >&5 1001 1164 if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then 1002 1165 echo $ac_n "(cached) $ac_c" 1>&6 1003 1166 else 1004 1167 cat > conftest.$ac_ext <<EOF 1005 #line 1 006"configure"1168 #line 1169 "configure" 1006 1169 #include "confdefs.h" 1007 1170 #include <sys/types.h> … … 1012 1175 ; return 0; } 1013 1176 EOF 1014 if { (eval echo configure:1 015: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1177 if { (eval echo configure:1178: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1015 1178 rm -rf conftest* 1016 1179 ac_cv_header_time=yes … … 1037 1200 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 1038 1201 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 1039 echo "configure:1 040: checking for $ac_hdr" >&51202 echo "configure:1203: checking for $ac_hdr" >&5 1040 1203 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 1041 1204 echo $ac_n "(cached) $ac_c" 1>&6 1042 1205 else 1043 1206 cat > conftest.$ac_ext <<EOF 1044 #line 1045 "configure" 1207 #include <sys/types.h> 1208 #line 1209 "configure" 1045 1209 #include "confdefs.h" 1046 1210 #include <$ac_hdr> 1047 1211 EOF 1048 1212 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1049 { (eval echo configure:1 050: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1213 { (eval echo configure:1214: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1050 1214 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1051 1215 if test -z "$ac_err"; then … … 1075 1239 1076 1240 echo $ac_n "checking for working const""... $ac_c" 1>&6 1077 echo "configure:1 078: checking for working const" >&51241 echo "configure:1242: checking for working const" >&5 1078 1242 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then 1079 1243 echo $ac_n "(cached) $ac_c" 1>&6 1080 1244 else 1081 1245 cat > conftest.$ac_ext <<EOF 1082 #line 1 083"configure"1246 #line 1247 "configure" 1083 1247 #include "confdefs.h" 1084 1248 … … 1129 1293 ; return 0; } 1130 1294 EOF 1131 if { (eval echo configure:1 132: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1295 if { (eval echo configure:1296: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1132 1296 rm -rf conftest* 1133 1297 ac_cv_c_const=yes … … 1150 1314 1151 1315 echo $ac_n "checking for size_t""... $ac_c" 1>&6 1152 echo "configure:1 153: checking for size_t" >&51316 echo "configure:1317: checking for size_t" >&5 1153 1317 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then 1154 1318 echo $ac_n "(cached) $ac_c" 1>&6 1155 1319 else 1156 1320 cat > conftest.$ac_ext <<EOF 1157 #line 1 158"configure"1321 #line 1322 "configure" 1158 1322 #include "confdefs.h" 1159 1323 #include <sys/types.h> … … 1183 1347 1184 1348 echo $ac_n "checking for mode_t""... $ac_c" 1>&6 1185 echo "configure:1 186: checking for mode_t" >&51349 echo "configure:1350: checking for mode_t" >&5 1186 1350 if eval "test \"`echo '$''{'ac_cv_type_mode_t'+set}'`\" = set"; then 1187 1351 echo $ac_n "(cached) $ac_c" 1>&6 1188 1352 else 1189 1353 cat > conftest.$ac_ext <<EOF 1190 #line 1 191"configure"1354 #line 1355 "configure" 1191 1355 #include "confdefs.h" 1192 1356 #include <sys/types.h> … … 1217 1381 1218 1382 echo $ac_n "checking for pid_t""... $ac_c" 1>&6 1219 echo "configure:1 220: checking for pid_t" >&51383 echo "configure:1384: checking for pid_t" >&5 1220 1384 if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then 1221 1385 echo $ac_n "(cached) $ac_c" 1>&6 1222 1386 else 1223 1387 cat > conftest.$ac_ext <<EOF 1224 #line 1 225"configure"1388 #line 1389 "configure" 1225 1389 #include "confdefs.h" 1226 1390 #include <sys/types.h> … … 1250 1414 1251 1415 echo $ac_n "checking for st_blksize in struct stat""... $ac_c" 1>&6 1252 echo "configure:1 253: checking for st_blksize in struct stat" >&51416 echo "configure:1417: checking for st_blksize in struct stat" >&5 1253 1417 if eval "test \"`echo '$''{'ac_cv_struct_st_blksize'+set}'`\" = set"; then 1254 1418 echo $ac_n "(cached) $ac_c" 1>&6 1255 1419 else 1256 1420 cat > conftest.$ac_ext <<EOF 1257 #line 1 258"configure"1421 #line 1422 "configure" 1258 1422 #include "confdefs.h" 1259 1423 #include <sys/types.h> … … 1263 1427 ; return 0; } 1264 1428 EOF 1265 if { (eval echo configure:1 266: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1429 if { (eval echo configure:1430: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1266 1430 rm -rf conftest* 1267 1431 ac_cv_struct_st_blksize=yes … … 1284 1448 1285 1449 echo $ac_n "checking for st_blocks in struct stat""... $ac_c" 1>&6 1286 echo "configure:1 287: checking for st_blocks in struct stat" >&51450 echo "configure:1451: checking for st_blocks in struct stat" >&5 1287 1451 if eval "test \"`echo '$''{'ac_cv_struct_st_blocks'+set}'`\" = set"; then 1288 1452 echo $ac_n "(cached) $ac_c" 1>&6 1289 1453 else 1290 1454 cat > conftest.$ac_ext <<EOF 1291 #line 1 292"configure"1455 #line 1456 "configure" 1292 1456 #include "confdefs.h" 1293 1457 #include <sys/types.h> … … 1297 1461 ; return 0; } 1298 1462 EOF 1299 if { (eval echo configure:1 300: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1463 if { (eval echo configure:1464: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1300 1464 rm -rf conftest* 1301 1465 ac_cv_struct_st_blocks=yes … … 1320 1484 1321 1485 echo $ac_n "checking for st_rdev in struct stat""... $ac_c" 1>&6 1322 echo "configure:1 323: checking for st_rdev in struct stat" >&51486 echo "configure:1487: checking for st_rdev in struct stat" >&5 1323 1487 if eval "test \"`echo '$''{'ac_cv_struct_st_rdev'+set}'`\" = set"; then 1324 1488 echo $ac_n "(cached) $ac_c" 1>&6 1325 1489 else 1326 1490 cat > conftest.$ac_ext <<EOF 1327 #line 1 328"configure"1491 #line 1492 "configure" 1328 1492 #include "confdefs.h" 1329 1493 #include <sys/types.h> … … 1333 1497 ; return 0; } 1334 1498 EOF 1335 if { (eval echo configure:1 336: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1499 if { (eval echo configure:1500: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1336 1500 rm -rf conftest* 1337 1501 ac_cv_struct_st_rdev=yes … … 1354 1518 1355 1519 echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&6 1356 echo "configure:1 357: checking whether struct tm is in sys/time.h or time.h" >&51520 echo "configure:1521: checking whether struct tm is in sys/time.h or time.h" >&5 1357 1521 if eval "test \"`echo '$''{'ac_cv_struct_tm'+set}'`\" = set"; then 1358 1522 echo $ac_n "(cached) $ac_c" 1>&6 1359 1523 else 1360 1524 cat > conftest.$ac_ext <<EOF 1361 #line 1 362"configure"1525 #line 1526 "configure" 1362 1526 #include "confdefs.h" 1363 1527 #include <sys/types.h> … … 1367 1531 ; return 0; } 1368 1532 EOF 1369 if { (eval echo configure:1 370: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1533 if { (eval echo configure:1534: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1370 1534 rm -rf conftest* 1371 1535 ac_cv_struct_tm=time.h … … 1389 1553 1390 1554 echo $ac_n "checking for gethostname in -lsocket""... $ac_c" 1>&6 1391 echo "configure:1 392: checking for gethostname in -lsocket" >&51555 echo "configure:1556: checking for gethostname in -lsocket" >&5 1392 1556 ac_lib_var=`echo socket'_'gethostname | sed 'y%./+-%__p_%'` 1393 1557 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1397 1561 LIBS="-lsocket $LIBS" 1398 1562 cat > conftest.$ac_ext <<EOF 1399 #line 1 400"configure"1563 #line 1564 "configure" 1400 1564 #include "confdefs.h" 1401 1565 /* Override any gcc2 internal prototype to avoid an error. */ … … 1408 1572 ; return 0; } 1409 1573 EOF 1410 if { (eval echo configure:1 411: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1574 if { (eval echo configure:1575: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1411 1575 rm -rf conftest* 1412 1576 eval "ac_cv_lib_$ac_lib_var=yes" … … 1434 1598 do 1435 1599 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1436 echo "configure:1 437: checking for $ac_func" >&51600 echo "configure:1601: checking for $ac_func" >&5 1437 1601 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1438 1602 echo $ac_n "(cached) $ac_c" 1>&6 1439 1603 else 1440 1604 cat > conftest.$ac_ext <<EOF 1441 #line 1 442"configure"1605 #line 1606 "configure" 1442 1606 #include "confdefs.h" 1443 1607 /* System header to define __stub macros and hopefully few prototypes, … … 1462 1626 ; return 0; } 1463 1627 EOF 1464 if { (eval echo configure:1 465: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1628 if { (eval echo configure:1629: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1465 1629 rm -rf conftest* 1466 1630 eval "ac_cv_func_$ac_func=yes" … … 1491 1655 do 1492 1656 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1493 echo "configure:1 494: checking for $ac_func" >&51657 echo "configure:1658: checking for $ac_func" >&5 1494 1658 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1495 1659 echo $ac_n "(cached) $ac_c" 1>&6 1496 1660 else 1497 1661 cat > conftest.$ac_ext <<EOF 1498 #line 1 499"configure"1662 #line 1663 "configure" 1499 1663 #include "confdefs.h" 1500 1664 /* System header to define __stub macros and hopefully few prototypes, … … 1519 1683 ; return 0; } 1520 1684 EOF 1521 if { (eval echo configure:1 522: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1685 if { (eval echo configure:1686: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1522 1686 rm -rf conftest* 1523 1687 eval "ac_cv_func_$ac_func=yes" … … 1545 1709 if test "$ac_cv_func_gettimeofday" = yes; then 1546 1710 echo $ac_n "checking for struct timezone""... $ac_c" 1>&6 1547 echo "configure:1 548: checking for struct timezone" >&51711 echo "configure:1712: checking for struct timezone" >&5 1548 1712 if eval "test \"`echo '$''{'g77_cv_struct_timezone'+set}'`\" = set"; then 1549 1713 echo $ac_n "(cached) $ac_c" 1>&6 1550 1714 else 1551 1715 cat > conftest.$ac_ext <<EOF 1552 #line 1 553"configure"1716 #line 1717 "configure" 1553 1717 #include "confdefs.h" 1554 1718 #include <sys/time.h> … … 1557 1721 ; return 0; } 1558 1722 EOF 1559 if { (eval echo configure:1 560: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1723 if { (eval echo configure:1724: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1560 1724 rm -rf conftest* 1561 1725 g77_cv_struct_timezone=yes … … 1578 1742 else 1579 1743 cat > conftest.$ac_ext <<EOF 1580 #line 1 581"configure"1744 #line 1745 "configure" 1581 1745 #include "confdefs.h" 1582 1746 … … 1601 1765 } 1602 1766 EOF 1603 if { (eval echo configure:1 604: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null1767 if { (eval echo configure:1768: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 1604 1768 then 1605 1769 cat >> confdefs.h <<\EOF … … 1617 1781 1618 1782 echo $ac_n "checking whether gettimeofday can accept two arguments""... $ac_c" 1>&6 1619 echo "configure:1 620: checking whether gettimeofday can accept two arguments" >&51783 echo "configure:1784: checking whether gettimeofday can accept two arguments" >&5 1620 1784 if eval "test \"`echo '$''{'emacs_cv_gettimeofday_two_arguments'+set}'`\" = set"; then 1621 1785 echo $ac_n "(cached) $ac_c" 1>&6 1622 1786 else 1623 1787 cat > conftest.$ac_ext <<EOF 1624 #line 1 625"configure"1788 #line 1789 "configure" 1625 1789 #include "confdefs.h" 1626 1790 … … 1648 1812 ; return 0; } 1649 1813 EOF 1650 if { (eval echo configure:1 651: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1814 if { (eval echo configure:1815: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1651 1815 rm -rf conftest* 1652 1816 emacs_cv_gettimeofday_two_arguments=yes … … 1754 1918 # Run this file to recreate the current configuration. 1755 1919 # This directory was configured as follows, 1920 EOF 1921 echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS 1922 cat >> $CONFIG_STATUS <<EOF 1756 1923 # on host `(hostname || uname -n) 2>/dev/null | sed 1q`: 1757 1924 # … … 1778 1945 1779 1946 ac_given_srcdir=$srcdir 1947 PATHIFS="$PATH_IFS" 1780 1948 1781 1949 trap 'rm -fr `echo "Makefile config.h:config.hin" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 … … 1788 1956 $ac_vpsub 1789 1957 $extrasub 1958 s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g 1790 1959 s%@SHELL@%$SHELL%g 1791 1960 s%@CFLAGS@%$CFLAGS%g … … 1811 1980 s%@infodir@%$infodir%g 1812 1981 s%@mandir@%$mandir%g 1982 s%@PATH_IFS@%$PATH_IFS%g 1983 s%@EXEEXT@%$EXEEXT%g 1813 1984 s%@CC@%$CC%g 1814 1985 s%@LIBTOOL@%$LIBTOOL%g … … 1892 2063 if test -z "$ac_dots"; then top_srcdir=. 1893 2064 else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; 1894 /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 2065 /* | [A-Za-z]:*) 2066 srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 1895 2067 *) # Relative path. 1896 2068 srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" … … 1908 2080 esac 1909 2081 1910 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s% :% $ac_given_srcdir/%g"`2082 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%$PATHIFS% $ac_given_srcdir/%g"` 1911 2083 sed -e "$ac_comsub 1912 2084 s%@configure_input@%$configure_input%g … … 1954 2126 1955 2127 rm -f conftest.frag conftest.in conftest.out 1956 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 2128 # kso the other way around might work better with drive letters and such. 2129 # ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 2130 ac_file_inputs=`echo $ac_file_in|sed -e "s%:% $ac_given_srcdir/%g" -e "s%^%$ac_given_srcdir/%" ` 1957 2131 cat $ac_file_inputs > conftest.in 1958 2132 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.