Changeset 80 for trunk/src/gcc/libffi
- Timestamp:
- May 2, 2003, 12:30:43 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gcc/libffi/configure
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r79 r80 546 546 fi 547 547 548 echo $ac_n "checking for path separator""... $ac_c" 1>&6 549 echo "configure:550: checking for path separator" >&5 550 # Filter path to get backslahes into forwardslashes 551 case "`uname -s 2> /dev/null`" in 552 OS/2) 553 PATH=`echo -E "$PATH" | sed 's+\\\\+/+g'` 554 PATH_IFS=';' 555 ;; 556 *) 557 PATH_IFS=':' 558 ;; 559 esac 560 echo "$ac_t""${PATH_IFS}" 1>&6 561 548 562 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 549 echo "configure:5 50: checking for Cygwin environment" >&5563 echo "configure:564: checking for Cygwin environment" >&5 550 564 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then 551 565 echo $ac_n "(cached) $ac_c" 1>&6 552 566 else 553 567 cat > conftest.$ac_ext <<EOF 554 #line 5 55"configure"568 #line 569 "configure" 555 569 #include "confdefs.h" 556 570 … … 563 577 ; return 0; } 564 578 EOF 565 if { (eval echo configure:5 66: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then579 if { (eval echo configure:580: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 566 580 rm -rf conftest* 567 581 ac_cv_cygwin=yes … … 580 594 test "$ac_cv_cygwin" = yes && CYGWIN=yes 581 595 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 582 echo "configure:5 83: checking for mingw32 environment" >&5596 echo "configure:597: checking for mingw32 environment" >&5 583 597 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then 584 598 echo $ac_n "(cached) $ac_c" 1>&6 585 599 else 586 600 cat > conftest.$ac_ext <<EOF 587 #line 588"configure"601 #line 602 "configure" 588 602 #include "confdefs.h" 589 603 … … 592 606 ; return 0; } 593 607 EOF 594 if { (eval echo configure: 595: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then608 if { (eval echo configure:609: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 595 609 rm -rf conftest* 596 610 ac_cv_mingw32=yes … … 608 622 MINGW32= 609 623 test "$ac_cv_mingw32" = yes && MINGW32=yes 624 echo $ac_n "checking for EMX/OS2 environment""... $ac_c" 1>&6 625 echo "configure:626: checking for EMX/OS2 environment" >&5 626 if eval "test \"`echo '$''{'ac_cv_emxos2'+set}'`\" = set"; then 627 echo $ac_n "(cached) $ac_c" 1>&6 628 else 629 : ${CC=gcc.exe} 630 cat > conftest.$ac_ext <<EOF 631 #line 632 "configure" 632 #include "confdefs.h" 633 634 int main() { 635 return __EMX__; 636 ; return 0; } 637 EOF 638 if { (eval echo configure:639: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 639 rm -rf conftest* 640 ac_cv_emxos2=yes 641 else 642 echo "configure: failed program was:" >&5 643 cat conftest.$ac_ext >&5 644 rm -rf conftest* 645 ac_cv_emxos2=no 646 fi 647 rm -f conftest* 648 rm -f conftest* 649 fi 650 651 echo "$ac_t""$ac_cv_emxos2" 1>&6 652 if eval "test \"`echo '$''{'ac_cv_libpre'+set}'`\" = set"; then 653 echo $ac_n "(cached) $ac_c" 1>&6 654 else 655 if test "$ac_cv_emxos2" = yes ; then 656 ac_cv_libpre= 657 else 658 ac_cv_libpre=lib 659 fi 660 661 fi 662 663 EMXOS2= 664 test "$ac_cv_emxos2" = yes && EMXOS2=yes 665 666 667 668 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 669 echo "configure:670: checking for executable suffix" >&5 670 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 671 echo $ac_n "(cached) $ac_c" 1>&6 672 else 673 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 674 ac_cv_exeext=.exe 675 else 676 rm -f conftest* 677 echo 'int main () { return 0; }' > conftest.$ac_ext 678 ac_cv_exeext= 679 if { (eval echo configure:680: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 680 for file in conftest.*; do 681 case $file in 682 *.c | *.o | *.obj) ;; 683 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; 684 esac 685 done 686 else 687 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; } 688 fi 689 rm -f conftest* 690 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no 691 fi 692 fi 693 694 EXEEXT="" 695 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} 696 echo "$ac_t""${ac_cv_exeext}" 1>&6 697 ac_exeext=$EXEEXT 698 610 699 611 700 … … 669 758 670 759 echo $ac_n "checking host system type""... $ac_c" 1>&6 671 echo "configure: 672: checking host system type" >&5760 echo "configure:761: checking host system type" >&5 672 761 673 762 host_alias=$host … … 760 849 761 850 echo $ac_n "checking build system type""... $ac_c" 1>&6 762 echo "configure: 763: checking build system type" >&5851 echo "configure:852: checking build system type" >&5 763 852 764 853 build_alias=$build … … 780 869 set dummy gcc; ac_word=$2 781 870 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 782 echo "configure: 783: checking for $ac_word" >&5871 echo "configure:872: checking for $ac_word" >&5 783 872 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 784 873 echo $ac_n "(cached) $ac_c" 1>&6 … … 787 876 ac_cv_prog_CC="$CC" # Let the user override the test. 788 877 else 789 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"878 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 790 879 ac_dummy="$PATH" 791 880 for ac_dir in $ac_dummy; do 792 881 test -z "$ac_dir" && ac_dir=. 793 if test -f $ac_dir/$ac_word; then 882 if test -f $ac_dir/$ac_word -o \ 883 -f $ac_dir/$ac_word$ac_exeext ; then 794 884 ac_cv_prog_CC="gcc" 795 885 break … … 810 900 set dummy cc; ac_word=$2 811 901 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 812 echo "configure: 813: checking for $ac_word" >&5902 echo "configure:903: checking for $ac_word" >&5 813 903 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 814 904 echo $ac_n "(cached) $ac_c" 1>&6 … … 817 907 ac_cv_prog_CC="$CC" # Let the user override the test. 818 908 else 819 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"909 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 820 910 ac_prog_rejected=no 821 911 ac_dummy="$PATH" 822 912 for ac_dir in $ac_dummy; do 823 913 test -z "$ac_dir" && ac_dir=. 824 if test -f $ac_dir/$ac_word; then 825 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 914 if test -f $ac_dir/$ac_word -o \ 915 -f $ac_dir/$ac_word$ac_exeext ; then 916 if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \ 917 "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then 826 918 ac_prog_rejected=yes 827 919 continue … … 861 953 set dummy cl; ac_word=$2 862 954 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 863 echo "configure: 864: checking for $ac_word" >&5955 echo "configure:956: checking for $ac_word" >&5 864 956 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 865 957 echo $ac_n "(cached) $ac_c" 1>&6 … … 868 960 ac_cv_prog_CC="$CC" # Let the user override the test. 869 961 else 870 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"962 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 871 963 ac_dummy="$PATH" 872 964 for ac_dir in $ac_dummy; do 873 965 test -z "$ac_dir" && ac_dir=. 874 if test -f $ac_dir/$ac_word; then 966 if test -f $ac_dir/$ac_word -o \ 967 -f $ac_dir/$ac_word$ac_exeext ; then 875 968 ac_cv_prog_CC="cl" 876 969 break … … 893 986 894 987 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 895 echo "configure: 896: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5988 echo "configure:989: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 896 989 897 990 ac_ext=c … … 904 997 cat > conftest.$ac_ext << EOF 905 998 906 #line 907"configure"999 #line 1000 "configure" 907 1000 #include "confdefs.h" 908 1001 909 1002 main(){return(0);} 910 1003 EOF 911 if { (eval echo configure: 912: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1004 if { (eval echo configure:1005: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 912 1005 ac_cv_prog_cc_works=yes 913 1006 # If we can't run a trivial program, we are probably using a cross compiler. … … 935 1028 fi 936 1029 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 937 echo "configure: 938: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&51030 echo "configure:1031: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 938 1031 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 939 1032 cross_compiling=$ac_cv_prog_cc_cross 940 1033 941 1034 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 942 echo "configure: 943: checking whether we are using GNU C" >&51035 echo "configure:1036: checking whether we are using GNU C" >&5 943 1036 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 944 1037 echo $ac_n "(cached) $ac_c" 1>&6 … … 949 1042 #endif 950 1043 EOF 951 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure: 952: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1044 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1045: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 952 1045 ac_cv_prog_gcc=yes 953 1046 else … … 968 1061 CFLAGS= 969 1062 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 970 echo "configure: 971: checking whether ${CC-cc} accepts -g" >&51063 echo "configure:1064: checking whether ${CC-cc} accepts -g" >&5 971 1064 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 972 1065 echo $ac_n "(cached) $ac_c" 1>&6 … … 1011 1104 # Check if gcc -print-prog-name=ld gives a path. 1012 1105 echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 1013 echo "configure:1 014: checking for ld used by GCC" >&51106 echo "configure:1107: checking for ld used by GCC" >&5 1014 1107 case $host in 1015 1108 *-*-mingw*) … … 1041 1134 elif test "$with_gnu_ld" = yes; then 1042 1135 echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 1043 echo "configure:1 044: checking for GNU ld" >&51136 echo "configure:1137: checking for GNU ld" >&5 1044 1137 else 1045 1138 echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 1046 echo "configure:1 047: checking for non-GNU ld" >&51139 echo "configure:1140: checking for non-GNU ld" >&5 1047 1140 fi 1048 1141 if eval "test \"`echo '$''{'lt_cv_path_LD'+set}'`\" = set"; then … … 1079 1172 test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } 1080 1173 echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 1081 echo "configure:1 082: checking if the linker ($LD) is GNU ld" >&51174 echo "configure:1175: checking if the linker ($LD) is GNU ld" >&5 1082 1175 if eval "test \"`echo '$''{'lt_cv_prog_gnu_ld'+set}'`\" = set"; then 1083 1176 echo $ac_n "(cached) $ac_c" 1>&6 … … 1096 1189 1097 1190 echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6 1098 echo "configure:1 099: checking for $LD option to reload object files" >&51191 echo "configure:1192: checking for $LD option to reload object files" >&5 1099 1192 if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then 1100 1193 echo $ac_n "(cached) $ac_c" 1>&6 … … 1108 1201 1109 1202 echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 1110 echo "configure:1 111: checking for BSD-compatible nm" >&51203 echo "configure:1204: checking for BSD-compatible nm" >&5 1111 1204 if eval "test \"`echo '$''{'lt_cv_path_NM'+set}'`\" = set"; then 1112 1205 echo $ac_n "(cached) $ac_c" 1>&6 … … 1146 1239 1147 1240 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 1148 echo "configure:1 149: checking whether ln -s works" >&51241 echo "configure:1242: checking whether ln -s works" >&5 1149 1242 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then 1150 1243 echo $ac_n "(cached) $ac_c" 1>&6 … … 1156 1249 ac_cv_prog_LN_S="ln -s" 1157 1250 else 1158 ac_cv_prog_LN_S=ln 1159 fi 1251 echo A > conftestdata; 1252 if ln conftestdata conftestdata2 2>/dev/null; then 1253 ac_cv_prog_LN_S=ln 1254 else 1255 ac_cv_prog_LN_S=cp 1256 fi 1257 fi 1258 rm -f conftestdata* 1160 1259 fi 1161 1260 LN_S="$ac_cv_prog_LN_S" … … 1167 1266 1168 1267 echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6 1169 echo "configure:1 170: checking how to recognise dependant libraries" >&51268 echo "configure:1269: checking how to recognise dependant libraries" >&5 1170 1269 if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then 1171 1270 echo $ac_n "(cached) $ac_c" 1>&6 … … 1331 1430 1332 1431 echo $ac_n "checking for object suffix""... $ac_c" 1>&6 1333 echo "configure:1 334: checking for object suffix" >&51432 echo "configure:1433: checking for object suffix" >&5 1334 1433 if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then 1335 1434 echo $ac_n "(cached) $ac_c" 1>&6 … … 1337 1436 rm -f conftest* 1338 1437 echo 'int i = 1;' > conftest.$ac_ext 1339 if { (eval echo configure:1 340: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1438 if { (eval echo configure:1439: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1340 1439 for ac_file in conftest.*; do 1341 1440 case $ac_file in … … 1354 1453 ac_objext=$ac_cv_objext 1355 1454 1356 1357 1358 echo $ac_n "checking for executable suffix""... $ac_c" 1>&61359 echo "configure:1360: checking for executable suffix" >&51360 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then1361 echo $ac_n "(cached) $ac_c" 1>&61362 else1363 if test "$CYGWIN" = yes || test "$MINGW32" = yes; then1364 ac_cv_exeext=.exe1365 else1366 rm -f conftest*1367 echo 'int main () { return 0; }' > conftest.$ac_ext1368 ac_cv_exeext=1369 if { (eval echo configure:1370: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then1370 for file in conftest.*; do1371 case $file in1372 *.c | *.o | *.obj) ;;1373 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;1374 esac1375 done1376 else1377 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; }1378 fi1379 rm -f conftest*1380 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no1381 fi1382 fi1383 1384 EXEEXT=""1385 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext}1386 echo "$ac_t""${ac_cv_exeext}" 1>&61387 ac_exeext=$EXEEXT1388 1389 1455 if test $host != $build; then 1390 1456 ac_tool_prefix=${host_alias}- … … 1400 1466 if test "$file_magic_cmd" = '$MAGIC_CMD'; then 1401 1467 echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6 1402 echo "configure:14 03: checking for ${ac_tool_prefix}file" >&51468 echo "configure:1469: checking for ${ac_tool_prefix}file" >&5 1403 1469 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 1404 1470 echo $ac_n "(cached) $ac_c" 1>&6 … … 1462 1528 if test -n "$ac_tool_prefix"; then 1463 1529 echo $ac_n "checking for file""... $ac_c" 1>&6 1464 echo "configure:1 465: checking for file" >&51530 echo "configure:1531: checking for file" >&5 1465 1531 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 1466 1532 echo $ac_n "(cached) $ac_c" 1>&6 … … 1533 1599 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 1534 1600 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1535 echo "configure:1 536: checking for $ac_word" >&51601 echo "configure:1602: checking for $ac_word" >&5 1536 1602 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1537 1603 echo $ac_n "(cached) $ac_c" 1>&6 … … 1540 1606 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1541 1607 else 1542 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1608 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1543 1609 ac_dummy="$PATH" 1544 1610 for ac_dir in $ac_dummy; do 1545 1611 test -z "$ac_dir" && ac_dir=. 1546 if test -f $ac_dir/$ac_word; then 1612 if test -f $ac_dir/$ac_word -o \ 1613 -f $ac_dir/$ac_word$ac_exeext ; then 1547 1614 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 1548 1615 break … … 1565 1632 set dummy ranlib; ac_word=$2 1566 1633 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1567 echo "configure:1 568: checking for $ac_word" >&51634 echo "configure:1635: checking for $ac_word" >&5 1568 1635 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1569 1636 echo $ac_n "(cached) $ac_c" 1>&6 … … 1572 1639 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1573 1640 else 1574 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1641 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1575 1642 ac_dummy="$PATH" 1576 1643 for ac_dir in $ac_dummy; do 1577 1644 test -z "$ac_dir" && ac_dir=. 1578 if test -f $ac_dir/$ac_word; then 1645 if test -f $ac_dir/$ac_word -o \ 1646 -f $ac_dir/$ac_word$ac_exeext ; then 1579 1647 ac_cv_prog_RANLIB="ranlib" 1580 1648 break … … 1600 1668 set dummy ${ac_tool_prefix}strip; ac_word=$2 1601 1669 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1602 echo "configure:16 03: checking for $ac_word" >&51670 echo "configure:1671: checking for $ac_word" >&5 1603 1671 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 1604 1672 echo $ac_n "(cached) $ac_c" 1>&6 … … 1607 1675 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 1608 1676 else 1609 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1677 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1610 1678 ac_dummy="$PATH" 1611 1679 for ac_dir in $ac_dummy; do 1612 1680 test -z "$ac_dir" && ac_dir=. 1613 if test -f $ac_dir/$ac_word; then 1681 if test -f $ac_dir/$ac_word -o \ 1682 -f $ac_dir/$ac_word$ac_exeext ; then 1614 1683 ac_cv_prog_STRIP="${ac_tool_prefix}strip" 1615 1684 break … … 1632 1701 set dummy strip; ac_word=$2 1633 1702 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1634 echo "configure:1 635: checking for $ac_word" >&51703 echo "configure:1704: checking for $ac_word" >&5 1635 1704 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 1636 1705 echo $ac_n "(cached) $ac_c" 1>&6 … … 1639 1708 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 1640 1709 else 1641 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1710 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1642 1711 ac_dummy="$PATH" 1643 1712 for ac_dir in $ac_dummy; do 1644 1713 test -z "$ac_dir" && ac_dir=. 1645 if test -f $ac_dir/$ac_word; then 1714 if test -f $ac_dir/$ac_word -o \ 1715 -f $ac_dir/$ac_word$ac_exeext ; then 1646 1716 ac_cv_prog_STRIP="strip" 1647 1717 break … … 1699 1769 *-*-irix6*) 1700 1770 # Find out which ABI we are using. 1701 echo '#line 17 02 "configure"' > conftest.$ac_ext1702 if { (eval echo configure:17 03: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1771 echo '#line 1772 "configure"' > conftest.$ac_ext 1772 if { (eval echo configure:1773: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1703 1773 case `/usr/bin/file conftest.$ac_objext` in 1704 1774 *32-bit*) … … 1721 1791 CFLAGS="$CFLAGS -belf" 1722 1792 echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 1723 echo "configure:17 24: checking whether the C compiler needs -belf" >&51793 echo "configure:1794: checking whether the C compiler needs -belf" >&5 1724 1794 if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then 1725 1795 echo $ac_n "(cached) $ac_c" 1>&6 … … 1734 1804 1735 1805 cat > conftest.$ac_ext <<EOF 1736 #line 1 737 "configure"1806 #line 1807 "configure" 1737 1807 #include "confdefs.h" 1738 1808 … … 1741 1811 ; return 0; } 1742 1812 EOF 1743 if { (eval echo configure:1 744: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1813 if { (eval echo configure:1814: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1744 1814 rm -rf conftest* 1745 1815 lt_cv_cc_needs_belf=yes … … 1869 1939 # ./install, which can be erroneously created by make from ./install.sh. 1870 1940 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 1871 echo "configure:1 872: checking for a BSD compatible install" >&51941 echo "configure:1942: checking for a BSD compatible install" >&5 1872 1942 if test -z "$INSTALL"; then 1873 1943 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 1874 1944 echo $ac_n "(cached) $ac_c" 1>&6 1875 1945 else 1876 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"1946 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 1877 1947 for ac_dir in $PATH; do 1878 1948 # Account for people who put trailing slashes in PATH elements. 1879 1949 case "$ac_dir/" in 1880 1950 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; 1951 # We reject the install program from OS/2 or W3.1 1952 */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;; 1881 1953 *) 1882 1954 # OSF1 and SCO ODT 3.0 have their own names for install. … … 1884 1956 # by default. 1885 1957 for ac_prog in ginstall scoinst install; do 1886 if test -f $ac_dir/$ac_prog ; then1958 if test -f $ac_dir/$ac_prog$ac_exeext; then 1887 1959 if test $ac_prog = install && 1888 1960 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 1890 1962 : 1891 1963 else 1892 ac_cv_path_install="$ac_dir/$ac_prog -c"1964 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 1893 1965 break 2 1894 1966 fi … … 1922 1994 1923 1995 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 1924 echo "configure:19 25: checking whether build environment is sane" >&51996 echo "configure:1997: checking whether build environment is sane" >&5 1925 1997 # Just in case 1926 1998 sleep 1 … … 1979 2051 1980 2052 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 1981 echo "configure: 1982: checking whether ${MAKE-make} sets \${MAKE}" >&52053 echo "configure:2054: checking whether ${MAKE-make} sets \${MAKE}" >&5 1982 2054 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 1983 2055 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 2018 2090 missing_dir=`cd $ac_aux_dir && pwd` 2019 2091 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 2020 echo "configure:20 21: checking for working aclocal" >&52092 echo "configure:2093: checking for working aclocal" >&5 2021 2093 # Run test in a subshell; some versions of sh will print an error if 2022 2094 # an executable is not found, even if stderr is redirected. … … 2031 2103 2032 2104 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 2033 echo "configure:2 034: checking for working autoconf" >&52105 echo "configure:2106: checking for working autoconf" >&5 2034 2106 # Run test in a subshell; some versions of sh will print an error if 2035 2107 # an executable is not found, even if stderr is redirected. … … 2044 2116 2045 2117 echo $ac_n "checking for working automake""... $ac_c" 1>&6 2046 echo "configure:2 047: checking for working automake" >&52118 echo "configure:2119: checking for working automake" >&5 2047 2119 # Run test in a subshell; some versions of sh will print an error if 2048 2120 # an executable is not found, even if stderr is redirected. … … 2057 2129 2058 2130 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 2059 echo "configure:2 060: checking for working autoheader" >&52131 echo "configure:2132: checking for working autoheader" >&5 2060 2132 # Run test in a subshell; some versions of sh will print an error if 2061 2133 # an executable is not found, even if stderr is redirected. … … 2070 2142 2071 2143 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 2072 echo "configure:2 073: checking for working makeinfo" >&52144 echo "configure:2145: checking for working makeinfo" >&5 2073 2145 # Run test in a subshell; some versions of sh will print an error if 2074 2146 # an executable is not found, even if stderr is redirected. … … 2086 2158 2087 2159 2160 2088 2161 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 2089 echo "configure:2 090: checking for executable suffix" >&52162 echo "configure:2163: checking for executable suffix" >&5 2090 2163 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 2091 2164 echo $ac_n "(cached) $ac_c" 1>&6 2092 2165 else 2093 if test "$CYGWIN" = yes || test "$MINGW32" = yes ; then2166 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 2094 2167 ac_cv_exeext=.exe 2095 2168 else … … 2097 2170 echo 'int main () { return 0; }' > conftest.$ac_ext 2098 2171 ac_cv_exeext= 2099 if { (eval echo configure:21 00: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then2172 if { (eval echo configure:2173: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 2100 2173 for file in conftest.*; do 2101 2174 case $file in … … 2118 2191 2119 2192 echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 2120 echo "configure:21 21: checking whether to enable maintainer-specific portions of Makefiles" >&52193 echo "configure:2194: checking whether to enable maintainer-specific portions of Makefiles" >&5 2121 2194 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. 2122 2195 if test "${enable_maintainer_mode+set}" = set; then … … 2144 2217 set dummy gcc; ac_word=$2 2145 2218 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2146 echo "configure:2 147: checking for $ac_word" >&52219 echo "configure:2220: checking for $ac_word" >&5 2147 2220 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2148 2221 echo $ac_n "(cached) $ac_c" 1>&6 … … 2151 2224 ac_cv_prog_CC="$CC" # Let the user override the test. 2152 2225 else 2153 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2226 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2154 2227 ac_dummy="$PATH" 2155 2228 for ac_dir in $ac_dummy; do 2156 2229 test -z "$ac_dir" && ac_dir=. 2157 if test -f $ac_dir/$ac_word; then 2230 if test -f $ac_dir/$ac_word -o \ 2231 -f $ac_dir/$ac_word$ac_exeext ; then 2158 2232 ac_cv_prog_CC="gcc" 2159 2233 break … … 2174 2248 set dummy cc; ac_word=$2 2175 2249 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2176 echo "configure:2 177: checking for $ac_word" >&52250 echo "configure:2251: checking for $ac_word" >&5 2177 2251 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2178 2252 echo $ac_n "(cached) $ac_c" 1>&6 … … 2181 2255 ac_cv_prog_CC="$CC" # Let the user override the test. 2182 2256 else 2183 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2257 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2184 2258 ac_prog_rejected=no 2185 2259 ac_dummy="$PATH" 2186 2260 for ac_dir in $ac_dummy; do 2187 2261 test -z "$ac_dir" && ac_dir=. 2188 if test -f $ac_dir/$ac_word; then 2189 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 2262 if test -f $ac_dir/$ac_word -o \ 2263 -f $ac_dir/$ac_word$ac_exeext ; then 2264 if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \ 2265 "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then 2190 2266 ac_prog_rejected=yes 2191 2267 continue … … 2225 2301 set dummy cl; ac_word=$2 2226 2302 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2227 echo "configure:2 228: checking for $ac_word" >&52303 echo "configure:2304: checking for $ac_word" >&5 2228 2304 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2229 2305 echo $ac_n "(cached) $ac_c" 1>&6 … … 2232 2308 ac_cv_prog_CC="$CC" # Let the user override the test. 2233 2309 else 2234 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2310 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2235 2311 ac_dummy="$PATH" 2236 2312 for ac_dir in $ac_dummy; do 2237 2313 test -z "$ac_dir" && ac_dir=. 2238 if test -f $ac_dir/$ac_word; then 2314 if test -f $ac_dir/$ac_word -o \ 2315 -f $ac_dir/$ac_word$ac_exeext ; then 2239 2316 ac_cv_prog_CC="cl" 2240 2317 break … … 2257 2334 2258 2335 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 2259 echo "configure:2 260: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&52336 echo "configure:2337: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 2260 2337 2261 2338 ac_ext=c … … 2268 2345 cat > conftest.$ac_ext << EOF 2269 2346 2270 #line 2 271"configure"2347 #line 2348 "configure" 2271 2348 #include "confdefs.h" 2272 2349 2273 2350 main(){return(0);} 2274 2351 EOF 2275 if { (eval echo configure:2 276: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2352 if { (eval echo configure:2353: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2276 2353 ac_cv_prog_cc_works=yes 2277 2354 # If we can't run a trivial program, we are probably using a cross compiler. … … 2299 2376 fi 2300 2377 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 2301 echo "configure:23 02: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&52378 echo "configure:2379: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 2302 2379 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 2303 2380 cross_compiling=$ac_cv_prog_cc_cross 2304 2381 2305 2382 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 2306 echo "configure:23 07: checking whether we are using GNU C" >&52383 echo "configure:2384: checking whether we are using GNU C" >&5 2307 2384 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 2308 2385 echo $ac_n "(cached) $ac_c" 1>&6 … … 2313 2390 #endif 2314 2391 EOF 2315 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:23 16: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then2392 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2393: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 2316 2393 ac_cv_prog_gcc=yes 2317 2394 else … … 2332 2409 CFLAGS= 2333 2410 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 2334 echo "configure:2 335: checking whether ${CC-cc} accepts -g" >&52411 echo "configure:2412: checking whether ${CC-cc} accepts -g" >&5 2335 2412 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 2336 2413 echo $ac_n "(cached) $ac_c" 1>&6 … … 2509 2586 2510 2587 echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 2511 echo "configure:25 12: checking how to run the C preprocessor" >&52588 echo "configure:2589: checking how to run the C preprocessor" >&5 2512 2589 # On Suns, sometimes $CPP names a directory. 2513 2590 if test -n "$CPP" && test -d "$CPP"; then … … 2524 2601 # not just through cpp. 2525 2602 cat > conftest.$ac_ext <<EOF 2526 #line 2527 "configure" 2603 #include <sys/types.h> 2604 #line 2605 "configure" 2527 2605 #include "confdefs.h" 2528 2606 #include <assert.h> … … 2530 2608 EOF 2531 2609 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2532 { (eval echo configure:2 533: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2610 { (eval echo configure:2611: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2533 2611 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2534 2612 if test -z "$ac_err"; then … … 2541 2619 CPP="${CC-cc} -E -traditional-cpp" 2542 2620 cat > conftest.$ac_ext <<EOF 2543 #line 2544 "configure" 2621 #include <sys/types.h> 2622 #line 2623 "configure" 2544 2623 #include "confdefs.h" 2545 2624 #include <assert.h> … … 2547 2626 EOF 2548 2627 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2549 { (eval echo configure:2 550: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2628 { (eval echo configure:2629: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2550 2629 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2551 2630 if test -z "$ac_err"; then … … 2558 2637 CPP="${CC-cc} -nologo -E" 2559 2638 cat > conftest.$ac_ext <<EOF 2560 #line 2561 "configure" 2639 #include <sys/types.h> 2640 #line 2641 "configure" 2561 2641 #include "confdefs.h" 2562 2642 #include <assert.h> … … 2564 2644 EOF 2565 2645 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2566 { (eval echo configure:2 567: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2646 { (eval echo configure:2647: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2567 2647 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2568 2648 if test -z "$ac_err"; then … … 2589 2669 2590 2670 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 2591 echo "configure:2 592: checking for ANSI C header files" >&52671 echo "configure:2672: checking for ANSI C header files" >&5 2592 2672 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 2593 2673 echo $ac_n "(cached) $ac_c" 1>&6 2594 2674 else 2595 2675 cat > conftest.$ac_ext <<EOF 2596 #line 2597 "configure" 2676 #include <sys/types.h> 2677 #line 2678 "configure" 2597 2678 #include "confdefs.h" 2598 2679 #include <stdlib.h> … … 2602 2683 EOF 2603 2684 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2604 { (eval echo configure:26 05: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2685 { (eval echo configure:2686: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2605 2686 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2606 2687 if test -z "$ac_err"; then … … 2619 2700 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 2620 2701 cat > conftest.$ac_ext <<EOF 2621 #line 2 622"configure"2702 #line 2703 "configure" 2622 2703 #include "confdefs.h" 2623 2704 #include <string.h> … … 2637 2718 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 2638 2719 cat > conftest.$ac_ext <<EOF 2639 #line 2 640"configure"2720 #line 2721 "configure" 2640 2721 #include "confdefs.h" 2641 2722 #include <stdlib.h> … … 2658 2739 else 2659 2740 cat > conftest.$ac_ext <<EOF 2660 #line 2 661"configure"2741 #line 2742 "configure" 2661 2742 #include "confdefs.h" 2662 2743 #include <ctype.h> … … 2669 2750 2670 2751 EOF 2671 if { (eval echo configure:2 672: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null2752 if { (eval echo configure:2753: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 2672 2753 then 2673 2754 : … … 2695 2776 do 2696 2777 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 2697 echo "configure:2 698: checking for $ac_func" >&52778 echo "configure:2779: checking for $ac_func" >&5 2698 2779 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 2699 2780 echo $ac_n "(cached) $ac_c" 1>&6 2700 2781 else 2701 2782 cat > conftest.$ac_ext <<EOF 2702 #line 27 03"configure"2783 #line 2784 "configure" 2703 2784 #include "confdefs.h" 2704 2785 /* System header to define __stub macros and hopefully few prototypes, … … 2723 2804 ; return 0; } 2724 2805 EOF 2725 if { (eval echo configure:2 726: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2806 if { (eval echo configure:2807: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2726 2807 rm -rf conftest* 2727 2808 eval "ac_cv_func_$ac_func=yes" … … 2750 2831 # for constant arguments. Useless! 2751 2832 echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 2752 echo "configure:2 753: checking for working alloca.h" >&52833 echo "configure:2834: checking for working alloca.h" >&5 2753 2834 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then 2754 2835 echo $ac_n "(cached) $ac_c" 1>&6 2755 2836 else 2756 2837 cat > conftest.$ac_ext <<EOF 2757 #line 2 758"configure"2838 #line 2839 "configure" 2758 2839 #include "confdefs.h" 2759 2840 #include <alloca.h> … … 2762 2843 ; return 0; } 2763 2844 EOF 2764 if { (eval echo configure:2 765: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2845 if { (eval echo configure:2846: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2765 2846 rm -rf conftest* 2766 2847 ac_cv_header_alloca_h=yes … … 2783 2864 2784 2865 echo $ac_n "checking for alloca""... $ac_c" 1>&6 2785 echo "configure:2 786: checking for alloca" >&52866 echo "configure:2867: checking for alloca" >&5 2786 2867 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then 2787 2868 echo $ac_n "(cached) $ac_c" 1>&6 2788 2869 else 2789 2870 cat > conftest.$ac_ext <<EOF 2790 #line 2 791"configure"2871 #line 2872 "configure" 2791 2872 #include "confdefs.h" 2792 2873 … … 2816 2897 ; return 0; } 2817 2898 EOF 2818 if { (eval echo configure:2 819: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2899 if { (eval echo configure:2900: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2819 2900 rm -rf conftest* 2820 2901 ac_cv_func_alloca_works=yes … … 2848 2929 2849 2930 echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 2850 echo "configure:2 851: checking whether alloca needs Cray hooks" >&52931 echo "configure:2932: checking whether alloca needs Cray hooks" >&5 2851 2932 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then 2852 2933 echo $ac_n "(cached) $ac_c" 1>&6 2853 2934 else 2854 2935 cat > conftest.$ac_ext <<EOF 2855 #line 2 856"configure"2936 #line 2937 "configure" 2856 2937 #include "confdefs.h" 2857 2938 #if defined(CRAY) && ! defined(CRAY2) … … 2878 2959 for ac_func in _getb67 GETB67 getb67; do 2879 2960 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 2880 echo "configure:2 881: checking for $ac_func" >&52961 echo "configure:2962: checking for $ac_func" >&5 2881 2962 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 2882 2963 echo $ac_n "(cached) $ac_c" 1>&6 2883 2964 else 2884 2965 cat > conftest.$ac_ext <<EOF 2885 #line 2 886"configure"2966 #line 2967 "configure" 2886 2967 #include "confdefs.h" 2887 2968 /* System header to define __stub macros and hopefully few prototypes, … … 2906 2987 ; return 0; } 2907 2988 EOF 2908 if { (eval echo configure:29 09: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2989 if { (eval echo configure:2990: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2909 2990 rm -rf conftest* 2910 2991 eval "ac_cv_func_$ac_func=yes" … … 2933 3014 2934 3015 echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 2935 echo "configure: 2936: checking stack direction for C alloca" >&53016 echo "configure:3017: checking stack direction for C alloca" >&5 2936 3017 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then 2937 3018 echo $ac_n "(cached) $ac_c" 1>&6 … … 2941 3022 else 2942 3023 cat > conftest.$ac_ext <<EOF 2943 #line 2944"configure"3024 #line 3025 "configure" 2944 3025 #include "confdefs.h" 2945 3026 find_stack_direction () … … 2960 3041 } 2961 3042 EOF 2962 if { (eval echo configure: 2963: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null3043 if { (eval echo configure:3044: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 2963 3044 then 2964 3045 ac_cv_c_stack_direction=1 … … 2983 3064 2984 3065 echo $ac_n "checking size of short""... $ac_c" 1>&6 2985 echo "configure: 2986: checking size of short" >&53066 echo "configure:3067: checking size of short" >&5 2986 3067 if eval "test \"`echo '$''{'ac_cv_sizeof_short'+set}'`\" = set"; then 2987 3068 echo $ac_n "(cached) $ac_c" 1>&6 … … 2989 3070 for ac_size in 4 8 1 2 16 12 ; do # List sizes in rough order of prevalence. 2990 3071 cat > conftest.$ac_ext <<EOF 2991 #line 2992"configure"3072 #line 3073 "configure" 2992 3073 #include "confdefs.h" 2993 3074 #include "confdefs.h" … … 2999 3080 ; return 0; } 3000 3081 EOF 3001 if { (eval echo configure:30 02: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3082 if { (eval echo configure:3083: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3002 3083 rm -rf conftest* 3003 3084 ac_cv_sizeof_short=$ac_size … … 3022 3103 3023 3104 echo $ac_n "checking size of int""... $ac_c" 1>&6 3024 echo "configure:3 025: checking size of int" >&53105 echo "configure:3106: checking size of int" >&5 3025 3106 if eval "test \"`echo '$''{'ac_cv_sizeof_int'+set}'`\" = set"; then 3026 3107 echo $ac_n "(cached) $ac_c" 1>&6 … … 3028 3109 for ac_size in 4 8 1 2 16 12 ; do # List sizes in rough order of prevalence. 3029 3110 cat > conftest.$ac_ext <<EOF 3030 #line 3 031"configure"3111 #line 3112 "configure" 3031 3112 #include "confdefs.h" 3032 3113 #include "confdefs.h" … … 3038 3119 ; return 0; } 3039 3120 EOF 3040 if { (eval echo configure:3 041: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3121 if { (eval echo configure:3122: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3041 3122 rm -rf conftest* 3042 3123 ac_cv_sizeof_int=$ac_size … … 3061 3142 3062 3143 echo $ac_n "checking size of long""... $ac_c" 1>&6 3063 echo "configure:3 064: checking size of long" >&53144 echo "configure:3145: checking size of long" >&5 3064 3145 if eval "test \"`echo '$''{'ac_cv_sizeof_long'+set}'`\" = set"; then 3065 3146 echo $ac_n "(cached) $ac_c" 1>&6 … … 3067 3148 for ac_size in 4 8 1 2 16 12 ; do # List sizes in rough order of prevalence. 3068 3149 cat > conftest.$ac_ext <<EOF 3069 #line 3 070"configure"3150 #line 3151 "configure" 3070 3151 #include "confdefs.h" 3071 3152 #include "confdefs.h" … … 3077 3158 ; return 0; } 3078 3159 EOF 3079 if { (eval echo configure:3 080: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3160 if { (eval echo configure:3161: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3080 3161 rm -rf conftest* 3081 3162 ac_cv_sizeof_long=$ac_size … … 3100 3181 3101 3182 echo $ac_n "checking size of long long""... $ac_c" 1>&6 3102 echo "configure:31 03: checking size of long long" >&53183 echo "configure:3184: checking size of long long" >&5 3103 3184 if eval "test \"`echo '$''{'ac_cv_sizeof_long_long'+set}'`\" = set"; then 3104 3185 echo $ac_n "(cached) $ac_c" 1>&6 … … 3106 3187 for ac_size in 4 8 1 2 16 12 ; do # List sizes in rough order of prevalence. 3107 3188 cat > conftest.$ac_ext <<EOF 3108 #line 31 09"configure"3189 #line 3190 "configure" 3109 3190 #include "confdefs.h" 3110 3191 #include "confdefs.h" … … 3116 3197 ; return 0; } 3117 3198 EOF 3118 if { (eval echo configure:3 119: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3199 if { (eval echo configure:3200: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3119 3200 rm -rf conftest* 3120 3201 ac_cv_sizeof_long_long=$ac_size … … 3139 3220 3140 3221 echo $ac_n "checking size of float""... $ac_c" 1>&6 3141 echo "configure:3 142: checking size of float" >&53222 echo "configure:3223: checking size of float" >&5 3142 3223 if eval "test \"`echo '$''{'ac_cv_sizeof_float'+set}'`\" = set"; then 3143 3224 echo $ac_n "(cached) $ac_c" 1>&6 … … 3145 3226 for ac_size in 4 8 1 2 16 12 ; do # List sizes in rough order of prevalence. 3146 3227 cat > conftest.$ac_ext <<EOF 3147 #line 3 148"configure"3228 #line 3229 "configure" 3148 3229 #include "confdefs.h" 3149 3230 #include "confdefs.h" … … 3155 3236 ; return 0; } 3156 3237 EOF 3157 if { (eval echo configure:3 158: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3238 if { (eval echo configure:3239: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3158 3239 rm -rf conftest* 3159 3240 ac_cv_sizeof_float=$ac_size … … 3178 3259 3179 3260 echo $ac_n "checking size of double""... $ac_c" 1>&6 3180 echo "configure:3 181: checking size of double" >&53261 echo "configure:3262: checking size of double" >&5 3181 3262 if eval "test \"`echo '$''{'ac_cv_sizeof_double'+set}'`\" = set"; then 3182 3263 echo $ac_n "(cached) $ac_c" 1>&6 … … 3184 3265 for ac_size in 4 8 1 2 16 12 ; do # List sizes in rough order of prevalence. 3185 3266 cat > conftest.$ac_ext <<EOF 3186 #line 3 187"configure"3267 #line 3268 "configure" 3187 3268 #include "confdefs.h" 3188 3269 #include "confdefs.h" … … 3194 3275 ; return 0; } 3195 3276 EOF 3196 if { (eval echo configure:3 197: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3277 if { (eval echo configure:3278: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3197 3278 rm -rf conftest* 3198 3279 ac_cv_sizeof_double=$ac_size … … 3217 3298 3218 3299 echo $ac_n "checking size of long double""... $ac_c" 1>&6 3219 echo "configure:3 220: checking size of long double" >&53300 echo "configure:3301: checking size of long double" >&5 3220 3301 if eval "test \"`echo '$''{'ac_cv_sizeof_long_double'+set}'`\" = set"; then 3221 3302 echo $ac_n "(cached) $ac_c" 1>&6 … … 3223 3304 for ac_size in 4 8 1 2 16 12 ; do # List sizes in rough order of prevalence. 3224 3305 cat > conftest.$ac_ext <<EOF 3225 #line 3 226"configure"3306 #line 3307 "configure" 3226 3307 #include "confdefs.h" 3227 3308 #include "confdefs.h" … … 3233 3314 ; return 0; } 3234 3315 EOF 3235 if { (eval echo configure:3 236: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3316 if { (eval echo configure:3317: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3236 3317 rm -rf conftest* 3237 3318 ac_cv_sizeof_long_double=$ac_size … … 3257 3338 3258 3339 echo $ac_n "checking size of void *""... $ac_c" 1>&6 3259 echo "configure:3 260: checking size of void *" >&53340 echo "configure:3341: checking size of void *" >&5 3260 3341 if eval "test \"`echo '$''{'ac_cv_sizeof_void_p'+set}'`\" = set"; then 3261 3342 echo $ac_n "(cached) $ac_c" 1>&6 … … 3263 3344 for ac_size in 4 8 1 2 16 12 ; do # List sizes in rough order of prevalence. 3264 3345 cat > conftest.$ac_ext <<EOF 3265 #line 3 266"configure"3346 #line 3347 "configure" 3266 3347 #include "confdefs.h" 3267 3348 #include "confdefs.h" … … 3273 3354 ; return 0; } 3274 3355 EOF 3275 if { (eval echo configure:3 276: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3356 if { (eval echo configure:3357: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3276 3357 rm -rf conftest* 3277 3358 ac_cv_sizeof_void_p=$ac_size … … 3296 3377 3297 3378 echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&6 3298 echo "configure:3 299: checking whether byte ordering is bigendian" >&53379 echo "configure:3380: checking whether byte ordering is bigendian" >&5 3299 3380 if eval "test \"`echo '$''{'ac_cv_c_bigendian'+set}'`\" = set"; then 3300 3381 echo $ac_n "(cached) $ac_c" 1>&6 … … 3303 3384 # See if sys/param.h defines the BYTE_ORDER macro. 3304 3385 cat > conftest.$ac_ext <<EOF 3305 #line 33 06"configure"3386 #line 3387 "configure" 3306 3387 #include "confdefs.h" 3307 3388 #include <sys/types.h> … … 3314 3395 ; return 0; } 3315 3396 EOF 3316 if { (eval echo configure:33 17: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3397 if { (eval echo configure:3398: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3317 3398 rm -rf conftest* 3318 3399 # It does; now see whether it defined to BIG_ENDIAN or not. 3319 3400 cat > conftest.$ac_ext <<EOF 3320 #line 3 321"configure"3401 #line 3402 "configure" 3321 3402 #include "confdefs.h" 3322 3403 #include <sys/types.h> … … 3329 3410 ; return 0; } 3330 3411 EOF 3331 if { (eval echo configure:3 332: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3412 if { (eval echo configure:3413: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3332 3413 rm -rf conftest* 3333 3414 ac_cv_c_bigendian=yes … … 3349 3430 else 3350 3431 cat > conftest.$ac_ext <<EOF 3351 #line 3 352"configure"3432 #line 3433 "configure" 3352 3433 #include "confdefs.h" 3353 3434 main () { … … 3362 3443 } 3363 3444 EOF 3364 if { (eval echo configure:3 365: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null3445 if { (eval echo configure:3446: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 3365 3446 then 3366 3447 ac_cv_c_bigendian=no … … 3380 3461 if test $ac_cv_c_bigendian = unknown; then 3381 3462 echo $ac_n "checking to probe for byte ordering""... $ac_c" 1>&6 3382 echo "configure:3 383: checking to probe for byte ordering" >&53463 echo "configure:3464: checking to probe for byte ordering" >&5 3383 3464 3384 3465 cat >conftest.c <<EOF … … 3430 3511 if test x$TARGET = xSPARC; then 3431 3512 echo $ac_n "checking assembler and linker support unaligned pc related relocs""... $ac_c" 1>&6 3432 echo "configure:3 433: checking assembler and linker support unaligned pc related relocs" >&53513 echo "configure:3514: checking assembler and linker support unaligned pc related relocs" >&5 3433 3514 if eval "test \"`echo '$''{'libffi_cv_as_sparc_ua_pcrel'+set}'`\" = set"; then 3434 3515 echo $ac_n "(cached) $ac_c" 1>&6 … … 3440 3521 LDFLAGS="$LDFLAGS -shared" 3441 3522 cat > conftest.$ac_ext <<EOF 3442 #line 3 443"configure"3523 #line 3524 "configure" 3443 3524 #include "confdefs.h" 3444 3525 asm (".text; foo: nop; .data; .align 4; .byte 0; .uaword %r_disp32(foo); .text"); … … 3447 3528 ; return 0; } 3448 3529 EOF 3449 if { (eval echo configure:3 450: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3530 if { (eval echo configure:3531: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3450 3531 rm -rf conftest* 3451 3532 libffi_cv_as_sparc_ua_pcrel=yes … … 3616 3697 # Run this file to recreate the current configuration. 3617 3698 # This directory was configured as follows, 3699 EOF 3700 echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS 3701 cat >> $CONFIG_STATUS <<EOF 3618 3702 # on host `(hostname || uname -n) 2>/dev/null | sed 1q`: 3619 3703 # … … 3641 3725 ac_given_srcdir=$srcdir 3642 3726 ac_given_INSTALL="$INSTALL" 3727 PATHIFS="$PATH_IFS" 3643 3728 3644 3729 trap 'rm -fr `echo "include/Makefile include/ffi.h Makefile fficonfig.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 … … 3651 3736 $ac_vpsub 3652 3737 $extrasub 3738 s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g 3653 3739 s%@SHELL@%$SHELL%g 3654 3740 s%@CFLAGS@%$CFLAGS%g … … 3674 3760 s%@infodir@%$infodir%g 3675 3761 s%@mandir@%$mandir%g 3762 s%@PATH_IFS@%$PATH_IFS%g 3763 s%@EXEEXT@%$EXEEXT%g 3676 3764 s%@libffi_basedir@%$libffi_basedir%g 3677 3765 s%@host@%$host%g … … 3688 3776 s%@LN_S@%$LN_S%g 3689 3777 s%@OBJEXT@%$OBJEXT%g 3690 s%@EXEEXT@%$EXEEXT%g3691 3778 s%@RANLIB@%$RANLIB%g 3692 3779 s%@STRIP@%$STRIP%g … … 3806 3893 if test -z "$ac_dots"; then top_srcdir=. 3807 3894 else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; 3808 /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 3895 /* | [A-Za-z]:*) 3896 srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 3809 3897 *) # Relative path. 3810 3898 srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" … … 3813 3901 3814 3902 case "$ac_given_INSTALL" in 3815 [/$]* ) INSTALL="$ac_given_INSTALL" ;;3903 [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;; 3816 3904 *) INSTALL="$ac_dots$ac_given_INSTALL" ;; 3817 3905 esac … … 3826 3914 esac 3827 3915 3828 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s% :% $ac_given_srcdir/%g"`3916 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%$PATHIFS% $ac_given_srcdir/%g"` 3829 3917 sed -e "$ac_comsub 3830 3918 s%@configure_input@%$configure_input%g … … 3873 3961 3874 3962 rm -f conftest.frag conftest.in conftest.out 3875 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 3963 # kso the other way around might work better with drive letters and such. 3964 # ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 3965 ac_file_inputs=`echo $ac_file_in|sed -e "s%:% $ac_given_srcdir/%g" -e "s%^%$ac_given_srcdir/%" ` 3876 3966 cat $ac_file_inputs > conftest.in 3877 3967 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.