Changeset 80 for trunk/src/gcc/libjava
- Timestamp:
- May 2, 2003, 12:30:43 PM (22 years ago)
- Location:
- trunk/src/gcc/libjava
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gcc/libjava/configure
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r79 r80 573 573 fi 574 574 575 echo $ac_n "checking for path separator""... $ac_c" 1>&6 576 echo "configure:577: checking for path separator" >&5 577 # Filter path to get backslahes into forwardslashes 578 case "`uname -s 2> /dev/null`" in 579 OS/2) 580 PATH=`echo -E "$PATH" | sed 's+\\\\+/+g'` 581 PATH_IFS=';' 582 ;; 583 *) 584 PATH_IFS=':' 585 ;; 586 esac 587 echo "$ac_t""${PATH_IFS}" 1>&6 588 589 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 590 echo "configure:591: checking for Cygwin environment" >&5 591 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then 592 echo $ac_n "(cached) $ac_c" 1>&6 593 else 594 cat > conftest.$ac_ext <<EOF 595 #line 596 "configure" 596 #include "confdefs.h" 597 598 int main() { 599 600 #ifndef __CYGWIN__ 601 #define __CYGWIN__ __CYGWIN32__ 602 #endif 603 return __CYGWIN__; 604 ; return 0; } 605 EOF 606 if { (eval echo configure:607: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 607 rm -rf conftest* 608 ac_cv_cygwin=yes 609 else 610 echo "configure: failed program was:" >&5 611 cat conftest.$ac_ext >&5 612 rm -rf conftest* 613 ac_cv_cygwin=no 614 fi 615 rm -f conftest* 616 rm -f conftest* 617 fi 618 619 echo "$ac_t""$ac_cv_cygwin" 1>&6 620 CYGWIN= 621 test "$ac_cv_cygwin" = yes && CYGWIN=yes 622 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 623 echo "configure:624: checking for mingw32 environment" >&5 624 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then 625 echo $ac_n "(cached) $ac_c" 1>&6 626 else 627 cat > conftest.$ac_ext <<EOF 628 #line 629 "configure" 629 #include "confdefs.h" 630 631 int main() { 632 return __MINGW32__; 633 ; return 0; } 634 EOF 635 if { (eval echo configure:636: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 636 rm -rf conftest* 637 ac_cv_mingw32=yes 638 else 639 echo "configure: failed program was:" >&5 640 cat conftest.$ac_ext >&5 641 rm -rf conftest* 642 ac_cv_mingw32=no 643 fi 644 rm -f conftest* 645 rm -f conftest* 646 fi 647 648 echo "$ac_t""$ac_cv_mingw32" 1>&6 649 MINGW32= 650 test "$ac_cv_mingw32" = yes && MINGW32=yes 651 echo $ac_n "checking for EMX/OS2 environment""... $ac_c" 1>&6 652 echo "configure:653: checking for EMX/OS2 environment" >&5 653 if eval "test \"`echo '$''{'ac_cv_emxos2'+set}'`\" = set"; then 654 echo $ac_n "(cached) $ac_c" 1>&6 655 else 656 : ${CC=gcc.exe} 657 cat > conftest.$ac_ext <<EOF 658 #line 659 "configure" 659 #include "confdefs.h" 660 661 int main() { 662 return __EMX__; 663 ; return 0; } 664 EOF 665 if { (eval echo configure:666: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 666 rm -rf conftest* 667 ac_cv_emxos2=yes 668 else 669 echo "configure: failed program was:" >&5 670 cat conftest.$ac_ext >&5 671 rm -rf conftest* 672 ac_cv_emxos2=no 673 fi 674 rm -f conftest* 675 rm -f conftest* 676 fi 677 678 echo "$ac_t""$ac_cv_emxos2" 1>&6 679 if eval "test \"`echo '$''{'ac_cv_libpre'+set}'`\" = set"; then 680 echo $ac_n "(cached) $ac_c" 1>&6 681 else 682 if test "$ac_cv_emxos2" = yes ; then 683 ac_cv_libpre= 684 else 685 ac_cv_libpre=lib 686 fi 687 688 fi 689 690 EMXOS2= 691 test "$ac_cv_emxos2" = yes && EMXOS2=yes 692 693 694 695 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 696 echo "configure:697: checking for executable suffix" >&5 697 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 698 echo $ac_n "(cached) $ac_c" 1>&6 699 else 700 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 701 ac_cv_exeext=.exe 702 else 703 rm -f conftest* 704 echo 'int main () { return 0; }' > conftest.$ac_ext 705 ac_cv_exeext= 706 if { (eval echo configure:707: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 707 for file in conftest.*; do 708 case $file in 709 *.c | *.o | *.obj) ;; 710 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; 711 esac 712 done 713 else 714 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; } 715 fi 716 rm -f conftest* 717 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no 718 fi 719 fi 720 721 EXEEXT="" 722 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} 723 echo "$ac_t""${ac_cv_exeext}" 1>&6 724 ac_exeext=$EXEEXT 725 575 726 576 727 … … 582 733 583 734 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 584 echo "configure: 585: checking whether ln -s works" >&5735 echo "configure:736: checking whether ln -s works" >&5 585 736 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then 586 737 echo $ac_n "(cached) $ac_c" 1>&6 … … 592 743 ac_cv_prog_LN_S="ln -s" 593 744 else 594 ac_cv_prog_LN_S=ln 595 fi 745 echo A > conftestdata; 746 if ln conftestdata conftestdata2 2>/dev/null; then 747 ac_cv_prog_LN_S=ln 748 else 749 ac_cv_prog_LN_S=cp 750 fi 751 fi 752 rm -f conftestdata* 596 753 fi 597 754 LN_S="$ac_cv_prog_LN_S" … … 628 785 # ./install, which can be erroneously created by make from ./install.sh. 629 786 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 630 echo "configure: 631: checking for a BSD compatible install" >&5787 echo "configure:788: checking for a BSD compatible install" >&5 631 788 if test -z "$INSTALL"; then 632 789 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 633 790 echo $ac_n "(cached) $ac_c" 1>&6 634 791 else 635 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"792 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 636 793 for ac_dir in $PATH; do 637 794 # Account for people who put trailing slashes in PATH elements. 638 795 case "$ac_dir/" in 639 796 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; 797 # We reject the install program from OS/2 or W3.1 798 */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;; 640 799 *) 641 800 # OSF1 and SCO ODT 3.0 have their own names for install. … … 643 802 # by default. 644 803 for ac_prog in ginstall scoinst install; do 645 if test -f $ac_dir/$ac_prog ; then804 if test -f $ac_dir/$ac_prog$ac_exeext; then 646 805 if test $ac_prog = install && 647 806 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 649 808 : 650 809 else 651 ac_cv_path_install="$ac_dir/$ac_prog -c"810 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 652 811 break 2 653 812 fi … … 681 840 682 841 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 683 echo "configure: 684: checking whether build environment is sane" >&5842 echo "configure:843: checking whether build environment is sane" >&5 684 843 # Just in case 685 844 sleep 1 … … 738 897 739 898 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 740 echo "configure: 741: checking whether ${MAKE-make} sets \${MAKE}" >&5899 echo "configure:900: checking whether ${MAKE-make} sets \${MAKE}" >&5 741 900 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 742 901 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 770 929 fi 771 930 772 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6773 echo "configure:774: checking for Cygwin environment" >&5774 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then775 echo $ac_n "(cached) $ac_c" 1>&6776 else777 cat > conftest.$ac_ext <<EOF778 #line 779 "configure"779 #include "confdefs.h"780 781 int main() {782 783 #ifndef __CYGWIN__784 #define __CYGWIN__ __CYGWIN32__785 #endif786 return __CYGWIN__;787 ; return 0; }788 EOF789 if { (eval echo configure:790: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then790 rm -rf conftest*791 ac_cv_cygwin=yes792 else793 echo "configure: failed program was:" >&5794 cat conftest.$ac_ext >&5795 rm -rf conftest*796 ac_cv_cygwin=no797 fi798 rm -f conftest*799 rm -f conftest*800 fi801 802 echo "$ac_t""$ac_cv_cygwin" 1>&6803 CYGWIN=804 test "$ac_cv_cygwin" = yes && CYGWIN=yes805 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6806 echo "configure:807: checking for mingw32 environment" >&5807 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then808 echo $ac_n "(cached) $ac_c" 1>&6809 else810 cat > conftest.$ac_ext <<EOF811 #line 812 "configure"812 #include "confdefs.h"813 814 int main() {815 return __MINGW32__;816 ; return 0; }817 EOF818 if { (eval echo configure:819: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then819 rm -rf conftest*820 ac_cv_mingw32=yes821 else822 echo "configure: failed program was:" >&5823 cat conftest.$ac_ext >&5824 rm -rf conftest*825 ac_cv_mingw32=no826 fi827 rm -f conftest*828 rm -f conftest*829 fi830 831 echo "$ac_t""$ac_cv_mingw32" 1>&6832 MINGW32=833 test "$ac_cv_mingw32" = yes && MINGW32=yes834 931 835 932 # Check whether --enable-multilib or --disable-multilib was given. … … 943 1040 944 1041 echo $ac_n "checking host system type""... $ac_c" 1>&6 945 echo "configure: 946: checking host system type" >&51042 echo "configure:1043: checking host system type" >&5 946 1043 947 1044 host_alias=$host … … 964 1061 965 1062 echo $ac_n "checking target system type""... $ac_c" 1>&6 966 echo "configure: 967: checking target system type" >&51063 echo "configure:1064: checking target system type" >&5 967 1064 968 1065 target_alias=$target … … 982 1079 983 1080 echo $ac_n "checking build system type""... $ac_c" 1>&6 984 echo "configure: 985: checking build system type" >&51081 echo "configure:1082: checking build system type" >&5 985 1082 986 1083 build_alias=$build … … 1011 1108 set dummy gcc; ac_word=$2 1012 1109 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1013 echo "configure:1 014: checking for $ac_word" >&51110 echo "configure:1111: checking for $ac_word" >&5 1014 1111 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 1015 1112 echo $ac_n "(cached) $ac_c" 1>&6 … … 1018 1115 ac_cv_prog_CC="$CC" # Let the user override the test. 1019 1116 else 1020 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1117 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1021 1118 ac_dummy="$PATH" 1022 1119 for ac_dir in $ac_dummy; do 1023 1120 test -z "$ac_dir" && ac_dir=. 1024 if test -f $ac_dir/$ac_word; then 1121 if test -f $ac_dir/$ac_word -o \ 1122 -f $ac_dir/$ac_word$ac_exeext ; then 1025 1123 ac_cv_prog_CC="gcc" 1026 1124 break … … 1041 1139 set dummy cc; ac_word=$2 1042 1140 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1043 echo "configure:1 044: checking for $ac_word" >&51141 echo "configure:1142: checking for $ac_word" >&5 1044 1142 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 1045 1143 echo $ac_n "(cached) $ac_c" 1>&6 … … 1048 1146 ac_cv_prog_CC="$CC" # Let the user override the test. 1049 1147 else 1050 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1148 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1051 1149 ac_prog_rejected=no 1052 1150 ac_dummy="$PATH" 1053 1151 for ac_dir in $ac_dummy; do 1054 1152 test -z "$ac_dir" && ac_dir=. 1055 if test -f $ac_dir/$ac_word; then 1056 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 1153 if test -f $ac_dir/$ac_word -o \ 1154 -f $ac_dir/$ac_word$ac_exeext ; then 1155 if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \ 1156 "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then 1057 1157 ac_prog_rejected=yes 1058 1158 continue … … 1092 1192 set dummy cl; ac_word=$2 1093 1193 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1094 echo "configure:1 095: checking for $ac_word" >&51194 echo "configure:1195: checking for $ac_word" >&5 1095 1195 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 1096 1196 echo $ac_n "(cached) $ac_c" 1>&6 … … 1099 1199 ac_cv_prog_CC="$CC" # Let the user override the test. 1100 1200 else 1101 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1201 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1102 1202 ac_dummy="$PATH" 1103 1203 for ac_dir in $ac_dummy; do 1104 1204 test -z "$ac_dir" && ac_dir=. 1105 if test -f $ac_dir/$ac_word; then 1205 if test -f $ac_dir/$ac_word -o \ 1206 -f $ac_dir/$ac_word$ac_exeext ; then 1106 1207 ac_cv_prog_CC="cl" 1107 1208 break … … 1125 1226 1126 1227 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 1127 echo "configure:1 128: checking whether we are using GNU C" >&51228 echo "configure:1229: checking whether we are using GNU C" >&5 1128 1229 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 1129 1230 echo $ac_n "(cached) $ac_c" 1>&6 … … 1134 1235 #endif 1135 1236 EOF 1136 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1 137: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1237 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1238: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1137 1238 ac_cv_prog_gcc=yes 1138 1239 else … … 1153 1254 CFLAGS= 1154 1255 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 1155 echo "configure:1 156: checking whether ${CC-cc} accepts -g" >&51256 echo "configure:1257: checking whether ${CC-cc} accepts -g" >&5 1156 1257 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 1157 1258 echo $ac_n "(cached) $ac_c" 1>&6 … … 1202 1303 set dummy $ac_prog; ac_word=$2 1203 1304 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1204 echo "configure:1 205: checking for $ac_word" >&51305 echo "configure:1306: checking for $ac_word" >&5 1205 1306 if eval "test \"`echo '$''{'ac_cv_prog_glibjava_CXX'+set}'`\" = set"; then 1206 1307 echo $ac_n "(cached) $ac_c" 1>&6 … … 1209 1310 ac_cv_prog_glibjava_CXX="$glibjava_CXX" # Let the user override the test. 1210 1311 else 1211 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1312 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1212 1313 ac_dummy="$PATH" 1213 1314 for ac_dir in $ac_dummy; do 1214 1315 test -z "$ac_dir" && ac_dir=. 1215 if test -f $ac_dir/$ac_word; then 1316 if test -f $ac_dir/$ac_word -o \ 1317 -f $ac_dir/$ac_word$ac_exeext ; then 1216 1318 ac_cv_prog_glibjava_CXX="$ac_prog" 1217 1319 break … … 1237 1339 1238 1340 echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6 1239 echo "configure:1 240: checking whether we are using GNU C++" >&51341 echo "configure:1342: checking whether we are using GNU C++" >&5 1240 1342 if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then 1241 1343 echo $ac_n "(cached) $ac_c" 1>&6 … … 1246 1348 #endif 1247 1349 EOF 1248 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1 249: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1350 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1351: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1249 1351 ac_cv_prog_gxx=yes 1250 1352 else … … 1261 1363 CXXFLAGS= 1262 1364 echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6 1263 echo "configure:1 264: checking whether ${CXX-g++} accepts -g" >&51365 echo "configure:1366: checking whether ${CXX-g++} accepts -g" >&5 1264 1366 if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then 1265 1367 echo $ac_n "(cached) $ac_c" 1>&6 … … 1310 1412 missing_dir=`cd $ac_aux_dir && pwd` 1311 1413 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 1312 echo "configure:1 313: checking for working aclocal" >&51414 echo "configure:1415: checking for working aclocal" >&5 1313 1415 # Run test in a subshell; some versions of sh will print an error if 1314 1416 # an executable is not found, even if stderr is redirected. … … 1323 1425 1324 1426 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 1325 echo "configure:1 326: checking for working autoconf" >&51427 echo "configure:1428: checking for working autoconf" >&5 1326 1428 # Run test in a subshell; some versions of sh will print an error if 1327 1429 # an executable is not found, even if stderr is redirected. … … 1336 1438 1337 1439 echo $ac_n "checking for working automake""... $ac_c" 1>&6 1338 echo "configure:1 339: checking for working automake" >&51440 echo "configure:1441: checking for working automake" >&5 1339 1441 # Run test in a subshell; some versions of sh will print an error if 1340 1442 # an executable is not found, even if stderr is redirected. … … 1349 1451 1350 1452 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 1351 echo "configure:1 352: checking for working autoheader" >&51453 echo "configure:1454: checking for working autoheader" >&5 1352 1454 # Run test in a subshell; some versions of sh will print an error if 1353 1455 # an executable is not found, even if stderr is redirected. … … 1362 1464 1363 1465 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 1364 echo "configure:1 365: checking for working makeinfo" >&51466 echo "configure:1467: checking for working makeinfo" >&5 1365 1467 # Run test in a subshell; some versions of sh will print an error if 1366 1468 # an executable is not found, even if stderr is redirected. … … 1381 1483 # be run before AC_CANONICAL_HOST. 1382 1484 echo $ac_n "checking build system type""... $ac_c" 1>&6 1383 echo "configure:1 384: checking build system type" >&51485 echo "configure:1486: checking build system type" >&5 1384 1486 1385 1487 build_alias=$build … … 1402 1504 set dummy ${ac_tool_prefix}as; ac_word=$2 1403 1505 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1404 echo "configure:1 405: checking for $ac_word" >&51506 echo "configure:1507: checking for $ac_word" >&5 1405 1507 if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then 1406 1508 echo $ac_n "(cached) $ac_c" 1>&6 … … 1409 1511 ac_cv_prog_AS="$AS" # Let the user override the test. 1410 1512 else 1411 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1513 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1412 1514 ac_dummy="$PATH" 1413 1515 for ac_dir in $ac_dummy; do 1414 1516 test -z "$ac_dir" && ac_dir=. 1415 if test -f $ac_dir/$ac_word; then 1517 if test -f $ac_dir/$ac_word -o \ 1518 -f $ac_dir/$ac_word$ac_exeext ; then 1416 1519 ac_cv_prog_AS="${ac_tool_prefix}as" 1417 1520 break … … 1434 1537 set dummy ${ac_tool_prefix}ar; ac_word=$2 1435 1538 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1436 echo "configure:1 437: checking for $ac_word" >&51539 echo "configure:1540: checking for $ac_word" >&5 1437 1540 if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then 1438 1541 echo $ac_n "(cached) $ac_c" 1>&6 … … 1441 1544 ac_cv_prog_AR="$AR" # Let the user override the test. 1442 1545 else 1443 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1546 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1444 1547 ac_dummy="$PATH" 1445 1548 for ac_dir in $ac_dummy; do 1446 1549 test -z "$ac_dir" && ac_dir=. 1447 if test -f $ac_dir/$ac_word; then 1550 if test -f $ac_dir/$ac_word -o \ 1551 -f $ac_dir/$ac_word$ac_exeext ; then 1448 1552 ac_cv_prog_AR="${ac_tool_prefix}ar" 1449 1553 break … … 1466 1570 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 1467 1571 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1468 echo "configure:1 469: checking for $ac_word" >&51572 echo "configure:1573: checking for $ac_word" >&5 1469 1573 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1470 1574 echo $ac_n "(cached) $ac_c" 1>&6 … … 1473 1577 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1474 1578 else 1475 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1579 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1476 1580 ac_dummy="$PATH" 1477 1581 for ac_dir in $ac_dummy; do 1478 1582 test -z "$ac_dir" && ac_dir=. 1479 if test -f $ac_dir/$ac_word; then 1583 if test -f $ac_dir/$ac_word -o \ 1584 -f $ac_dir/$ac_word$ac_exeext ; then 1480 1585 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 1481 1586 break … … 1498 1603 set dummy ranlib; ac_word=$2 1499 1604 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1500 echo "configure:1 501: checking for $ac_word" >&51605 echo "configure:1606: checking for $ac_word" >&5 1501 1606 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1502 1607 echo $ac_n "(cached) $ac_c" 1>&6 … … 1505 1610 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1506 1611 else 1507 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1612 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1508 1613 ac_dummy="$PATH" 1509 1614 for ac_dir in $ac_dummy; do 1510 1615 test -z "$ac_dir" && ac_dir=. 1511 if test -f $ac_dir/$ac_word; then 1616 if test -f $ac_dir/$ac_word -o \ 1617 -f $ac_dir/$ac_word$ac_exeext ; then 1512 1618 ac_cv_prog_RANLIB="ranlib" 1513 1619 break … … 1543 1649 # ./install, which can be erroneously created by make from ./install.sh. 1544 1650 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 1545 echo "configure:1 546: checking for a BSD compatible install" >&51651 echo "configure:1652: checking for a BSD compatible install" >&5 1546 1652 if test -z "$INSTALL"; then 1547 1653 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 1548 1654 echo $ac_n "(cached) $ac_c" 1>&6 1549 1655 else 1550 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"1656 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 1551 1657 for ac_dir in $PATH; do 1552 1658 # Account for people who put trailing slashes in PATH elements. 1553 1659 case "$ac_dir/" in 1554 1660 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; 1661 # We reject the install program from OS/2 or W3.1 1662 */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;; 1555 1663 *) 1556 1664 # OSF1 and SCO ODT 3.0 have their own names for install. … … 1558 1666 # by default. 1559 1667 for ac_prog in ginstall scoinst install; do 1560 if test -f $ac_dir/$ac_prog ; then1668 if test -f $ac_dir/$ac_prog$ac_exeext; then 1561 1669 if test $ac_prog = install && 1562 1670 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 1564 1672 : 1565 1673 else 1566 ac_cv_path_install="$ac_dir/$ac_prog -c"1674 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 1567 1675 break 2 1568 1676 fi … … 1597 1705 1598 1706 echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 1599 echo "configure:1 600: checking whether to enable maintainer-specific portions of Makefiles" >&51707 echo "configure:1708: checking whether to enable maintainer-specific portions of Makefiles" >&5 1600 1708 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. 1601 1709 if test "${enable_maintainer_mode+set}" = set; then … … 1634 1742 1635 1743 1744 1636 1745 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 1637 echo "configure:1 638: checking for executable suffix" >&51746 echo "configure:1747: checking for executable suffix" >&5 1638 1747 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 1639 1748 echo $ac_n "(cached) $ac_c" 1>&6 1640 1749 else 1641 if test "$CYGWIN" = yes || test "$MINGW32" = yes ; then1750 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 1642 1751 ac_cv_exeext=.exe 1643 1752 else … … 1645 1754 echo 'int main () { return 0; }' > conftest.$ac_ext 1646 1755 ac_cv_exeext= 1647 if { (eval echo configure:1 648: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then1756 if { (eval echo configure:1757: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 1648 1757 for file in conftest.*; do 1649 1758 case $file in … … 1796 1905 # Check if gcc -print-prog-name=ld gives a path. 1797 1906 echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 1798 echo "configure:1 799: checking for ld used by GCC" >&51907 echo "configure:1908: checking for ld used by GCC" >&5 1799 1908 case $host in 1800 1909 *-*-mingw*) … … 1826 1935 elif test "$with_gnu_ld" = yes; then 1827 1936 echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 1828 echo "configure:1 829: checking for GNU ld" >&51937 echo "configure:1938: checking for GNU ld" >&5 1829 1938 else 1830 1939 echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 1831 echo "configure:1 832: checking for non-GNU ld" >&51940 echo "configure:1941: checking for non-GNU ld" >&5 1832 1941 fi 1833 1942 if eval "test \"`echo '$''{'lt_cv_path_LD'+set}'`\" = set"; then … … 1864 1973 test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } 1865 1974 echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 1866 echo "configure:1 867: checking if the linker ($LD) is GNU ld" >&51975 echo "configure:1976: checking if the linker ($LD) is GNU ld" >&5 1867 1976 if eval "test \"`echo '$''{'lt_cv_prog_gnu_ld'+set}'`\" = set"; then 1868 1977 echo $ac_n "(cached) $ac_c" 1>&6 … … 1881 1990 1882 1991 echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6 1883 echo "configure:1 884: checking for $LD option to reload object files" >&51992 echo "configure:1993: checking for $LD option to reload object files" >&5 1884 1993 if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then 1885 1994 echo $ac_n "(cached) $ac_c" 1>&6 … … 1893 2002 1894 2003 echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 1895 echo "configure: 1896: checking for BSD-compatible nm" >&52004 echo "configure:2005: checking for BSD-compatible nm" >&5 1896 2005 if eval "test \"`echo '$''{'lt_cv_path_NM'+set}'`\" = set"; then 1897 2006 echo $ac_n "(cached) $ac_c" 1>&6 … … 1931 2040 1932 2041 echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6 1933 echo "configure: 1934: checking how to recognise dependant libraries" >&52042 echo "configure:2043: checking how to recognise dependant libraries" >&5 1934 2043 if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then 1935 2044 echo $ac_n "(cached) $ac_c" 1>&6 … … 2095 2204 2096 2205 echo $ac_n "checking for object suffix""... $ac_c" 1>&6 2097 echo "configure:2 098: checking for object suffix" >&52206 echo "configure:2207: checking for object suffix" >&5 2098 2207 if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then 2099 2208 echo $ac_n "(cached) $ac_c" 1>&6 … … 2101 2210 rm -f conftest* 2102 2211 echo 'int i = 1;' > conftest.$ac_ext 2103 if { (eval echo configure:2 104: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2212 if { (eval echo configure:2213: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2104 2213 for ac_file in conftest.*; do 2105 2214 case $ac_file in … … 2125 2234 if test "$file_magic_cmd" = '$MAGIC_CMD'; then 2126 2235 echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6 2127 echo "configure:2 128: checking for ${ac_tool_prefix}file" >&52236 echo "configure:2237: checking for ${ac_tool_prefix}file" >&5 2128 2237 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 2129 2238 echo $ac_n "(cached) $ac_c" 1>&6 … … 2187 2296 if test -n "$ac_tool_prefix"; then 2188 2297 echo $ac_n "checking for file""... $ac_c" 1>&6 2189 echo "configure:2 190: checking for file" >&52298 echo "configure:2299: checking for file" >&5 2190 2299 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 2191 2300 echo $ac_n "(cached) $ac_c" 1>&6 … … 2258 2367 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 2259 2368 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2260 echo "configure:2 261: checking for $ac_word" >&52369 echo "configure:2370: checking for $ac_word" >&5 2261 2370 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 2262 2371 echo $ac_n "(cached) $ac_c" 1>&6 … … 2265 2374 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 2266 2375 else 2267 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2376 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2268 2377 ac_dummy="$PATH" 2269 2378 for ac_dir in $ac_dummy; do 2270 2379 test -z "$ac_dir" && ac_dir=. 2271 if test -f $ac_dir/$ac_word; then 2380 if test -f $ac_dir/$ac_word -o \ 2381 -f $ac_dir/$ac_word$ac_exeext ; then 2272 2382 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 2273 2383 break … … 2290 2400 set dummy ranlib; ac_word=$2 2291 2401 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2292 echo "configure:2 293: checking for $ac_word" >&52402 echo "configure:2403: checking for $ac_word" >&5 2293 2403 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 2294 2404 echo $ac_n "(cached) $ac_c" 1>&6 … … 2297 2407 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 2298 2408 else 2299 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2409 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2300 2410 ac_dummy="$PATH" 2301 2411 for ac_dir in $ac_dummy; do 2302 2412 test -z "$ac_dir" && ac_dir=. 2303 if test -f $ac_dir/$ac_word; then 2413 if test -f $ac_dir/$ac_word -o \ 2414 -f $ac_dir/$ac_word$ac_exeext ; then 2304 2415 ac_cv_prog_RANLIB="ranlib" 2305 2416 break … … 2325 2436 set dummy ${ac_tool_prefix}strip; ac_word=$2 2326 2437 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2327 echo "configure:2 328: checking for $ac_word" >&52438 echo "configure:2439: checking for $ac_word" >&5 2328 2439 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 2329 2440 echo $ac_n "(cached) $ac_c" 1>&6 … … 2332 2443 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 2333 2444 else 2334 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2445 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2335 2446 ac_dummy="$PATH" 2336 2447 for ac_dir in $ac_dummy; do 2337 2448 test -z "$ac_dir" && ac_dir=. 2338 if test -f $ac_dir/$ac_word; then 2449 if test -f $ac_dir/$ac_word -o \ 2450 -f $ac_dir/$ac_word$ac_exeext ; then 2339 2451 ac_cv_prog_STRIP="${ac_tool_prefix}strip" 2340 2452 break … … 2357 2469 set dummy strip; ac_word=$2 2358 2470 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2359 echo "configure:2 360: checking for $ac_word" >&52471 echo "configure:2472: checking for $ac_word" >&5 2360 2472 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 2361 2473 echo $ac_n "(cached) $ac_c" 1>&6 … … 2364 2476 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 2365 2477 else 2366 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2478 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2367 2479 ac_dummy="$PATH" 2368 2480 for ac_dir in $ac_dummy; do 2369 2481 test -z "$ac_dir" && ac_dir=. 2370 if test -f $ac_dir/$ac_word; then 2482 if test -f $ac_dir/$ac_word -o \ 2483 -f $ac_dir/$ac_word$ac_exeext ; then 2371 2484 ac_cv_prog_STRIP="strip" 2372 2485 break … … 2424 2537 *-*-irix6*) 2425 2538 # Find out which ABI we are using. 2426 echo '#line 2 427"configure"' > conftest.$ac_ext2427 if { (eval echo configure:2 428: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2539 echo '#line 2540 "configure"' > conftest.$ac_ext 2540 if { (eval echo configure:2541: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2428 2541 case `/usr/bin/file conftest.$ac_objext` in 2429 2542 *32-bit*) … … 2446 2559 CFLAGS="$CFLAGS -belf" 2447 2560 echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 2448 echo "configure:2 449: checking whether the C compiler needs -belf" >&52561 echo "configure:2562: checking whether the C compiler needs -belf" >&5 2449 2562 if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then 2450 2563 echo $ac_n "(cached) $ac_c" 1>&6 … … 2459 2572 2460 2573 cat > conftest.$ac_ext <<EOF 2461 #line 2 462"configure"2574 #line 2575 "configure" 2462 2575 #include "confdefs.h" 2463 2576 … … 2466 2579 ; return 0; } 2467 2580 EOF 2468 if { (eval echo configure:2 469: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2581 if { (eval echo configure:2582: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2469 2582 rm -rf conftest* 2470 2583 lt_cv_cc_needs_belf=yes … … 2496 2609 2497 2610 echo $ac_n "checking how to run the C++ preprocessor""... $ac_c" 1>&6 2498 echo "configure:2 499: checking how to run the C++ preprocessor" >&52611 echo "configure:2612: checking how to run the C++ preprocessor" >&5 2499 2612 if test -z "$CXXCPP"; then 2500 2613 if eval "test \"`echo '$''{'ac_cv_prog_CXXCPP'+set}'`\" = set"; then … … 2509 2622 CXXCPP="${CXX-g++} -E" 2510 2623 cat > conftest.$ac_ext <<EOF 2511 #line 2512 "configure" 2624 #include <sys/types.h> 2625 #line 2626 "configure" 2512 2626 #include "confdefs.h" 2513 2627 #include <stdlib.h> 2514 2628 EOF 2515 2629 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2516 { (eval echo configure:2 517: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2630 { (eval echo configure:2631: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2517 2631 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2518 2632 if test -z "$ac_err"; then … … 2748 2862 2749 2863 echo $ac_n "checking for exception model to use""... $ac_c" 1>&6 2750 echo "configure:2 751: checking for exception model to use" >&52864 echo "configure:2865: checking for exception model to use" >&5 2751 2865 2752 2866 ac_ext=C … … 2763 2877 else 2764 2878 cat > conftest.$ac_ext << EOF 2765 #line 2 766"configure"2879 #line 2880 "configure" 2766 2880 struct S { ~S(); }; 2767 2881 void bar(); … … 2774 2888 old_CXXFLAGS="$CXXFLAGS" 2775 2889 CXXFLAGS=-S 2776 if { (eval echo configure:2 777: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2890 if { (eval echo configure:2891: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2777 2891 if grep _Unwind_SjLj_Resume conftest.s >/dev/null 2>&1 ; then 2778 2892 enable_sjlj_exceptions=yes … … 2904 3018 2905 3019 echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 2906 echo "configure: 2907: checking how to run the C preprocessor" >&53020 echo "configure:3021: checking how to run the C preprocessor" >&5 2907 3021 # On Suns, sometimes $CPP names a directory. 2908 3022 if test -n "$CPP" && test -d "$CPP"; then … … 2919 3033 # not just through cpp. 2920 3034 cat > conftest.$ac_ext <<EOF 2921 #line 2922 "configure" 3035 #include <sys/types.h> 3036 #line 3037 "configure" 2922 3037 #include "confdefs.h" 2923 3038 #include <assert.h> … … 2925 3040 EOF 2926 3041 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2927 { (eval echo configure: 2928: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3042 { (eval echo configure:3043: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2928 3043 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2929 3044 if test -z "$ac_err"; then … … 2936 3051 CPP="${CC-cc} -E -traditional-cpp" 2937 3052 cat > conftest.$ac_ext <<EOF 2938 #line 2939 "configure" 3053 #include <sys/types.h> 3054 #line 3055 "configure" 2939 3055 #include "confdefs.h" 2940 3056 #include <assert.h> … … 2942 3058 EOF 2943 3059 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2944 { (eval echo configure: 2945: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3060 { (eval echo configure:3061: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2945 3061 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2946 3062 if test -z "$ac_err"; then … … 2953 3069 CPP="${CC-cc} -nologo -E" 2954 3070 cat > conftest.$ac_ext <<EOF 2955 #line 2956 "configure" 3071 #include <sys/types.h> 3072 #line 3073 "configure" 2956 3073 #include "confdefs.h" 2957 3074 #include <assert.h> … … 2959 3076 EOF 2960 3077 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2961 { (eval echo configure: 2962: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3078 { (eval echo configure:3079: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2962 3079 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2963 3080 if test -z "$ac_err"; then … … 2984 3101 2985 3102 cat > conftest.$ac_ext <<EOF 2986 #line 2987"configure"3103 #line 3104 "configure" 2987 3104 #include "confdefs.h" 2988 3105 #include <stdint.h> … … 2999 3116 3000 3117 cat > conftest.$ac_ext <<EOF 3001 #line 3 002"configure"3118 #line 3119 "configure" 3002 3119 #include "confdefs.h" 3003 3120 #include <inttypes.h> … … 3014 3131 3015 3132 cat > conftest.$ac_ext <<EOF 3016 #line 3 017"configure"3133 #line 3134 "configure" 3017 3134 #include "confdefs.h" 3018 3135 #include <sys/types.h> … … 3029 3146 3030 3147 cat > conftest.$ac_ext <<EOF 3031 #line 3 032"configure"3148 #line 3149 "configure" 3032 3149 #include "confdefs.h" 3033 3150 #include <sys/config.h> … … 3046 3163 3047 3164 cat > conftest.$ac_ext <<EOF 3048 #line 3 049"configure"3165 #line 3166 "configure" 3049 3166 #include "confdefs.h" 3050 3167 #include <time.h> … … 3061 3178 3062 3179 cat > conftest.$ac_ext <<EOF 3063 #line 3 064"configure"3180 #line 3181 "configure" 3064 3181 #include "confdefs.h" 3065 3182 #include <time.h> … … 3113 3230 3114 3231 echo $ac_n "checking for garbage collector to use""... $ac_c" 1>&6 3115 echo "configure:3 116: checking for garbage collector to use" >&53232 echo "configure:3233: checking for garbage collector to use" >&5 3116 3233 # Check whether --enable-java-gc or --disable-java-gc was given. 3117 3234 if test "${enable_java_gc+set}" = set; then … … 3166 3283 3167 3284 echo $ac_n "checking for thread model used by GCC""... $ac_c" 1>&6 3168 echo "configure:3 169: checking for thread model used by GCC" >&53285 echo "configure:3286: checking for thread model used by GCC" >&5 3169 3286 THREADS=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'` 3170 3287 echo "$ac_t""$THREADS" 1>&6 … … 3373 3490 do 3374 3491 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3375 echo "configure:3 376: checking for $ac_func" >&53492 echo "configure:3493: checking for $ac_func" >&5 3376 3493 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3377 3494 echo $ac_n "(cached) $ac_c" 1>&6 3378 3495 else 3379 3496 cat > conftest.$ac_ext <<EOF 3380 #line 3 381"configure"3497 #line 3498 "configure" 3381 3498 #include "confdefs.h" 3382 3499 /* System header to define __stub macros and hopefully few prototypes, … … 3401 3518 ; return 0; } 3402 3519 EOF 3403 if { (eval echo configure:3 404: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3520 if { (eval echo configure:3521: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3404 3521 rm -rf conftest* 3405 3522 eval "ac_cv_func_$ac_func=yes" … … 3428 3545 do 3429 3546 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3430 echo "configure:3 431: checking for $ac_func" >&53547 echo "configure:3548: checking for $ac_func" >&5 3431 3548 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3432 3549 echo $ac_n "(cached) $ac_c" 1>&6 3433 3550 else 3434 3551 cat > conftest.$ac_ext <<EOF 3435 #line 3 436"configure"3552 #line 3553 "configure" 3436 3553 #include "confdefs.h" 3437 3554 /* System header to define __stub macros and hopefully few prototypes, … … 3456 3573 ; return 0; } 3457 3574 EOF 3458 if { (eval echo configure:3 459: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3575 if { (eval echo configure:3576: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3459 3576 rm -rf conftest* 3460 3577 eval "ac_cv_func_$ac_func=yes" … … 3483 3600 do 3484 3601 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3485 echo "configure:3 486: checking for $ac_func" >&53602 echo "configure:3603: checking for $ac_func" >&5 3486 3603 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3487 3604 echo $ac_n "(cached) $ac_c" 1>&6 3488 3605 else 3489 3606 cat > conftest.$ac_ext <<EOF 3490 #line 3 491"configure"3607 #line 3608 "configure" 3491 3608 #include "confdefs.h" 3492 3609 /* System header to define __stub macros and hopefully few prototypes, … … 3511 3628 ; return 0; } 3512 3629 EOF 3513 if { (eval echo configure:3 514: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3630 if { (eval echo configure:3631: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3514 3631 rm -rf conftest* 3515 3632 eval "ac_cv_func_$ac_func=yes" … … 3538 3655 do 3539 3656 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3540 echo "configure:3 541: checking for $ac_func" >&53657 echo "configure:3658: checking for $ac_func" >&5 3541 3658 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3542 3659 echo $ac_n "(cached) $ac_c" 1>&6 3543 3660 else 3544 3661 cat > conftest.$ac_ext <<EOF 3545 #line 3 546"configure"3662 #line 3663 "configure" 3546 3663 #include "confdefs.h" 3547 3664 /* System header to define __stub macros and hopefully few prototypes, … … 3566 3683 ; return 0; } 3567 3684 EOF 3568 if { (eval echo configure:3 569: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3685 if { (eval echo configure:3686: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3569 3686 rm -rf conftest* 3570 3687 eval "ac_cv_func_$ac_func=yes" … … 3593 3710 do 3594 3711 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3595 echo "configure:3 596: checking for $ac_func" >&53712 echo "configure:3713: checking for $ac_func" >&5 3596 3713 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3597 3714 echo $ac_n "(cached) $ac_c" 1>&6 3598 3715 else 3599 3716 cat > conftest.$ac_ext <<EOF 3600 #line 3 601"configure"3717 #line 3718 "configure" 3601 3718 #include "confdefs.h" 3602 3719 /* System header to define __stub macros and hopefully few prototypes, … … 3621 3738 ; return 0; } 3622 3739 EOF 3623 if { (eval echo configure:3 624: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3740 if { (eval echo configure:3741: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3624 3741 rm -rf conftest* 3625 3742 eval "ac_cv_func_$ac_func=yes" … … 3648 3765 do 3649 3766 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3650 echo "configure:3 651: checking for $ac_func" >&53767 echo "configure:3768: checking for $ac_func" >&5 3651 3768 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3652 3769 echo $ac_n "(cached) $ac_c" 1>&6 3653 3770 else 3654 3771 cat > conftest.$ac_ext <<EOF 3655 #line 3 656"configure"3772 #line 3773 "configure" 3656 3773 #include "confdefs.h" 3657 3774 /* System header to define __stub macros and hopefully few prototypes, … … 3676 3793 ; return 0; } 3677 3794 EOF 3678 if { (eval echo configure:3 679: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3795 if { (eval echo configure:3796: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3679 3796 rm -rf conftest* 3680 3797 eval "ac_cv_func_$ac_func=yes" … … 3703 3820 do 3704 3821 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3705 echo "configure:3 706: checking for $ac_func" >&53822 echo "configure:3823: checking for $ac_func" >&5 3706 3823 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3707 3824 echo $ac_n "(cached) $ac_c" 1>&6 3708 3825 else 3709 3826 cat > conftest.$ac_ext <<EOF 3710 #line 3 711"configure"3827 #line 3828 "configure" 3711 3828 #include "confdefs.h" 3712 3829 /* System header to define __stub macros and hopefully few prototypes, … … 3731 3848 ; return 0; } 3732 3849 EOF 3733 if { (eval echo configure:3 734: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3850 if { (eval echo configure:3851: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3734 3851 rm -rf conftest* 3735 3852 eval "ac_cv_func_$ac_func=yes" … … 3759 3876 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 3760 3877 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 3761 echo "configure:3 762: checking for $ac_hdr" >&53878 echo "configure:3879: checking for $ac_hdr" >&5 3762 3879 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 3763 3880 echo $ac_n "(cached) $ac_c" 1>&6 3764 3881 else 3765 3882 cat > conftest.$ac_ext <<EOF 3766 #line 3767 "configure" 3883 #include <sys/types.h> 3884 #line 3885 "configure" 3767 3885 #include "confdefs.h" 3768 3886 #include <$ac_hdr> 3769 3887 EOF 3770 3888 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3771 { (eval echo configure:3 772: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3889 { (eval echo configure:3890: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3772 3890 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3773 3891 if test -z "$ac_err"; then … … 3796 3914 3797 3915 echo $ac_n "checking for backtrace""... $ac_c" 1>&6 3798 echo "configure:3 799: checking for backtrace" >&53916 echo "configure:3917: checking for backtrace" >&5 3799 3917 if eval "test \"`echo '$''{'ac_cv_func_backtrace'+set}'`\" = set"; then 3800 3918 echo $ac_n "(cached) $ac_c" 1>&6 3801 3919 else 3802 3920 cat > conftest.$ac_ext <<EOF 3803 #line 3 804"configure"3921 #line 3922 "configure" 3804 3922 #include "confdefs.h" 3805 3923 /* System header to define __stub macros and hopefully few prototypes, … … 3824 3942 ; return 0; } 3825 3943 EOF 3826 if { (eval echo configure:3 827: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3944 if { (eval echo configure:3945: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3827 3945 rm -rf conftest* 3828 3946 eval "ac_cv_func_backtrace=yes" … … 3857 3975 3858 3976 echo $ac_n "checking for dladdr in -ldl""... $ac_c" 1>&6 3859 echo "configure:3 860: checking for dladdr in -ldl" >&53977 echo "configure:3978: checking for dladdr in -ldl" >&5 3860 3978 ac_lib_var=`echo dl'_'dladdr | sed 'y%./+-%__p_%'` 3861 3979 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3865 3983 LIBS="-ldl $LIBS" 3866 3984 cat > conftest.$ac_ext <<EOF 3867 #line 3 868"configure"3985 #line 3986 "configure" 3868 3986 #include "confdefs.h" 3869 3987 /* Override any gcc2 internal prototype to avoid an error. */ … … 3876 3994 ; return 0; } 3877 3995 EOF 3878 if { (eval echo configure:3 879: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3996 if { (eval echo configure:3997: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3879 3997 rm -rf conftest* 3880 3998 eval "ac_cv_lib_$ac_lib_var=yes" … … 3905 4023 ac_safe=`echo "$ac_file" | sed 'y%./+-%__p_%'` 3906 4024 echo $ac_n "checking for $ac_file""... $ac_c" 1>&6 3907 echo "configure: 3908: checking for $ac_file" >&54025 echo "configure:4026: checking for $ac_file" >&5 3908 4026 if eval "test \"`echo '$''{'ac_cv_file_$ac_safe'+set}'`\" = set"; then 3909 4027 echo $ac_n "(cached) $ac_c" 1>&6 … … 3953 4071 3954 4072 echo $ac_n "checking for iconv""... $ac_c" 1>&6 3955 echo "configure: 3956: checking for iconv" >&54073 echo "configure:4074: checking for iconv" >&5 3956 4074 if eval "test \"`echo '$''{'am_cv_func_iconv'+set}'`\" = set"; then 3957 4075 echo $ac_n "(cached) $ac_c" 1>&6 … … 3961 4079 am_cv_lib_iconv=no 3962 4080 cat > conftest.$ac_ext <<EOF 3963 #line 3964"configure"4081 #line 4082 "configure" 3964 4082 #include "confdefs.h" 3965 4083 #include <stdlib.h> … … 3971 4089 ; return 0; } 3972 4090 EOF 3973 if { (eval echo configure: 3974: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4091 if { (eval echo configure:4092: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3974 4092 rm -rf conftest* 3975 4093 am_cv_func_iconv=yes … … 3983 4101 LIBS="$LIBS $am_cv_libiconv_ldpath -liconv" 3984 4102 cat > conftest.$ac_ext <<EOF 3985 #line 3986"configure"4103 #line 4104 "configure" 3986 4104 #include "confdefs.h" 3987 4105 #include <stdlib.h> … … 3993 4111 ; return 0; } 3994 4112 EOF 3995 if { (eval echo configure: 3996: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4113 if { (eval echo configure:4114: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3996 4114 rm -rf conftest* 3997 4115 am_cv_lib_iconv=yes … … 4014 4132 4015 4133 echo $ac_n "checking for iconv declaration""... $ac_c" 1>&6 4016 echo "configure:4 017: checking for iconv declaration" >&54134 echo "configure:4135: checking for iconv declaration" >&5 4017 4135 if eval "test \"`echo '$''{'am_cv_proto_iconv'+set}'`\" = set"; then 4018 4136 echo $ac_n "(cached) $ac_c" 1>&6 … … 4020 4138 4021 4139 cat > conftest.$ac_ext <<EOF 4022 #line 4 023"configure"4140 #line 4141 "configure" 4023 4141 #include "confdefs.h" 4024 4142 … … 4039 4157 ; return 0; } 4040 4158 EOF 4041 if { (eval echo configure:4 042: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then4159 if { (eval echo configure:4160: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4042 4160 rm -rf conftest* 4043 4161 am_cv_proto_iconv_arg1="" … … 4068 4186 if test $ac_cv_header_locale_h = yes; then 4069 4187 echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 4070 echo "configure:4 071: checking for LC_MESSAGES" >&54188 echo "configure:4189: checking for LC_MESSAGES" >&5 4071 4189 if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then 4072 4190 echo $ac_n "(cached) $ac_c" 1>&6 4073 4191 else 4074 4192 cat > conftest.$ac_ext <<EOF 4075 #line 4 076"configure"4193 #line 4194 "configure" 4076 4194 #include "confdefs.h" 4077 4195 #include <locale.h> … … 4080 4198 ; return 0; } 4081 4199 EOF 4082 if { (eval echo configure:4 083: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4200 if { (eval echo configure:4201: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4083 4201 rm -rf conftest* 4084 4202 am_cv_val_LC_MESSAGES=yes … … 4101 4219 fi 4102 4220 echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&6 4103 echo "configure:4 104: checking whether struct tm is in sys/time.h or time.h" >&54221 echo "configure:4222: checking whether struct tm is in sys/time.h or time.h" >&5 4104 4222 if eval "test \"`echo '$''{'ac_cv_struct_tm'+set}'`\" = set"; then 4105 4223 echo $ac_n "(cached) $ac_c" 1>&6 4106 4224 else 4107 4225 cat > conftest.$ac_ext <<EOF 4108 #line 4 109"configure"4226 #line 4227 "configure" 4109 4227 #include "confdefs.h" 4110 4228 #include <sys/types.h> … … 4114 4232 ; return 0; } 4115 4233 EOF 4116 if { (eval echo configure:4 117: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then4234 if { (eval echo configure:4235: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4117 4235 rm -rf conftest* 4118 4236 ac_cv_struct_tm=time.h … … 4135 4253 4136 4254 echo $ac_n "checking for tm_zone in struct tm""... $ac_c" 1>&6 4137 echo "configure:4 138: checking for tm_zone in struct tm" >&54255 echo "configure:4256: checking for tm_zone in struct tm" >&5 4138 4256 if eval "test \"`echo '$''{'ac_cv_struct_tm_zone'+set}'`\" = set"; then 4139 4257 echo $ac_n "(cached) $ac_c" 1>&6 4140 4258 else 4141 4259 cat > conftest.$ac_ext <<EOF 4142 #line 4 143"configure"4260 #line 4261 "configure" 4143 4261 #include "confdefs.h" 4144 4262 #include <sys/types.h> … … 4148 4266 ; return 0; } 4149 4267 EOF 4150 if { (eval echo configure:4 151: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then4268 if { (eval echo configure:4269: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4151 4269 rm -rf conftest* 4152 4270 ac_cv_struct_tm_zone=yes … … 4168 4286 else 4169 4287 echo $ac_n "checking for tzname""... $ac_c" 1>&6 4170 echo "configure:4 171: checking for tzname" >&54288 echo "configure:4289: checking for tzname" >&5 4171 4289 if eval "test \"`echo '$''{'ac_cv_var_tzname'+set}'`\" = set"; then 4172 4290 echo $ac_n "(cached) $ac_c" 1>&6 4173 4291 else 4174 4292 cat > conftest.$ac_ext <<EOF 4175 #line 4 176"configure"4293 #line 4294 "configure" 4176 4294 #include "confdefs.h" 4177 4295 #include <time.h> … … 4183 4301 ; return 0; } 4184 4302 EOF 4185 if { (eval echo configure:4 186: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4303 if { (eval echo configure:4304: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4186 4304 rm -rf conftest* 4187 4305 ac_cv_var_tzname=yes … … 4208 4326 do 4209 4327 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 4210 echo "configure:4 211: checking for $ac_func" >&54328 echo "configure:4329: checking for $ac_func" >&5 4211 4329 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 4212 4330 echo $ac_n "(cached) $ac_c" 1>&6 4213 4331 else 4214 4332 cat > conftest.$ac_ext <<EOF 4215 #line 4 216"configure"4333 #line 4334 "configure" 4216 4334 #include "confdefs.h" 4217 4335 /* System header to define __stub macros and hopefully few prototypes, … … 4236 4354 ; return 0; } 4237 4355 EOF 4238 if { (eval echo configure:4 239: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4356 if { (eval echo configure:4357: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4239 4357 rm -rf conftest* 4240 4358 eval "ac_cv_func_$ac_func=yes" … … 4263 4381 # Hopefully this check is robust enough. 4264 4382 cat > conftest.$ac_ext <<EOF 4265 #line 4 266"configure"4383 #line 4384 "configure" 4266 4384 #include "confdefs.h" 4267 4385 #include <netdb.h> … … 4283 4401 *) 4284 4402 echo $ac_n "checking whether gethostbyname_r declaration requires -D_REENTRANT""... $ac_c" 1>&6 4285 echo "configure:4 286: checking whether gethostbyname_r declaration requires -D_REENTRANT" >&54403 echo "configure:4404: checking whether gethostbyname_r declaration requires -D_REENTRANT" >&5 4286 4404 if eval "test \"`echo '$''{'libjava_cv_gethostbyname_r_needs_reentrant'+set}'`\" = set"; then 4287 4405 echo $ac_n "(cached) $ac_c" 1>&6 … … 4296 4414 4297 4415 cat > conftest.$ac_ext <<EOF 4298 #line 4 299"configure"4416 #line 4417 "configure" 4299 4417 #include "confdefs.h" 4300 4418 #include <netdb.h> … … 4303 4421 ; return 0; } 4304 4422 EOF 4305 if { (eval echo configure:4 306: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then4423 if { (eval echo configure:4424: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4306 4424 rm -rf conftest* 4307 4425 libjava_cv_gethostbyname_r_needs_reentrant=no … … 4313 4431 CPPFLAGS="$CPPFLAGS -D_REENTRANT" 4314 4432 cat > conftest.$ac_ext <<EOF 4315 #line 4 316"configure"4433 #line 4434 "configure" 4316 4434 #include "confdefs.h" 4317 4435 #include <netdb.h> … … 4320 4438 ; return 0; } 4321 4439 EOF 4322 if { (eval echo configure:4 323: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then4440 if { (eval echo configure:4441: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4323 4441 rm -rf conftest* 4324 4442 libjava_cv_gethostbyname_r_needs_reentrant=yes … … 4355 4473 4356 4474 echo $ac_n "checking for struct hostent_data""... $ac_c" 1>&6 4357 echo "configure:4 358: checking for struct hostent_data" >&54475 echo "configure:4476: checking for struct hostent_data" >&5 4358 4476 if eval "test \"`echo '$''{'libjava_cv_struct_hostent_data'+set}'`\" = set"; then 4359 4477 echo $ac_n "(cached) $ac_c" 1>&6 4360 4478 else 4361 4479 cat > conftest.$ac_ext <<EOF 4362 #line 4 363"configure"4480 #line 4481 "configure" 4363 4481 #include "confdefs.h" 4364 4482 … … 4371 4489 ; return 0; } 4372 4490 EOF 4373 if { (eval echo configure:4 374: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then4491 if { (eval echo configure:4492: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4374 4492 rm -rf conftest* 4375 4493 libjava_cv_struct_hostent_data=yes … … 4403 4521 # linkage check is enough, yet C++ code requires proper prototypes.) 4404 4522 cat > conftest.$ac_ext <<EOF 4405 #line 4 406"configure"4523 #line 4524 "configure" 4406 4524 #include "confdefs.h" 4407 4525 #include <netdb.h> … … 4414 4532 do 4415 4533 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 4416 echo "configure:4 417: checking for $ac_func" >&54534 echo "configure:4535: checking for $ac_func" >&5 4417 4535 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 4418 4536 echo $ac_n "(cached) $ac_c" 1>&6 4419 4537 else 4420 4538 cat > conftest.$ac_ext <<EOF 4421 #line 4 422"configure"4539 #line 4540 "configure" 4422 4540 #include "confdefs.h" 4423 4541 /* System header to define __stub macros and hopefully few prototypes, … … 4442 4560 ; return 0; } 4443 4561 EOF 4444 if { (eval echo configure:4 445: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4562 if { (eval echo configure:4563: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4445 4563 rm -rf conftest* 4446 4564 eval "ac_cv_func_$ac_func=yes" … … 4469 4587 # Hopefully this check is robust enough. 4470 4588 cat > conftest.$ac_ext <<EOF 4471 #line 4 472"configure"4589 #line 4590 "configure" 4472 4590 #include "confdefs.h" 4473 4591 #include <netdb.h> … … 4496 4614 do 4497 4615 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 4498 echo "configure:4 499: checking for $ac_func" >&54616 echo "configure:4617: checking for $ac_func" >&5 4499 4617 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 4500 4618 echo $ac_n "(cached) $ac_c" 1>&6 4501 4619 else 4502 4620 cat > conftest.$ac_ext <<EOF 4503 #line 4 504"configure"4621 #line 4622 "configure" 4504 4622 #include "confdefs.h" 4505 4623 /* System header to define __stub macros and hopefully few prototypes, … … 4524 4642 ; return 0; } 4525 4643 EOF 4526 if { (eval echo configure:4 527: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4644 if { (eval echo configure:4645: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4527 4645 rm -rf conftest* 4528 4646 eval "ac_cv_func_$ac_func=yes" … … 4548 4666 4549 4667 cat > conftest.$ac_ext <<EOF 4550 #line 4 551"configure"4668 #line 4669 "configure" 4551 4669 #include "confdefs.h" 4552 4670 #include <unistd.h> … … 4579 4697 do 4580 4698 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 4581 echo "configure:4 582: checking for $ac_func" >&54699 echo "configure:4700: checking for $ac_func" >&5 4582 4700 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 4583 4701 echo $ac_n "(cached) $ac_c" 1>&6 4584 4702 else 4585 4703 cat > conftest.$ac_ext <<EOF 4586 #line 4 587"configure"4704 #line 4705 "configure" 4587 4705 #include "confdefs.h" 4588 4706 /* System header to define __stub macros and hopefully few prototypes, … … 4607 4725 ; return 0; } 4608 4726 EOF 4609 if { (eval echo configure:4 610: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4727 if { (eval echo configure:4728: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4610 4728 rm -rf conftest* 4611 4729 eval "ac_cv_func_$ac_func=yes" … … 4637 4755 do 4638 4756 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 4639 echo "configure:4 640: checking for $ac_func" >&54757 echo "configure:4758: checking for $ac_func" >&5 4640 4758 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 4641 4759 echo $ac_n "(cached) $ac_c" 1>&6 4642 4760 else 4643 4761 cat > conftest.$ac_ext <<EOF 4644 #line 4 645"configure"4762 #line 4763 "configure" 4645 4763 #include "confdefs.h" 4646 4764 /* System header to define __stub macros and hopefully few prototypes, … … 4665 4783 ; return 0; } 4666 4784 EOF 4667 if { (eval echo configure:4 668: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4785 if { (eval echo configure:4786: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4668 4786 rm -rf conftest* 4669 4787 eval "ac_cv_func_$ac_func=yes" … … 4687 4805 echo "$ac_t""no" 1>&6 4688 4806 echo $ac_n "checking for sched_yield in -lrt""... $ac_c" 1>&6 4689 echo "configure:4 690: checking for sched_yield in -lrt" >&54807 echo "configure:4808: checking for sched_yield in -lrt" >&5 4690 4808 ac_lib_var=`echo rt'_'sched_yield | sed 'y%./+-%__p_%'` 4691 4809 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 4695 4813 LIBS="-lrt $LIBS" 4696 4814 cat > conftest.$ac_ext <<EOF 4697 #line 4 698"configure"4815 #line 4816 "configure" 4698 4816 #include "confdefs.h" 4699 4817 /* Override any gcc2 internal prototype to avoid an error. */ … … 4706 4824 ; return 0; } 4707 4825 EOF 4708 if { (eval echo configure:4 709: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4826 if { (eval echo configure:4827: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4709 4827 rm -rf conftest* 4710 4828 eval "ac_cv_lib_$ac_lib_var=yes" … … 4732 4850 4733 4851 echo $ac_n "checking for sched_yield in -lposix4""... $ac_c" 1>&6 4734 echo "configure:4 735: checking for sched_yield in -lposix4" >&54852 echo "configure:4853: checking for sched_yield in -lposix4" >&5 4735 4853 ac_lib_var=`echo posix4'_'sched_yield | sed 'y%./+-%__p_%'` 4736 4854 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 4740 4858 LIBS="-lposix4 $LIBS" 4741 4859 cat > conftest.$ac_ext <<EOF 4742 #line 4 743"configure"4860 #line 4861 "configure" 4743 4861 #include "confdefs.h" 4744 4862 /* Override any gcc2 internal prototype to avoid an error. */ … … 4751 4869 ; return 0; } 4752 4870 EOF 4753 if { (eval echo configure:4 754: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4871 if { (eval echo configure:4872: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4754 4872 rm -rf conftest* 4755 4873 eval "ac_cv_lib_$ac_lib_var=yes" … … 4787 4905 # or __m_count. This is a nice hack for Linux. 4788 4906 cat > conftest.$ac_ext <<EOF 4789 #line 4 790"configure"4907 #line 4908 "configure" 4790 4908 #include "confdefs.h" 4791 4909 #include <pthread.h> … … 4796 4914 ; return 0; } 4797 4915 EOF 4798 if { (eval echo configure:4 799: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then4916 if { (eval echo configure:4917: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4799 4917 rm -rf conftest* 4800 4918 cat >> confdefs.h <<\EOF … … 4808 4926 4809 4927 cat > conftest.$ac_ext <<EOF 4810 #line 4 811"configure"4928 #line 4929 "configure" 4811 4929 #include "confdefs.h" 4812 4930 #include <pthread.h> … … 4817 4935 ; return 0; } 4818 4936 EOF 4819 if { (eval echo configure:4 820: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then4937 if { (eval echo configure:4938: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4820 4938 rm -rf conftest* 4821 4939 cat >> confdefs.h <<\EOF … … 4837 4955 do 4838 4956 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 4839 echo "configure:4 840: checking for $ac_func" >&54957 echo "configure:4958: checking for $ac_func" >&5 4840 4958 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 4841 4959 echo $ac_n "(cached) $ac_c" 1>&6 4842 4960 else 4843 4961 cat > conftest.$ac_ext <<EOF 4844 #line 4 845"configure"4962 #line 4963 "configure" 4845 4963 #include "confdefs.h" 4846 4964 /* System header to define __stub macros and hopefully few prototypes, … … 4865 4983 ; return 0; } 4866 4984 EOF 4867 if { (eval echo configure:4 868: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4985 if { (eval echo configure:4986: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4868 4986 rm -rf conftest* 4869 4987 eval "ac_cv_func_$ac_func=yes" … … 4896 5014 do 4897 5015 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 4898 echo "configure: 4899: checking for $ac_func" >&55016 echo "configure:5017: checking for $ac_func" >&5 4899 5017 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 4900 5018 echo $ac_n "(cached) $ac_c" 1>&6 4901 5019 else 4902 5020 cat > conftest.$ac_ext <<EOF 4903 #line 4904"configure"5021 #line 5022 "configure" 4904 5022 #include "confdefs.h" 4905 5023 /* System header to define __stub macros and hopefully few prototypes, … … 4924 5042 ; return 0; } 4925 5043 EOF 4926 if { (eval echo configure: 4927: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5044 if { (eval echo configure:5045: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4927 5045 rm -rf conftest* 4928 5046 eval "ac_cv_func_$ac_func=yes" … … 4954 5072 do 4955 5073 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 4956 echo "configure: 4957: checking for $ac_func" >&55074 echo "configure:5075: checking for $ac_func" >&5 4957 5075 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 4958 5076 echo $ac_n "(cached) $ac_c" 1>&6 4959 5077 else 4960 5078 cat > conftest.$ac_ext <<EOF 4961 #line 4962"configure"5079 #line 5080 "configure" 4962 5080 #include "confdefs.h" 4963 5081 /* System header to define __stub macros and hopefully few prototypes, … … 4982 5100 ; return 0; } 4983 5101 EOF 4984 if { (eval echo configure: 4985: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5102 if { (eval echo configure:5103: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4985 5103 rm -rf conftest* 4986 5104 eval "ac_cv_func_$ac_func=yes" … … 5011 5129 5012 5130 echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6 5013 echo "configure:5 014: checking for dlopen in -ldl" >&55131 echo "configure:5132: checking for dlopen in -ldl" >&5 5014 5132 ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'` 5015 5133 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 5019 5137 LIBS="-ldl $LIBS" 5020 5138 cat > conftest.$ac_ext <<EOF 5021 #line 5 022"configure"5139 #line 5140 "configure" 5022 5140 #include "confdefs.h" 5023 5141 /* Override any gcc2 internal prototype to avoid an error. */ … … 5030 5148 ; return 0; } 5031 5149 EOF 5032 if { (eval echo configure:5 033: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5150 if { (eval echo configure:5151: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5033 5151 rm -rf conftest* 5034 5152 eval "ac_cv_lib_$ac_lib_var=yes" … … 5075 5193 5076 5194 echo $ac_n "checking for socket libraries""... $ac_c" 1>&6 5077 echo "configure:5 078: checking for socket libraries" >&55195 echo "configure:5196: checking for socket libraries" >&5 5078 5196 if eval "test \"`echo '$''{'gcj_cv_lib_sockets'+set}'`\" = set"; then 5079 5197 echo $ac_n "(cached) $ac_c" 1>&6 … … 5083 5201 unset ac_cv_func_connect 5084 5202 echo $ac_n "checking for connect""... $ac_c" 1>&6 5085 echo "configure:5 086: checking for connect" >&55203 echo "configure:5204: checking for connect" >&5 5086 5204 if eval "test \"`echo '$''{'ac_cv_func_connect'+set}'`\" = set"; then 5087 5205 echo $ac_n "(cached) $ac_c" 1>&6 5088 5206 else 5089 5207 cat > conftest.$ac_ext <<EOF 5090 #line 5 091"configure"5208 #line 5209 "configure" 5091 5209 #include "confdefs.h" 5092 5210 /* System header to define __stub macros and hopefully few prototypes, … … 5111 5229 ; return 0; } 5112 5230 EOF 5113 if { (eval echo configure:5 114: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5231 if { (eval echo configure:5232: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5114 5232 rm -rf conftest* 5115 5233 eval "ac_cv_func_connect=yes" … … 5134 5252 unset ac_cv_func_connect 5135 5253 echo $ac_n "checking for main in -lsocket""... $ac_c" 1>&6 5136 echo "configure:5 137: checking for main in -lsocket" >&55254 echo "configure:5255: checking for main in -lsocket" >&5 5137 5255 ac_lib_var=`echo socket'_'main | sed 'y%./+-%__p_%'` 5138 5256 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 5142 5260 LIBS="-lsocket $LIBS" 5143 5261 cat > conftest.$ac_ext <<EOF 5144 #line 5 145"configure"5262 #line 5263 "configure" 5145 5263 #include "confdefs.h" 5146 5264 … … 5149 5267 ; return 0; } 5150 5268 EOF 5151 if { (eval echo configure:5 152: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5269 if { (eval echo configure:5270: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5152 5270 rm -rf conftest* 5153 5271 eval "ac_cv_lib_$ac_lib_var=yes" … … 5176 5294 unset ac_cv_func_accept 5177 5295 echo $ac_n "checking for accept""... $ac_c" 1>&6 5178 echo "configure:5 179: checking for accept" >&55296 echo "configure:5297: checking for accept" >&5 5179 5297 if eval "test \"`echo '$''{'ac_cv_func_accept'+set}'`\" = set"; then 5180 5298 echo $ac_n "(cached) $ac_c" 1>&6 5181 5299 else 5182 5300 cat > conftest.$ac_ext <<EOF 5183 #line 5 184"configure"5301 #line 5302 "configure" 5184 5302 #include "confdefs.h" 5185 5303 /* System header to define __stub macros and hopefully few prototypes, … … 5204 5322 ; return 0; } 5205 5323 EOF 5206 if { (eval echo configure:5 207: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5324 if { (eval echo configure:5325: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5207 5325 rm -rf conftest* 5208 5326 eval "ac_cv_func_accept=yes" … … 5231 5349 LIBS="$LIBS $gcj_cv_lib_sockets" 5232 5350 echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6 5233 echo "configure:5 234: checking for gethostbyname" >&55351 echo "configure:5352: checking for gethostbyname" >&5 5234 5352 if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then 5235 5353 echo $ac_n "(cached) $ac_c" 1>&6 5236 5354 else 5237 5355 cat > conftest.$ac_ext <<EOF 5238 #line 5 239"configure"5356 #line 5357 "configure" 5239 5357 #include "confdefs.h" 5240 5358 /* System header to define __stub macros and hopefully few prototypes, … … 5259 5377 ; return 0; } 5260 5378 EOF 5261 if { (eval echo configure:5 262: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5379 if { (eval echo configure:5380: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5262 5380 rm -rf conftest* 5263 5381 eval "ac_cv_func_gethostbyname=yes" … … 5277 5395 echo "$ac_t""no" 1>&6 5278 5396 echo $ac_n "checking for main in -lnsl""... $ac_c" 1>&6 5279 echo "configure:5 280: checking for main in -lnsl" >&55397 echo "configure:5398: checking for main in -lnsl" >&5 5280 5398 ac_lib_var=`echo nsl'_'main | sed 'y%./+-%__p_%'` 5281 5399 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 5285 5403 LIBS="-lnsl $LIBS" 5286 5404 cat > conftest.$ac_ext <<EOF 5287 #line 5 288"configure"5405 #line 5406 "configure" 5288 5406 #include "confdefs.h" 5289 5407 … … 5292 5410 ; return 0; } 5293 5411 EOF 5294 if { (eval echo configure:5 295: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5412 if { (eval echo configure:5413: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5295 5413 rm -rf conftest* 5296 5414 eval "ac_cv_lib_$ac_lib_var=yes" … … 5324 5442 if test "$with_system_zlib" = yes; then 5325 5443 echo $ac_n "checking for deflate in -lz""... $ac_c" 1>&6 5326 echo "configure:5 327: checking for deflate in -lz" >&55444 echo "configure:5445: checking for deflate in -lz" >&5 5327 5445 ac_lib_var=`echo z'_'deflate | sed 'y%./+-%__p_%'` 5328 5446 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 5332 5450 LIBS="-lz $LIBS" 5333 5451 cat > conftest.$ac_ext <<EOF 5334 #line 5 335"configure"5452 #line 5453 "configure" 5335 5453 #include "confdefs.h" 5336 5454 /* Override any gcc2 internal prototype to avoid an error. */ … … 5343 5461 ; return 0; } 5344 5462 EOF 5345 if { (eval echo configure:5 346: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5463 if { (eval echo configure:5464: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5346 5464 rm -rf conftest* 5347 5465 eval "ac_cv_lib_$ac_lib_var=yes" … … 5370 5488 if test "$GC" = boehm; then 5371 5489 echo $ac_n "checking for main in -ldl""... $ac_c" 1>&6 5372 echo "configure:5 373: checking for main in -ldl" >&55490 echo "configure:5491: checking for main in -ldl" >&5 5373 5491 ac_lib_var=`echo dl'_'main | sed 'y%./+-%__p_%'` 5374 5492 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 5378 5496 LIBS="-ldl $LIBS" 5379 5497 cat > conftest.$ac_ext <<EOF 5380 #line 5 381"configure"5498 #line 5499 "configure" 5381 5499 #include "confdefs.h" 5382 5500 … … 5385 5503 ; return 0; } 5386 5504 EOF 5387 if { (eval echo configure:5 388: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5505 if { (eval echo configure:5506: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5388 5506 rm -rf conftest* 5389 5507 eval "ac_cv_lib_$ac_lib_var=yes" … … 5451 5569 set dummy ${ac_tool_prefix}gcj; ac_word=$2 5452 5570 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 5453 echo "configure:5 454: checking for $ac_word" >&55571 echo "configure:5572: checking for $ac_word" >&5 5454 5572 if eval "test \"`echo '$''{'ac_cv_prog_GCJ'+set}'`\" = set"; then 5455 5573 echo $ac_n "(cached) $ac_c" 1>&6 … … 5458 5576 ac_cv_prog_GCJ="$GCJ" # Let the user override the test. 5459 5577 else 5460 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"5578 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 5461 5579 ac_dummy="$PATH" 5462 5580 for ac_dir in $ac_dummy; do 5463 5581 test -z "$ac_dir" && ac_dir=. 5464 if test -f $ac_dir/$ac_word; then 5582 if test -f $ac_dir/$ac_word -o \ 5583 -f $ac_dir/$ac_word$ac_exeext ; then 5465 5584 ac_cv_prog_GCJ="${ac_tool_prefix}gcj" 5466 5585 break … … 5483 5602 set dummy gcj; ac_word=$2 5484 5603 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 5485 echo "configure:5 486: checking for $ac_word" >&55604 echo "configure:5605: checking for $ac_word" >&5 5486 5605 if eval "test \"`echo '$''{'ac_cv_prog_GCJ'+set}'`\" = set"; then 5487 5606 echo $ac_n "(cached) $ac_c" 1>&6 … … 5490 5609 ac_cv_prog_GCJ="$GCJ" # Let the user override the test. 5491 5610 else 5492 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"5611 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 5493 5612 ac_dummy="$PATH" 5494 5613 for ac_dir in $ac_dummy; do 5495 5614 test -z "$ac_dir" && ac_dir=. 5496 if test -f $ac_dir/$ac_word; then 5615 if test -f $ac_dir/$ac_word -o \ 5616 -f $ac_dir/$ac_word$ac_exeext ; then 5497 5617 ac_cv_prog_GCJ="gcj" 5498 5618 break … … 5545 5665 5546 5666 echo $ac_n "checking size of void *""... $ac_c" 1>&6 5547 echo "configure:5 548: checking size of void *" >&55667 echo "configure:5668: checking size of void *" >&5 5548 5668 if eval "test \"`echo '$''{'ac_cv_sizeof_void_p'+set}'`\" = set"; then 5549 5669 echo $ac_n "(cached) $ac_c" 1>&6 … … 5551 5671 for ac_size in 4 8 1 2 16 12 ; do # List sizes in rough order of prevalence. 5552 5672 cat > conftest.$ac_ext <<EOF 5553 #line 5 554 "configure"5673 #line 5674 "configure" 5554 5674 #include "confdefs.h" 5555 5675 #include "confdefs.h" … … 5561 5681 ; return 0; } 5562 5682 EOF 5563 if { (eval echo configure:5 564: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then5683 if { (eval echo configure:5684: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 5564 5684 rm -rf conftest* 5565 5685 ac_cv_sizeof_void_p=$ac_size … … 5668 5788 5669 5789 echo $ac_n "checking for g++ -ffloat-store bug""... $ac_c" 1>&6 5670 echo "configure:5 671: checking for g++ -ffloat-store bug" >&55790 echo "configure:5791: checking for g++ -ffloat-store bug" >&5 5671 5791 save_CFLAGS="$CFLAGS" 5672 5792 CFLAGS="-x c++ -O2 -ffloat-store" 5673 5793 cat > conftest.$ac_ext <<EOF 5674 #line 5 675 "configure"5794 #line 5795 "configure" 5675 5795 #include "confdefs.h" 5676 5796 #include <math.h> … … 5679 5799 ; return 0; } 5680 5800 EOF 5681 if { (eval echo configure:5 682: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then5801 if { (eval echo configure:5802: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 5682 5802 rm -rf conftest* 5683 5803 echo "$ac_t""no" 1>&6 … … 5699 5819 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 5700 5820 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 5701 echo "configure:5 702: checking for $ac_hdr" >&55821 echo "configure:5822: checking for $ac_hdr" >&5 5702 5822 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 5703 5823 echo $ac_n "(cached) $ac_c" 1>&6 5704 5824 else 5705 5825 cat > conftest.$ac_ext <<EOF 5706 #line 5707 "configure" 5826 #include <sys/types.h> 5827 #line 5828 "configure" 5707 5828 #include "confdefs.h" 5708 5829 #include <$ac_hdr> 5709 5830 EOF 5710 5831 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 5711 { (eval echo configure:5 712: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }5832 { (eval echo configure:5833: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 5712 5833 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 5713 5834 if test -z "$ac_err"; then … … 5739 5860 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 5740 5861 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 5741 echo "configure:5 742: checking for $ac_hdr" >&55862 echo "configure:5863: checking for $ac_hdr" >&5 5742 5863 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 5743 5864 echo $ac_n "(cached) $ac_c" 1>&6 5744 5865 else 5745 5866 cat > conftest.$ac_ext <<EOF 5746 #line 5747 "configure" 5867 #include <sys/types.h> 5868 #line 5869 "configure" 5747 5869 #include "confdefs.h" 5748 5870 #include <$ac_hdr> 5749 5871 EOF 5750 5872 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 5751 { (eval echo configure:5 752: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }5873 { (eval echo configure:5874: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 5752 5874 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 5753 5875 if test -z "$ac_err"; then … … 5779 5901 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 5780 5902 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 5781 echo "configure:5 782: checking for $ac_hdr" >&55903 echo "configure:5904: checking for $ac_hdr" >&5 5782 5904 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 5783 5905 echo $ac_n "(cached) $ac_c" 1>&6 5784 5906 else 5785 5907 cat > conftest.$ac_ext <<EOF 5786 #line 5787 "configure" 5908 #include <sys/types.h> 5909 #line 5910 "configure" 5787 5910 #include "confdefs.h" 5788 5911 #include <$ac_hdr> 5789 5912 EOF 5790 5913 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 5791 { (eval echo configure:5 792: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }5914 { (eval echo configure:5915: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 5792 5915 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 5793 5916 if test -z "$ac_err"; then … … 5825 5948 5826 5949 echo $ac_n "checking for sys/wait.h that is POSIX.1 compatible""... $ac_c" 1>&6 5827 echo "configure:5 828: checking for sys/wait.h that is POSIX.1 compatible" >&55950 echo "configure:5951: checking for sys/wait.h that is POSIX.1 compatible" >&5 5828 5951 if eval "test \"`echo '$''{'ac_cv_header_sys_wait_h'+set}'`\" = set"; then 5829 5952 echo $ac_n "(cached) $ac_c" 1>&6 5830 5953 else 5831 5954 cat > conftest.$ac_ext <<EOF 5832 #line 5 833"configure"5955 #line 5956 "configure" 5833 5956 #include "confdefs.h" 5834 5957 #include <sys/types.h> … … 5846 5969 ; return 0; } 5847 5970 EOF 5848 if { (eval echo configure:5 849: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then5971 if { (eval echo configure:5972: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 5849 5972 rm -rf conftest* 5850 5973 ac_cv_header_sys_wait_h=yes … … 5868 5991 5869 5992 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 5870 echo "configure:5 871: checking for ANSI C header files" >&55993 echo "configure:5994: checking for ANSI C header files" >&5 5871 5994 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 5872 5995 echo $ac_n "(cached) $ac_c" 1>&6 5873 5996 else 5874 5997 cat > conftest.$ac_ext <<EOF 5875 #line 5876 "configure" 5998 #include <sys/types.h> 5999 #line 6000 "configure" 5876 6000 #include "confdefs.h" 5877 6001 #include <stdlib.h> … … 5881 6005 EOF 5882 6006 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 5883 { (eval echo configure: 5884: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }6007 { (eval echo configure:6008: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 5884 6008 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 5885 6009 if test -z "$ac_err"; then … … 5898 6022 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 5899 6023 cat > conftest.$ac_ext <<EOF 5900 #line 5901"configure"6024 #line 6025 "configure" 5901 6025 #include "confdefs.h" 5902 6026 #include <string.h> … … 5916 6040 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 5917 6041 cat > conftest.$ac_ext <<EOF 5918 #line 5919"configure"6042 #line 6043 "configure" 5919 6043 #include "confdefs.h" 5920 6044 #include <stdlib.h> … … 5937 6061 else 5938 6062 cat > conftest.$ac_ext <<EOF 5939 #line 5940"configure"6063 #line 6064 "configure" 5940 6064 #include "confdefs.h" 5941 6065 #include <ctype.h> … … 5948 6072 5949 6073 EOF 5950 if { (eval echo configure: 5951: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null6074 if { (eval echo configure:6075: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 5951 6075 then 5952 6076 : … … 5972 6096 5973 6097 echo $ac_n "checking for ssize_t""... $ac_c" 1>&6 5974 echo "configure: 5975: checking for ssize_t" >&56098 echo "configure:6099: checking for ssize_t" >&5 5975 6099 if eval "test \"`echo '$''{'ac_cv_type_ssize_t'+set}'`\" = set"; then 5976 6100 echo $ac_n "(cached) $ac_c" 1>&6 5977 6101 else 5978 6102 cat > conftest.$ac_ext <<EOF 5979 #line 5980"configure"6103 #line 6104 "configure" 5980 6104 #include "confdefs.h" 5981 6105 #include <sys/types.h> … … 6006 6130 6007 6131 echo $ac_n "checking for in_addr_t""... $ac_c" 1>&6 6008 echo "configure:6 009: checking for in_addr_t" >&56132 echo "configure:6133: checking for in_addr_t" >&5 6009 6133 cat > conftest.$ac_ext <<EOF 6010 #line 6 011"configure"6134 #line 6135 "configure" 6011 6135 #include "confdefs.h" 6012 6136 #include <sys/types.h> … … 6022 6146 ; return 0; } 6023 6147 EOF 6024 if { (eval echo configure:6 025: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then6148 if { (eval echo configure:6149: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 6025 6149 rm -rf conftest* 6026 6150 cat >> confdefs.h <<\EOF … … 6038 6162 6039 6163 echo $ac_n "checking whether struct ip_mreq is in netinet/in.h""... $ac_c" 1>&6 6040 echo "configure:6 041: checking whether struct ip_mreq is in netinet/in.h" >&56164 echo "configure:6165: checking whether struct ip_mreq is in netinet/in.h" >&5 6041 6165 cat > conftest.$ac_ext <<EOF 6042 #line 6 043"configure"6166 #line 6167 "configure" 6043 6167 #include "confdefs.h" 6044 6168 #include <netinet/in.h> … … 6047 6171 ; return 0; } 6048 6172 EOF 6049 if { (eval echo configure:6 050: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then6173 if { (eval echo configure:6174: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 6050 6174 rm -rf conftest* 6051 6175 cat >> confdefs.h <<\EOF … … 6063 6187 6064 6188 echo $ac_n "checking whether struct ipv6_mreq is in netinet/in.h""... $ac_c" 1>&6 6065 echo "configure:6 066: checking whether struct ipv6_mreq is in netinet/in.h" >&56189 echo "configure:6190: checking whether struct ipv6_mreq is in netinet/in.h" >&5 6066 6190 cat > conftest.$ac_ext <<EOF 6067 #line 6 068"configure"6191 #line 6192 "configure" 6068 6192 #include "confdefs.h" 6069 6193 #include <netinet/in.h> … … 6072 6196 ; return 0; } 6073 6197 EOF 6074 if { (eval echo configure:6 075: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then6198 if { (eval echo configure:6199: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 6075 6199 rm -rf conftest* 6076 6200 cat >> confdefs.h <<\EOF … … 6088 6212 6089 6213 echo $ac_n "checking whether struct sockaddr_in6 is in netinet/in.h""... $ac_c" 1>&6 6090 echo "configure:6 091: checking whether struct sockaddr_in6 is in netinet/in.h" >&56214 echo "configure:6215: checking whether struct sockaddr_in6 is in netinet/in.h" >&5 6091 6215 cat > conftest.$ac_ext <<EOF 6092 #line 6 093"configure"6216 #line 6217 "configure" 6093 6217 #include "confdefs.h" 6094 6218 #include <netinet/in.h> … … 6097 6221 ; return 0; } 6098 6222 EOF 6099 if { (eval echo configure:6 100: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then6223 if { (eval echo configure:6224: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 6100 6224 rm -rf conftest* 6101 6225 cat >> confdefs.h <<\EOF … … 6113 6237 6114 6238 echo $ac_n "checking for socklen_t in sys/socket.h""... $ac_c" 1>&6 6115 echo "configure:6 116: checking for socklen_t in sys/socket.h" >&56239 echo "configure:6240: checking for socklen_t in sys/socket.h" >&5 6116 6240 cat > conftest.$ac_ext <<EOF 6117 #line 6 118"configure"6241 #line 6242 "configure" 6118 6242 #include "confdefs.h" 6119 6243 #define _POSIX_PII_SOCKET … … 6124 6248 ; return 0; } 6125 6249 EOF 6126 if { (eval echo configure:6 127: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then6250 if { (eval echo configure:6251: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 6127 6251 rm -rf conftest* 6128 6252 cat >> confdefs.h <<\EOF … … 6140 6264 6141 6265 echo $ac_n "checking for tm_gmtoff in struct tm""... $ac_c" 1>&6 6142 echo "configure:6 143: checking for tm_gmtoff in struct tm" >&56266 echo "configure:6267: checking for tm_gmtoff in struct tm" >&5 6143 6267 cat > conftest.$ac_ext <<EOF 6144 #line 6 145"configure"6268 #line 6269 "configure" 6145 6269 #include "confdefs.h" 6146 6270 #include <time.h> … … 6149 6273 ; return 0; } 6150 6274 EOF 6151 if { (eval echo configure:6 152: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then6275 if { (eval echo configure:6276: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 6152 6276 rm -rf conftest* 6153 6277 cat >> confdefs.h <<\EOF … … 6162 6286 echo "$ac_t""no" 1>&6 6163 6287 echo $ac_n "checking for global timezone variable""... $ac_c" 1>&6 6164 echo "configure:6 165: checking for global timezone variable" >&56288 echo "configure:6289: checking for global timezone variable" >&5 6165 6289 cat > conftest.$ac_ext <<EOF 6166 #line 6 167"configure"6290 #line 6291 "configure" 6167 6291 #include "confdefs.h" 6168 6292 #include <time.h> … … 6171 6295 ; return 0; } 6172 6296 EOF 6173 if { (eval echo configure:6 174: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then6297 if { (eval echo configure:6298: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 6174 6298 rm -rf conftest* 6175 6299 cat >> confdefs.h <<\EOF … … 6191 6315 # for constant arguments. Useless! 6192 6316 echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 6193 echo "configure:6 194: checking for working alloca.h" >&56317 echo "configure:6318: checking for working alloca.h" >&5 6194 6318 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then 6195 6319 echo $ac_n "(cached) $ac_c" 1>&6 6196 6320 else 6197 6321 cat > conftest.$ac_ext <<EOF 6198 #line 6 199"configure"6322 #line 6323 "configure" 6199 6323 #include "confdefs.h" 6200 6324 #include <alloca.h> … … 6203 6327 ; return 0; } 6204 6328 EOF 6205 if { (eval echo configure:6 206: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then6329 if { (eval echo configure:6330: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 6206 6330 rm -rf conftest* 6207 6331 ac_cv_header_alloca_h=yes … … 6224 6348 6225 6349 echo $ac_n "checking for alloca""... $ac_c" 1>&6 6226 echo "configure:6 227: checking for alloca" >&56350 echo "configure:6351: checking for alloca" >&5 6227 6351 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then 6228 6352 echo $ac_n "(cached) $ac_c" 1>&6 6229 6353 else 6230 6354 cat > conftest.$ac_ext <<EOF 6231 #line 6 232"configure"6355 #line 6356 "configure" 6232 6356 #include "confdefs.h" 6233 6357 … … 6257 6381 ; return 0; } 6258 6382 EOF 6259 if { (eval echo configure:6 260: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then6383 if { (eval echo configure:6384: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 6260 6384 rm -rf conftest* 6261 6385 ac_cv_func_alloca_works=yes … … 6289 6413 6290 6414 echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 6291 echo "configure:6 292: checking whether alloca needs Cray hooks" >&56415 echo "configure:6416: checking whether alloca needs Cray hooks" >&5 6292 6416 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then 6293 6417 echo $ac_n "(cached) $ac_c" 1>&6 6294 6418 else 6295 6419 cat > conftest.$ac_ext <<EOF 6296 #line 6 297"configure"6420 #line 6421 "configure" 6297 6421 #include "confdefs.h" 6298 6422 #if defined(CRAY) && ! defined(CRAY2) … … 6319 6443 for ac_func in _getb67 GETB67 getb67; do 6320 6444 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 6321 echo "configure:6 322: checking for $ac_func" >&56445 echo "configure:6446: checking for $ac_func" >&5 6322 6446 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 6323 6447 echo $ac_n "(cached) $ac_c" 1>&6 6324 6448 else 6325 6449 cat > conftest.$ac_ext <<EOF 6326 #line 6 327"configure"6450 #line 6451 "configure" 6327 6451 #include "confdefs.h" 6328 6452 /* System header to define __stub macros and hopefully few prototypes, … … 6347 6471 ; return 0; } 6348 6472 EOF 6349 if { (eval echo configure:6 350: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then6473 if { (eval echo configure:6474: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 6350 6474 rm -rf conftest* 6351 6475 eval "ac_cv_func_$ac_func=yes" … … 6374 6498 6375 6499 echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 6376 echo "configure:6 377: checking stack direction for C alloca" >&56500 echo "configure:6501: checking stack direction for C alloca" >&5 6377 6501 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then 6378 6502 echo $ac_n "(cached) $ac_c" 1>&6 … … 6382 6506 else 6383 6507 cat > conftest.$ac_ext <<EOF 6384 #line 6 385"configure"6508 #line 6509 "configure" 6385 6509 #include "confdefs.h" 6386 6510 find_stack_direction () … … 6401 6525 } 6402 6526 EOF 6403 if { (eval echo configure:6 404: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null6527 if { (eval echo configure:6528: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 6404 6528 then 6405 6529 ac_cv_c_stack_direction=1 … … 6428 6552 set dummy $ac_prog; ac_word=$2 6429 6553 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 6430 echo "configure:6 431: checking for $ac_word" >&56554 echo "configure:6555: checking for $ac_word" >&5 6431 6555 if eval "test \"`echo '$''{'ac_cv_prog_PERL'+set}'`\" = set"; then 6432 6556 echo $ac_n "(cached) $ac_c" 1>&6 … … 6435 6559 ac_cv_prog_PERL="$PERL" # Let the user override the test. 6436 6560 else 6437 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"6561 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 6438 6562 ac_dummy="$PATH" 6439 6563 for ac_dir in $ac_dummy; do 6440 6564 test -z "$ac_dir" && ac_dir=. 6441 if test -f $ac_dir/$ac_word; then 6565 if test -f $ac_dir/$ac_word -o \ 6566 -f $ac_dir/$ac_word$ac_exeext ; then 6442 6567 ac_cv_prog_PERL="$ac_prog" 6443 6568 break … … 6512 6637 # --without-x overrides everything else, but does not touch the cache. 6513 6638 echo $ac_n "checking for X""... $ac_c" 1>&6 6514 echo "configure:6 515: checking for X" >&56639 echo "configure:6640: checking for X" >&5 6515 6640 6516 6641 # Check whether --with-x or --without-x was given. … … 6540 6665 cat > Imakefile <<'EOF' 6541 6666 acfindx: 6542 @ echo 'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${USRLIBDIR}"; ac_im_libdir="${LIBDIR}"'6667 @sh -c 'echo \'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${DESTDIR}${USRLIBDIR}"; ac_im_libdir="${DESTDIR}${LIBDIR}"\'' 6543 6668 EOF 6544 6669 if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then … … 6547 6672 # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. 6548 6673 for ac_extension in a so sl; do 6549 if test ! -f $ac_im_usrlibdir/ libX11.$ac_extension &&6550 test -f $ac_im_libdir/ libX11.$ac_extension; then6674 if test ! -f $ac_im_usrlibdir/${ac_cv_libpre}X11.$ac_extension && 6675 test -f $ac_im_libdir/${ac_cv_libpre}X11.$ac_extension; then 6551 6676 ac_im_usrlibdir=$ac_im_libdir; break 6552 6677 fi … … 6574 6699 # First, try using that file with no special directory specified. 6575 6700 cat > conftest.$ac_ext <<EOF 6576 #line 6577 "configure" 6701 #include <sys/types.h> 6702 #line 6703 "configure" 6577 6703 #include "confdefs.h" 6578 6704 #include <$x_direct_test_include> 6579 6705 EOF 6580 6706 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 6581 { (eval echo configure:6 582: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }6707 { (eval echo configure:6708: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 6582 6708 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 6583 6709 if test -z "$ac_err"; then … … 6648 6774 LIBS="-l$x_direct_test_library $LIBS" 6649 6775 cat > conftest.$ac_ext <<EOF 6650 #line 6 651"configure"6776 #line 6777 "configure" 6651 6777 #include "confdefs.h" 6652 6778 … … 6655 6781 ; return 0; } 6656 6782 EOF 6657 if { (eval echo configure:6 658: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then6783 if { (eval echo configure:6784: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 6658 6784 rm -rf conftest* 6659 6785 LIBS="$ac_save_LIBS" … … 6705 6831 do 6706 6832 for ac_extension in a so sl; do 6707 if test -r $ac_dir/ lib${x_direct_test_library}.$ac_extension; then6833 if test -r $ac_dir/${ac_cv_libpre}${x_direct_test_library}.$ac_extension; then 6708 6834 ac_x_libraries=$ac_dir 6709 6835 break 2 … … 6752 6878 X_CFLAGS="$X_CFLAGS -I$x_includes" 6753 6879 fi 6880 test -n "$x_includes" && CPPFLAGS="$CPPFLAGS -I$x_includes" 6754 6881 6755 6882 # It would also be nice to do this for all -L options, not just this one. … … 6761 6888 "SunOS 5"*) 6762 6889 echo $ac_n "checking whether -R must be followed by a space""... $ac_c" 1>&6 6763 echo "configure:6 764: checking whether -R must be followed by a space" >&56890 echo "configure:6891: checking whether -R must be followed by a space" >&5 6764 6891 ac_xsave_LIBS="$LIBS"; LIBS="$LIBS -R$x_libraries" 6765 6892 cat > conftest.$ac_ext <<EOF 6766 #line 6 767"configure"6893 #line 6894 "configure" 6767 6894 #include "confdefs.h" 6768 6895 … … 6771 6898 ; return 0; } 6772 6899 EOF 6773 if { (eval echo configure:6 774: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then6900 if { (eval echo configure:6901: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 6774 6901 rm -rf conftest* 6775 6902 ac_R_nospace=yes … … 6787 6914 LIBS="$ac_xsave_LIBS -R $x_libraries" 6788 6915 cat > conftest.$ac_ext <<EOF 6789 #line 6 790"configure"6916 #line 6917 "configure" 6790 6917 #include "confdefs.h" 6791 6918 … … 6794 6921 ; return 0; } 6795 6922 EOF 6796 if { (eval echo configure:6 797: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then6923 if { (eval echo configure:6924: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 6797 6924 rm -rf conftest* 6798 6925 ac_R_space=yes … … 6826 6953 # the Alpha needs dnet_stub (dnet does not exist). 6827 6954 echo $ac_n "checking for dnet_ntoa in -ldnet""... $ac_c" 1>&6 6828 echo "configure:6 829: checking for dnet_ntoa in -ldnet" >&56955 echo "configure:6956: checking for dnet_ntoa in -ldnet" >&5 6829 6956 ac_lib_var=`echo dnet'_'dnet_ntoa | sed 'y%./+-%__p_%'` 6830 6957 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 6834 6961 LIBS="-ldnet $LIBS" 6835 6962 cat > conftest.$ac_ext <<EOF 6836 #line 6 837"configure"6963 #line 6964 "configure" 6837 6964 #include "confdefs.h" 6838 6965 /* Override any gcc2 internal prototype to avoid an error. */ … … 6845 6972 ; return 0; } 6846 6973 EOF 6847 if { (eval echo configure:6 848: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then6974 if { (eval echo configure:6975: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 6848 6975 rm -rf conftest* 6849 6976 eval "ac_cv_lib_$ac_lib_var=yes" … … 6867 6994 if test $ac_cv_lib_dnet_dnet_ntoa = no; then 6868 6995 echo $ac_n "checking for dnet_ntoa in -ldnet_stub""... $ac_c" 1>&6 6869 echo "configure:6 870: checking for dnet_ntoa in -ldnet_stub" >&56996 echo "configure:6997: checking for dnet_ntoa in -ldnet_stub" >&5 6870 6997 ac_lib_var=`echo dnet_stub'_'dnet_ntoa | sed 'y%./+-%__p_%'` 6871 6998 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 6875 7002 LIBS="-ldnet_stub $LIBS" 6876 7003 cat > conftest.$ac_ext <<EOF 6877 #line 6878"configure"7004 #line 7005 "configure" 6878 7005 #include "confdefs.h" 6879 7006 /* Override any gcc2 internal prototype to avoid an error. */ … … 6886 7013 ; return 0; } 6887 7014 EOF 6888 if { (eval echo configure: 6889: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then7015 if { (eval echo configure:7016: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 6889 7016 rm -rf conftest* 6890 7017 eval "ac_cv_lib_$ac_lib_var=yes" … … 6915 7042 # on Irix 5.2, according to dickey@clark.net. 6916 7043 echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6 6917 echo "configure: 6918: checking for gethostbyname" >&57044 echo "configure:7045: checking for gethostbyname" >&5 6918 7045 if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then 6919 7046 echo $ac_n "(cached) $ac_c" 1>&6 6920 7047 else 6921 7048 cat > conftest.$ac_ext <<EOF 6922 #line 6923"configure"7049 #line 7050 "configure" 6923 7050 #include "confdefs.h" 6924 7051 /* System header to define __stub macros and hopefully few prototypes, … … 6943 7070 ; return 0; } 6944 7071 EOF 6945 if { (eval echo configure: 6946: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then7072 if { (eval echo configure:7073: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 6946 7073 rm -rf conftest* 6947 7074 eval "ac_cv_func_gethostbyname=yes" … … 6964 7091 if test $ac_cv_func_gethostbyname = no; then 6965 7092 echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6 6966 echo "configure: 6967: checking for gethostbyname in -lnsl" >&57093 echo "configure:7094: checking for gethostbyname in -lnsl" >&5 6967 7094 ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'` 6968 7095 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 6972 7099 LIBS="-lnsl $LIBS" 6973 7100 cat > conftest.$ac_ext <<EOF 6974 #line 6975"configure"7101 #line 7102 "configure" 6975 7102 #include "confdefs.h" 6976 7103 /* Override any gcc2 internal prototype to avoid an error. */ … … 6983 7110 ; return 0; } 6984 7111 EOF 6985 if { (eval echo configure: 6986: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then7112 if { (eval echo configure:7113: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 6986 7113 rm -rf conftest* 6987 7114 eval "ac_cv_lib_$ac_lib_var=yes" … … 7013 7140 # We assume that if connect needs -lnsl, so does gethostbyname. 7014 7141 echo $ac_n "checking for connect""... $ac_c" 1>&6 7015 echo "configure:7 016: checking for connect" >&57142 echo "configure:7143: checking for connect" >&5 7016 7143 if eval "test \"`echo '$''{'ac_cv_func_connect'+set}'`\" = set"; then 7017 7144 echo $ac_n "(cached) $ac_c" 1>&6 7018 7145 else 7019 7146 cat > conftest.$ac_ext <<EOF 7020 #line 7 021"configure"7147 #line 7148 "configure" 7021 7148 #include "confdefs.h" 7022 7149 /* System header to define __stub macros and hopefully few prototypes, … … 7041 7168 ; return 0; } 7042 7169 EOF 7043 if { (eval echo configure:7 044: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then7170 if { (eval echo configure:7171: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 7044 7171 rm -rf conftest* 7045 7172 eval "ac_cv_func_connect=yes" … … 7062 7189 if test $ac_cv_func_connect = no; then 7063 7190 echo $ac_n "checking for connect in -lsocket""... $ac_c" 1>&6 7064 echo "configure:7 065: checking for connect in -lsocket" >&57191 echo "configure:7192: checking for connect in -lsocket" >&5 7065 7192 ac_lib_var=`echo socket'_'connect | sed 'y%./+-%__p_%'` 7066 7193 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 7070 7197 LIBS="-lsocket $X_EXTRA_LIBS $LIBS" 7071 7198 cat > conftest.$ac_ext <<EOF 7072 #line 7 073"configure"7199 #line 7200 "configure" 7073 7200 #include "confdefs.h" 7074 7201 /* Override any gcc2 internal prototype to avoid an error. */ … … 7081 7208 ; return 0; } 7082 7209 EOF 7083 if { (eval echo configure:7 084: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then7210 if { (eval echo configure:7211: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 7084 7211 rm -rf conftest* 7085 7212 eval "ac_cv_lib_$ac_lib_var=yes" … … 7105 7232 # gomez@mi.uni-erlangen.de says -lposix is necessary on A/UX. 7106 7233 echo $ac_n "checking for remove""... $ac_c" 1>&6 7107 echo "configure:7 108: checking for remove" >&57234 echo "configure:7235: checking for remove" >&5 7108 7235 if eval "test \"`echo '$''{'ac_cv_func_remove'+set}'`\" = set"; then 7109 7236 echo $ac_n "(cached) $ac_c" 1>&6 7110 7237 else 7111 7238 cat > conftest.$ac_ext <<EOF 7112 #line 7 113"configure"7239 #line 7240 "configure" 7113 7240 #include "confdefs.h" 7114 7241 /* System header to define __stub macros and hopefully few prototypes, … … 7133 7260 ; return 0; } 7134 7261 EOF 7135 if { (eval echo configure:7 136: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then7262 if { (eval echo configure:7263: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 7136 7263 rm -rf conftest* 7137 7264 eval "ac_cv_func_remove=yes" … … 7154 7281 if test $ac_cv_func_remove = no; then 7155 7282 echo $ac_n "checking for remove in -lposix""... $ac_c" 1>&6 7156 echo "configure:7 157: checking for remove in -lposix" >&57283 echo "configure:7284: checking for remove in -lposix" >&5 7157 7284 ac_lib_var=`echo posix'_'remove | sed 'y%./+-%__p_%'` 7158 7285 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 7162 7289 LIBS="-lposix $LIBS" 7163 7290 cat > conftest.$ac_ext <<EOF 7164 #line 7 165"configure"7291 #line 7292 "configure" 7165 7292 #include "confdefs.h" 7166 7293 /* Override any gcc2 internal prototype to avoid an error. */ … … 7173 7300 ; return 0; } 7174 7301 EOF 7175 if { (eval echo configure:7 176: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then7302 if { (eval echo configure:7303: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 7176 7303 rm -rf conftest* 7177 7304 eval "ac_cv_lib_$ac_lib_var=yes" … … 7197 7324 # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. 7198 7325 echo $ac_n "checking for shmat""... $ac_c" 1>&6 7199 echo "configure:7 200: checking for shmat" >&57326 echo "configure:7327: checking for shmat" >&5 7200 7327 if eval "test \"`echo '$''{'ac_cv_func_shmat'+set}'`\" = set"; then 7201 7328 echo $ac_n "(cached) $ac_c" 1>&6 7202 7329 else 7203 7330 cat > conftest.$ac_ext <<EOF 7204 #line 7 205"configure"7331 #line 7332 "configure" 7205 7332 #include "confdefs.h" 7206 7333 /* System header to define __stub macros and hopefully few prototypes, … … 7225 7352 ; return 0; } 7226 7353 EOF 7227 if { (eval echo configure:7 228: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then7354 if { (eval echo configure:7355: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 7228 7355 rm -rf conftest* 7229 7356 eval "ac_cv_func_shmat=yes" … … 7246 7373 if test $ac_cv_func_shmat = no; then 7247 7374 echo $ac_n "checking for shmat in -lipc""... $ac_c" 1>&6 7248 echo "configure:7 249: checking for shmat in -lipc" >&57375 echo "configure:7376: checking for shmat in -lipc" >&5 7249 7376 ac_lib_var=`echo ipc'_'shmat | sed 'y%./+-%__p_%'` 7250 7377 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 7254 7381 LIBS="-lipc $LIBS" 7255 7382 cat > conftest.$ac_ext <<EOF 7256 #line 7 257"configure"7383 #line 7384 "configure" 7257 7384 #include "confdefs.h" 7258 7385 /* Override any gcc2 internal prototype to avoid an error. */ … … 7265 7392 ; return 0; } 7266 7393 EOF 7267 if { (eval echo configure:7 268: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then7394 if { (eval echo configure:7395: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 7268 7395 rm -rf conftest* 7269 7396 eval "ac_cv_lib_$ac_lib_var=yes" … … 7281 7408 echo "$ac_t""yes" 1>&6 7282 7409 X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" 7410 else 7411 echo "$ac_t""no" 1>&6 7412 fi 7413 7414 fi 7415 # XFree86/OS2 7416 if test $ac_cv_func_shmat = no; then 7417 echo $ac_n "checking for shmat in -lshm""... $ac_c" 1>&6 7418 echo "configure:7419: checking for shmat in -lshm" >&5 7419 ac_lib_var=`echo shm'_'shmat | sed 'y%./+-%__p_%'` 7420 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 7421 echo $ac_n "(cached) $ac_c" 1>&6 7422 else 7423 ac_save_LIBS="$LIBS" 7424 LIBS="-lshm $LIBS" 7425 cat > conftest.$ac_ext <<EOF 7426 #line 7427 "configure" 7427 #include "confdefs.h" 7428 /* Override any gcc2 internal prototype to avoid an error. */ 7429 /* We use char because int might match the return type of a gcc2 7430 builtin and then its argument prototype would still apply. */ 7431 char shmat(); 7432 7433 int main() { 7434 shmat() 7435 ; return 0; } 7436 EOF 7437 if { (eval echo configure:7438: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 7438 rm -rf conftest* 7439 eval "ac_cv_lib_$ac_lib_var=yes" 7440 else 7441 echo "configure: failed program was:" >&5 7442 cat conftest.$ac_ext >&5 7443 rm -rf conftest* 7444 eval "ac_cv_lib_$ac_lib_var=no" 7445 fi 7446 rm -f conftest* 7447 LIBS="$ac_save_LIBS" 7448 7449 fi 7450 if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then 7451 echo "$ac_t""yes" 1>&6 7452 X_EXTRA_LIBS="$X_EXTRA_LIBS -lshm" 7283 7453 else 7284 7454 echo "$ac_t""no" 1>&6 … … 7298 7468 # --interran@uluru.Stanford.EDU, kb@cs.umb.edu. 7299 7469 echo $ac_n "checking for IceConnectionNumber in -lICE""... $ac_c" 1>&6 7300 echo "configure:7 301: checking for IceConnectionNumber in -lICE" >&57470 echo "configure:7471: checking for IceConnectionNumber in -lICE" >&5 7301 7471 ac_lib_var=`echo ICE'_'IceConnectionNumber | sed 'y%./+-%__p_%'` 7302 7472 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 7306 7476 LIBS="-lICE $X_EXTRA_LIBS $LIBS" 7307 7477 cat > conftest.$ac_ext <<EOF 7308 #line 7 309 "configure"7478 #line 7479 "configure" 7309 7479 #include "confdefs.h" 7310 7480 /* Override any gcc2 internal prototype to avoid an error. */ … … 7317 7487 ; return 0; } 7318 7488 EOF 7319 if { (eval echo configure:7 320: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then7489 if { (eval echo configure:7490: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 7320 7490 rm -rf conftest* 7321 7491 eval "ac_cv_lib_$ac_lib_var=yes" … … 7478 7648 # Run this file to recreate the current configuration. 7479 7649 # This directory was configured as follows, 7650 EOF 7651 echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS 7652 cat >> $CONFIG_STATUS <<EOF 7480 7653 # on host `(hostname || uname -n) 2>/dev/null | sed 1q`: 7481 7654 # … … 7503 7676 ac_given_srcdir=$srcdir 7504 7677 ac_given_INSTALL="$INSTALL" 7678 PATHIFS="$PATH_IFS" 7505 7679 7506 7680 trap 'rm -fr `echo "Makefile libgcj.spec libgcj-test.spec gnu/classpath/Configuration.java gcj/Makefile include/Makefile testsuite/Makefile include/config.h gcj/libgcj-config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 … … 7513 7687 $ac_vpsub 7514 7688 $extrasub 7689 s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g 7515 7690 s%@SHELL@%$SHELL%g 7516 7691 s%@CFLAGS@%$CFLAGS%g … … 7536 7711 s%@infodir@%$infodir%g 7537 7712 s%@mandir@%$mandir%g 7713 s%@PATH_IFS@%$PATH_IFS%g 7714 s%@EXEEXT@%$EXEEXT%g 7538 7715 s%@LN_S@%$LN_S%g 7539 7716 s%@libgcj_basedir@%$libgcj_basedir%g … … 7574 7751 s%@MAINTAINER_MODE_FALSE@%$MAINTAINER_MODE_FALSE%g 7575 7752 s%@MAINT@%$MAINT%g 7576 s%@EXEEXT@%$EXEEXT%g7577 7753 s%@LIBGCJ_CFLAGS@%$LIBGCJ_CFLAGS%g 7578 7754 s%@LIBGCJ_CXXFLAGS@%$LIBGCJ_CXXFLAGS%g … … 7721 7897 if test -z "$ac_dots"; then top_srcdir=. 7722 7898 else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; 7723 /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 7899 /* | [A-Za-z]:*) 7900 srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 7724 7901 *) # Relative path. 7725 7902 srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" … … 7728 7905 7729 7906 case "$ac_given_INSTALL" in 7730 [/$]* ) INSTALL="$ac_given_INSTALL" ;;7907 [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;; 7731 7908 *) INSTALL="$ac_dots$ac_given_INSTALL" ;; 7732 7909 esac … … 7741 7918 esac 7742 7919 7743 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s% :% $ac_given_srcdir/%g"`7920 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%$PATHIFS% $ac_given_srcdir/%g"` 7744 7921 sed -e "$ac_comsub 7745 7922 s%@configure_input@%$configure_input%g … … 7788 7965 7789 7966 rm -f conftest.frag conftest.in conftest.out 7790 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 7967 # kso the other way around might work better with drive letters and such. 7968 # ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 7969 ac_file_inputs=`echo $ac_file_in|sed -e "s%:% $ac_given_srcdir/%g" -e "s%^%$ac_given_srcdir/%" ` 7791 7970 cat $ac_file_inputs > conftest.in 7792 7971 … … 7892 8071 7893 8072 case "$srcdir" in 7894 [/$]* ) ac_rel_source="$srcdir/$ac_source" ;;8073 [/$]* | [A-Za-z]:*) ac_rel_source="$srcdir/$ac_source" ;; 7895 8074 *) ac_rel_source="$ac_dots$srcdir/$ac_source" ;; 7896 8075 esac … … 7898 8077 # Make a symlink if possible; otherwise try a hard link. 7899 8078 if ln -s $ac_rel_source $ac_dest 2>/dev/null || 7900 ln $srcdir/$ac_source $ac_dest; then : 8079 ln $srcdir/$ac_source $ac_dest 2>/dev/null || 8080 cp $srcdir/$ac_source $ac_dest; then : 7901 8081 else 7902 8082 { echo "configure: error: can not link $ac_dest to $srcdir/$ac_source" 1>&2; exit 1; } … … 8016 8196 .) # No --srcdir option. We are building in place. 8017 8197 ac_sub_srcdir=$srcdir ;; 8018 /* ) # Absolute path.8198 /* | [A-Za-z]:*) # Absolute path. 8019 8199 ac_sub_srcdir=$srcdir/$ac_config_dir ;; 8020 8200 *) # Relative path. … … 8026 8206 ac_sub_configure=$ac_sub_srcdir/configure 8027 8207 elif test -f $ac_sub_srcdir/configure.in; then 8028 ac_sub_configure=$ac_configure 8208 ac_current_dir=`pwd` 8209 cd $ac_sub_srcdir 8210 autoconf 8211 cd $ac_current_dir 8212 ac_sub_configure=$ac_sub_srcdir/configure 8029 8213 else 8030 8214 echo "configure: warning: no configuration information is in $ac_config_dir" 1>&2 … … 8037 8221 # Make the cache file name correct relative to the subdirectory. 8038 8222 case "$cache_file" in 8039 /* ) ac_sub_cache_file=$cache_file ;;8223 /* | [A-Za-z]:*) ac_sub_cache_file=$cache_file ;; 8040 8224 *) # Relative path. 8041 8225 ac_sub_cache_file="$ac_dots$cache_file" ;; 8042 8226 esac 8043 8227 case "$ac_given_INSTALL" in 8044 [/$]* ) INSTALL="$ac_given_INSTALL" ;;8228 [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;; 8045 8229 *) INSTALL="$ac_dots$ac_given_INSTALL" ;; 8046 8230 esac -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/gcc/libjava/libltdl/configure
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r79 r80 50 50 silent= 51 51 site= 52 sitefile=53 52 srcdir= 54 53 target=NONE … … 165 164 --no-create do not create output files 166 165 --quiet, --silent do not print \`checking...' messages 167 --site-file=FILE use FILE as the site file168 166 --version print the version of autoconf that created configure 169 167 Directory and file names: … … 336 334 site="$ac_optarg" ;; 337 335 338 -site-file | --site-file | --site-fil | --site-fi | --site-f)339 ac_prev=sitefile ;;340 -site-file=* | --site-file=* | --site-fil=* | --site-fi=* | --site-f=*)341 sitefile="$ac_optarg" ;;342 343 336 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) 344 337 ac_prev=srcdir ;; … … 506 499 507 500 # Prefer explicitly selected file to automatically selected ones. 508 if test -z "$sitefile"; then 509 if test -z "$CONFIG_SITE"; then 510 if test "x$prefix" != xNONE; then 511 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" 512 else 513 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" 514 fi 501 if test -z "$CONFIG_SITE"; then 502 if test "x$prefix" != xNONE; then 503 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" 504 else 505 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" 515 506 fi 516 else517 CONFIG_SITE="$sitefile"518 507 fi 519 508 for ac_site_file in $CONFIG_SITE; do … … 553 542 fi 554 543 544 echo $ac_n "checking for path separator""... $ac_c" 1>&6 545 echo "configure:546: checking for path separator" >&5 546 # Filter path to get backslahes into forwardslashes 547 case "`uname -s 2> /dev/null`" in 548 OS/2) 549 PATH=`echo -E "$PATH" | sed 's+\\\\+/+g'` 550 PATH_IFS=';' 551 ;; 552 *) 553 PATH_IFS=':' 554 ;; 555 esac 556 echo "$ac_t""${PATH_IFS}" 1>&6 557 555 558 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 556 echo "configure:5 57: checking for Cygwin environment" >&5559 echo "configure:560: checking for Cygwin environment" >&5 557 560 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then 558 561 echo $ac_n "(cached) $ac_c" 1>&6 559 562 else 560 563 cat > conftest.$ac_ext <<EOF 561 #line 56 2"configure"564 #line 565 "configure" 562 565 #include "confdefs.h" 563 566 … … 570 573 ; return 0; } 571 574 EOF 572 if { (eval echo configure:57 3: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then575 if { (eval echo configure:576: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 573 576 rm -rf conftest* 574 577 ac_cv_cygwin=yes … … 587 590 test "$ac_cv_cygwin" = yes && CYGWIN=yes 588 591 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 589 echo "configure:59 0: checking for mingw32 environment" >&5592 echo "configure:593: checking for mingw32 environment" >&5 590 593 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then 591 594 echo $ac_n "(cached) $ac_c" 1>&6 592 595 else 593 596 cat > conftest.$ac_ext <<EOF 594 #line 59 5"configure"597 #line 598 "configure" 595 598 #include "confdefs.h" 596 599 … … 599 602 ; return 0; } 600 603 EOF 601 if { (eval echo configure:60 2: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then604 if { (eval echo configure:605: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 602 605 rm -rf conftest* 603 606 ac_cv_mingw32=yes … … 615 618 MINGW32= 616 619 test "$ac_cv_mingw32" = yes && MINGW32=yes 620 echo $ac_n "checking for EMX/OS2 environment""... $ac_c" 1>&6 621 echo "configure:622: checking for EMX/OS2 environment" >&5 622 if eval "test \"`echo '$''{'ac_cv_emxos2'+set}'`\" = set"; then 623 echo $ac_n "(cached) $ac_c" 1>&6 624 else 625 : ${CC=gcc.exe} 626 cat > conftest.$ac_ext <<EOF 627 #line 628 "configure" 628 #include "confdefs.h" 629 630 int main() { 631 return __EMX__; 632 ; return 0; } 633 EOF 634 if { (eval echo configure:635: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 635 rm -rf conftest* 636 ac_cv_emxos2=yes 637 else 638 echo "configure: failed program was:" >&5 639 cat conftest.$ac_ext >&5 640 rm -rf conftest* 641 ac_cv_emxos2=no 642 fi 643 rm -f conftest* 644 rm -f conftest* 645 fi 646 647 echo "$ac_t""$ac_cv_emxos2" 1>&6 648 if eval "test \"`echo '$''{'ac_cv_libpre'+set}'`\" = set"; then 649 echo $ac_n "(cached) $ac_c" 1>&6 650 else 651 if test "$ac_cv_emxos2" = yes ; then 652 ac_cv_libpre= 653 else 654 ac_cv_libpre=lib 655 fi 656 657 fi 658 659 EMXOS2= 660 test "$ac_cv_emxos2" = yes && EMXOS2=yes 661 662 663 664 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 665 echo "configure:666: checking for executable suffix" >&5 666 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 667 echo $ac_n "(cached) $ac_c" 1>&6 668 else 669 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 670 ac_cv_exeext=.exe 671 else 672 rm -f conftest* 673 echo 'int main () { return 0; }' > conftest.$ac_ext 674 ac_cv_exeext= 675 if { (eval echo configure:676: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 676 for file in conftest.*; do 677 case $file in 678 *.c | *.o | *.obj) ;; 679 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; 680 esac 681 done 682 else 683 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; } 684 fi 685 rm -f conftest* 686 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no 687 fi 688 fi 689 690 EXEEXT="" 691 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} 692 echo "$ac_t""${ac_cv_exeext}" 1>&6 693 ac_exeext=$EXEEXT 694 617 695 618 696 … … 691 769 # ./install, which can be erroneously created by make from ./install.sh. 692 770 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 693 echo "configure: 694: checking for a BSD compatible install" >&5771 echo "configure:772: checking for a BSD compatible install" >&5 694 772 if test -z "$INSTALL"; then 695 773 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 696 774 echo $ac_n "(cached) $ac_c" 1>&6 697 775 else 698 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"776 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 699 777 for ac_dir in $PATH; do 700 778 # Account for people who put trailing slashes in PATH elements. 701 779 case "$ac_dir/" in 702 780 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; 781 # We reject the install program from OS/2 or W3.1 782 */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;; 703 783 *) 704 784 # OSF1 and SCO ODT 3.0 have their own names for install. … … 706 786 # by default. 707 787 for ac_prog in ginstall scoinst install; do 708 if test -f $ac_dir/$ac_prog ; then788 if test -f $ac_dir/$ac_prog$ac_exeext; then 709 789 if test $ac_prog = install && 710 790 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 712 792 : 713 793 else 714 ac_cv_path_install="$ac_dir/$ac_prog -c"794 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 715 795 break 2 716 796 fi … … 744 824 745 825 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 746 echo "configure: 747: checking whether build environment is sane" >&5826 echo "configure:827: checking whether build environment is sane" >&5 747 827 # Just in case 748 828 sleep 1 … … 801 881 802 882 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 803 echo "configure:8 04: checking whether ${MAKE-make} sets \${MAKE}" >&5883 echo "configure:884: checking whether ${MAKE-make} sets \${MAKE}" >&5 804 884 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 805 885 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 840 920 missing_dir=`cd $ac_aux_dir && pwd` 841 921 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 842 echo "configure: 843: checking for working aclocal" >&5922 echo "configure:923: checking for working aclocal" >&5 843 923 # Run test in a subshell; some versions of sh will print an error if 844 924 # an executable is not found, even if stderr is redirected. … … 853 933 854 934 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 855 echo "configure: 856: checking for working autoconf" >&5935 echo "configure:936: checking for working autoconf" >&5 856 936 # Run test in a subshell; some versions of sh will print an error if 857 937 # an executable is not found, even if stderr is redirected. … … 866 946 867 947 echo $ac_n "checking for working automake""... $ac_c" 1>&6 868 echo "configure: 869: checking for working automake" >&5948 echo "configure:949: checking for working automake" >&5 869 949 # Run test in a subshell; some versions of sh will print an error if 870 950 # an executable is not found, even if stderr is redirected. … … 879 959 880 960 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 881 echo "configure: 882: checking for working autoheader" >&5961 echo "configure:962: checking for working autoheader" >&5 882 962 # Run test in a subshell; some versions of sh will print an error if 883 963 # an executable is not found, even if stderr is redirected. … … 892 972 893 973 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 894 echo "configure: 895: checking for working makeinfo" >&5974 echo "configure:975: checking for working makeinfo" >&5 895 975 # Run test in a subshell; some versions of sh will print an error if 896 976 # an executable is not found, even if stderr is redirected. … … 909 989 910 990 echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 911 echo "configure:9 12: checking whether to enable maintainer-specific portions of Makefiles" >&5991 echo "configure:992: checking whether to enable maintainer-specific portions of Makefiles" >&5 912 992 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. 913 993 if test "${enable_maintainer_mode+set}" = set; then … … 935 1015 set dummy gcc; ac_word=$2 936 1016 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 937 echo "configure: 938: checking for $ac_word" >&51017 echo "configure:1018: checking for $ac_word" >&5 938 1018 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 939 1019 echo $ac_n "(cached) $ac_c" 1>&6 … … 942 1022 ac_cv_prog_CC="$CC" # Let the user override the test. 943 1023 else 944 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1024 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 945 1025 ac_dummy="$PATH" 946 1026 for ac_dir in $ac_dummy; do 947 1027 test -z "$ac_dir" && ac_dir=. 948 if test -f $ac_dir/$ac_word; then 1028 if test -f $ac_dir/$ac_word -o \ 1029 -f $ac_dir/$ac_word$ac_exeext ; then 949 1030 ac_cv_prog_CC="gcc" 950 1031 break … … 965 1046 set dummy cc; ac_word=$2 966 1047 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 967 echo "configure: 968: checking for $ac_word" >&51048 echo "configure:1049: checking for $ac_word" >&5 968 1049 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 969 1050 echo $ac_n "(cached) $ac_c" 1>&6 … … 972 1053 ac_cv_prog_CC="$CC" # Let the user override the test. 973 1054 else 974 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1055 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 975 1056 ac_prog_rejected=no 976 1057 ac_dummy="$PATH" 977 1058 for ac_dir in $ac_dummy; do 978 1059 test -z "$ac_dir" && ac_dir=. 979 if test -f $ac_dir/$ac_word; then 980 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 1060 if test -f $ac_dir/$ac_word -o \ 1061 -f $ac_dir/$ac_word$ac_exeext ; then 1062 if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \ 1063 "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then 981 1064 ac_prog_rejected=yes 982 1065 continue … … 1016 1099 set dummy cl; ac_word=$2 1017 1100 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1018 echo "configure:1 019: checking for $ac_word" >&51101 echo "configure:1102: checking for $ac_word" >&5 1019 1102 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 1020 1103 echo $ac_n "(cached) $ac_c" 1>&6 … … 1023 1106 ac_cv_prog_CC="$CC" # Let the user override the test. 1024 1107 else 1025 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1108 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1026 1109 ac_dummy="$PATH" 1027 1110 for ac_dir in $ac_dummy; do 1028 1111 test -z "$ac_dir" && ac_dir=. 1029 if test -f $ac_dir/$ac_word; then 1112 if test -f $ac_dir/$ac_word -o \ 1113 -f $ac_dir/$ac_word$ac_exeext ; then 1030 1114 ac_cv_prog_CC="cl" 1031 1115 break … … 1048 1132 1049 1133 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1050 echo "configure:1 051: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&51134 echo "configure:1135: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 1051 1135 1052 1136 ac_ext=c … … 1059 1143 cat > conftest.$ac_ext << EOF 1060 1144 1061 #line 1 062"configure"1145 #line 1146 "configure" 1062 1146 #include "confdefs.h" 1063 1147 1064 1148 main(){return(0);} 1065 1149 EOF 1066 if { (eval echo configure:1 067: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1150 if { (eval echo configure:1151: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1067 1151 ac_cv_prog_cc_works=yes 1068 1152 # If we can't run a trivial program, we are probably using a cross compiler. … … 1090 1174 fi 1091 1175 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1092 echo "configure:1 093: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&51176 echo "configure:1177: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 1093 1177 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 1094 1178 cross_compiling=$ac_cv_prog_cc_cross 1095 1179 1096 1180 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 1097 echo "configure:1 098: checking whether we are using GNU C" >&51181 echo "configure:1182: checking whether we are using GNU C" >&5 1098 1182 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 1099 1183 echo $ac_n "(cached) $ac_c" 1>&6 … … 1104 1188 #endif 1105 1189 EOF 1106 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:11 07: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1190 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1191: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1107 1191 ac_cv_prog_gcc=yes 1108 1192 else … … 1123 1207 CFLAGS= 1124 1208 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 1125 echo "configure:1 126: checking whether ${CC-cc} accepts -g" >&51209 echo "configure:1210: checking whether ${CC-cc} accepts -g" >&5 1126 1210 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 1127 1211 echo $ac_n "(cached) $ac_c" 1>&6 … … 1155 1239 1156 1240 echo $ac_n "checking for working const""... $ac_c" 1>&6 1157 echo "configure:1 158: checking for working const" >&51241 echo "configure:1242: checking for working const" >&5 1158 1242 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then 1159 1243 echo $ac_n "(cached) $ac_c" 1>&6 1160 1244 else 1161 1245 cat > conftest.$ac_ext <<EOF 1162 #line 1 163"configure"1246 #line 1247 "configure" 1163 1247 #include "confdefs.h" 1164 1248 … … 1209 1293 ; return 0; } 1210 1294 EOF 1211 if { (eval echo configure:12 12: \"$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 1212 1296 rm -rf conftest* 1213 1297 ac_cv_c_const=yes … … 1230 1314 1231 1315 echo $ac_n "checking for inline""... $ac_c" 1>&6 1232 echo "configure:1 233: checking for inline" >&51316 echo "configure:1317: checking for inline" >&5 1233 1317 if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then 1234 1318 echo $ac_n "(cached) $ac_c" 1>&6 … … 1237 1321 for ac_kw in inline __inline__ __inline; do 1238 1322 cat > conftest.$ac_ext <<EOF 1239 #line 1 240"configure"1323 #line 1324 "configure" 1240 1324 #include "confdefs.h" 1241 1325 … … 1244 1328 ; return 0; } 1245 1329 EOF 1246 if { (eval echo configure:1 247: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1330 if { (eval echo configure:1331: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1247 1331 rm -rf conftest* 1248 1332 ac_cv_c_inline=$ac_kw; break … … 1347 1431 1348 1432 echo $ac_n "checking host system type""... $ac_c" 1>&6 1349 echo "configure:1 350: checking host system type" >&51433 echo "configure:1434: checking host system type" >&5 1350 1434 1351 1435 host_alias=$host … … 1368 1452 1369 1453 echo $ac_n "checking build system type""... $ac_c" 1>&6 1370 echo "configure:1 371: checking build system type" >&51454 echo "configure:1455: checking build system type" >&5 1371 1455 1372 1456 build_alias=$build … … 1397 1481 # Check if gcc -print-prog-name=ld gives a path. 1398 1482 echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 1399 echo "configure:14 00: checking for ld used by GCC" >&51483 echo "configure:1484: checking for ld used by GCC" >&5 1400 1484 case $host in 1401 1485 *-*-mingw*) … … 1427 1511 elif test "$with_gnu_ld" = yes; then 1428 1512 echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 1429 echo "configure:1 430: checking for GNU ld" >&51513 echo "configure:1514: checking for GNU ld" >&5 1430 1514 else 1431 1515 echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 1432 echo "configure:1 433: checking for non-GNU ld" >&51516 echo "configure:1517: checking for non-GNU ld" >&5 1433 1517 fi 1434 1518 if eval "test \"`echo '$''{'ac_cv_path_LD'+set}'`\" = set"; then … … 1465 1549 test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } 1466 1550 echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 1467 echo "configure:1 468: checking if the linker ($LD) is GNU ld" >&51551 echo "configure:1552: checking if the linker ($LD) is GNU ld" >&5 1468 1552 if eval "test \"`echo '$''{'ac_cv_prog_gnu_ld'+set}'`\" = set"; then 1469 1553 echo $ac_n "(cached) $ac_c" 1>&6 … … 1482 1566 1483 1567 echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6 1484 echo "configure:1 485: checking for $LD option to reload object files" >&51568 echo "configure:1569: checking for $LD option to reload object files" >&5 1485 1569 if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then 1486 1570 echo $ac_n "(cached) $ac_c" 1>&6 … … 1494 1578 1495 1579 echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 1496 echo "configure:1 497: checking for BSD-compatible nm" >&51580 echo "configure:1581: checking for BSD-compatible nm" >&5 1497 1581 if eval "test \"`echo '$''{'ac_cv_path_NM'+set}'`\" = set"; then 1498 1582 echo $ac_n "(cached) $ac_c" 1>&6 … … 1532 1616 1533 1617 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 1534 echo "configure:1 535: checking whether ln -s works" >&51618 echo "configure:1619: checking whether ln -s works" >&5 1535 1619 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then 1536 1620 echo $ac_n "(cached) $ac_c" 1>&6 … … 1542 1626 ac_cv_prog_LN_S="ln -s" 1543 1627 else 1544 ac_cv_prog_LN_S=ln 1545 fi 1628 echo A > conftestdata; 1629 if ln conftestdata conftestdata2 2>/dev/null; then 1630 ac_cv_prog_LN_S=ln 1631 else 1632 ac_cv_prog_LN_S=cp 1633 fi 1634 fi 1635 rm -f conftestdata* 1546 1636 fi 1547 1637 LN_S="$ac_cv_prog_LN_S" … … 1553 1643 1554 1644 echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6 1555 echo "configure:1 556: checking how to recognise dependant libraries" >&51645 echo "configure:1646: checking how to recognise dependant libraries" >&5 1556 1646 if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then 1557 1647 echo $ac_n "(cached) $ac_c" 1>&6 … … 1696 1786 1697 1787 echo $ac_n "checking for object suffix""... $ac_c" 1>&6 1698 echo "configure:1 699: checking for object suffix" >&51788 echo "configure:1789: checking for object suffix" >&5 1699 1789 if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then 1700 1790 echo $ac_n "(cached) $ac_c" 1>&6 … … 1702 1792 rm -f conftest* 1703 1793 echo 'int i = 1;' > conftest.$ac_ext 1704 if { (eval echo configure:17 05: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1794 if { (eval echo configure:1795: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1705 1795 for ac_file in conftest.*; do 1706 1796 case $ac_file in … … 1719 1809 ac_objext=$ac_cv_objext 1720 1810 1721 1722 1723 echo $ac_n "checking for executable suffix""... $ac_c" 1>&61724 echo "configure:1725: checking for executable suffix" >&51725 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then1726 echo $ac_n "(cached) $ac_c" 1>&61727 else1728 if test "$CYGWIN" = yes || test "$MINGW32" = yes; then1729 ac_cv_exeext=.exe1730 else1731 rm -f conftest*1732 echo 'int main () { return 0; }' > conftest.$ac_ext1733 ac_cv_exeext=1734 if { (eval echo configure:1735: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then1735 for file in conftest.*; do1736 case $file in1737 *.c | *.o | *.obj | *.ilk | *.pdb) ;;1738 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;1739 esac1740 done1741 else1742 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; }1743 fi1744 rm -f conftest*1745 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no1746 fi1747 fi1748 1749 EXEEXT=""1750 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext}1751 echo "$ac_t""${ac_cv_exeext}" 1>&61752 ac_exeext=$EXEEXT1753 1754 1811 if test $host != $build; then 1755 1812 ac_tool_prefix=${host_alias}- … … 1765 1822 if test "$file_magic_cmd" = '${MAGIC}'; then 1766 1823 echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6 1767 echo "configure:1 768: checking for ${ac_tool_prefix}file" >&51824 echo "configure:1825: checking for ${ac_tool_prefix}file" >&5 1768 1825 if eval "test \"`echo '$''{'lt_cv_path_MAGIC'+set}'`\" = set"; then 1769 1826 echo $ac_n "(cached) $ac_c" 1>&6 … … 1827 1884 if test -n "$ac_tool_prefix"; then 1828 1885 echo $ac_n "checking for file""... $ac_c" 1>&6 1829 echo "configure:18 30: checking for file" >&51886 echo "configure:1887: checking for file" >&5 1830 1887 if eval "test \"`echo '$''{'lt_cv_path_MAGIC'+set}'`\" = set"; then 1831 1888 echo $ac_n "(cached) $ac_c" 1>&6 … … 1898 1955 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 1899 1956 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1900 echo "configure:19 01: checking for $ac_word" >&51957 echo "configure:1958: checking for $ac_word" >&5 1901 1958 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1902 1959 echo $ac_n "(cached) $ac_c" 1>&6 … … 1905 1962 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1906 1963 else 1907 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1964 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1908 1965 ac_dummy="$PATH" 1909 1966 for ac_dir in $ac_dummy; do 1910 1967 test -z "$ac_dir" && ac_dir=. 1911 if test -f $ac_dir/$ac_word; then 1968 if test -f $ac_dir/$ac_word -o \ 1969 -f $ac_dir/$ac_word$ac_exeext ; then 1912 1970 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 1913 1971 break … … 1930 1988 set dummy ranlib; ac_word=$2 1931 1989 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1932 echo "configure:19 33: checking for $ac_word" >&51990 echo "configure:1991: checking for $ac_word" >&5 1933 1991 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1934 1992 echo $ac_n "(cached) $ac_c" 1>&6 … … 1937 1995 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1938 1996 else 1939 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1997 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1940 1998 ac_dummy="$PATH" 1941 1999 for ac_dir in $ac_dummy; do 1942 2000 test -z "$ac_dir" && ac_dir=. 1943 if test -f $ac_dir/$ac_word; then 2001 if test -f $ac_dir/$ac_word -o \ 2002 -f $ac_dir/$ac_word$ac_exeext ; then 1944 2003 ac_cv_prog_RANLIB="ranlib" 1945 2004 break … … 1965 2024 set dummy ${ac_tool_prefix}strip; ac_word=$2 1966 2025 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1967 echo "configure: 1968: checking for $ac_word" >&52026 echo "configure:2027: checking for $ac_word" >&5 1968 2027 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 1969 2028 echo $ac_n "(cached) $ac_c" 1>&6 … … 1972 2031 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 1973 2032 else 1974 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2033 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1975 2034 ac_dummy="$PATH" 1976 2035 for ac_dir in $ac_dummy; do 1977 2036 test -z "$ac_dir" && ac_dir=. 1978 if test -f $ac_dir/$ac_word; then 2037 if test -f $ac_dir/$ac_word -o \ 2038 -f $ac_dir/$ac_word$ac_exeext ; then 1979 2039 ac_cv_prog_STRIP="${ac_tool_prefix}strip" 1980 2040 break … … 1997 2057 set dummy strip; ac_word=$2 1998 2058 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1999 echo "configure:20 00: checking for $ac_word" >&52059 echo "configure:2060: checking for $ac_word" >&5 2000 2060 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 2001 2061 echo $ac_n "(cached) $ac_c" 1>&6 … … 2004 2064 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 2005 2065 else 2006 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2066 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2007 2067 ac_dummy="$PATH" 2008 2068 for ac_dir in $ac_dummy; do 2009 2069 test -z "$ac_dir" && ac_dir=. 2010 if test -f $ac_dir/$ac_word; then 2070 if test -f $ac_dir/$ac_word -o \ 2071 -f $ac_dir/$ac_word$ac_exeext ; then 2011 2072 ac_cv_prog_STRIP="strip" 2012 2073 break … … 2064 2125 *-*-irix6*) 2065 2126 # Find out which ABI we are using. 2066 echo '#line 2 067"configure"' > conftest.$ac_ext2067 if { (eval echo configure:2 068: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2127 echo '#line 2128 "configure"' > conftest.$ac_ext 2128 if { (eval echo configure:2129: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2068 2129 case "`/usr/bin/file conftest.o`" in 2069 2130 *32-bit*) … … 2086 2147 CFLAGS="$CFLAGS -belf" 2087 2148 echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 2088 echo "configure:2 089: checking whether the C compiler needs -belf" >&52149 echo "configure:2150: checking whether the C compiler needs -belf" >&5 2089 2150 if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then 2090 2151 echo $ac_n "(cached) $ac_c" 1>&6 … … 2099 2160 2100 2161 cat > conftest.$ac_ext <<EOF 2101 #line 21 02"configure"2162 #line 2163 "configure" 2102 2163 #include "confdefs.h" 2103 2164 … … 2106 2167 ; return 0; } 2107 2168 EOF 2108 if { (eval echo configure:21 09: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2169 if { (eval echo configure:2170: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2109 2170 rm -rf conftest* 2110 2171 lt_cv_cc_needs_belf=yes … … 2136 2197 set dummy ${ac_tool_prefix}dlltool; ac_word=$2 2137 2198 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2138 echo "configure:2 139: checking for $ac_word" >&52199 echo "configure:2200: checking for $ac_word" >&5 2139 2200 if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then 2140 2201 echo $ac_n "(cached) $ac_c" 1>&6 … … 2143 2204 ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. 2144 2205 else 2145 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2206 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2146 2207 ac_dummy="$PATH" 2147 2208 for ac_dir in $ac_dummy; do 2148 2209 test -z "$ac_dir" && ac_dir=. 2149 if test -f $ac_dir/$ac_word; then 2210 if test -f $ac_dir/$ac_word -o \ 2211 -f $ac_dir/$ac_word$ac_exeext ; then 2150 2212 ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" 2151 2213 break … … 2168 2230 set dummy dlltool; ac_word=$2 2169 2231 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2170 echo "configure:2 171: checking for $ac_word" >&52232 echo "configure:2233: checking for $ac_word" >&5 2171 2233 if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then 2172 2234 echo $ac_n "(cached) $ac_c" 1>&6 … … 2175 2237 ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. 2176 2238 else 2177 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2239 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2178 2240 ac_dummy="$PATH" 2179 2241 for ac_dir in $ac_dummy; do 2180 2242 test -z "$ac_dir" && ac_dir=. 2181 if test -f $ac_dir/$ac_word; then 2243 if test -f $ac_dir/$ac_word -o \ 2244 -f $ac_dir/$ac_word$ac_exeext ; then 2182 2245 ac_cv_prog_DLLTOOL="dlltool" 2183 2246 break … … 2203 2266 set dummy ${ac_tool_prefix}as; ac_word=$2 2204 2267 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2205 echo "configure:22 06: checking for $ac_word" >&52268 echo "configure:2269: checking for $ac_word" >&5 2206 2269 if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then 2207 2270 echo $ac_n "(cached) $ac_c" 1>&6 … … 2210 2273 ac_cv_prog_AS="$AS" # Let the user override the test. 2211 2274 else 2212 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2275 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2213 2276 ac_dummy="$PATH" 2214 2277 for ac_dir in $ac_dummy; do 2215 2278 test -z "$ac_dir" && ac_dir=. 2216 if test -f $ac_dir/$ac_word; then 2279 if test -f $ac_dir/$ac_word -o \ 2280 -f $ac_dir/$ac_word$ac_exeext ; then 2217 2281 ac_cv_prog_AS="${ac_tool_prefix}as" 2218 2282 break … … 2235 2299 set dummy as; ac_word=$2 2236 2300 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2237 echo "configure:2 238: checking for $ac_word" >&52301 echo "configure:2302: checking for $ac_word" >&5 2238 2302 if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then 2239 2303 echo $ac_n "(cached) $ac_c" 1>&6 … … 2242 2306 ac_cv_prog_AS="$AS" # Let the user override the test. 2243 2307 else 2244 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2308 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2245 2309 ac_dummy="$PATH" 2246 2310 for ac_dir in $ac_dummy; do 2247 2311 test -z "$ac_dir" && ac_dir=. 2248 if test -f $ac_dir/$ac_word; then 2312 if test -f $ac_dir/$ac_word -o \ 2313 -f $ac_dir/$ac_word$ac_exeext ; then 2249 2314 ac_cv_prog_AS="as" 2250 2315 break … … 2270 2335 set dummy ${ac_tool_prefix}objdump; ac_word=$2 2271 2336 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2272 echo "configure:2 273: checking for $ac_word" >&52337 echo "configure:2338: checking for $ac_word" >&5 2273 2338 if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then 2274 2339 echo $ac_n "(cached) $ac_c" 1>&6 … … 2277 2342 ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. 2278 2343 else 2279 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2344 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2280 2345 ac_dummy="$PATH" 2281 2346 for ac_dir in $ac_dummy; do 2282 2347 test -z "$ac_dir" && ac_dir=. 2283 if test -f $ac_dir/$ac_word; then 2348 if test -f $ac_dir/$ac_word -o \ 2349 -f $ac_dir/$ac_word$ac_exeext ; then 2284 2350 ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" 2285 2351 break … … 2302 2368 set dummy objdump; ac_word=$2 2303 2369 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2304 echo "configure:23 05: checking for $ac_word" >&52370 echo "configure:2371: checking for $ac_word" >&5 2305 2371 if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then 2306 2372 echo $ac_n "(cached) $ac_c" 1>&6 … … 2309 2375 ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. 2310 2376 else 2311 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2377 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2312 2378 ac_dummy="$PATH" 2313 2379 for ac_dir in $ac_dummy; do 2314 2380 test -z "$ac_dir" && ac_dir=. 2315 if test -f $ac_dir/$ac_word; then 2381 if test -f $ac_dir/$ac_word -o \ 2382 -f $ac_dir/$ac_word$ac_exeext ; then 2316 2383 ac_cv_prog_OBJDUMP="objdump" 2317 2384 break … … 2338 2405 # can override, but on older systems we have to supply one 2339 2406 echo $ac_n "checking if libtool should supply DllMain function""... $ac_c" 1>&6 2340 echo "configure:2 341: checking if libtool should supply DllMain function" >&52407 echo "configure:2408: checking if libtool should supply DllMain function" >&5 2341 2408 if eval "test \"`echo '$''{'lt_cv_need_dllmain'+set}'`\" = set"; then 2342 2409 echo $ac_n "(cached) $ac_c" 1>&6 2343 2410 else 2344 2411 cat > conftest.$ac_ext <<EOF 2345 #line 2 346"configure"2412 #line 2413 "configure" 2346 2413 #include "confdefs.h" 2347 2414 … … 2351 2418 ; return 0; } 2352 2419 EOF 2353 if { (eval echo configure:2 354: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2420 if { (eval echo configure:2421: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2354 2421 rm -rf conftest* 2355 2422 lt_cv_need_dllmain=no … … 2372 2439 CFLAGS="$CFLAGS -mdll" 2373 2440 echo $ac_n "checking how to link DLLs""... $ac_c" 1>&6 2374 echo "configure:2 375: checking how to link DLLs" >&52441 echo "configure:2442: checking how to link DLLs" >&5 2375 2442 if eval "test \"`echo '$''{'lt_cv_cc_dll_switch'+set}'`\" = set"; then 2376 2443 echo $ac_n "(cached) $ac_c" 1>&6 2377 2444 else 2378 2445 cat > conftest.$ac_ext <<EOF 2379 #line 2 380"configure"2446 #line 2447 "configure" 2380 2447 #include "confdefs.h" 2381 2448 … … 2384 2451 ; return 0; } 2385 2452 EOF 2386 if { (eval echo configure:2 387: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2453 if { (eval echo configure:2454: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2387 2454 rm -rf conftest* 2388 2455 lt_cv_cc_dll_switch=-mdll … … 2496 2563 2497 2564 echo $ac_n "checking for garbage collector to use""... $ac_c" 1>&6 2498 echo "configure:2 499: checking for garbage collector to use" >&52565 echo "configure:2566: checking for garbage collector to use" >&5 2499 2566 # Check whether --enable-java-gc or --disable-java-gc was given. 2500 2567 if test "${enable_java_gc+set}" = set; then … … 2519 2586 2520 2587 echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 2521 echo "configure:25 22: checking how to run the C preprocessor" >&52588 echo "configure:2589: checking how to run the C preprocessor" >&5 2522 2589 # On Suns, sometimes $CPP names a directory. 2523 2590 if test -n "$CPP" && test -d "$CPP"; then … … 2534 2601 # not just through cpp. 2535 2602 cat > conftest.$ac_ext <<EOF 2536 #line 2537 "configure" 2603 #include <sys/types.h> 2604 #line 2605 "configure" 2537 2605 #include "confdefs.h" 2538 2606 #include <assert.h> … … 2540 2608 EOF 2541 2609 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2542 { (eval echo configure:2 543: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2610 { (eval echo configure:2611: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2543 2611 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2544 2612 if test -z "$ac_err"; then … … 2551 2619 CPP="${CC-cc} -E -traditional-cpp" 2552 2620 cat > conftest.$ac_ext <<EOF 2553 #line 2554 "configure" 2621 #include <sys/types.h> 2622 #line 2623 "configure" 2554 2623 #include "confdefs.h" 2555 2624 #include <assert.h> … … 2557 2626 EOF 2558 2627 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2559 { (eval echo configure:2 560: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2628 { (eval echo configure:2629: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2560 2629 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2561 2630 if test -z "$ac_err"; then … … 2568 2637 CPP="${CC-cc} -nologo -E" 2569 2638 cat > conftest.$ac_ext <<EOF 2570 #line 2571 "configure" 2639 #include <sys/types.h> 2640 #line 2641 "configure" 2571 2641 #include "confdefs.h" 2572 2642 #include <assert.h> … … 2574 2644 EOF 2575 2645 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2576 { (eval echo configure:2 577: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2646 { (eval echo configure:2647: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2577 2647 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2578 2648 if test -z "$ac_err"; then … … 2606 2676 # Check for command to grab the raw symbol name followed by C symbol from nm. 2607 2677 echo $ac_n "checking command to parse $NM output""... $ac_c" 1>&6 2608 echo "configure:26 09: checking command to parse $NM output" >&52678 echo "configure:2679: checking command to parse $NM output" >&5 2609 2679 if eval "test \"`echo '$''{'ac_cv_sys_global_symbol_pipe'+set}'`\" = set"; then 2610 2680 echo $ac_n "(cached) $ac_c" 1>&6 … … 2669 2739 EOF 2670 2740 2671 if { (eval echo configure:2 672: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2741 if { (eval echo configure:2742: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2672 2742 # Now try to grab the symbols. 2673 2743 ac_nlist=conftest.nm 2674 2744 2675 if { (eval echo configure:2 676: \"$NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist\") 1>&5; (eval $NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist) 2>&5; } && test -s "$ac_nlist"; then2745 if { (eval echo configure:2746: \"$NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist\") 1>&5; (eval $NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist) 2>&5; } && test -s "$ac_nlist"; then 2676 2746 2677 2747 # Try sorting and uniquifying the output. … … 2725 2795 LIBS="conftstm.$ac_objext" 2726 2796 CFLAGS="$CFLAGS$no_builtin_flag" 2727 if { (eval echo configure:27 28: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then2797 if { (eval echo configure:2798: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 2728 2798 ac_pipe_works=yes 2729 2799 else … … 2771 2841 2772 2842 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 2773 echo "configure:2 774: checking for ANSI C header files" >&52843 echo "configure:2844: checking for ANSI C header files" >&5 2774 2844 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 2775 2845 echo $ac_n "(cached) $ac_c" 1>&6 2776 2846 else 2777 2847 cat > conftest.$ac_ext <<EOF 2778 #line 2779 "configure" 2848 #include <sys/types.h> 2849 #line 2850 "configure" 2779 2850 #include "confdefs.h" 2780 2851 #include <stdlib.h> … … 2784 2855 EOF 2785 2856 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2786 { (eval echo configure:2 787: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2857 { (eval echo configure:2858: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2787 2858 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2788 2859 if test -z "$ac_err"; then … … 2801 2872 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 2802 2873 cat > conftest.$ac_ext <<EOF 2803 #line 28 04"configure"2874 #line 2875 "configure" 2804 2875 #include "confdefs.h" 2805 2876 #include <string.h> … … 2819 2890 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 2820 2891 cat > conftest.$ac_ext <<EOF 2821 #line 28 22"configure"2892 #line 2893 "configure" 2822 2893 #include "confdefs.h" 2823 2894 #include <stdlib.h> … … 2840 2911 else 2841 2912 cat > conftest.$ac_ext <<EOF 2842 #line 2 843"configure"2913 #line 2914 "configure" 2843 2914 #include "confdefs.h" 2844 2915 #include <ctype.h> … … 2851 2922 2852 2923 EOF 2853 if { (eval echo configure:2 854: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null2924 if { (eval echo configure:2925: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 2854 2925 then 2855 2926 : … … 2901 2972 2902 2973 echo $ac_n "checking which extension is used for shared libraries""... $ac_c" 1>&6 2903 echo "configure:29 04: checking which extension is used for shared libraries" >&52974 echo "configure:2975: checking which extension is used for shared libraries" >&5 2904 2975 if eval "test \"`echo '$''{'libltdl_cv_shlibext'+set}'`\" = set"; then 2905 2976 echo $ac_n "(cached) $ac_c" 1>&6 … … 2928 2999 2929 3000 echo $ac_n "checking which variable specifies run-time library path""... $ac_c" 1>&6 2930 echo "configure: 2931: checking which variable specifies run-time library path" >&53001 echo "configure:3002: checking which variable specifies run-time library path" >&5 2931 3002 if eval "test \"`echo '$''{'libltdl_cv_shlibpath_var'+set}'`\" = set"; then 2932 3003 echo $ac_n "(cached) $ac_c" 1>&6 … … 2944 3015 2945 3016 echo $ac_n "checking for the default library search path""... $ac_c" 1>&6 2946 echo "configure: 2947: checking for the default library search path" >&53017 echo "configure:3018: checking for the default library search path" >&5 2947 3018 if eval "test \"`echo '$''{'libltdl_cv_sys_search_path'+set}'`\" = set"; then 2948 3019 echo $ac_n "(cached) $ac_c" 1>&6 … … 2972 3043 2973 3044 echo $ac_n "checking for objdir""... $ac_c" 1>&6 2974 echo "configure: 2975: checking for objdir" >&53045 echo "configure:3046: checking for objdir" >&5 2975 3046 if eval "test \"`echo '$''{'libltdl_cv_objdir'+set}'`\" = set"; then 2976 3047 echo $ac_n "(cached) $ac_c" 1>&6 … … 2999 3070 3000 3071 echo $ac_n "checking whether libtool supports -dlopen/-dlpreopen""... $ac_c" 1>&6 3001 echo "configure:30 02: checking whether libtool supports -dlopen/-dlpreopen" >&53072 echo "configure:3073: checking whether libtool supports -dlopen/-dlpreopen" >&5 3002 3073 if eval "test \"`echo '$''{'libltdl_cv_preloaded_symbols'+set}'`\" = set"; then 3003 3074 echo $ac_n "(cached) $ac_c" 1>&6 … … 3021 3092 LIBADD_DL= 3022 3093 echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6 3023 echo "configure:30 24: checking for dlopen in -ldl" >&53094 echo "configure:3095: checking for dlopen in -ldl" >&5 3024 3095 ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'` 3025 3096 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3029 3100 LIBS="-ldl $LIBS" 3030 3101 cat > conftest.$ac_ext <<EOF 3031 #line 3 032"configure"3102 #line 3103 "configure" 3032 3103 #include "confdefs.h" 3033 3104 /* Override any gcc2 internal prototype to avoid an error. */ … … 3040 3111 ; return 0; } 3041 3112 EOF 3042 if { (eval echo configure:3 043: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3113 if { (eval echo configure:3114: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3043 3114 rm -rf conftest* 3044 3115 eval "ac_cv_lib_$ac_lib_var=yes" … … 3062 3133 echo "$ac_t""no" 1>&6 3063 3134 echo $ac_n "checking for dlopen""... $ac_c" 1>&6 3064 echo "configure:3 065: checking for dlopen" >&53135 echo "configure:3136: checking for dlopen" >&5 3065 3136 if eval "test \"`echo '$''{'ac_cv_func_dlopen'+set}'`\" = set"; then 3066 3137 echo $ac_n "(cached) $ac_c" 1>&6 3067 3138 else 3068 3139 cat > conftest.$ac_ext <<EOF 3069 #line 3 070"configure"3140 #line 3141 "configure" 3070 3141 #include "confdefs.h" 3071 3142 /* System header to define __stub macros and hopefully few prototypes, … … 3090 3161 ; return 0; } 3091 3162 EOF 3092 if { (eval echo configure:3 093: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3163 if { (eval echo configure:3164: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3093 3164 rm -rf conftest* 3094 3165 eval "ac_cv_func_dlopen=yes" … … 3111 3182 echo "$ac_t""no" 1>&6 3112 3183 echo $ac_n "checking for dlopen in -lsvld""... $ac_c" 1>&6 3113 echo "configure:31 14: checking for dlopen in -lsvld" >&53184 echo "configure:3185: checking for dlopen in -lsvld" >&5 3114 3185 ac_lib_var=`echo svld'_'dlopen | sed 'y%./+-%__p_%'` 3115 3186 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3119 3190 LIBS="-lsvld $LIBS" 3120 3191 cat > conftest.$ac_ext <<EOF 3121 #line 31 22"configure"3192 #line 3193 "configure" 3122 3193 #include "confdefs.h" 3123 3194 /* Override any gcc2 internal prototype to avoid an error. */ … … 3130 3201 ; return 0; } 3131 3202 EOF 3132 if { (eval echo configure:3 133: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3203 if { (eval echo configure:3204: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3133 3204 rm -rf conftest* 3134 3205 eval "ac_cv_lib_$ac_lib_var=yes" … … 3159 3230 3160 3231 echo $ac_n "checking for shl_load""... $ac_c" 1>&6 3161 echo "configure:3 162: checking for shl_load" >&53232 echo "configure:3233: checking for shl_load" >&5 3162 3233 if eval "test \"`echo '$''{'ac_cv_func_shl_load'+set}'`\" = set"; then 3163 3234 echo $ac_n "(cached) $ac_c" 1>&6 3164 3235 else 3165 3236 cat > conftest.$ac_ext <<EOF 3166 #line 3 167"configure"3237 #line 3238 "configure" 3167 3238 #include "confdefs.h" 3168 3239 /* System header to define __stub macros and hopefully few prototypes, … … 3187 3258 ; return 0; } 3188 3259 EOF 3189 if { (eval echo configure:3 190: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3260 if { (eval echo configure:3261: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3190 3261 rm -rf conftest* 3191 3262 eval "ac_cv_func_shl_load=yes" … … 3208 3279 echo "$ac_t""no" 1>&6 3209 3280 echo $ac_n "checking for shl_load in -ldld""... $ac_c" 1>&6 3210 echo "configure:32 11: checking for shl_load in -ldld" >&53281 echo "configure:3282: checking for shl_load in -ldld" >&5 3211 3282 ac_lib_var=`echo dld'_'shl_load | sed 'y%./+-%__p_%'` 3212 3283 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3216 3287 LIBS="-ldld $LIBS" 3217 3288 cat > conftest.$ac_ext <<EOF 3218 #line 32 19"configure"3289 #line 3290 "configure" 3219 3290 #include "confdefs.h" 3220 3291 /* Override any gcc2 internal prototype to avoid an error. */ … … 3227 3298 ; return 0; } 3228 3299 EOF 3229 if { (eval echo configure:3 230: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3300 if { (eval echo configure:3301: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3230 3301 rm -rf conftest* 3231 3302 eval "ac_cv_lib_$ac_lib_var=yes" … … 3255 3326 3256 3327 echo $ac_n "checking for dld_link in -ldld""... $ac_c" 1>&6 3257 echo "configure:3 258: checking for dld_link in -ldld" >&53328 echo "configure:3329: checking for dld_link in -ldld" >&5 3258 3329 ac_lib_var=`echo dld'_'dld_link | sed 'y%./+-%__p_%'` 3259 3330 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3263 3334 LIBS="-ldld $LIBS" 3264 3335 cat > conftest.$ac_ext <<EOF 3265 #line 3 266"configure"3336 #line 3337 "configure" 3266 3337 #include "confdefs.h" 3267 3338 /* Override any gcc2 internal prototype to avoid an error. */ … … 3274 3345 ; return 0; } 3275 3346 EOF 3276 if { (eval echo configure:3 277: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3347 if { (eval echo configure:3348: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3277 3348 rm -rf conftest* 3278 3349 eval "ac_cv_lib_$ac_lib_var=yes" … … 3305 3376 do 3306 3377 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3307 echo "configure:33 08: checking for $ac_func" >&53378 echo "configure:3379: checking for $ac_func" >&5 3308 3379 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3309 3380 echo $ac_n "(cached) $ac_c" 1>&6 3310 3381 else 3311 3382 cat > conftest.$ac_ext <<EOF 3312 #line 33 13"configure"3383 #line 3384 "configure" 3313 3384 #include "confdefs.h" 3314 3385 /* System header to define __stub macros and hopefully few prototypes, … … 3333 3404 ; return 0; } 3334 3405 EOF 3335 if { (eval echo configure:3 336: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3406 if { (eval echo configure:3407: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3336 3407 rm -rf conftest* 3337 3408 eval "ac_cv_func_$ac_func=yes" … … 3361 3432 3362 3433 echo $ac_n "checking for _ prefix in compiled symbols""... $ac_c" 1>&6 3363 echo "configure:3 364: checking for _ prefix in compiled symbols" >&53434 echo "configure:3435: checking for _ prefix in compiled symbols" >&5 3364 3435 if eval "test \"`echo '$''{'ac_cv_sys_symbol_underscore'+set}'`\" = set"; then 3365 3436 echo $ac_n "(cached) $ac_c" 1>&6 … … 3370 3441 int main(){nm_test_func;return 0;} 3371 3442 EOF 3372 if { (eval echo configure:3 373: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3443 if { (eval echo configure:3444: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3373 3444 # Now try to grab the symbols. 3374 3445 ac_nlist=conftest.nm 3375 if { (eval echo configure:3 376: \"$NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist\") 1>&5; (eval $NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist) 2>&5; } && test -s "$ac_nlist"; then3446 if { (eval echo configure:3447: \"$NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist\") 1>&5; (eval $NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist) 2>&5; } && test -s "$ac_nlist"; then 3376 3447 # See whether the symbols have a leading underscore. 3377 3448 if egrep '^. _nm_test_func' "$ac_nlist" >/dev/null; then … … 3400 3471 test x"$ac_cv_lib_dl_dlopen" = xyes ; then 3401 3472 echo $ac_n "checking whether we have to add an underscore for dlsym""... $ac_c" 1>&6 3402 echo "configure:34 03: checking whether we have to add an underscore for dlsym" >&53473 echo "configure:3474: checking whether we have to add an underscore for dlsym" >&5 3403 3474 if eval "test \"`echo '$''{'libltdl_cv_need_uscore'+set}'`\" = set"; then 3404 3475 echo $ac_n "(cached) $ac_c" 1>&6 … … 3409 3480 else 3410 3481 cat > conftest.$ac_ext <<EOF 3411 #line 34 12"configure"3482 #line 3483 "configure" 3412 3483 #include "confdefs.h" 3413 3484 … … 3456 3527 3457 3528 EOF 3458 if { (eval echo configure:3 459: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null3529 if { (eval echo configure:3530: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 3459 3530 then 3460 3531 libltdl_cv_need_uscore=no … … 3488 3559 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 3489 3560 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 3490 echo "configure:3 491: checking for $ac_hdr" >&53561 echo "configure:3562: checking for $ac_hdr" >&5 3491 3562 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 3492 3563 echo $ac_n "(cached) $ac_c" 1>&6 3493 3564 else 3494 3565 cat > conftest.$ac_ext <<EOF 3495 #line 3496 "configure" 3566 #include <sys/types.h> 3567 #line 3568 "configure" 3496 3568 #include "confdefs.h" 3497 3569 #include <$ac_hdr> 3498 3570 EOF 3499 3571 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3500 { (eval echo configure:35 01: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3572 { (eval echo configure:3573: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3501 3573 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3502 3574 if test -z "$ac_err"; then … … 3528 3600 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 3529 3601 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 3530 echo "configure:3 531: checking for $ac_hdr" >&53602 echo "configure:3603: checking for $ac_hdr" >&5 3531 3603 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 3532 3604 echo $ac_n "(cached) $ac_c" 1>&6 3533 3605 else 3534 3606 cat > conftest.$ac_ext <<EOF 3535 #line 3536 "configure" 3607 #include <sys/types.h> 3608 #line 3609 "configure" 3536 3609 #include "confdefs.h" 3537 3610 #include <$ac_hdr> 3538 3611 EOF 3539 3612 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3540 { (eval echo configure:3 541: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3613 { (eval echo configure:3614: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3541 3614 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3542 3615 if test -z "$ac_err"; then … … 3567 3640 do 3568 3641 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3569 echo "configure:3 570: checking for $ac_func" >&53642 echo "configure:3643: checking for $ac_func" >&5 3570 3643 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3571 3644 echo $ac_n "(cached) $ac_c" 1>&6 3572 3645 else 3573 3646 cat > conftest.$ac_ext <<EOF 3574 #line 3 575"configure"3647 #line 3648 "configure" 3575 3648 #include "confdefs.h" 3576 3649 /* System header to define __stub macros and hopefully few prototypes, … … 3595 3668 ; return 0; } 3596 3669 EOF 3597 if { (eval echo configure:3 598: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3670 if { (eval echo configure:3671: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3598 3671 rm -rf conftest* 3599 3672 eval "ac_cv_func_$ac_func=yes" … … 3622 3695 do 3623 3696 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3624 echo "configure:36 25: checking for $ac_func" >&53697 echo "configure:3698: checking for $ac_func" >&5 3625 3698 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3626 3699 echo $ac_n "(cached) $ac_c" 1>&6 3627 3700 else 3628 3701 cat > conftest.$ac_ext <<EOF 3629 #line 3 630"configure"3702 #line 3703 "configure" 3630 3703 #include "confdefs.h" 3631 3704 /* System header to define __stub macros and hopefully few prototypes, … … 3650 3723 ; return 0; } 3651 3724 EOF 3652 if { (eval echo configure:3 653: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3725 if { (eval echo configure:3726: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3653 3726 rm -rf conftest* 3654 3727 eval "ac_cv_func_$ac_func=yes" … … 3677 3750 do 3678 3751 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3679 echo "configure:3 680: checking for $ac_func" >&53752 echo "configure:3753: checking for $ac_func" >&5 3680 3753 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3681 3754 echo $ac_n "(cached) $ac_c" 1>&6 3682 3755 else 3683 3756 cat > conftest.$ac_ext <<EOF 3684 #line 3 685"configure"3757 #line 3758 "configure" 3685 3758 #include "confdefs.h" 3686 3759 /* System header to define __stub macros and hopefully few prototypes, … … 3705 3778 ; return 0; } 3706 3779 EOF 3707 if { (eval echo configure:37 08: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3780 if { (eval echo configure:3781: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3708 3781 rm -rf conftest* 3709 3782 eval "ac_cv_func_$ac_func=yes" … … 3807 3880 # Run this file to recreate the current configuration. 3808 3881 # This directory was configured as follows, 3882 EOF 3883 echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS 3884 cat >> $CONFIG_STATUS <<EOF 3809 3885 # on host `(hostname || uname -n) 2>/dev/null | sed 1q`: 3810 3886 # … … 3832 3908 ac_given_srcdir=$srcdir 3833 3909 ac_given_INSTALL="$INSTALL" 3910 PATHIFS="$PATH_IFS" 3834 3911 3835 3912 trap 'rm -fr `echo "Makefile config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 … … 3842 3919 $ac_vpsub 3843 3920 $extrasub 3921 s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g 3844 3922 s%@SHELL@%$SHELL%g 3845 3923 s%@CFLAGS@%$CFLAGS%g … … 3865 3943 s%@infodir@%$infodir%g 3866 3944 s%@mandir@%$mandir%g 3945 s%@PATH_IFS@%$PATH_IFS%g 3946 s%@EXEEXT@%$EXEEXT%g 3867 3947 s%@mkinstalldirs@%$mkinstalldirs%g 3868 3948 s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g … … 3893 3973 s%@LN_S@%$LN_S%g 3894 3974 s%@OBJEXT@%$OBJEXT%g 3895 s%@EXEEXT@%$EXEEXT%g3896 3975 s%@RANLIB@%$RANLIB%g 3897 3976 s%@STRIP@%$STRIP%g … … 3978 4057 if test -z "$ac_dots"; then top_srcdir=. 3979 4058 else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; 3980 /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 4059 /* | [A-Za-z]:*) 4060 srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 3981 4061 *) # Relative path. 3982 4062 srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" … … 3985 4065 3986 4066 case "$ac_given_INSTALL" in 3987 [/$]* ) INSTALL="$ac_given_INSTALL" ;;4067 [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;; 3988 4068 *) INSTALL="$ac_dots$ac_given_INSTALL" ;; 3989 4069 esac … … 3998 4078 esac 3999 4079 4000 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s% :% $ac_given_srcdir/%g"`4080 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%$PATHIFS% $ac_given_srcdir/%g"` 4001 4081 sed -e "$ac_comsub 4002 4082 s%@configure_input@%$configure_input%g … … 4045 4125 4046 4126 rm -f conftest.frag conftest.in conftest.out 4047 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 4127 # kso the other way around might work better with drive letters and such. 4128 # ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 4129 ac_file_inputs=`echo $ac_file_in|sed -e "s%:% $ac_given_srcdir/%g" -e "s%^%$ac_given_srcdir/%" ` 4048 4130 cat $ac_file_inputs > conftest.in 4049 4131 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.