Changeset 101 for trunk/src/binutils/ld/configure
- Timestamp:
- May 7, 2003, 5:35:03 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/binutils/ld/configure
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r100 r101 54 54 silent= 55 55 site= 56 sitefile=57 56 srcdir= 58 57 target=NONE … … 169 168 --no-create do not create output files 170 169 --quiet, --silent do not print \`checking...' messages 171 --site-file=FILE use FILE as the site file172 170 --version print the version of autoconf that created configure 173 171 Directory and file names: … … 340 338 site="$ac_optarg" ;; 341 339 342 -site-file | --site-file | --site-fil | --site-fi | --site-f)343 ac_prev=sitefile ;;344 -site-file=* | --site-file=* | --site-fil=* | --site-fi=* | --site-f=*)345 sitefile="$ac_optarg" ;;346 347 340 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) 348 341 ac_prev=srcdir ;; … … 510 503 511 504 # Prefer explicitly selected file to automatically selected ones. 512 if test -z "$sitefile"; then 513 if test -z "$CONFIG_SITE"; then 514 if test "x$prefix" != xNONE; then 515 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" 516 else 517 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" 518 fi 505 if test -z "$CONFIG_SITE"; then 506 if test "x$prefix" != xNONE; then 507 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" 508 else 509 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" 519 510 fi 520 else521 CONFIG_SITE="$sitefile"522 511 fi 523 512 for ac_site_file in $CONFIG_SITE; do … … 557 546 fi 558 547 548 echo $ac_n "checking for path separator""... $ac_c" 1>&6 549 echo "configure:550: checking for path separator" >&5 550 # Filter path to get backslahes into forwardslashes 551 case "`uname -s 2> /dev/null`" in 552 OS/2) 553 PATH=`echo -E "$PATH" | sed 's+\\\\+/+g'` 554 PATH_IFS=';' 555 ;; 556 *) 557 PATH_IFS=':' 558 ;; 559 esac 560 echo "$ac_t""${PATH_IFS}" 1>&6 561 559 562 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 560 echo "configure:56 1: checking for Cygwin environment" >&5563 echo "configure:564: checking for Cygwin environment" >&5 561 564 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then 562 565 echo $ac_n "(cached) $ac_c" 1>&6 563 566 else 564 567 cat > conftest.$ac_ext <<EOF 565 #line 56 6"configure"568 #line 569 "configure" 566 569 #include "confdefs.h" 567 570 … … 574 577 ; return 0; } 575 578 EOF 576 if { (eval echo configure:5 77: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then579 if { (eval echo configure:580: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 577 580 rm -rf conftest* 578 581 ac_cv_cygwin=yes … … 591 594 test "$ac_cv_cygwin" = yes && CYGWIN=yes 592 595 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 593 echo "configure:59 4: checking for mingw32 environment" >&5596 echo "configure:597: checking for mingw32 environment" >&5 594 597 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then 595 598 echo $ac_n "(cached) $ac_c" 1>&6 596 599 else 597 600 cat > conftest.$ac_ext <<EOF 598 #line 599"configure"601 #line 602 "configure" 599 602 #include "confdefs.h" 600 603 … … 603 606 ; return 0; } 604 607 EOF 605 if { (eval echo configure:60 6: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then608 if { (eval echo configure:609: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 606 609 rm -rf conftest* 607 610 ac_cv_mingw32=yes … … 619 622 MINGW32= 620 623 test "$ac_cv_mingw32" = yes && MINGW32=yes 624 echo $ac_n "checking for EMX/OS2 environment""... $ac_c" 1>&6 625 echo "configure:626: checking for EMX/OS2 environment" >&5 626 if eval "test \"`echo '$''{'ac_cv_emxos2'+set}'`\" = set"; then 627 echo $ac_n "(cached) $ac_c" 1>&6 628 else 629 : ${CC=gcc.exe} 630 cat > conftest.$ac_ext <<EOF 631 #line 632 "configure" 632 #include "confdefs.h" 633 634 int main() { 635 return __EMX__; 636 ; return 0; } 637 EOF 638 if { (eval echo configure:639: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 639 rm -rf conftest* 640 ac_cv_emxos2=yes 641 else 642 echo "configure: failed program was:" >&5 643 cat conftest.$ac_ext >&5 644 rm -rf conftest* 645 ac_cv_emxos2=no 646 fi 647 rm -f conftest* 648 rm -f conftest* 649 fi 650 651 echo "$ac_t""$ac_cv_emxos2" 1>&6 652 if eval "test \"`echo '$''{'ac_cv_libpre'+set}'`\" = set"; then 653 echo $ac_n "(cached) $ac_c" 1>&6 654 else 655 if test "$ac_cv_emxos2" = yes ; then 656 ac_cv_libpre= 657 else 658 ac_cv_libpre=lib 659 fi 660 661 fi 662 663 EMXOS2= 664 test "$ac_cv_emxos2" = yes && EMXOS2=yes 665 666 667 668 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 669 echo "configure:670: checking for executable suffix" >&5 670 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 671 echo $ac_n "(cached) $ac_c" 1>&6 672 else 673 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 674 ac_cv_exeext=.exe 675 else 676 rm -f conftest* 677 echo 'int main () { return 0; }' > conftest.$ac_ext 678 ac_cv_exeext= 679 if { (eval echo configure:680: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 680 for file in conftest.*; do 681 case $file in 682 *.c | *.o | *.obj) ;; 683 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; 684 esac 685 done 686 else 687 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; } 688 fi 689 rm -f conftest* 690 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no 691 fi 692 fi 693 694 EXEEXT="" 695 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} 696 echo "$ac_t""${ac_cv_exeext}" 1>&6 697 ac_exeext=$EXEEXT 698 621 699 622 700 … … 668 746 669 747 echo $ac_n "checking host system type""... $ac_c" 1>&6 670 echo "configure: 671: checking host system type" >&5748 echo "configure:749: checking host system type" >&5 671 749 672 750 host_alias=$host … … 689 767 690 768 echo $ac_n "checking target system type""... $ac_c" 1>&6 691 echo "configure: 692: checking target system type" >&5769 echo "configure:770: checking target system type" >&5 692 770 693 771 target_alias=$target … … 707 785 708 786 echo $ac_n "checking build system type""... $ac_c" 1>&6 709 echo "configure:7 10: checking build system type" >&5787 echo "configure:788: checking build system type" >&5 710 788 711 789 build_alias=$build … … 732 810 set dummy gcc; ac_word=$2 733 811 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 734 echo "configure: 735: checking for $ac_word" >&5812 echo "configure:813: checking for $ac_word" >&5 735 813 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 736 814 echo $ac_n "(cached) $ac_c" 1>&6 … … 739 817 ac_cv_prog_CC="$CC" # Let the user override the test. 740 818 else 741 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"819 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 742 820 ac_dummy="$PATH" 743 821 for ac_dir in $ac_dummy; do 744 822 test -z "$ac_dir" && ac_dir=. 745 if test -f $ac_dir/$ac_word; then 823 if test -f $ac_dir/$ac_word -o \ 824 -f $ac_dir/$ac_word$ac_exeext ; then 746 825 ac_cv_prog_CC="gcc" 747 826 break … … 762 841 set dummy cc; ac_word=$2 763 842 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 764 echo "configure: 765: checking for $ac_word" >&5843 echo "configure:844: checking for $ac_word" >&5 765 844 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 766 845 echo $ac_n "(cached) $ac_c" 1>&6 … … 769 848 ac_cv_prog_CC="$CC" # Let the user override the test. 770 849 else 771 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"850 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 772 851 ac_prog_rejected=no 773 852 ac_dummy="$PATH" 774 853 for ac_dir in $ac_dummy; do 775 854 test -z "$ac_dir" && ac_dir=. 776 if test -f $ac_dir/$ac_word; then 777 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 855 if test -f $ac_dir/$ac_word -o \ 856 -f $ac_dir/$ac_word$ac_exeext ; then 857 if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \ 858 "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then 778 859 ac_prog_rejected=yes 779 860 continue … … 813 894 set dummy cl; ac_word=$2 814 895 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 815 echo "configure:8 16: checking for $ac_word" >&5896 echo "configure:897: checking for $ac_word" >&5 816 897 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 817 898 echo $ac_n "(cached) $ac_c" 1>&6 … … 820 901 ac_cv_prog_CC="$CC" # Let the user override the test. 821 902 else 822 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"903 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 823 904 ac_dummy="$PATH" 824 905 for ac_dir in $ac_dummy; do 825 906 test -z "$ac_dir" && ac_dir=. 826 if test -f $ac_dir/$ac_word; then 907 if test -f $ac_dir/$ac_word -o \ 908 -f $ac_dir/$ac_word$ac_exeext ; then 827 909 ac_cv_prog_CC="cl" 828 910 break … … 845 927 846 928 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 847 echo "configure: 848: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5929 echo "configure:930: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 848 930 849 931 ac_ext=c … … 856 938 cat > conftest.$ac_ext << EOF 857 939 858 #line 859"configure"940 #line 941 "configure" 859 941 #include "confdefs.h" 860 942 861 943 main(){return(0);} 862 944 EOF 863 if { (eval echo configure: 864: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then945 if { (eval echo configure:946: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 864 946 ac_cv_prog_cc_works=yes 865 947 # If we can't run a trivial program, we are probably using a cross compiler. … … 887 969 fi 888 970 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 889 echo "configure: 890: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5971 echo "configure:972: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 890 972 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 891 973 cross_compiling=$ac_cv_prog_cc_cross 892 974 893 975 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 894 echo "configure: 895: checking whether we are using GNU C" >&5976 echo "configure:977: checking whether we are using GNU C" >&5 895 977 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 896 978 echo $ac_n "(cached) $ac_c" 1>&6 … … 901 983 #endif 902 984 EOF 903 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:9 04: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then985 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:986: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 904 986 ac_cv_prog_gcc=yes 905 987 else … … 920 1002 CFLAGS= 921 1003 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 922 echo "configure: 923: checking whether ${CC-cc} accepts -g" >&51004 echo "configure:1005: checking whether ${CC-cc} accepts -g" >&5 923 1005 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 924 1006 echo $ac_n "(cached) $ac_c" 1>&6 … … 952 1034 953 1035 echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&6 954 echo "configure: 955: checking for POSIXized ISC" >&51036 echo "configure:1037: checking for POSIXized ISC" >&5 955 1037 if test -d /etc/conf/kconfig.d && 956 1038 grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1 … … 986 1068 # ./install, which can be erroneously created by make from ./install.sh. 987 1069 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 988 echo "configure: 989: checking for a BSD compatible install" >&51070 echo "configure:1071: checking for a BSD compatible install" >&5 989 1071 if test -z "$INSTALL"; then 990 1072 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 991 1073 echo $ac_n "(cached) $ac_c" 1>&6 992 1074 else 993 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"1075 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 994 1076 for ac_dir in $PATH; do 995 1077 # Account for people who put trailing slashes in PATH elements. 996 1078 case "$ac_dir/" in 997 1079 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; 1080 # We reject the install program from OS/2 or W3.1 1081 */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;; 998 1082 *) 999 1083 # OSF1 and SCO ODT 3.0 have their own names for install. … … 1001 1085 # by default. 1002 1086 for ac_prog in ginstall scoinst install; do 1003 if test -f $ac_dir/$ac_prog ; then1087 if test -f $ac_dir/$ac_prog$ac_exeext; then 1004 1088 if test $ac_prog = install && 1005 1089 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 1007 1091 : 1008 1092 else 1009 ac_cv_path_install="$ac_dir/$ac_prog -c"1093 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 1010 1094 break 2 1011 1095 fi … … 1039 1123 1040 1124 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 1041 echo "configure:1 042: checking whether build environment is sane" >&51125 echo "configure:1126: checking whether build environment is sane" >&5 1042 1126 # Just in case 1043 1127 sleep 1 … … 1096 1180 1097 1181 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 1098 echo "configure:1 099: checking whether ${MAKE-make} sets \${MAKE}" >&51182 echo "configure:1183: checking whether ${MAKE-make} sets \${MAKE}" >&5 1099 1183 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 1100 1184 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 1142 1226 missing_dir=`cd $ac_aux_dir && pwd` 1143 1227 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 1144 echo "configure:1 145: checking for working aclocal" >&51228 echo "configure:1229: checking for working aclocal" >&5 1145 1229 # Run test in a subshell; some versions of sh will print an error if 1146 1230 # an executable is not found, even if stderr is redirected. … … 1155 1239 1156 1240 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 1157 echo "configure:1 158: checking for working autoconf" >&51241 echo "configure:1242: checking for working autoconf" >&5 1158 1242 # Run test in a subshell; some versions of sh will print an error if 1159 1243 # an executable is not found, even if stderr is redirected. … … 1168 1252 1169 1253 echo $ac_n "checking for working automake""... $ac_c" 1>&6 1170 echo "configure:1 171: checking for working automake" >&51254 echo "configure:1255: checking for working automake" >&5 1171 1255 # Run test in a subshell; some versions of sh will print an error if 1172 1256 # an executable is not found, even if stderr is redirected. … … 1181 1265 1182 1266 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 1183 echo "configure:1 184: checking for working autoheader" >&51267 echo "configure:1268: checking for working autoheader" >&5 1184 1268 # Run test in a subshell; some versions of sh will print an error if 1185 1269 # an executable is not found, even if stderr is redirected. … … 1194 1278 1195 1279 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 1196 echo "configure:1 197: checking for working makeinfo" >&51280 echo "configure:1281: checking for working makeinfo" >&5 1197 1281 # Run test in a subshell; some versions of sh will print an error if 1198 1282 # an executable is not found, even if stderr is redirected. … … 1289 1373 # Check if gcc -print-prog-name=ld gives a path. 1290 1374 echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 1291 echo "configure:1 292: checking for ld used by GCC" >&51375 echo "configure:1376: checking for ld used by GCC" >&5 1292 1376 case $host in 1293 1377 *-*-mingw*) … … 1319 1403 elif test "$with_gnu_ld" = yes; then 1320 1404 echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 1321 echo "configure:1 322: checking for GNU ld" >&51405 echo "configure:1406: checking for GNU ld" >&5 1322 1406 else 1323 1407 echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 1324 echo "configure:1 325: checking for non-GNU ld" >&51408 echo "configure:1409: checking for non-GNU ld" >&5 1325 1409 fi 1326 1410 if eval "test \"`echo '$''{'ac_cv_path_LD'+set}'`\" = set"; then … … 1357 1441 test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } 1358 1442 echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 1359 echo "configure:1 360: checking if the linker ($LD) is GNU ld" >&51443 echo "configure:1444: checking if the linker ($LD) is GNU ld" >&5 1360 1444 if eval "test \"`echo '$''{'ac_cv_prog_gnu_ld'+set}'`\" = set"; then 1361 1445 echo $ac_n "(cached) $ac_c" 1>&6 … … 1374 1458 1375 1459 echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6 1376 echo "configure:1 377: checking for $LD option to reload object files" >&51460 echo "configure:1461: checking for $LD option to reload object files" >&5 1377 1461 if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then 1378 1462 echo $ac_n "(cached) $ac_c" 1>&6 … … 1386 1470 1387 1471 echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 1388 echo "configure:1 389: checking for BSD-compatible nm" >&51472 echo "configure:1473: checking for BSD-compatible nm" >&5 1389 1473 if eval "test \"`echo '$''{'ac_cv_path_NM'+set}'`\" = set"; then 1390 1474 echo $ac_n "(cached) $ac_c" 1>&6 … … 1424 1508 1425 1509 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 1426 echo "configure:1 427: checking whether ln -s works" >&51510 echo "configure:1511: checking whether ln -s works" >&5 1427 1511 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then 1428 1512 echo $ac_n "(cached) $ac_c" 1>&6 … … 1434 1518 ac_cv_prog_LN_S="ln -s" 1435 1519 else 1436 ac_cv_prog_LN_S=ln 1437 fi 1520 echo A > conftestdata; 1521 if ln conftestdata conftestdata2 2>/dev/null; then 1522 ac_cv_prog_LN_S=ln 1523 else 1524 ac_cv_prog_LN_S=cp 1525 fi 1526 fi 1527 rm -f conftestdata* 1438 1528 fi 1439 1529 LN_S="$ac_cv_prog_LN_S" … … 1445 1535 1446 1536 echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6 1447 echo "configure:1 448: checking how to recognise dependant libraries" >&51537 echo "configure:1538: checking how to recognise dependant libraries" >&5 1448 1538 if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then 1449 1539 echo $ac_n "(cached) $ac_c" 1>&6 … … 1588 1678 1589 1679 echo $ac_n "checking for object suffix""... $ac_c" 1>&6 1590 echo "configure:1 591: checking for object suffix" >&51680 echo "configure:1681: checking for object suffix" >&5 1591 1681 if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then 1592 1682 echo $ac_n "(cached) $ac_c" 1>&6 … … 1594 1684 rm -f conftest* 1595 1685 echo 'int i = 1;' > conftest.$ac_ext 1596 if { (eval echo configure:1 597: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1686 if { (eval echo configure:1687: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1597 1687 for ac_file in conftest.*; do 1598 1688 case $ac_file in … … 1611 1701 ac_objext=$ac_cv_objext 1612 1702 1613 1614 1615 echo $ac_n "checking for executable suffix""... $ac_c" 1>&61616 echo "configure:1617: checking for executable suffix" >&51617 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then1618 echo $ac_n "(cached) $ac_c" 1>&61619 else1620 if test "$CYGWIN" = yes || test "$MINGW32" = yes; then1621 ac_cv_exeext=.exe1622 else1623 rm -f conftest*1624 echo 'int main () { return 0; }' > conftest.$ac_ext1625 ac_cv_exeext=1626 if { (eval echo configure:1627: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then1627 for file in conftest.*; do1628 case $file in1629 *.c | *.o | *.obj | *.ilk | *.pdb) ;;1630 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;1631 esac1632 done1633 else1634 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; }1635 fi1636 rm -f conftest*1637 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no1638 fi1639 fi1640 1641 EXEEXT=""1642 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext}1643 echo "$ac_t""${ac_cv_exeext}" 1>&61644 ac_exeext=$EXEEXT1645 1646 1703 if test $host != $build; then 1647 1704 ac_tool_prefix=${host_alias}- … … 1657 1714 if test "$file_magic_cmd" = '$MAGIC_CMD'; then 1658 1715 echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6 1659 echo "configure:1 660: checking for ${ac_tool_prefix}file" >&51716 echo "configure:1717: checking for ${ac_tool_prefix}file" >&5 1660 1717 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 1661 1718 echo $ac_n "(cached) $ac_c" 1>&6 … … 1719 1776 if test -n "$ac_tool_prefix"; then 1720 1777 echo $ac_n "checking for file""... $ac_c" 1>&6 1721 echo "configure:17 22: checking for file" >&51778 echo "configure:1779: checking for file" >&5 1722 1779 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 1723 1780 echo $ac_n "(cached) $ac_c" 1>&6 … … 1790 1847 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 1791 1848 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1792 echo "configure:1 793: checking for $ac_word" >&51849 echo "configure:1850: checking for $ac_word" >&5 1793 1850 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1794 1851 echo $ac_n "(cached) $ac_c" 1>&6 … … 1797 1854 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1798 1855 else 1799 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1856 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1800 1857 ac_dummy="$PATH" 1801 1858 for ac_dir in $ac_dummy; do 1802 1859 test -z "$ac_dir" && ac_dir=. 1803 if test -f $ac_dir/$ac_word; then 1860 if test -f $ac_dir/$ac_word -o \ 1861 -f $ac_dir/$ac_word$ac_exeext ; then 1804 1862 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 1805 1863 break … … 1822 1880 set dummy ranlib; ac_word=$2 1823 1881 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1824 echo "configure:18 25: checking for $ac_word" >&51882 echo "configure:1883: checking for $ac_word" >&5 1825 1883 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1826 1884 echo $ac_n "(cached) $ac_c" 1>&6 … … 1829 1887 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1830 1888 else 1831 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1889 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1832 1890 ac_dummy="$PATH" 1833 1891 for ac_dir in $ac_dummy; do 1834 1892 test -z "$ac_dir" && ac_dir=. 1835 if test -f $ac_dir/$ac_word; then 1893 if test -f $ac_dir/$ac_word -o \ 1894 -f $ac_dir/$ac_word$ac_exeext ; then 1836 1895 ac_cv_prog_RANLIB="ranlib" 1837 1896 break … … 1857 1916 set dummy ${ac_tool_prefix}strip; ac_word=$2 1858 1917 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1859 echo "configure:1 860: checking for $ac_word" >&51918 echo "configure:1919: checking for $ac_word" >&5 1860 1919 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 1861 1920 echo $ac_n "(cached) $ac_c" 1>&6 … … 1864 1923 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 1865 1924 else 1866 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1925 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1867 1926 ac_dummy="$PATH" 1868 1927 for ac_dir in $ac_dummy; do 1869 1928 test -z "$ac_dir" && ac_dir=. 1870 if test -f $ac_dir/$ac_word; then 1929 if test -f $ac_dir/$ac_word -o \ 1930 -f $ac_dir/$ac_word$ac_exeext ; then 1871 1931 ac_cv_prog_STRIP="${ac_tool_prefix}strip" 1872 1932 break … … 1889 1949 set dummy strip; ac_word=$2 1890 1950 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1891 echo "configure:1 892: checking for $ac_word" >&51951 echo "configure:1952: checking for $ac_word" >&5 1892 1952 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 1893 1953 echo $ac_n "(cached) $ac_c" 1>&6 … … 1896 1956 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 1897 1957 else 1898 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1958 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1899 1959 ac_dummy="$PATH" 1900 1960 for ac_dir in $ac_dummy; do 1901 1961 test -z "$ac_dir" && ac_dir=. 1902 if test -f $ac_dir/$ac_word; then 1962 if test -f $ac_dir/$ac_word -o \ 1963 -f $ac_dir/$ac_word$ac_exeext ; then 1903 1964 ac_cv_prog_STRIP="strip" 1904 1965 break … … 1956 2017 *-*-irix6*) 1957 2018 # Find out which ABI we are using. 1958 echo '#line 1959"configure"' > conftest.$ac_ext1959 if { (eval echo configure: 1960: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2019 echo '#line 2020 "configure"' > conftest.$ac_ext 2020 if { (eval echo configure:2021: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1960 2021 case "`/usr/bin/file conftest.o`" in 1961 2022 *32-bit*) … … 1978 2039 CFLAGS="$CFLAGS -belf" 1979 2040 echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 1980 echo "configure: 1981: checking whether the C compiler needs -belf" >&52041 echo "configure:2042: checking whether the C compiler needs -belf" >&5 1981 2042 if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then 1982 2043 echo $ac_n "(cached) $ac_c" 1>&6 … … 1991 2052 1992 2053 cat > conftest.$ac_ext <<EOF 1993 #line 1994"configure"2054 #line 2055 "configure" 1994 2055 #include "confdefs.h" 1995 2056 … … 1998 2059 ; return 0; } 1999 2060 EOF 2000 if { (eval echo configure:20 01: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2061 if { (eval echo configure:2062: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2001 2062 rm -rf conftest* 2002 2063 lt_cv_cc_needs_belf=yes … … 2176 2237 set dummy gcc; ac_word=$2 2177 2238 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2178 echo "configure:2 179: checking for $ac_word" >&52239 echo "configure:2240: checking for $ac_word" >&5 2179 2240 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2180 2241 echo $ac_n "(cached) $ac_c" 1>&6 … … 2183 2244 ac_cv_prog_CC="$CC" # Let the user override the test. 2184 2245 else 2185 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2246 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2186 2247 ac_dummy="$PATH" 2187 2248 for ac_dir in $ac_dummy; do 2188 2249 test -z "$ac_dir" && ac_dir=. 2189 if test -f $ac_dir/$ac_word; then 2250 if test -f $ac_dir/$ac_word -o \ 2251 -f $ac_dir/$ac_word$ac_exeext ; then 2190 2252 ac_cv_prog_CC="gcc" 2191 2253 break … … 2206 2268 set dummy cc; ac_word=$2 2207 2269 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2208 echo "configure:22 09: checking for $ac_word" >&52270 echo "configure:2271: checking for $ac_word" >&5 2209 2271 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2210 2272 echo $ac_n "(cached) $ac_c" 1>&6 … … 2213 2275 ac_cv_prog_CC="$CC" # Let the user override the test. 2214 2276 else 2215 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2277 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2216 2278 ac_prog_rejected=no 2217 2279 ac_dummy="$PATH" 2218 2280 for ac_dir in $ac_dummy; do 2219 2281 test -z "$ac_dir" && ac_dir=. 2220 if test -f $ac_dir/$ac_word; then 2221 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 2282 if test -f $ac_dir/$ac_word -o \ 2283 -f $ac_dir/$ac_word$ac_exeext ; then 2284 if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \ 2285 "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then 2222 2286 ac_prog_rejected=yes 2223 2287 continue … … 2257 2321 set dummy cl; ac_word=$2 2258 2322 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2259 echo "configure:2 260: checking for $ac_word" >&52323 echo "configure:2324: checking for $ac_word" >&5 2260 2324 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2261 2325 echo $ac_n "(cached) $ac_c" 1>&6 … … 2264 2328 ac_cv_prog_CC="$CC" # Let the user override the test. 2265 2329 else 2266 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2330 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2267 2331 ac_dummy="$PATH" 2268 2332 for ac_dir in $ac_dummy; do 2269 2333 test -z "$ac_dir" && ac_dir=. 2270 if test -f $ac_dir/$ac_word; then 2334 if test -f $ac_dir/$ac_word -o \ 2335 -f $ac_dir/$ac_word$ac_exeext ; then 2271 2336 ac_cv_prog_CC="cl" 2272 2337 break … … 2289 2354 2290 2355 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 2291 echo "configure:2 292: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&52356 echo "configure:2357: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 2292 2357 2293 2358 ac_ext=c … … 2300 2365 cat > conftest.$ac_ext << EOF 2301 2366 2302 #line 23 03"configure"2367 #line 2368 "configure" 2303 2368 #include "confdefs.h" 2304 2369 2305 2370 main(){return(0);} 2306 2371 EOF 2307 if { (eval echo configure:23 08: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2372 if { (eval echo configure:2373: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2308 2373 ac_cv_prog_cc_works=yes 2309 2374 # If we can't run a trivial program, we are probably using a cross compiler. … … 2331 2396 fi 2332 2397 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 2333 echo "configure:23 34: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&52398 echo "configure:2399: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 2334 2399 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 2335 2400 cross_compiling=$ac_cv_prog_cc_cross 2336 2401 2337 2402 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 2338 echo "configure:2 339: checking whether we are using GNU C" >&52403 echo "configure:2404: checking whether we are using GNU C" >&5 2339 2404 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 2340 2405 echo $ac_n "(cached) $ac_c" 1>&6 … … 2345 2410 #endif 2346 2411 EOF 2347 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2 348: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then2412 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2413: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 2348 2413 ac_cv_prog_gcc=yes 2349 2414 else … … 2364 2429 CFLAGS= 2365 2430 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 2366 echo "configure:2 367: checking whether ${CC-cc} accepts -g" >&52431 echo "configure:2432: checking whether ${CC-cc} accepts -g" >&5 2367 2432 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 2368 2433 echo $ac_n "(cached) $ac_c" 1>&6 … … 2407 2472 # ./install, which can be erroneously created by make from ./install.sh. 2408 2473 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 2409 echo "configure:24 10: checking for a BSD compatible install" >&52474 echo "configure:2475: checking for a BSD compatible install" >&5 2410 2475 if test -z "$INSTALL"; then 2411 2476 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 2412 2477 echo $ac_n "(cached) $ac_c" 1>&6 2413 2478 else 2414 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"2479 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 2415 2480 for ac_dir in $PATH; do 2416 2481 # Account for people who put trailing slashes in PATH elements. 2417 2482 case "$ac_dir/" in 2418 2483 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; 2484 # We reject the install program from OS/2 or W3.1 2485 */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;; 2419 2486 *) 2420 2487 # OSF1 and SCO ODT 3.0 have their own names for install. … … 2422 2489 # by default. 2423 2490 for ac_prog in ginstall scoinst install; do 2424 if test -f $ac_dir/$ac_prog ; then2491 if test -f $ac_dir/$ac_prog$ac_exeext; then 2425 2492 if test $ac_prog = install && 2426 2493 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 2428 2495 : 2429 2496 else 2430 ac_cv_path_install="$ac_dir/$ac_prog -c"2497 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 2431 2498 break 2 2432 2499 fi … … 2462 2529 ALL_LINGUAS= 2463 2530 echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 2464 echo "configure:2 465: checking how to run the C preprocessor" >&52531 echo "configure:2532: checking how to run the C preprocessor" >&5 2465 2532 # On Suns, sometimes $CPP names a directory. 2466 2533 if test -n "$CPP" && test -d "$CPP"; then … … 2477 2544 # not just through cpp. 2478 2545 cat > conftest.$ac_ext <<EOF 2479 #line 2480 "configure" 2546 #include <sys/types.h> 2547 #line 2548 "configure" 2480 2548 #include "confdefs.h" 2481 2549 #include <assert.h> … … 2483 2551 EOF 2484 2552 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2485 { (eval echo configure:2 486: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2553 { (eval echo configure:2554: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2486 2554 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2487 2555 if test -z "$ac_err"; then … … 2494 2562 CPP="${CC-cc} -E -traditional-cpp" 2495 2563 cat > conftest.$ac_ext <<EOF 2496 #line 2497 "configure" 2564 #include <sys/types.h> 2565 #line 2566 "configure" 2497 2566 #include "confdefs.h" 2498 2567 #include <assert.h> … … 2500 2569 EOF 2501 2570 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2502 { (eval echo configure:25 03: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2571 { (eval echo configure:2572: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2503 2572 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2504 2573 if test -z "$ac_err"; then … … 2511 2580 CPP="${CC-cc} -nologo -E" 2512 2581 cat > conftest.$ac_ext <<EOF 2513 #line 2514 "configure" 2582 #include <sys/types.h> 2583 #line 2584 "configure" 2514 2584 #include "confdefs.h" 2515 2585 #include <assert.h> … … 2517 2587 EOF 2518 2588 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2519 { (eval echo configure:25 20: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2589 { (eval echo configure:2590: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2520 2590 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2521 2591 if test -z "$ac_err"; then … … 2544 2614 set dummy ranlib; ac_word=$2 2545 2615 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2546 echo "configure:2 547: checking for $ac_word" >&52616 echo "configure:2617: checking for $ac_word" >&5 2547 2617 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 2548 2618 echo $ac_n "(cached) $ac_c" 1>&6 … … 2551 2621 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 2552 2622 else 2553 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2623 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2554 2624 ac_dummy="$PATH" 2555 2625 for ac_dir in $ac_dummy; do 2556 2626 test -z "$ac_dir" && ac_dir=. 2557 if test -f $ac_dir/$ac_word; then 2627 if test -f $ac_dir/$ac_word -o \ 2628 -f $ac_dir/$ac_word$ac_exeext ; then 2558 2629 ac_cv_prog_RANLIB="ranlib" 2559 2630 break … … 2572 2643 2573 2644 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 2574 echo "configure:2 575: checking for ANSI C header files" >&52645 echo "configure:2646: checking for ANSI C header files" >&5 2575 2646 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 2576 2647 echo $ac_n "(cached) $ac_c" 1>&6 2577 2648 else 2578 2649 cat > conftest.$ac_ext <<EOF 2579 #line 2580 "configure" 2650 #include <sys/types.h> 2651 #line 2652 "configure" 2580 2652 #include "confdefs.h" 2581 2653 #include <stdlib.h> … … 2585 2657 EOF 2586 2658 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2587 { (eval echo configure:2 588: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2659 { (eval echo configure:2660: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2588 2660 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2589 2661 if test -z "$ac_err"; then … … 2602 2674 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 2603 2675 cat > conftest.$ac_ext <<EOF 2604 #line 26 05"configure"2676 #line 2677 "configure" 2605 2677 #include "confdefs.h" 2606 2678 #include <string.h> … … 2620 2692 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 2621 2693 cat > conftest.$ac_ext <<EOF 2622 #line 26 23"configure"2694 #line 2695 "configure" 2623 2695 #include "confdefs.h" 2624 2696 #include <stdlib.h> … … 2641 2713 else 2642 2714 cat > conftest.$ac_ext <<EOF 2643 #line 2 644"configure"2715 #line 2716 "configure" 2644 2716 #include "confdefs.h" 2645 2717 #include <ctype.h> … … 2652 2724 2653 2725 EOF 2654 if { (eval echo configure:2 655: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null2726 if { (eval echo configure:2727: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 2655 2727 then 2656 2728 : … … 2676 2748 2677 2749 echo $ac_n "checking for working const""... $ac_c" 1>&6 2678 echo "configure:2 679: checking for working const" >&52750 echo "configure:2751: checking for working const" >&5 2679 2751 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then 2680 2752 echo $ac_n "(cached) $ac_c" 1>&6 2681 2753 else 2682 2754 cat > conftest.$ac_ext <<EOF 2683 #line 2 684"configure"2755 #line 2756 "configure" 2684 2756 #include "confdefs.h" 2685 2757 … … 2730 2802 ; return 0; } 2731 2803 EOF 2732 if { (eval echo configure:2 733: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2804 if { (eval echo configure:2805: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2733 2805 rm -rf conftest* 2734 2806 ac_cv_c_const=yes … … 2751 2823 2752 2824 echo $ac_n "checking for inline""... $ac_c" 1>&6 2753 echo "configure:2 754: checking for inline" >&52825 echo "configure:2826: checking for inline" >&5 2754 2826 if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then 2755 2827 echo $ac_n "(cached) $ac_c" 1>&6 … … 2758 2830 for ac_kw in inline __inline__ __inline; do 2759 2831 cat > conftest.$ac_ext <<EOF 2760 #line 2 761"configure"2832 #line 2833 "configure" 2761 2833 #include "confdefs.h" 2762 2834 … … 2765 2837 ; return 0; } 2766 2838 EOF 2767 if { (eval echo configure:2 768: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2839 if { (eval echo configure:2840: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2768 2840 rm -rf conftest* 2769 2841 ac_cv_c_inline=$ac_kw; break … … 2791 2863 2792 2864 echo $ac_n "checking for off_t""... $ac_c" 1>&6 2793 echo "configure:2 794: checking for off_t" >&52865 echo "configure:2866: checking for off_t" >&5 2794 2866 if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then 2795 2867 echo $ac_n "(cached) $ac_c" 1>&6 2796 2868 else 2797 2869 cat > conftest.$ac_ext <<EOF 2798 #line 2 799"configure"2870 #line 2871 "configure" 2799 2871 #include "confdefs.h" 2800 2872 #include <sys/types.h> … … 2824 2896 2825 2897 echo $ac_n "checking for size_t""... $ac_c" 1>&6 2826 echo "configure:28 27: checking for size_t" >&52898 echo "configure:2899: checking for size_t" >&5 2827 2899 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then 2828 2900 echo $ac_n "(cached) $ac_c" 1>&6 2829 2901 else 2830 2902 cat > conftest.$ac_ext <<EOF 2831 #line 2 832"configure"2903 #line 2904 "configure" 2832 2904 #include "confdefs.h" 2833 2905 #include <sys/types.h> … … 2859 2931 # for constant arguments. Useless! 2860 2932 echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 2861 echo "configure:2 862: checking for working alloca.h" >&52933 echo "configure:2934: checking for working alloca.h" >&5 2862 2934 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then 2863 2935 echo $ac_n "(cached) $ac_c" 1>&6 2864 2936 else 2865 2937 cat > conftest.$ac_ext <<EOF 2866 #line 2 867"configure"2938 #line 2939 "configure" 2867 2939 #include "confdefs.h" 2868 2940 #include <alloca.h> … … 2871 2943 ; return 0; } 2872 2944 EOF 2873 if { (eval echo configure:2 874: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2945 if { (eval echo configure:2946: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2874 2946 rm -rf conftest* 2875 2947 ac_cv_header_alloca_h=yes … … 2892 2964 2893 2965 echo $ac_n "checking for alloca""... $ac_c" 1>&6 2894 echo "configure:2 895: checking for alloca" >&52966 echo "configure:2967: checking for alloca" >&5 2895 2967 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then 2896 2968 echo $ac_n "(cached) $ac_c" 1>&6 2897 2969 else 2898 2970 cat > conftest.$ac_ext <<EOF 2899 #line 29 00"configure"2971 #line 2972 "configure" 2900 2972 #include "confdefs.h" 2901 2973 … … 2925 2997 ; return 0; } 2926 2998 EOF 2927 if { (eval echo configure: 2928: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2999 if { (eval echo configure:3000: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2928 3000 rm -rf conftest* 2929 3001 ac_cv_func_alloca_works=yes … … 2957 3029 2958 3030 echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 2959 echo "configure: 2960: checking whether alloca needs Cray hooks" >&53031 echo "configure:3032: checking whether alloca needs Cray hooks" >&5 2960 3032 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then 2961 3033 echo $ac_n "(cached) $ac_c" 1>&6 2962 3034 else 2963 3035 cat > conftest.$ac_ext <<EOF 2964 #line 2965"configure"3036 #line 3037 "configure" 2965 3037 #include "confdefs.h" 2966 3038 #if defined(CRAY) && ! defined(CRAY2) … … 2987 3059 for ac_func in _getb67 GETB67 getb67; do 2988 3060 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 2989 echo "configure: 2990: checking for $ac_func" >&53061 echo "configure:3062: checking for $ac_func" >&5 2990 3062 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 2991 3063 echo $ac_n "(cached) $ac_c" 1>&6 2992 3064 else 2993 3065 cat > conftest.$ac_ext <<EOF 2994 #line 2995"configure"3066 #line 3067 "configure" 2995 3067 #include "confdefs.h" 2996 3068 /* System header to define __stub macros and hopefully few prototypes, … … 3015 3087 ; return 0; } 3016 3088 EOF 3017 if { (eval echo configure:30 18: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3089 if { (eval echo configure:3090: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3018 3090 rm -rf conftest* 3019 3091 eval "ac_cv_func_$ac_func=yes" … … 3042 3114 3043 3115 echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 3044 echo "configure:3 045: checking stack direction for C alloca" >&53116 echo "configure:3117: checking stack direction for C alloca" >&5 3045 3117 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then 3046 3118 echo $ac_n "(cached) $ac_c" 1>&6 … … 3050 3122 else 3051 3123 cat > conftest.$ac_ext <<EOF 3052 #line 3 053"configure"3124 #line 3125 "configure" 3053 3125 #include "confdefs.h" 3054 3126 find_stack_direction () … … 3069 3141 } 3070 3142 EOF 3071 if { (eval echo configure:3 072: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null3143 if { (eval echo configure:3144: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 3072 3144 then 3073 3145 ac_cv_c_stack_direction=1 … … 3094 3166 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 3095 3167 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 3096 echo "configure:3 097: checking for $ac_hdr" >&53168 echo "configure:3169: checking for $ac_hdr" >&5 3097 3169 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 3098 3170 echo $ac_n "(cached) $ac_c" 1>&6 3099 3171 else 3100 3172 cat > conftest.$ac_ext <<EOF 3101 #line 3102 "configure" 3173 #include <sys/types.h> 3174 #line 3175 "configure" 3102 3175 #include "confdefs.h" 3103 3176 #include <$ac_hdr> 3104 3177 EOF 3105 3178 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3106 { (eval echo configure:31 07: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3179 { (eval echo configure:3180: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3107 3180 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3108 3181 if test -z "$ac_err"; then … … 3133 3206 do 3134 3207 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3135 echo "configure:3 136: checking for $ac_func" >&53208 echo "configure:3209: checking for $ac_func" >&5 3136 3209 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3137 3210 echo $ac_n "(cached) $ac_c" 1>&6 3138 3211 else 3139 3212 cat > conftest.$ac_ext <<EOF 3140 #line 3 141"configure"3213 #line 3214 "configure" 3141 3214 #include "confdefs.h" 3142 3215 /* System header to define __stub macros and hopefully few prototypes, … … 3161 3234 ; return 0; } 3162 3235 EOF 3163 if { (eval echo configure:3 164: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3236 if { (eval echo configure:3237: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3164 3237 rm -rf conftest* 3165 3238 eval "ac_cv_func_$ac_func=yes" … … 3186 3259 3187 3260 echo $ac_n "checking for working mmap""... $ac_c" 1>&6 3188 echo "configure:3 189: checking for working mmap" >&53261 echo "configure:3262: checking for working mmap" >&5 3189 3262 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then 3190 3263 echo $ac_n "(cached) $ac_c" 1>&6 … … 3194 3267 else 3195 3268 cat > conftest.$ac_ext <<EOF 3196 #line 3 197"configure"3269 #line 3270 "configure" 3197 3270 #include "confdefs.h" 3198 3271 … … 3334 3407 3335 3408 EOF 3336 if { (eval echo configure:3 337: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null3409 if { (eval echo configure:3410: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 3337 3410 then 3338 3411 ac_cv_func_mmap_fixed_mapped=yes … … 3362 3435 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 3363 3436 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 3364 echo "configure:3 365: checking for $ac_hdr" >&53437 echo "configure:3438: checking for $ac_hdr" >&5 3365 3438 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 3366 3439 echo $ac_n "(cached) $ac_c" 1>&6 3367 3440 else 3368 3441 cat > conftest.$ac_ext <<EOF 3369 #line 3370 "configure" 3442 #include <sys/types.h> 3443 #line 3444 "configure" 3370 3444 #include "confdefs.h" 3371 3445 #include <$ac_hdr> 3372 3446 EOF 3373 3447 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3374 { (eval echo configure:3 375: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3448 { (eval echo configure:3449: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3375 3449 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3376 3450 if test -z "$ac_err"; then … … 3402 3476 do 3403 3477 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3404 echo "configure:34 05: checking for $ac_func" >&53478 echo "configure:3479: checking for $ac_func" >&5 3405 3479 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3406 3480 echo $ac_n "(cached) $ac_c" 1>&6 3407 3481 else 3408 3482 cat > conftest.$ac_ext <<EOF 3409 #line 34 10"configure"3483 #line 3484 "configure" 3410 3484 #include "confdefs.h" 3411 3485 /* System header to define __stub macros and hopefully few prototypes, … … 3430 3504 ; return 0; } 3431 3505 EOF 3432 if { (eval echo configure:3 433: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3506 if { (eval echo configure:3507: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3433 3507 rm -rf conftest* 3434 3508 eval "ac_cv_func_$ac_func=yes" … … 3459 3533 do 3460 3534 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3461 echo "configure:3 462: checking for $ac_func" >&53535 echo "configure:3536: checking for $ac_func" >&5 3462 3536 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3463 3537 echo $ac_n "(cached) $ac_c" 1>&6 3464 3538 else 3465 3539 cat > conftest.$ac_ext <<EOF 3466 #line 3 467"configure"3540 #line 3541 "configure" 3467 3541 #include "confdefs.h" 3468 3542 /* System header to define __stub macros and hopefully few prototypes, … … 3487 3561 ; return 0; } 3488 3562 EOF 3489 if { (eval echo configure:3 490: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3563 if { (eval echo configure:3564: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3490 3564 rm -rf conftest* 3491 3565 eval "ac_cv_func_$ac_func=yes" … … 3521 3595 if test $ac_cv_header_locale_h = yes; then 3522 3596 echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 3523 echo "configure:35 24: checking for LC_MESSAGES" >&53597 echo "configure:3598: checking for LC_MESSAGES" >&5 3524 3598 if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then 3525 3599 echo $ac_n "(cached) $ac_c" 1>&6 3526 3600 else 3527 3601 cat > conftest.$ac_ext <<EOF 3528 #line 3 529"configure"3602 #line 3603 "configure" 3529 3603 #include "confdefs.h" 3530 3604 #include <locale.h> … … 3533 3607 ; return 0; } 3534 3608 EOF 3535 if { (eval echo configure:3 536: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3609 if { (eval echo configure:3610: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3536 3610 rm -rf conftest* 3537 3611 am_cv_val_LC_MESSAGES=yes … … 3554 3628 fi 3555 3629 echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6 3556 echo "configure:3 557: checking whether NLS is requested" >&53630 echo "configure:3631: checking whether NLS is requested" >&5 3557 3631 # Check whether --enable-nls or --disable-nls was given. 3558 3632 if test "${enable_nls+set}" = set; then … … 3574 3648 3575 3649 echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6 3576 echo "configure:3 577: checking whether included gettext is requested" >&53650 echo "configure:3651: checking whether included gettext is requested" >&5 3577 3651 # Check whether --with-included-gettext or --without-included-gettext was given. 3578 3652 if test "${with_included_gettext+set}" = set; then … … 3593 3667 ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'` 3594 3668 echo $ac_n "checking for libintl.h""... $ac_c" 1>&6 3595 echo "configure:3 596: checking for libintl.h" >&53669 echo "configure:3670: checking for libintl.h" >&5 3596 3670 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 3597 3671 echo $ac_n "(cached) $ac_c" 1>&6 3598 3672 else 3599 3673 cat > conftest.$ac_ext <<EOF 3600 #line 3601 "configure" 3674 #include <sys/types.h> 3675 #line 3676 "configure" 3601 3676 #include "confdefs.h" 3602 3677 #include <libintl.h> 3603 3678 EOF 3604 3679 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3605 { (eval echo configure:36 06: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3680 { (eval echo configure:3681: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3606 3681 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3607 3682 if test -z "$ac_err"; then … … 3620 3695 echo "$ac_t""yes" 1>&6 3621 3696 echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6 3622 echo "configure:36 23: checking for gettext in libc" >&53697 echo "configure:3698: checking for gettext in libc" >&5 3623 3698 if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then 3624 3699 echo $ac_n "(cached) $ac_c" 1>&6 3625 3700 else 3626 3701 cat > conftest.$ac_ext <<EOF 3627 #line 3 628"configure"3702 #line 3703 "configure" 3628 3703 #include "confdefs.h" 3629 3704 #include <libintl.h> … … 3632 3707 ; return 0; } 3633 3708 EOF 3634 if { (eval echo configure:3 635: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3709 if { (eval echo configure:3710: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3635 3710 rm -rf conftest* 3636 3711 gt_cv_func_gettext_libc=yes … … 3648 3723 if test "$gt_cv_func_gettext_libc" != "yes"; then 3649 3724 echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6 3650 echo "configure:3 651: checking for bindtextdomain in -lintl" >&53725 echo "configure:3726: checking for bindtextdomain in -lintl" >&5 3651 3726 ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'` 3652 3727 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3656 3731 LIBS="-lintl $LIBS" 3657 3732 cat > conftest.$ac_ext <<EOF 3658 #line 3 659"configure"3733 #line 3734 "configure" 3659 3734 #include "confdefs.h" 3660 3735 /* Override any gcc2 internal prototype to avoid an error. */ … … 3667 3742 ; return 0; } 3668 3743 EOF 3669 if { (eval echo configure:3 670: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3744 if { (eval echo configure:3745: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3670 3745 rm -rf conftest* 3671 3746 eval "ac_cv_lib_$ac_lib_var=yes" … … 3683 3758 echo "$ac_t""yes" 1>&6 3684 3759 echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6 3685 echo "configure:3 686: checking for gettext in libintl" >&53760 echo "configure:3761: checking for gettext in libintl" >&5 3686 3761 if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then 3687 3762 echo $ac_n "(cached) $ac_c" 1>&6 3688 3763 else 3689 3764 cat > conftest.$ac_ext <<EOF 3690 #line 3 691"configure"3765 #line 3766 "configure" 3691 3766 #include "confdefs.h" 3692 3767 … … 3695 3770 ; return 0; } 3696 3771 EOF 3697 if { (eval echo configure:3 698: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3772 if { (eval echo configure:3773: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3698 3773 rm -rf conftest* 3699 3774 gt_cv_func_gettext_libintl=yes … … 3723 3798 set dummy msgfmt; ac_word=$2 3724 3799 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3725 echo "configure:3 726: checking for $ac_word" >&53800 echo "configure:3801: checking for $ac_word" >&5 3726 3801 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then 3727 3802 echo $ac_n "(cached) $ac_c" 1>&6 … … 3732 3807 ;; 3733 3808 *) 3734 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${ IFS}:"3809 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${PATH_IFS}" 3735 3810 for ac_dir in $PATH; do 3736 3811 test -z "$ac_dir" && ac_dir=. … … 3757 3832 do 3758 3833 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3759 echo "configure:3 760: checking for $ac_func" >&53834 echo "configure:3835: checking for $ac_func" >&5 3760 3835 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3761 3836 echo $ac_n "(cached) $ac_c" 1>&6 3762 3837 else 3763 3838 cat > conftest.$ac_ext <<EOF 3764 #line 3 765"configure"3839 #line 3840 "configure" 3765 3840 #include "confdefs.h" 3766 3841 /* System header to define __stub macros and hopefully few prototypes, … … 3785 3860 ; return 0; } 3786 3861 EOF 3787 if { (eval echo configure:3 788: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3862 if { (eval echo configure:3863: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3788 3863 rm -rf conftest* 3789 3864 eval "ac_cv_func_$ac_func=yes" … … 3812 3887 set dummy gmsgfmt; ac_word=$2 3813 3888 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3814 echo "configure:38 15: checking for $ac_word" >&53889 echo "configure:3890: checking for $ac_word" >&5 3815 3890 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then 3816 3891 echo $ac_n "(cached) $ac_c" 1>&6 3817 3892 else 3818 3893 case "$GMSGFMT" in 3819 /* )3894 /* | [a-zA-Z]:*) 3820 3895 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. 3821 3896 ;; 3822 ?:/*) 3897 ?:/*) 3823 3898 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a dos path. 3824 3899 ;; 3825 3900 *) 3826 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3901 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3827 3902 ac_dummy="$PATH" 3828 for ac_dir in $ac_dummy; do 3903 for ac_dir in $ac_dummy; do 3829 3904 test -z "$ac_dir" && ac_dir=. 3830 3905 if test -f $ac_dir/$ac_word; then 3831 3906 ac_cv_path_GMSGFMT="$ac_dir/$ac_word" 3907 break 3908 fi 3909 if test -f $ac_dir/$ac_word$ac_exeext; then 3910 ac_cv_path_GMSGFMT="$ac_dir/$ac_word$ac_exeext" 3832 3911 break 3833 3912 fi … … 3848 3927 set dummy xgettext; ac_word=$2 3849 3928 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3850 echo "configure:3 851: checking for $ac_word" >&53929 echo "configure:3930: checking for $ac_word" >&5 3851 3930 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then 3852 3931 echo $ac_n "(cached) $ac_c" 1>&6 … … 3857 3936 ;; 3858 3937 *) 3859 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${ IFS}:"3938 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${PATH_IFS}" 3860 3939 for ac_dir in $PATH; do 3861 3940 test -z "$ac_dir" && ac_dir=. … … 3880 3959 3881 3960 cat > conftest.$ac_ext <<EOF 3882 #line 3 883"configure"3961 #line 3962 "configure" 3883 3962 #include "confdefs.h" 3884 3963 … … 3888 3967 ; return 0; } 3889 3968 EOF 3890 if { (eval echo configure:3 891: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3969 if { (eval echo configure:3970: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3891 3970 rm -rf conftest* 3892 3971 CATOBJEXT=.gmo … … 3920 3999 set dummy msgfmt; ac_word=$2 3921 4000 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3922 echo "configure: 3923: checking for $ac_word" >&54001 echo "configure:4002: checking for $ac_word" >&5 3923 4002 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then 3924 4003 echo $ac_n "(cached) $ac_c" 1>&6 … … 3929 4008 ;; 3930 4009 *) 3931 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${ IFS}:"4010 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${PATH_IFS}" 3932 4011 for ac_dir in $PATH; do 3933 4012 test -z "$ac_dir" && ac_dir=. … … 3954 4033 set dummy gmsgfmt; ac_word=$2 3955 4034 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3956 echo "configure: 3957: checking for $ac_word" >&54035 echo "configure:4036: checking for $ac_word" >&5 3957 4036 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then 3958 4037 echo $ac_n "(cached) $ac_c" 1>&6 3959 4038 else 3960 4039 case "$GMSGFMT" in 3961 /* )4040 /* | [a-zA-Z]:*) 3962 4041 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. 3963 4042 ;; 3964 ?:/*) 4043 ?:/*) 3965 4044 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a dos path. 3966 4045 ;; 3967 4046 *) 3968 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"4047 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3969 4048 ac_dummy="$PATH" 3970 for ac_dir in $ac_dummy; do 4049 for ac_dir in $ac_dummy; do 3971 4050 test -z "$ac_dir" && ac_dir=. 3972 4051 if test -f $ac_dir/$ac_word; then 3973 4052 ac_cv_path_GMSGFMT="$ac_dir/$ac_word" 4053 break 4054 fi 4055 if test -f $ac_dir/$ac_word$ac_exeext; then 4056 ac_cv_path_GMSGFMT="$ac_dir/$ac_word$ac_exeext" 3974 4057 break 3975 4058 fi … … 3990 4073 set dummy xgettext; ac_word=$2 3991 4074 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3992 echo "configure: 3993: checking for $ac_word" >&54075 echo "configure:4076: checking for $ac_word" >&5 3993 4076 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then 3994 4077 echo $ac_n "(cached) $ac_c" 1>&6 … … 3999 4082 ;; 4000 4083 *) 4001 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${ IFS}:"4084 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${PATH_IFS}" 4002 4085 for ac_dir in $PATH; do 4003 4086 test -z "$ac_dir" && ac_dir=. … … 4080 4163 else 4081 4164 echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6 4082 echo "configure:4 083: checking for catalogs to be installed" >&54165 echo "configure:4166: checking for catalogs to be installed" >&5 4083 4166 NEW_LINGUAS= 4084 4167 for lang in ${LINGUAS=$ALL_LINGUAS}; do … … 4108 4191 ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'` 4109 4192 echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6 4110 echo "configure:41 11: checking for linux/version.h" >&54193 echo "configure:4194: checking for linux/version.h" >&5 4111 4194 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4112 4195 echo $ac_n "(cached) $ac_c" 1>&6 4113 4196 else 4114 4197 cat > conftest.$ac_ext <<EOF 4115 #line 4116 "configure" 4198 #include <sys/types.h> 4199 #line 4200 "configure" 4116 4200 #include "confdefs.h" 4117 4201 #include <linux/version.h> 4118 4202 EOF 4119 4203 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4120 { (eval echo configure:4 121: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4204 { (eval echo configure:4205: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4121 4205 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4122 4206 if test -z "$ac_err"; then … … 4166 4250 test -d po || mkdir po 4167 4251 if test "x$srcdir" != "x."; then 4168 if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then4252 if test "x`echo $srcdir | sed -e 's@.\:/.*@@' -e 's@/.*@@' `" = "x"; then 4169 4253 posrcprefix="$srcdir/" 4170 4254 else … … 4182 4266 4183 4267 4268 4184 4269 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 4185 echo "configure:4 186: checking for executable suffix" >&54270 echo "configure:4271: checking for executable suffix" >&5 4186 4271 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 4187 4272 echo $ac_n "(cached) $ac_c" 1>&6 4188 4273 else 4189 if test "$CYGWIN" = yes || test "$MINGW32" = yes ; then4274 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 4190 4275 ac_cv_exeext=.exe 4191 4276 else … … 4193 4278 echo 'int main () { return 0; }' > conftest.$ac_ext 4194 4279 ac_cv_exeext= 4195 if { (eval echo configure:4 196: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then4280 if { (eval echo configure:4281: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 4196 4281 for file in conftest.*; do 4197 4282 case $file in 4198 *.c | *.o | *.obj | *.ilk | *.pdb) ;;4283 *.c | *.o | *.obj) ;; 4199 4284 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; 4200 4285 esac … … 4219 4304 set dummy $ac_prog; ac_word=$2 4220 4305 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 4221 echo "configure:4 222: checking for $ac_word" >&54306 echo "configure:4307: checking for $ac_word" >&5 4222 4307 if eval "test \"`echo '$''{'ac_cv_prog_YACC'+set}'`\" = set"; then 4223 4308 echo $ac_n "(cached) $ac_c" 1>&6 … … 4226 4311 ac_cv_prog_YACC="$YACC" # Let the user override the test. 4227 4312 else 4228 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"4313 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 4229 4314 ac_dummy="$PATH" 4230 4315 for ac_dir in $ac_dummy; do 4231 4316 test -z "$ac_dir" && ac_dir=. 4232 if test -f $ac_dir/$ac_word; then 4317 if test -f $ac_dir/$ac_word -o \ 4318 -f $ac_dir/$ac_word$ac_exeext ; then 4233 4319 ac_cv_prog_YACC="$ac_prog" 4234 4320 break … … 4255 4341 set dummy $ac_prog; ac_word=$2 4256 4342 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 4257 echo "configure:4 258: checking for $ac_word" >&54343 echo "configure:4344: checking for $ac_word" >&5 4258 4344 if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then 4259 4345 echo $ac_n "(cached) $ac_c" 1>&6 … … 4262 4348 ac_cv_prog_LEX="$LEX" # Let the user override the test. 4263 4349 else 4264 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"4350 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 4265 4351 ac_dummy="$PATH" 4266 4352 for ac_dir in $ac_dummy; do 4267 4353 test -z "$ac_dir" && ac_dir=. 4268 if test -f $ac_dir/$ac_word; then 4354 if test -f $ac_dir/$ac_word -o \ 4355 -f $ac_dir/$ac_word$ac_exeext ; then 4269 4356 ac_cv_prog_LEX="$ac_prog" 4270 4357 break … … 4288 4375 set dummy flex; ac_word=$2 4289 4376 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 4290 echo "configure:4 291: checking for $ac_word" >&54377 echo "configure:4378: checking for $ac_word" >&5 4291 4378 if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then 4292 4379 echo $ac_n "(cached) $ac_c" 1>&6 … … 4295 4382 ac_cv_prog_LEX="$LEX" # Let the user override the test. 4296 4383 else 4297 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"4384 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 4298 4385 ac_dummy="$PATH" 4299 4386 for ac_dir in $ac_dummy; do 4300 4387 test -z "$ac_dir" && ac_dir=. 4301 if test -f $ac_dir/$ac_word; then 4388 if test -f $ac_dir/$ac_word -o \ 4389 -f $ac_dir/$ac_word$ac_exeext ; then 4302 4390 ac_cv_prog_LEX="flex" 4303 4391 break … … 4322 4410 esac 4323 4411 echo $ac_n "checking for yywrap in -l$ac_lib""... $ac_c" 1>&6 4324 echo "configure:4 325: checking for yywrap in -l$ac_lib" >&54412 echo "configure:4413: checking for yywrap in -l$ac_lib" >&5 4325 4413 ac_lib_var=`echo $ac_lib'_'yywrap | sed 'y%./+-%__p_%'` 4326 4414 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 4330 4418 LIBS="-l$ac_lib $LIBS" 4331 4419 cat > conftest.$ac_ext <<EOF 4332 #line 4 333"configure"4420 #line 4421 "configure" 4333 4421 #include "confdefs.h" 4334 4422 /* Override any gcc2 internal prototype to avoid an error. */ … … 4341 4429 ; return 0; } 4342 4430 EOF 4343 if { (eval echo configure:4 344: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4431 if { (eval echo configure:4432: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4344 4432 rm -rf conftest* 4345 4433 eval "ac_cv_lib_$ac_lib_var=yes" … … 4364 4452 4365 4453 echo $ac_n "checking lex output file root""... $ac_c" 1>&6 4366 echo "configure:4 367: checking lex output file root" >&54454 echo "configure:4455: checking lex output file root" >&5 4367 4455 if eval "test \"`echo '$''{'ac_cv_prog_lex_root'+set}'`\" = set"; then 4368 4456 echo $ac_n "(cached) $ac_c" 1>&6 … … 4385 4473 4386 4474 echo $ac_n "checking whether yytext is a pointer""... $ac_c" 1>&6 4387 echo "configure:4 388: checking whether yytext is a pointer" >&54475 echo "configure:4476: checking whether yytext is a pointer" >&5 4388 4476 if eval "test \"`echo '$''{'ac_cv_prog_lex_yytext_pointer'+set}'`\" = set"; then 4389 4477 echo $ac_n "(cached) $ac_c" 1>&6 … … 4397 4485 LIBS="$LIBS $LEXLIB" 4398 4486 cat > conftest.$ac_ext <<EOF 4399 #line 44 00"configure"4487 #line 4488 "configure" 4400 4488 #include "confdefs.h" 4401 4489 `cat $LEX_OUTPUT_ROOT.c` … … 4404 4492 ; return 0; } 4405 4493 EOF 4406 if { (eval echo configure:44 07: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4494 if { (eval echo configure:4495: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4407 4495 rm -rf conftest* 4408 4496 ac_cv_prog_lex_yytext_pointer=yes … … 4427 4515 4428 4516 echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 4429 echo "configure:4 430: checking whether to enable maintainer-specific portions of Makefiles" >&54517 echo "configure:4518: checking whether to enable maintainer-specific portions of Makefiles" >&5 4430 4518 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. 4431 4519 if test "${enable_maintainer_mode+set}" = set; then … … 4461 4549 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 4462 4550 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 4463 echo "configure:4 464: checking for $ac_hdr" >&54551 echo "configure:4552: checking for $ac_hdr" >&5 4464 4552 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4465 4553 echo $ac_n "(cached) $ac_c" 1>&6 4466 4554 else 4467 4555 cat > conftest.$ac_ext <<EOF 4468 #line 4469 "configure" 4556 #include <sys/types.h> 4557 #line 4558 "configure" 4469 4558 #include "confdefs.h" 4470 4559 #include <$ac_hdr> 4471 4560 EOF 4472 4561 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4473 { (eval echo configure:4 474: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4562 { (eval echo configure:4563: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4474 4563 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4475 4564 if test -z "$ac_err"; then … … 4500 4589 do 4501 4590 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 4502 echo "configure:45 03: checking for $ac_func" >&54591 echo "configure:4592: checking for $ac_func" >&5 4503 4592 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 4504 4593 echo $ac_n "(cached) $ac_c" 1>&6 4505 4594 else 4506 4595 cat > conftest.$ac_ext <<EOF 4507 #line 45 08"configure"4596 #line 4597 "configure" 4508 4597 #include "confdefs.h" 4509 4598 /* System header to define __stub macros and hopefully few prototypes, … … 4528 4617 ; return 0; } 4529 4618 EOF 4530 if { (eval echo configure:4 531: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4619 if { (eval echo configure:4620: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4531 4620 rm -rf conftest* 4532 4621 eval "ac_cv_func_$ac_func=yes" … … 4557 4646 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 4558 4647 echo $ac_n "checking for $ac_hdr that defines DIR""... $ac_c" 1>&6 4559 echo "configure:4 560: checking for $ac_hdr that defines DIR" >&54648 echo "configure:4649: checking for $ac_hdr that defines DIR" >&5 4560 4649 if eval "test \"`echo '$''{'ac_cv_header_dirent_$ac_safe'+set}'`\" = set"; then 4561 4650 echo $ac_n "(cached) $ac_c" 1>&6 4562 4651 else 4563 4652 cat > conftest.$ac_ext <<EOF 4564 #line 4 565"configure"4653 #line 4654 "configure" 4565 4654 #include "confdefs.h" 4566 4655 #include <sys/types.h> … … 4570 4659 ; return 0; } 4571 4660 EOF 4572 if { (eval echo configure:4 573: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then4661 if { (eval echo configure:4662: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4573 4662 rm -rf conftest* 4574 4663 eval "ac_cv_header_dirent_$ac_safe=yes" … … 4595 4684 if test $ac_header_dirent = dirent.h; then 4596 4685 echo $ac_n "checking for opendir in -ldir""... $ac_c" 1>&6 4597 echo "configure:4 598: checking for opendir in -ldir" >&54686 echo "configure:4687: checking for opendir in -ldir" >&5 4598 4687 ac_lib_var=`echo dir'_'opendir | sed 'y%./+-%__p_%'` 4599 4688 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 4603 4692 LIBS="-ldir $LIBS" 4604 4693 cat > conftest.$ac_ext <<EOF 4605 #line 46 06"configure"4694 #line 4695 "configure" 4606 4695 #include "confdefs.h" 4607 4696 /* Override any gcc2 internal prototype to avoid an error. */ … … 4614 4703 ; return 0; } 4615 4704 EOF 4616 if { (eval echo configure:4 617: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4705 if { (eval echo configure:4706: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4617 4706 rm -rf conftest* 4618 4707 eval "ac_cv_lib_$ac_lib_var=yes" … … 4636 4725 else 4637 4726 echo $ac_n "checking for opendir in -lx""... $ac_c" 1>&6 4638 echo "configure:4 639: checking for opendir in -lx" >&54727 echo "configure:4728: checking for opendir in -lx" >&5 4639 4728 ac_lib_var=`echo x'_'opendir | sed 'y%./+-%__p_%'` 4640 4729 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 4644 4733 LIBS="-lx $LIBS" 4645 4734 cat > conftest.$ac_ext <<EOF 4646 #line 4 647"configure"4735 #line 4736 "configure" 4647 4736 #include "confdefs.h" 4648 4737 /* Override any gcc2 internal prototype to avoid an error. */ … … 4655 4744 ; return 0; } 4656 4745 EOF 4657 if { (eval echo configure:4 658: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4746 if { (eval echo configure:4747: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4658 4747 rm -rf conftest* 4659 4748 eval "ac_cv_lib_$ac_lib_var=yes" … … 4680 4769 4681 4770 case "${host}" in 4682 *-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-cygwin* | *-*-windows* )4771 *-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-cygwin* | *-*-windows* | *-*-os2*) 4683 4772 cat >> confdefs.h <<\EOF 4684 4773 #define USE_BINARY_FOPEN 1 … … 4688 4777 4689 4778 echo $ac_n "checking whether strstr must be declared""... $ac_c" 1>&6 4690 echo "configure:4 691: checking whether strstr must be declared" >&54779 echo "configure:4780: checking whether strstr must be declared" >&5 4691 4780 if eval "test \"`echo '$''{'bfd_cv_decl_needed_strstr'+set}'`\" = set"; then 4692 4781 echo $ac_n "(cached) $ac_c" 1>&6 4693 4782 else 4694 4783 cat > conftest.$ac_ext <<EOF 4695 #line 4 696"configure"4784 #line 4785 "configure" 4696 4785 #include "confdefs.h" 4697 4786 … … 4714 4803 ; return 0; } 4715 4804 EOF 4716 if { (eval echo configure:4 717: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then4805 if { (eval echo configure:4806: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4717 4806 rm -rf conftest* 4718 4807 bfd_cv_decl_needed_strstr=no … … 4735 4824 4736 4825 echo $ac_n "checking whether free must be declared""... $ac_c" 1>&6 4737 echo "configure:4 738: checking whether free must be declared" >&54826 echo "configure:4827: checking whether free must be declared" >&5 4738 4827 if eval "test \"`echo '$''{'bfd_cv_decl_needed_free'+set}'`\" = set"; then 4739 4828 echo $ac_n "(cached) $ac_c" 1>&6 4740 4829 else 4741 4830 cat > conftest.$ac_ext <<EOF 4742 #line 4 743"configure"4831 #line 4832 "configure" 4743 4832 #include "confdefs.h" 4744 4833 … … 4761 4850 ; return 0; } 4762 4851 EOF 4763 if { (eval echo configure:4 764: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then4852 if { (eval echo configure:4853: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4764 4853 rm -rf conftest* 4765 4854 bfd_cv_decl_needed_free=no … … 4782 4871 4783 4872 echo $ac_n "checking whether sbrk must be declared""... $ac_c" 1>&6 4784 echo "configure:4 785: checking whether sbrk must be declared" >&54873 echo "configure:4874: checking whether sbrk must be declared" >&5 4785 4874 if eval "test \"`echo '$''{'bfd_cv_decl_needed_sbrk'+set}'`\" = set"; then 4786 4875 echo $ac_n "(cached) $ac_c" 1>&6 4787 4876 else 4788 4877 cat > conftest.$ac_ext <<EOF 4789 #line 4 790"configure"4878 #line 4879 "configure" 4790 4879 #include "confdefs.h" 4791 4880 … … 4808 4897 ; return 0; } 4809 4898 EOF 4810 if { (eval echo configure:4 811: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then4899 if { (eval echo configure:4900: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4811 4900 rm -rf conftest* 4812 4901 bfd_cv_decl_needed_sbrk=no … … 4829 4918 4830 4919 echo $ac_n "checking whether getenv must be declared""... $ac_c" 1>&6 4831 echo "configure:4 832: checking whether getenv must be declared" >&54920 echo "configure:4921: checking whether getenv must be declared" >&5 4832 4921 if eval "test \"`echo '$''{'bfd_cv_decl_needed_getenv'+set}'`\" = set"; then 4833 4922 echo $ac_n "(cached) $ac_c" 1>&6 4834 4923 else 4835 4924 cat > conftest.$ac_ext <<EOF 4836 #line 4 837"configure"4925 #line 4926 "configure" 4837 4926 #include "confdefs.h" 4838 4927 … … 4855 4944 ; return 0; } 4856 4945 EOF 4857 if { (eval echo configure:4 858: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then4946 if { (eval echo configure:4947: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4858 4947 rm -rf conftest* 4859 4948 bfd_cv_decl_needed_getenv=no … … 4876 4965 4877 4966 echo $ac_n "checking whether environ must be declared""... $ac_c" 1>&6 4878 echo "configure:4 879: checking whether environ must be declared" >&54967 echo "configure:4968: checking whether environ must be declared" >&5 4879 4968 if eval "test \"`echo '$''{'bfd_cv_decl_needed_environ'+set}'`\" = set"; then 4880 4969 echo $ac_n "(cached) $ac_c" 1>&6 4881 4970 else 4882 4971 cat > conftest.$ac_ext <<EOF 4883 #line 4 884"configure"4972 #line 4973 "configure" 4884 4973 #include "confdefs.h" 4885 4974 … … 4902 4991 ; return 0; } 4903 4992 EOF 4904 if { (eval echo configure:49 05: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then4993 if { (eval echo configure:4994: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4905 4994 rm -rf conftest* 4906 4995 bfd_cv_decl_needed_environ=no … … 4930 5019 # support string concatenation. 4931 5020 echo $ac_n "checking whether ANSI C string concatenation works""... $ac_c" 1>&6 4932 echo "configure: 4933: checking whether ANSI C string concatenation works" >&55021 echo "configure:5022: checking whether ANSI C string concatenation works" >&5 4933 5022 if eval "test \"`echo '$''{'ld_cv_string_concatenation'+set}'`\" = set"; then 4934 5023 echo $ac_n "(cached) $ac_c" 1>&6 4935 5024 else 4936 5025 cat > conftest.$ac_ext <<EOF 4937 #line 4938"configure"5026 #line 5027 "configure" 4938 5027 #include "confdefs.h" 4939 5028 … … 4942 5031 ; return 0; } 4943 5032 EOF 4944 if { (eval echo configure: 4945: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then5033 if { (eval echo configure:5034: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4945 5034 rm -rf conftest* 4946 5035 ld_cv_string_concatenation=yes … … 5143 5232 # Run this file to recreate the current configuration. 5144 5233 # This directory was configured as follows, 5234 EOF 5235 echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS 5236 cat >> $CONFIG_STATUS <<EOF 5145 5237 # on host `(hostname || uname -n) 2>/dev/null | sed 1q`: 5146 5238 # … … 5168 5260 ac_given_srcdir=$srcdir 5169 5261 ac_given_INSTALL="$INSTALL" 5262 PATHIFS="$PATH_IFS" 5170 5263 5171 5264 trap 'rm -fr `echo "Makefile po/Makefile.in:po/Make-in config.h:config.in" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 … … 5178 5271 $ac_vpsub 5179 5272 $extrasub 5273 s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g 5180 5274 s%@SHELL@%$SHELL%g 5181 5275 s%@CFLAGS@%$CFLAGS%g … … 5201 5295 s%@infodir@%$infodir%g 5202 5296 s%@mandir@%$mandir%g 5297 s%@PATH_IFS@%$PATH_IFS%g 5298 s%@EXEEXT@%$EXEEXT%g 5203 5299 s%@host@%$host%g 5204 5300 s%@host_alias@%$host_alias%g … … 5230 5326 s%@LN_S@%$LN_S%g 5231 5327 s%@OBJEXT@%$OBJEXT%g 5232 s%@EXEEXT@%$EXEEXT%g5233 5328 s%@RANLIB@%$RANLIB%g 5234 5329 s%@STRIP@%$STRIP%g … … 5346 5441 if test -z "$ac_dots"; then top_srcdir=. 5347 5442 else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; 5348 /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 5443 /* | [A-Za-z]:*) 5444 srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 5349 5445 *) # Relative path. 5350 5446 srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" … … 5353 5449 5354 5450 case "$ac_given_INSTALL" in 5355 [/$]* ) INSTALL="$ac_given_INSTALL" ;;5451 [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;; 5356 5452 *) INSTALL="$ac_dots$ac_given_INSTALL" ;; 5357 5453 esac … … 5366 5462 esac 5367 5463 5368 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s% :% $ac_given_srcdir/%g"`5464 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%$PATHIFS% $ac_given_srcdir/%g"` 5369 5465 sed -e "$ac_comsub 5370 5466 s%@configure_input@%$configure_input%g … … 5413 5509 5414 5510 rm -f conftest.frag conftest.in conftest.out 5415 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 5511 # kso the other way around might work better with drive letters and such. 5512 # ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 5513 ac_file_inputs=`echo $ac_file_in|sed -e "s%:% $ac_given_srcdir/%g" -e "s%^%$ac_given_srcdir/%" ` 5416 5514 cat $ac_file_inputs > conftest.in 5417 5515 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.