Changeset 101 for trunk/src/binutils/gas/configure
- Timestamp:
- May 7, 2003, 5:35:03 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/binutils/gas/configure
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r100 r101 56 56 silent= 57 57 site= 58 sitefile=59 58 srcdir= 60 59 target=NONE … … 171 170 --no-create do not create output files 172 171 --quiet, --silent do not print \`checking...' messages 173 --site-file=FILE use FILE as the site file174 172 --version print the version of autoconf that created configure 175 173 Directory and file names: … … 342 340 site="$ac_optarg" ;; 343 341 344 -site-file | --site-file | --site-fil | --site-fi | --site-f)345 ac_prev=sitefile ;;346 -site-file=* | --site-file=* | --site-fil=* | --site-fi=* | --site-f=*)347 sitefile="$ac_optarg" ;;348 349 342 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) 350 343 ac_prev=srcdir ;; … … 512 505 513 506 # Prefer explicitly selected file to automatically selected ones. 514 if test -z "$sitefile"; then 515 if test -z "$CONFIG_SITE"; then 516 if test "x$prefix" != xNONE; then 517 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" 518 else 519 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" 520 fi 507 if test -z "$CONFIG_SITE"; then 508 if test "x$prefix" != xNONE; then 509 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" 510 else 511 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" 521 512 fi 522 else523 CONFIG_SITE="$sitefile"524 513 fi 525 514 for ac_site_file in $CONFIG_SITE; do … … 559 548 fi 560 549 550 echo $ac_n "checking for path separator""... $ac_c" 1>&6 551 echo "configure:552: checking for path separator" >&5 552 # Filter path to get backslahes into forwardslashes 553 case "`uname -s 2> /dev/null`" in 554 OS/2) 555 PATH=`echo -E "$PATH" | sed 's+\\\\+/+g'` 556 PATH_IFS=';' 557 ;; 558 *) 559 PATH_IFS=':' 560 ;; 561 esac 562 echo "$ac_t""${PATH_IFS}" 1>&6 563 561 564 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 562 echo "configure:56 3: checking for Cygwin environment" >&5565 echo "configure:566: checking for Cygwin environment" >&5 563 566 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then 564 567 echo $ac_n "(cached) $ac_c" 1>&6 565 568 else 566 569 cat > conftest.$ac_ext <<EOF 567 #line 5 68"configure"570 #line 571 "configure" 568 571 #include "confdefs.h" 569 572 … … 576 579 ; return 0; } 577 580 EOF 578 if { (eval echo configure:5 79: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then581 if { (eval echo configure:582: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 579 582 rm -rf conftest* 580 583 ac_cv_cygwin=yes … … 593 596 test "$ac_cv_cygwin" = yes && CYGWIN=yes 594 597 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 595 echo "configure:59 6: checking for mingw32 environment" >&5598 echo "configure:599: checking for mingw32 environment" >&5 596 599 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then 597 600 echo $ac_n "(cached) $ac_c" 1>&6 598 601 else 599 602 cat > conftest.$ac_ext <<EOF 600 #line 60 1"configure"603 #line 604 "configure" 601 604 #include "confdefs.h" 602 605 … … 605 608 ; return 0; } 606 609 EOF 607 if { (eval echo configure:6 08: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then610 if { (eval echo configure:611: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 608 611 rm -rf conftest* 609 612 ac_cv_mingw32=yes … … 621 624 MINGW32= 622 625 test "$ac_cv_mingw32" = yes && MINGW32=yes 626 echo $ac_n "checking for EMX/OS2 environment""... $ac_c" 1>&6 627 echo "configure:628: checking for EMX/OS2 environment" >&5 628 if eval "test \"`echo '$''{'ac_cv_emxos2'+set}'`\" = set"; then 629 echo $ac_n "(cached) $ac_c" 1>&6 630 else 631 : ${CC=gcc.exe} 632 cat > conftest.$ac_ext <<EOF 633 #line 634 "configure" 634 #include "confdefs.h" 635 636 int main() { 637 return __EMX__; 638 ; return 0; } 639 EOF 640 if { (eval echo configure:641: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 641 rm -rf conftest* 642 ac_cv_emxos2=yes 643 else 644 echo "configure: failed program was:" >&5 645 cat conftest.$ac_ext >&5 646 rm -rf conftest* 647 ac_cv_emxos2=no 648 fi 649 rm -f conftest* 650 rm -f conftest* 651 fi 652 653 echo "$ac_t""$ac_cv_emxos2" 1>&6 654 if eval "test \"`echo '$''{'ac_cv_libpre'+set}'`\" = set"; then 655 echo $ac_n "(cached) $ac_c" 1>&6 656 else 657 if test "$ac_cv_emxos2" = yes ; then 658 ac_cv_libpre= 659 else 660 ac_cv_libpre=lib 661 fi 662 663 fi 664 665 EMXOS2= 666 test "$ac_cv_emxos2" = yes && EMXOS2=yes 667 668 669 670 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 671 echo "configure:672: checking for executable suffix" >&5 672 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 673 echo $ac_n "(cached) $ac_c" 1>&6 674 else 675 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 676 ac_cv_exeext=.exe 677 else 678 rm -f conftest* 679 echo 'int main () { return 0; }' > conftest.$ac_ext 680 ac_cv_exeext= 681 if { (eval echo configure:682: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 682 for file in conftest.*; do 683 case $file in 684 *.c | *.o | *.obj) ;; 685 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; 686 esac 687 done 688 else 689 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; } 690 fi 691 rm -f conftest* 692 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no 693 fi 694 fi 695 696 EXEEXT="" 697 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} 698 echo "$ac_t""${ac_cv_exeext}" 1>&6 699 ac_exeext=$EXEEXT 700 623 701 624 702 … … 670 748 671 749 echo $ac_n "checking host system type""... $ac_c" 1>&6 672 echo "configure: 673: checking host system type" >&5750 echo "configure:751: checking host system type" >&5 673 751 674 752 host_alias=$host … … 691 769 692 770 echo $ac_n "checking target system type""... $ac_c" 1>&6 693 echo "configure: 694: checking target system type" >&5771 echo "configure:772: checking target system type" >&5 694 772 695 773 target_alias=$target … … 709 787 710 788 echo $ac_n "checking build system type""... $ac_c" 1>&6 711 echo "configure:7 12: checking build system type" >&5789 echo "configure:790: checking build system type" >&5 712 790 713 791 build_alias=$build … … 734 812 set dummy gcc; ac_word=$2 735 813 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 736 echo "configure: 737: checking for $ac_word" >&5814 echo "configure:815: checking for $ac_word" >&5 737 815 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 738 816 echo $ac_n "(cached) $ac_c" 1>&6 … … 741 819 ac_cv_prog_CC="$CC" # Let the user override the test. 742 820 else 743 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"821 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 744 822 ac_dummy="$PATH" 745 823 for ac_dir in $ac_dummy; do 746 824 test -z "$ac_dir" && ac_dir=. 747 if test -f $ac_dir/$ac_word; then 825 if test -f $ac_dir/$ac_word -o \ 826 -f $ac_dir/$ac_word$ac_exeext ; then 748 827 ac_cv_prog_CC="gcc" 749 828 break … … 764 843 set dummy cc; ac_word=$2 765 844 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 766 echo "configure: 767: checking for $ac_word" >&5845 echo "configure:846: checking for $ac_word" >&5 767 846 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 768 847 echo $ac_n "(cached) $ac_c" 1>&6 … … 771 850 ac_cv_prog_CC="$CC" # Let the user override the test. 772 851 else 773 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"852 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 774 853 ac_prog_rejected=no 775 854 ac_dummy="$PATH" 776 855 for ac_dir in $ac_dummy; do 777 856 test -z "$ac_dir" && ac_dir=. 778 if test -f $ac_dir/$ac_word; then 779 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 857 if test -f $ac_dir/$ac_word -o \ 858 -f $ac_dir/$ac_word$ac_exeext ; then 859 if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \ 860 "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then 780 861 ac_prog_rejected=yes 781 862 continue … … 815 896 set dummy cl; ac_word=$2 816 897 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 817 echo "configure:8 18: checking for $ac_word" >&5898 echo "configure:899: checking for $ac_word" >&5 818 899 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 819 900 echo $ac_n "(cached) $ac_c" 1>&6 … … 822 903 ac_cv_prog_CC="$CC" # Let the user override the test. 823 904 else 824 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"905 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 825 906 ac_dummy="$PATH" 826 907 for ac_dir in $ac_dummy; do 827 908 test -z "$ac_dir" && ac_dir=. 828 if test -f $ac_dir/$ac_word; then 909 if test -f $ac_dir/$ac_word -o \ 910 -f $ac_dir/$ac_word$ac_exeext ; then 829 911 ac_cv_prog_CC="cl" 830 912 break … … 847 929 848 930 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 849 echo "configure: 850: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5931 echo "configure:932: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 850 932 851 933 ac_ext=c … … 858 940 cat > conftest.$ac_ext << EOF 859 941 860 #line 861"configure"942 #line 943 "configure" 861 943 #include "confdefs.h" 862 944 863 945 main(){return(0);} 864 946 EOF 865 if { (eval echo configure: 866: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then947 if { (eval echo configure:948: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 866 948 ac_cv_prog_cc_works=yes 867 949 # If we can't run a trivial program, we are probably using a cross compiler. … … 889 971 fi 890 972 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 891 echo "configure: 892: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5973 echo "configure:974: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 892 974 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 893 975 cross_compiling=$ac_cv_prog_cc_cross 894 976 895 977 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 896 echo "configure: 897: checking whether we are using GNU C" >&5978 echo "configure:979: checking whether we are using GNU C" >&5 897 979 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 898 980 echo $ac_n "(cached) $ac_c" 1>&6 … … 903 985 #endif 904 986 EOF 905 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:9 06: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then987 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:988: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 906 988 ac_cv_prog_gcc=yes 907 989 else … … 922 1004 CFLAGS= 923 1005 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 924 echo "configure: 925: checking whether ${CC-cc} accepts -g" >&51006 echo "configure:1007: checking whether ${CC-cc} accepts -g" >&5 925 1007 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 926 1008 echo $ac_n "(cached) $ac_c" 1>&6 … … 954 1036 955 1037 echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&6 956 echo "configure: 957: checking for POSIXized ISC" >&51038 echo "configure:1039: checking for POSIXized ISC" >&5 957 1039 if test -d /etc/conf/kconfig.d && 958 1040 grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1 … … 988 1070 # ./install, which can be erroneously created by make from ./install.sh. 989 1071 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 990 echo "configure: 991: checking for a BSD compatible install" >&51072 echo "configure:1073: checking for a BSD compatible install" >&5 991 1073 if test -z "$INSTALL"; then 992 1074 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 993 1075 echo $ac_n "(cached) $ac_c" 1>&6 994 1076 else 995 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"1077 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 996 1078 for ac_dir in $PATH; do 997 1079 # Account for people who put trailing slashes in PATH elements. 998 1080 case "$ac_dir/" in 999 1081 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; 1082 # We reject the install program from OS/2 or W3.1 1083 */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;; 1000 1084 *) 1001 1085 # OSF1 and SCO ODT 3.0 have their own names for install. … … 1003 1087 # by default. 1004 1088 for ac_prog in ginstall scoinst install; do 1005 if test -f $ac_dir/$ac_prog ; then1089 if test -f $ac_dir/$ac_prog$ac_exeext; then 1006 1090 if test $ac_prog = install && 1007 1091 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 1009 1093 : 1010 1094 else 1011 ac_cv_path_install="$ac_dir/$ac_prog -c"1095 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 1012 1096 break 2 1013 1097 fi … … 1041 1125 1042 1126 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 1043 echo "configure:1 044: checking whether build environment is sane" >&51127 echo "configure:1128: checking whether build environment is sane" >&5 1044 1128 # Just in case 1045 1129 sleep 1 … … 1098 1182 1099 1183 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 1100 echo "configure:11 01: checking whether ${MAKE-make} sets \${MAKE}" >&51184 echo "configure:1185: checking whether ${MAKE-make} sets \${MAKE}" >&5 1101 1185 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 1102 1186 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 1144 1228 missing_dir=`cd $ac_aux_dir && pwd` 1145 1229 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 1146 echo "configure:1 147: checking for working aclocal" >&51230 echo "configure:1231: checking for working aclocal" >&5 1147 1231 # Run test in a subshell; some versions of sh will print an error if 1148 1232 # an executable is not found, even if stderr is redirected. … … 1157 1241 1158 1242 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 1159 echo "configure:1 160: checking for working autoconf" >&51243 echo "configure:1244: checking for working autoconf" >&5 1160 1244 # Run test in a subshell; some versions of sh will print an error if 1161 1245 # an executable is not found, even if stderr is redirected. … … 1170 1254 1171 1255 echo $ac_n "checking for working automake""... $ac_c" 1>&6 1172 echo "configure:1 173: checking for working automake" >&51256 echo "configure:1257: checking for working automake" >&5 1173 1257 # Run test in a subshell; some versions of sh will print an error if 1174 1258 # an executable is not found, even if stderr is redirected. … … 1183 1267 1184 1268 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 1185 echo "configure:1 186: checking for working autoheader" >&51269 echo "configure:1270: checking for working autoheader" >&5 1186 1270 # Run test in a subshell; some versions of sh will print an error if 1187 1271 # an executable is not found, even if stderr is redirected. … … 1196 1280 1197 1281 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 1198 echo "configure:1 199: checking for working makeinfo" >&51282 echo "configure:1283: checking for working makeinfo" >&5 1199 1283 # Run test in a subshell; some versions of sh will print an error if 1200 1284 # an executable is not found, even if stderr is redirected. … … 1291 1375 # Check if gcc -print-prog-name=ld gives a path. 1292 1376 echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 1293 echo "configure:1 294: checking for ld used by GCC" >&51377 echo "configure:1378: checking for ld used by GCC" >&5 1294 1378 case $host in 1295 1379 *-*-mingw*) … … 1321 1405 elif test "$with_gnu_ld" = yes; then 1322 1406 echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 1323 echo "configure:1 324: checking for GNU ld" >&51407 echo "configure:1408: checking for GNU ld" >&5 1324 1408 else 1325 1409 echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 1326 echo "configure:1 327: checking for non-GNU ld" >&51410 echo "configure:1411: checking for non-GNU ld" >&5 1327 1411 fi 1328 1412 if eval "test \"`echo '$''{'ac_cv_path_LD'+set}'`\" = set"; then … … 1359 1443 test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } 1360 1444 echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 1361 echo "configure:1 362: checking if the linker ($LD) is GNU ld" >&51445 echo "configure:1446: checking if the linker ($LD) is GNU ld" >&5 1362 1446 if eval "test \"`echo '$''{'ac_cv_prog_gnu_ld'+set}'`\" = set"; then 1363 1447 echo $ac_n "(cached) $ac_c" 1>&6 … … 1376 1460 1377 1461 echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6 1378 echo "configure:1 379: checking for $LD option to reload object files" >&51462 echo "configure:1463: checking for $LD option to reload object files" >&5 1379 1463 if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then 1380 1464 echo $ac_n "(cached) $ac_c" 1>&6 … … 1388 1472 1389 1473 echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 1390 echo "configure:1 391: checking for BSD-compatible nm" >&51474 echo "configure:1475: checking for BSD-compatible nm" >&5 1391 1475 if eval "test \"`echo '$''{'ac_cv_path_NM'+set}'`\" = set"; then 1392 1476 echo $ac_n "(cached) $ac_c" 1>&6 … … 1426 1510 1427 1511 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 1428 echo "configure:1 429: checking whether ln -s works" >&51512 echo "configure:1513: checking whether ln -s works" >&5 1429 1513 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then 1430 1514 echo $ac_n "(cached) $ac_c" 1>&6 … … 1436 1520 ac_cv_prog_LN_S="ln -s" 1437 1521 else 1438 ac_cv_prog_LN_S=ln 1439 fi 1522 echo A > conftestdata; 1523 if ln conftestdata conftestdata2 2>/dev/null; then 1524 ac_cv_prog_LN_S=ln 1525 else 1526 ac_cv_prog_LN_S=cp 1527 fi 1528 fi 1529 rm -f conftestdata* 1440 1530 fi 1441 1531 LN_S="$ac_cv_prog_LN_S" … … 1447 1537 1448 1538 echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6 1449 echo "configure:1 450: checking how to recognise dependant libraries" >&51539 echo "configure:1540: checking how to recognise dependant libraries" >&5 1450 1540 if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then 1451 1541 echo $ac_n "(cached) $ac_c" 1>&6 … … 1590 1680 1591 1681 echo $ac_n "checking for object suffix""... $ac_c" 1>&6 1592 echo "configure:1 593: checking for object suffix" >&51682 echo "configure:1683: checking for object suffix" >&5 1593 1683 if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then 1594 1684 echo $ac_n "(cached) $ac_c" 1>&6 … … 1596 1686 rm -f conftest* 1597 1687 echo 'int i = 1;' > conftest.$ac_ext 1598 if { (eval echo configure:1 599: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1688 if { (eval echo configure:1689: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1599 1689 for ac_file in conftest.*; do 1600 1690 case $ac_file in … … 1613 1703 ac_objext=$ac_cv_objext 1614 1704 1615 1616 1617 echo $ac_n "checking for executable suffix""... $ac_c" 1>&61618 echo "configure:1619: checking for executable suffix" >&51619 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then1620 echo $ac_n "(cached) $ac_c" 1>&61621 else1622 if test "$CYGWIN" = yes || test "$MINGW32" = yes; then1623 ac_cv_exeext=.exe1624 else1625 rm -f conftest*1626 echo 'int main () { return 0; }' > conftest.$ac_ext1627 ac_cv_exeext=1628 if { (eval echo configure:1629: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then1629 for file in conftest.*; do1630 case $file in1631 *.c | *.o | *.obj | *.ilk | *.pdb) ;;1632 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;1633 esac1634 done1635 else1636 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; }1637 fi1638 rm -f conftest*1639 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no1640 fi1641 fi1642 1643 EXEEXT=""1644 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext}1645 echo "$ac_t""${ac_cv_exeext}" 1>&61646 ac_exeext=$EXEEXT1647 1648 1705 if test $host != $build; then 1649 1706 ac_tool_prefix=${host_alias}- … … 1659 1716 if test "$file_magic_cmd" = '$MAGIC_CMD'; then 1660 1717 echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6 1661 echo "configure:1 662: checking for ${ac_tool_prefix}file" >&51718 echo "configure:1719: checking for ${ac_tool_prefix}file" >&5 1662 1719 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 1663 1720 echo $ac_n "(cached) $ac_c" 1>&6 … … 1721 1778 if test -n "$ac_tool_prefix"; then 1722 1779 echo $ac_n "checking for file""... $ac_c" 1>&6 1723 echo "configure:17 24: checking for file" >&51780 echo "configure:1781: checking for file" >&5 1724 1781 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 1725 1782 echo $ac_n "(cached) $ac_c" 1>&6 … … 1792 1849 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 1793 1850 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1794 echo "configure:1 795: checking for $ac_word" >&51851 echo "configure:1852: checking for $ac_word" >&5 1795 1852 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1796 1853 echo $ac_n "(cached) $ac_c" 1>&6 … … 1799 1856 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1800 1857 else 1801 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1858 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1802 1859 ac_dummy="$PATH" 1803 1860 for ac_dir in $ac_dummy; do 1804 1861 test -z "$ac_dir" && ac_dir=. 1805 if test -f $ac_dir/$ac_word; then 1862 if test -f $ac_dir/$ac_word -o \ 1863 -f $ac_dir/$ac_word$ac_exeext ; then 1806 1864 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 1807 1865 break … … 1824 1882 set dummy ranlib; ac_word=$2 1825 1883 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1826 echo "configure:18 27: checking for $ac_word" >&51884 echo "configure:1885: checking for $ac_word" >&5 1827 1885 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1828 1886 echo $ac_n "(cached) $ac_c" 1>&6 … … 1831 1889 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1832 1890 else 1833 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1891 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1834 1892 ac_dummy="$PATH" 1835 1893 for ac_dir in $ac_dummy; do 1836 1894 test -z "$ac_dir" && ac_dir=. 1837 if test -f $ac_dir/$ac_word; then 1895 if test -f $ac_dir/$ac_word -o \ 1896 -f $ac_dir/$ac_word$ac_exeext ; then 1838 1897 ac_cv_prog_RANLIB="ranlib" 1839 1898 break … … 1859 1918 set dummy ${ac_tool_prefix}strip; ac_word=$2 1860 1919 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1861 echo "configure:1 862: checking for $ac_word" >&51920 echo "configure:1921: checking for $ac_word" >&5 1862 1921 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 1863 1922 echo $ac_n "(cached) $ac_c" 1>&6 … … 1866 1925 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 1867 1926 else 1868 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1927 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1869 1928 ac_dummy="$PATH" 1870 1929 for ac_dir in $ac_dummy; do 1871 1930 test -z "$ac_dir" && ac_dir=. 1872 if test -f $ac_dir/$ac_word; then 1931 if test -f $ac_dir/$ac_word -o \ 1932 -f $ac_dir/$ac_word$ac_exeext ; then 1873 1933 ac_cv_prog_STRIP="${ac_tool_prefix}strip" 1874 1934 break … … 1891 1951 set dummy strip; ac_word=$2 1892 1952 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1893 echo "configure:1 894: checking for $ac_word" >&51953 echo "configure:1954: checking for $ac_word" >&5 1894 1954 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 1895 1955 echo $ac_n "(cached) $ac_c" 1>&6 … … 1898 1958 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 1899 1959 else 1900 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1960 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1901 1961 ac_dummy="$PATH" 1902 1962 for ac_dir in $ac_dummy; do 1903 1963 test -z "$ac_dir" && ac_dir=. 1904 if test -f $ac_dir/$ac_word; then 1964 if test -f $ac_dir/$ac_word -o \ 1965 -f $ac_dir/$ac_word$ac_exeext ; then 1905 1966 ac_cv_prog_STRIP="strip" 1906 1967 break … … 1958 2019 *-*-irix6*) 1959 2020 # Find out which ABI we are using. 1960 echo '#line 1961"configure"' > conftest.$ac_ext1961 if { (eval echo configure: 1962: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2021 echo '#line 2022 "configure"' > conftest.$ac_ext 2022 if { (eval echo configure:2023: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1962 2023 case "`/usr/bin/file conftest.o`" in 1963 2024 *32-bit*) … … 1980 2041 CFLAGS="$CFLAGS -belf" 1981 2042 echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 1982 echo "configure: 1983: checking whether the C compiler needs -belf" >&52043 echo "configure:2044: checking whether the C compiler needs -belf" >&5 1983 2044 if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then 1984 2045 echo $ac_n "(cached) $ac_c" 1>&6 … … 1993 2054 1994 2055 cat > conftest.$ac_ext <<EOF 1995 #line 1996"configure"2056 #line 2057 "configure" 1996 2057 #include "confdefs.h" 1997 2058 … … 2000 2061 ; return 0; } 2001 2062 EOF 2002 if { (eval echo configure:20 03: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2063 if { (eval echo configure:2064: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2003 2064 rm -rf conftest* 2004 2065 lt_cv_cc_needs_belf=yes … … 2399 2460 i386-*-mingw32*) fmt=coff em=pe bfd_gas=yes ;; 2400 2461 i386-*-*nt*) fmt=coff em=pe bfd_gas=yes ;; 2462 i386-*-os2*) fmt=aout em=emx bfd_gas=yes ;; 2401 2463 i386-*-vxworks*) fmt=aout ;; 2402 2464 i386-*-chaos) fmt=elf ;; … … 3071 3133 set dummy gcc; ac_word=$2 3072 3134 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3073 echo "configure:3 074: checking for $ac_word" >&53135 echo "configure:3136: checking for $ac_word" >&5 3074 3136 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 3075 3137 echo $ac_n "(cached) $ac_c" 1>&6 … … 3078 3140 ac_cv_prog_CC="$CC" # Let the user override the test. 3079 3141 else 3080 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3142 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3081 3143 ac_dummy="$PATH" 3082 3144 for ac_dir in $ac_dummy; do 3083 3145 test -z "$ac_dir" && ac_dir=. 3084 if test -f $ac_dir/$ac_word; then 3146 if test -f $ac_dir/$ac_word -o \ 3147 -f $ac_dir/$ac_word$ac_exeext ; then 3085 3148 ac_cv_prog_CC="gcc" 3086 3149 break … … 3101 3164 set dummy cc; ac_word=$2 3102 3165 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3103 echo "configure:31 04: checking for $ac_word" >&53166 echo "configure:3167: checking for $ac_word" >&5 3104 3167 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 3105 3168 echo $ac_n "(cached) $ac_c" 1>&6 … … 3108 3171 ac_cv_prog_CC="$CC" # Let the user override the test. 3109 3172 else 3110 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3173 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3111 3174 ac_prog_rejected=no 3112 3175 ac_dummy="$PATH" 3113 3176 for ac_dir in $ac_dummy; do 3114 3177 test -z "$ac_dir" && ac_dir=. 3115 if test -f $ac_dir/$ac_word; then 3116 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 3178 if test -f $ac_dir/$ac_word -o \ 3179 -f $ac_dir/$ac_word$ac_exeext ; then 3180 if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \ 3181 "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then 3117 3182 ac_prog_rejected=yes 3118 3183 continue … … 3152 3217 set dummy cl; ac_word=$2 3153 3218 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3154 echo "configure:3 155: checking for $ac_word" >&53219 echo "configure:3220: checking for $ac_word" >&5 3155 3220 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 3156 3221 echo $ac_n "(cached) $ac_c" 1>&6 … … 3159 3224 ac_cv_prog_CC="$CC" # Let the user override the test. 3160 3225 else 3161 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3226 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3162 3227 ac_dummy="$PATH" 3163 3228 for ac_dir in $ac_dummy; do 3164 3229 test -z "$ac_dir" && ac_dir=. 3165 if test -f $ac_dir/$ac_word; then 3230 if test -f $ac_dir/$ac_word -o \ 3231 -f $ac_dir/$ac_word$ac_exeext ; then 3166 3232 ac_cv_prog_CC="cl" 3167 3233 break … … 3184 3250 3185 3251 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 3186 echo "configure:3 187: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&53252 echo "configure:3253: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 3187 3253 3188 3254 ac_ext=c … … 3195 3261 cat > conftest.$ac_ext << EOF 3196 3262 3197 #line 3 198"configure"3263 #line 3264 "configure" 3198 3264 #include "confdefs.h" 3199 3265 3200 3266 main(){return(0);} 3201 3267 EOF 3202 if { (eval echo configure:32 03: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3268 if { (eval echo configure:3269: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3203 3269 ac_cv_prog_cc_works=yes 3204 3270 # If we can't run a trivial program, we are probably using a cross compiler. … … 3226 3292 fi 3227 3293 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 3228 echo "configure:32 29: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&53294 echo "configure:3295: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 3229 3295 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 3230 3296 cross_compiling=$ac_cv_prog_cc_cross 3231 3297 3232 3298 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 3233 echo "configure:3 234: checking whether we are using GNU C" >&53299 echo "configure:3300: checking whether we are using GNU C" >&5 3234 3300 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 3235 3301 echo $ac_n "(cached) $ac_c" 1>&6 … … 3240 3306 #endif 3241 3307 EOF 3242 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:3 243: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then3308 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:3309: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 3243 3309 ac_cv_prog_gcc=yes 3244 3310 else … … 3259 3325 CFLAGS= 3260 3326 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 3261 echo "configure:3 262: checking whether ${CC-cc} accepts -g" >&53327 echo "configure:3328: checking whether ${CC-cc} accepts -g" >&5 3262 3328 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 3263 3329 echo $ac_n "(cached) $ac_c" 1>&6 … … 3296 3362 set dummy $ac_prog; ac_word=$2 3297 3363 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3298 echo "configure:3 299: checking for $ac_word" >&53364 echo "configure:3365: checking for $ac_word" >&5 3299 3365 if eval "test \"`echo '$''{'ac_cv_prog_YACC'+set}'`\" = set"; then 3300 3366 echo $ac_n "(cached) $ac_c" 1>&6 … … 3303 3369 ac_cv_prog_YACC="$YACC" # Let the user override the test. 3304 3370 else 3305 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3371 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3306 3372 ac_dummy="$PATH" 3307 3373 for ac_dir in $ac_dummy; do 3308 3374 test -z "$ac_dir" && ac_dir=. 3309 if test -f $ac_dir/$ac_word; then 3375 if test -f $ac_dir/$ac_word -o \ 3376 -f $ac_dir/$ac_word$ac_exeext ; then 3310 3377 ac_cv_prog_YACC="$ac_prog" 3311 3378 break … … 3327 3394 3328 3395 echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 3329 echo "configure:33 30: checking how to run the C preprocessor" >&53396 echo "configure:3397: checking how to run the C preprocessor" >&5 3330 3397 # On Suns, sometimes $CPP names a directory. 3331 3398 if test -n "$CPP" && test -d "$CPP"; then … … 3342 3409 # not just through cpp. 3343 3410 cat > conftest.$ac_ext <<EOF 3344 #line 3345 "configure" 3411 #include <sys/types.h> 3412 #line 3413 "configure" 3345 3413 #include "confdefs.h" 3346 3414 #include <assert.h> … … 3348 3416 EOF 3349 3417 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3350 { (eval echo configure:3 351: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3418 { (eval echo configure:3419: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3351 3419 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3352 3420 if test -z "$ac_err"; then … … 3359 3427 CPP="${CC-cc} -E -traditional-cpp" 3360 3428 cat > conftest.$ac_ext <<EOF 3361 #line 3362 "configure" 3429 #include <sys/types.h> 3430 #line 3431 "configure" 3362 3431 #include "confdefs.h" 3363 3432 #include <assert.h> … … 3365 3434 EOF 3366 3435 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3367 { (eval echo configure:3 368: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3436 { (eval echo configure:3437: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3368 3437 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3369 3438 if test -z "$ac_err"; then … … 3376 3445 CPP="${CC-cc} -nologo -E" 3377 3446 cat > conftest.$ac_ext <<EOF 3378 #line 3379 "configure" 3447 #include <sys/types.h> 3448 #line 3449 "configure" 3379 3449 #include "confdefs.h" 3380 3450 #include <assert.h> … … 3382 3452 EOF 3383 3453 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3384 { (eval echo configure:3 385: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3454 { (eval echo configure:3455: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3385 3455 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3386 3456 if test -z "$ac_err"; then … … 3412 3482 set dummy $ac_prog; ac_word=$2 3413 3483 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3414 echo "configure:34 15: checking for $ac_word" >&53484 echo "configure:3485: checking for $ac_word" >&5 3415 3485 if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then 3416 3486 echo $ac_n "(cached) $ac_c" 1>&6 … … 3419 3489 ac_cv_prog_LEX="$LEX" # Let the user override the test. 3420 3490 else 3421 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3491 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3422 3492 ac_dummy="$PATH" 3423 3493 for ac_dir in $ac_dummy; do 3424 3494 test -z "$ac_dir" && ac_dir=. 3425 if test -f $ac_dir/$ac_word; then 3495 if test -f $ac_dir/$ac_word -o \ 3496 -f $ac_dir/$ac_word$ac_exeext ; then 3426 3497 ac_cv_prog_LEX="$ac_prog" 3427 3498 break … … 3445 3516 set dummy flex; ac_word=$2 3446 3517 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3447 echo "configure:3 448: checking for $ac_word" >&53518 echo "configure:3519: checking for $ac_word" >&5 3448 3519 if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then 3449 3520 echo $ac_n "(cached) $ac_c" 1>&6 … … 3452 3523 ac_cv_prog_LEX="$LEX" # Let the user override the test. 3453 3524 else 3454 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3525 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3455 3526 ac_dummy="$PATH" 3456 3527 for ac_dir in $ac_dummy; do 3457 3528 test -z "$ac_dir" && ac_dir=. 3458 if test -f $ac_dir/$ac_word; then 3529 if test -f $ac_dir/$ac_word -o \ 3530 -f $ac_dir/$ac_word$ac_exeext ; then 3459 3531 ac_cv_prog_LEX="flex" 3460 3532 break … … 3479 3551 esac 3480 3552 echo $ac_n "checking for yywrap in -l$ac_lib""... $ac_c" 1>&6 3481 echo "configure:3 482: checking for yywrap in -l$ac_lib" >&53553 echo "configure:3554: checking for yywrap in -l$ac_lib" >&5 3482 3554 ac_lib_var=`echo $ac_lib'_'yywrap | sed 'y%./+-%__p_%'` 3483 3555 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3487 3559 LIBS="-l$ac_lib $LIBS" 3488 3560 cat > conftest.$ac_ext <<EOF 3489 #line 3 490"configure"3561 #line 3562 "configure" 3490 3562 #include "confdefs.h" 3491 3563 /* Override any gcc2 internal prototype to avoid an error. */ … … 3498 3570 ; return 0; } 3499 3571 EOF 3500 if { (eval echo configure:35 01: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3572 if { (eval echo configure:3573: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3501 3573 rm -rf conftest* 3502 3574 eval "ac_cv_lib_$ac_lib_var=yes" … … 3521 3593 3522 3594 echo $ac_n "checking lex output file root""... $ac_c" 1>&6 3523 echo "configure:35 24: checking lex output file root" >&53595 echo "configure:3596: checking lex output file root" >&5 3524 3596 if eval "test \"`echo '$''{'ac_cv_prog_lex_root'+set}'`\" = set"; then 3525 3597 echo $ac_n "(cached) $ac_c" 1>&6 … … 3542 3614 3543 3615 echo $ac_n "checking whether yytext is a pointer""... $ac_c" 1>&6 3544 echo "configure:3 545: checking whether yytext is a pointer" >&53616 echo "configure:3617: checking whether yytext is a pointer" >&5 3545 3617 if eval "test \"`echo '$''{'ac_cv_prog_lex_yytext_pointer'+set}'`\" = set"; then 3546 3618 echo $ac_n "(cached) $ac_c" 1>&6 … … 3554 3626 LIBS="$LIBS $LEXLIB" 3555 3627 cat > conftest.$ac_ext <<EOF 3556 #line 3 557"configure"3628 #line 3629 "configure" 3557 3629 #include "confdefs.h" 3558 3630 `cat $LEX_OUTPUT_ROOT.c` … … 3561 3633 ; return 0; } 3562 3634 EOF 3563 if { (eval echo configure:3 564: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3635 if { (eval echo configure:3636: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3564 3636 rm -rf conftest* 3565 3637 ac_cv_prog_lex_yytext_pointer=yes … … 3587 3659 set dummy ranlib; ac_word=$2 3588 3660 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3589 echo "configure:3 590: checking for $ac_word" >&53661 echo "configure:3662: checking for $ac_word" >&5 3590 3662 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 3591 3663 echo $ac_n "(cached) $ac_c" 1>&6 … … 3594 3666 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 3595 3667 else 3596 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3668 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3597 3669 ac_dummy="$PATH" 3598 3670 for ac_dir in $ac_dummy; do 3599 3671 test -z "$ac_dir" && ac_dir=. 3600 if test -f $ac_dir/$ac_word; then 3672 if test -f $ac_dir/$ac_word -o \ 3673 -f $ac_dir/$ac_word$ac_exeext ; then 3601 3674 ac_cv_prog_RANLIB="ranlib" 3602 3675 break … … 3615 3688 3616 3689 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 3617 echo "configure:36 18: checking for ANSI C header files" >&53690 echo "configure:3691: checking for ANSI C header files" >&5 3618 3691 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 3619 3692 echo $ac_n "(cached) $ac_c" 1>&6 3620 3693 else 3621 3694 cat > conftest.$ac_ext <<EOF 3622 #line 3623 "configure" 3695 #include <sys/types.h> 3696 #line 3697 "configure" 3623 3697 #include "confdefs.h" 3624 3698 #include <stdlib.h> … … 3628 3702 EOF 3629 3703 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3630 { (eval echo configure:3 631: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3704 { (eval echo configure:3705: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3631 3705 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3632 3706 if test -z "$ac_err"; then … … 3645 3719 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 3646 3720 cat > conftest.$ac_ext <<EOF 3647 #line 3 648"configure"3721 #line 3722 "configure" 3648 3722 #include "confdefs.h" 3649 3723 #include <string.h> … … 3663 3737 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 3664 3738 cat > conftest.$ac_ext <<EOF 3665 #line 3 666"configure"3739 #line 3740 "configure" 3666 3740 #include "confdefs.h" 3667 3741 #include <stdlib.h> … … 3684 3758 else 3685 3759 cat > conftest.$ac_ext <<EOF 3686 #line 3 687"configure"3760 #line 3761 "configure" 3687 3761 #include "confdefs.h" 3688 3762 #include <ctype.h> … … 3695 3769 3696 3770 EOF 3697 if { (eval echo configure:3 698: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null3771 if { (eval echo configure:3772: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 3698 3772 then 3699 3773 : … … 3719 3793 3720 3794 echo $ac_n "checking for working const""... $ac_c" 1>&6 3721 echo "configure:37 22: checking for working const" >&53795 echo "configure:3796: checking for working const" >&5 3722 3796 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then 3723 3797 echo $ac_n "(cached) $ac_c" 1>&6 3724 3798 else 3725 3799 cat > conftest.$ac_ext <<EOF 3726 #line 3 727"configure"3800 #line 3801 "configure" 3727 3801 #include "confdefs.h" 3728 3802 … … 3773 3847 ; return 0; } 3774 3848 EOF 3775 if { (eval echo configure:3 776: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3849 if { (eval echo configure:3850: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3776 3850 rm -rf conftest* 3777 3851 ac_cv_c_const=yes … … 3794 3868 3795 3869 echo $ac_n "checking for inline""... $ac_c" 1>&6 3796 echo "configure:3 797: checking for inline" >&53870 echo "configure:3871: checking for inline" >&5 3797 3871 if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then 3798 3872 echo $ac_n "(cached) $ac_c" 1>&6 … … 3801 3875 for ac_kw in inline __inline__ __inline; do 3802 3876 cat > conftest.$ac_ext <<EOF 3803 #line 38 04"configure"3877 #line 3878 "configure" 3804 3878 #include "confdefs.h" 3805 3879 … … 3808 3882 ; return 0; } 3809 3883 EOF 3810 if { (eval echo configure:38 11: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3884 if { (eval echo configure:3885: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3811 3885 rm -rf conftest* 3812 3886 ac_cv_c_inline=$ac_kw; break … … 3834 3908 3835 3909 echo $ac_n "checking for off_t""... $ac_c" 1>&6 3836 echo "configure:3 837: checking for off_t" >&53910 echo "configure:3911: checking for off_t" >&5 3837 3911 if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then 3838 3912 echo $ac_n "(cached) $ac_c" 1>&6 3839 3913 else 3840 3914 cat > conftest.$ac_ext <<EOF 3841 #line 3 842"configure"3915 #line 3916 "configure" 3842 3916 #include "confdefs.h" 3843 3917 #include <sys/types.h> … … 3867 3941 3868 3942 echo $ac_n "checking for size_t""... $ac_c" 1>&6 3869 echo "configure:3 870: checking for size_t" >&53943 echo "configure:3944: checking for size_t" >&5 3870 3944 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then 3871 3945 echo $ac_n "(cached) $ac_c" 1>&6 3872 3946 else 3873 3947 cat > conftest.$ac_ext <<EOF 3874 #line 3 875"configure"3948 #line 3949 "configure" 3875 3949 #include "confdefs.h" 3876 3950 #include <sys/types.h> … … 3902 3976 # for constant arguments. Useless! 3903 3977 echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 3904 echo "configure:39 05: checking for working alloca.h" >&53978 echo "configure:3979: checking for working alloca.h" >&5 3905 3979 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then 3906 3980 echo $ac_n "(cached) $ac_c" 1>&6 3907 3981 else 3908 3982 cat > conftest.$ac_ext <<EOF 3909 #line 39 10"configure"3983 #line 3984 "configure" 3910 3984 #include "confdefs.h" 3911 3985 #include <alloca.h> … … 3914 3988 ; return 0; } 3915 3989 EOF 3916 if { (eval echo configure:39 17: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3990 if { (eval echo configure:3991: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3917 3991 rm -rf conftest* 3918 3992 ac_cv_header_alloca_h=yes … … 3935 4009 3936 4010 echo $ac_n "checking for alloca""... $ac_c" 1>&6 3937 echo "configure: 3938: checking for alloca" >&54011 echo "configure:4012: checking for alloca" >&5 3938 4012 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then 3939 4013 echo $ac_n "(cached) $ac_c" 1>&6 3940 4014 else 3941 4015 cat > conftest.$ac_ext <<EOF 3942 #line 3943"configure"4016 #line 4017 "configure" 3943 4017 #include "confdefs.h" 3944 4018 … … 3968 4042 ; return 0; } 3969 4043 EOF 3970 if { (eval echo configure: 3971: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4044 if { (eval echo configure:4045: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3971 4045 rm -rf conftest* 3972 4046 ac_cv_func_alloca_works=yes … … 4000 4074 4001 4075 echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 4002 echo "configure:40 03: checking whether alloca needs Cray hooks" >&54076 echo "configure:4077: checking whether alloca needs Cray hooks" >&5 4003 4077 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then 4004 4078 echo $ac_n "(cached) $ac_c" 1>&6 4005 4079 else 4006 4080 cat > conftest.$ac_ext <<EOF 4007 #line 40 08"configure"4081 #line 4082 "configure" 4008 4082 #include "confdefs.h" 4009 4083 #if defined(CRAY) && ! defined(CRAY2) … … 4030 4104 for ac_func in _getb67 GETB67 getb67; do 4031 4105 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 4032 echo "configure:4 033: checking for $ac_func" >&54106 echo "configure:4107: checking for $ac_func" >&5 4033 4107 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 4034 4108 echo $ac_n "(cached) $ac_c" 1>&6 4035 4109 else 4036 4110 cat > conftest.$ac_ext <<EOF 4037 #line 4 038"configure"4111 #line 4112 "configure" 4038 4112 #include "confdefs.h" 4039 4113 /* System header to define __stub macros and hopefully few prototypes, … … 4058 4132 ; return 0; } 4059 4133 EOF 4060 if { (eval echo configure:4 061: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4134 if { (eval echo configure:4135: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4061 4135 rm -rf conftest* 4062 4136 eval "ac_cv_func_$ac_func=yes" … … 4085 4159 4086 4160 echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 4087 echo "configure:4 088: checking stack direction for C alloca" >&54161 echo "configure:4162: checking stack direction for C alloca" >&5 4088 4162 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then 4089 4163 echo $ac_n "(cached) $ac_c" 1>&6 … … 4093 4167 else 4094 4168 cat > conftest.$ac_ext <<EOF 4095 #line 4 096"configure"4169 #line 4170 "configure" 4096 4170 #include "confdefs.h" 4097 4171 find_stack_direction () … … 4112 4186 } 4113 4187 EOF 4114 if { (eval echo configure:41 15: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null4188 if { (eval echo configure:4189: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 4115 4189 then 4116 4190 ac_cv_c_stack_direction=1 … … 4137 4211 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 4138 4212 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 4139 echo "configure:4 140: checking for $ac_hdr" >&54213 echo "configure:4214: checking for $ac_hdr" >&5 4140 4214 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4141 4215 echo $ac_n "(cached) $ac_c" 1>&6 4142 4216 else 4143 4217 cat > conftest.$ac_ext <<EOF 4144 #line 4145 "configure" 4218 #include <sys/types.h> 4219 #line 4220 "configure" 4145 4220 #include "confdefs.h" 4146 4221 #include <$ac_hdr> 4147 4222 EOF 4148 4223 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4149 { (eval echo configure:4 150: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4224 { (eval echo configure:4225: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4150 4225 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4151 4226 if test -z "$ac_err"; then … … 4176 4251 do 4177 4252 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 4178 echo "configure:4 179: checking for $ac_func" >&54253 echo "configure:4254: checking for $ac_func" >&5 4179 4254 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 4180 4255 echo $ac_n "(cached) $ac_c" 1>&6 4181 4256 else 4182 4257 cat > conftest.$ac_ext <<EOF 4183 #line 4 184"configure"4258 #line 4259 "configure" 4184 4259 #include "confdefs.h" 4185 4260 /* System header to define __stub macros and hopefully few prototypes, … … 4204 4279 ; return 0; } 4205 4280 EOF 4206 if { (eval echo configure:42 07: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4281 if { (eval echo configure:4282: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4207 4282 rm -rf conftest* 4208 4283 eval "ac_cv_func_$ac_func=yes" … … 4229 4304 4230 4305 echo $ac_n "checking for working mmap""... $ac_c" 1>&6 4231 echo "configure:4 232: checking for working mmap" >&54306 echo "configure:4307: checking for working mmap" >&5 4232 4307 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then 4233 4308 echo $ac_n "(cached) $ac_c" 1>&6 … … 4237 4312 else 4238 4313 cat > conftest.$ac_ext <<EOF 4239 #line 4 240"configure"4314 #line 4315 "configure" 4240 4315 #include "confdefs.h" 4241 4316 … … 4377 4452 4378 4453 EOF 4379 if { (eval echo configure:4 380: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null4454 if { (eval echo configure:4455: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 4380 4455 then 4381 4456 ac_cv_func_mmap_fixed_mapped=yes … … 4405 4480 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 4406 4481 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 4407 echo "configure:44 08: checking for $ac_hdr" >&54482 echo "configure:4483: checking for $ac_hdr" >&5 4408 4483 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4409 4484 echo $ac_n "(cached) $ac_c" 1>&6 4410 4485 else 4411 4486 cat > conftest.$ac_ext <<EOF 4412 #line 4413 "configure" 4487 #include <sys/types.h> 4488 #line 4489 "configure" 4413 4489 #include "confdefs.h" 4414 4490 #include <$ac_hdr> 4415 4491 EOF 4416 4492 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4417 { (eval echo configure:44 18: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4493 { (eval echo configure:4494: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4418 4494 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4419 4495 if test -z "$ac_err"; then … … 4445 4521 do 4446 4522 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 4447 echo "configure:4 448: checking for $ac_func" >&54523 echo "configure:4524: checking for $ac_func" >&5 4448 4524 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 4449 4525 echo $ac_n "(cached) $ac_c" 1>&6 4450 4526 else 4451 4527 cat > conftest.$ac_ext <<EOF 4452 #line 4 453"configure"4528 #line 4529 "configure" 4453 4529 #include "confdefs.h" 4454 4530 /* System header to define __stub macros and hopefully few prototypes, … … 4473 4549 ; return 0; } 4474 4550 EOF 4475 if { (eval echo configure:4 476: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4551 if { (eval echo configure:4552: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4476 4552 rm -rf conftest* 4477 4553 eval "ac_cv_func_$ac_func=yes" … … 4502 4578 do 4503 4579 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 4504 echo "configure:45 05: checking for $ac_func" >&54580 echo "configure:4581: checking for $ac_func" >&5 4505 4581 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 4506 4582 echo $ac_n "(cached) $ac_c" 1>&6 4507 4583 else 4508 4584 cat > conftest.$ac_ext <<EOF 4509 #line 45 10"configure"4585 #line 4586 "configure" 4510 4586 #include "confdefs.h" 4511 4587 /* System header to define __stub macros and hopefully few prototypes, … … 4530 4606 ; return 0; } 4531 4607 EOF 4532 if { (eval echo configure:4 533: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4608 if { (eval echo configure:4609: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4533 4609 rm -rf conftest* 4534 4610 eval "ac_cv_func_$ac_func=yes" … … 4564 4640 if test $ac_cv_header_locale_h = yes; then 4565 4641 echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 4566 echo "configure:4 567: checking for LC_MESSAGES" >&54642 echo "configure:4643: checking for LC_MESSAGES" >&5 4567 4643 if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then 4568 4644 echo $ac_n "(cached) $ac_c" 1>&6 4569 4645 else 4570 4646 cat > conftest.$ac_ext <<EOF 4571 #line 4 572"configure"4647 #line 4648 "configure" 4572 4648 #include "confdefs.h" 4573 4649 #include <locale.h> … … 4576 4652 ; return 0; } 4577 4653 EOF 4578 if { (eval echo configure:4 579: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4654 if { (eval echo configure:4655: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4579 4655 rm -rf conftest* 4580 4656 am_cv_val_LC_MESSAGES=yes … … 4597 4673 fi 4598 4674 echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6 4599 echo "configure:46 00: checking whether NLS is requested" >&54675 echo "configure:4676: checking whether NLS is requested" >&5 4600 4676 # Check whether --enable-nls or --disable-nls was given. 4601 4677 if test "${enable_nls+set}" = set; then … … 4617 4693 4618 4694 echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6 4619 echo "configure:46 20: checking whether included gettext is requested" >&54695 echo "configure:4696: checking whether included gettext is requested" >&5 4620 4696 # Check whether --with-included-gettext or --without-included-gettext was given. 4621 4697 if test "${with_included_gettext+set}" = set; then … … 4636 4712 ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'` 4637 4713 echo $ac_n "checking for libintl.h""... $ac_c" 1>&6 4638 echo "configure:4 639: checking for libintl.h" >&54714 echo "configure:4715: checking for libintl.h" >&5 4639 4715 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4640 4716 echo $ac_n "(cached) $ac_c" 1>&6 4641 4717 else 4642 4718 cat > conftest.$ac_ext <<EOF 4643 #line 4644 "configure" 4719 #include <sys/types.h> 4720 #line 4721 "configure" 4644 4721 #include "confdefs.h" 4645 4722 #include <libintl.h> 4646 4723 EOF 4647 4724 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4648 { (eval echo configure:4 649: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4725 { (eval echo configure:4726: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4649 4726 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4650 4727 if test -z "$ac_err"; then … … 4663 4740 echo "$ac_t""yes" 1>&6 4664 4741 echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6 4665 echo "configure:4 666: checking for gettext in libc" >&54742 echo "configure:4743: checking for gettext in libc" >&5 4666 4743 if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then 4667 4744 echo $ac_n "(cached) $ac_c" 1>&6 4668 4745 else 4669 4746 cat > conftest.$ac_ext <<EOF 4670 #line 4 671"configure"4747 #line 4748 "configure" 4671 4748 #include "confdefs.h" 4672 4749 #include <libintl.h> … … 4675 4752 ; return 0; } 4676 4753 EOF 4677 if { (eval echo configure:4 678: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4754 if { (eval echo configure:4755: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4678 4755 rm -rf conftest* 4679 4756 gt_cv_func_gettext_libc=yes … … 4691 4768 if test "$gt_cv_func_gettext_libc" != "yes"; then 4692 4769 echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6 4693 echo "configure:4 694: checking for bindtextdomain in -lintl" >&54770 echo "configure:4771: checking for bindtextdomain in -lintl" >&5 4694 4771 ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'` 4695 4772 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 4699 4776 LIBS="-lintl $LIBS" 4700 4777 cat > conftest.$ac_ext <<EOF 4701 #line 47 02"configure"4778 #line 4779 "configure" 4702 4779 #include "confdefs.h" 4703 4780 /* Override any gcc2 internal prototype to avoid an error. */ … … 4710 4787 ; return 0; } 4711 4788 EOF 4712 if { (eval echo configure:47 13: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4789 if { (eval echo configure:4790: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4713 4790 rm -rf conftest* 4714 4791 eval "ac_cv_lib_$ac_lib_var=yes" … … 4726 4803 echo "$ac_t""yes" 1>&6 4727 4804 echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6 4728 echo "configure:4 729: checking for gettext in libintl" >&54805 echo "configure:4806: checking for gettext in libintl" >&5 4729 4806 if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then 4730 4807 echo $ac_n "(cached) $ac_c" 1>&6 4731 4808 else 4732 4809 cat > conftest.$ac_ext <<EOF 4733 #line 4 734"configure"4810 #line 4811 "configure" 4734 4811 #include "confdefs.h" 4735 4812 … … 4738 4815 ; return 0; } 4739 4816 EOF 4740 if { (eval echo configure:4 741: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4817 if { (eval echo configure:4818: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4741 4818 rm -rf conftest* 4742 4819 gt_cv_func_gettext_libintl=yes … … 4766 4843 set dummy msgfmt; ac_word=$2 4767 4844 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 4768 echo "configure:4 769: checking for $ac_word" >&54845 echo "configure:4846: checking for $ac_word" >&5 4769 4846 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then 4770 4847 echo $ac_n "(cached) $ac_c" 1>&6 … … 4775 4852 ;; 4776 4853 *) 4777 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${ IFS}:"4854 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${PATH_IFS}" 4778 4855 for ac_dir in $PATH; do 4779 4856 test -z "$ac_dir" && ac_dir=. … … 4800 4877 do 4801 4878 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 4802 echo "configure:48 03: checking for $ac_func" >&54879 echo "configure:4880: checking for $ac_func" >&5 4803 4880 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 4804 4881 echo $ac_n "(cached) $ac_c" 1>&6 4805 4882 else 4806 4883 cat > conftest.$ac_ext <<EOF 4807 #line 48 08"configure"4884 #line 4885 "configure" 4808 4885 #include "confdefs.h" 4809 4886 /* System header to define __stub macros and hopefully few prototypes, … … 4828 4905 ; return 0; } 4829 4906 EOF 4830 if { (eval echo configure:4 831: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4907 if { (eval echo configure:4908: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4831 4908 rm -rf conftest* 4832 4909 eval "ac_cv_func_$ac_func=yes" … … 4855 4932 set dummy gmsgfmt; ac_word=$2 4856 4933 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 4857 echo "configure:4 858: checking for $ac_word" >&54934 echo "configure:4935: checking for $ac_word" >&5 4858 4935 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then 4859 4936 echo $ac_n "(cached) $ac_c" 1>&6 4860 4937 else 4861 4938 case "$GMSGFMT" in 4862 /* )4939 /* | [a-zA-Z]:*) 4863 4940 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. 4864 4941 ;; 4865 ?:/*) 4942 ?:/*) 4866 4943 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a dos path. 4867 4944 ;; 4868 4945 *) 4869 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"4946 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 4870 4947 ac_dummy="$PATH" 4871 for ac_dir in $ac_dummy; do 4948 for ac_dir in $ac_dummy; do 4872 4949 test -z "$ac_dir" && ac_dir=. 4873 4950 if test -f $ac_dir/$ac_word; then 4874 4951 ac_cv_path_GMSGFMT="$ac_dir/$ac_word" 4952 break 4953 fi 4954 if test -f $ac_dir/$ac_word$ac_exeext; then 4955 ac_cv_path_GMSGFMT="$ac_dir/$ac_word$ac_exeext" 4875 4956 break 4876 4957 fi … … 4891 4972 set dummy xgettext; ac_word=$2 4892 4973 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 4893 echo "configure:4 894: checking for $ac_word" >&54974 echo "configure:4975: checking for $ac_word" >&5 4894 4975 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then 4895 4976 echo $ac_n "(cached) $ac_c" 1>&6 … … 4900 4981 ;; 4901 4982 *) 4902 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${ IFS}:"4983 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${PATH_IFS}" 4903 4984 for ac_dir in $PATH; do 4904 4985 test -z "$ac_dir" && ac_dir=. … … 4923 5004 4924 5005 cat > conftest.$ac_ext <<EOF 4925 #line 4926"configure"5006 #line 5007 "configure" 4926 5007 #include "confdefs.h" 4927 5008 … … 4931 5012 ; return 0; } 4932 5013 EOF 4933 if { (eval echo configure: 4934: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5014 if { (eval echo configure:5015: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4934 5015 rm -rf conftest* 4935 5016 CATOBJEXT=.gmo … … 4963 5044 set dummy msgfmt; ac_word=$2 4964 5045 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 4965 echo "configure: 4966: checking for $ac_word" >&55046 echo "configure:5047: checking for $ac_word" >&5 4966 5047 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then 4967 5048 echo $ac_n "(cached) $ac_c" 1>&6 … … 4972 5053 ;; 4973 5054 *) 4974 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${ IFS}:"5055 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${PATH_IFS}" 4975 5056 for ac_dir in $PATH; do 4976 5057 test -z "$ac_dir" && ac_dir=. … … 4997 5078 set dummy gmsgfmt; ac_word=$2 4998 5079 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 4999 echo "configure:50 00: checking for $ac_word" >&55080 echo "configure:5081: checking for $ac_word" >&5 5000 5081 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then 5001 5082 echo $ac_n "(cached) $ac_c" 1>&6 5002 5083 else 5003 5084 case "$GMSGFMT" in 5004 /* )5085 /* | [a-zA-Z]:*) 5005 5086 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. 5006 5087 ;; 5007 ?:/*) 5088 ?:/*) 5008 5089 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a dos path. 5009 5090 ;; 5010 5091 *) 5011 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"5092 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 5012 5093 ac_dummy="$PATH" 5013 for ac_dir in $ac_dummy; do 5094 for ac_dir in $ac_dummy; do 5014 5095 test -z "$ac_dir" && ac_dir=. 5015 5096 if test -f $ac_dir/$ac_word; then 5016 5097 ac_cv_path_GMSGFMT="$ac_dir/$ac_word" 5098 break 5099 fi 5100 if test -f $ac_dir/$ac_word$ac_exeext; then 5101 ac_cv_path_GMSGFMT="$ac_dir/$ac_word$ac_exeext" 5017 5102 break 5018 5103 fi … … 5033 5118 set dummy xgettext; ac_word=$2 5034 5119 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 5035 echo "configure:5 036: checking for $ac_word" >&55120 echo "configure:5121: checking for $ac_word" >&5 5036 5121 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then 5037 5122 echo $ac_n "(cached) $ac_c" 1>&6 … … 5042 5127 ;; 5043 5128 *) 5044 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${ IFS}:"5129 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${PATH_IFS}" 5045 5130 for ac_dir in $PATH; do 5046 5131 test -z "$ac_dir" && ac_dir=. … … 5123 5208 else 5124 5209 echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6 5125 echo "configure:5 126: checking for catalogs to be installed" >&55210 echo "configure:5211: checking for catalogs to be installed" >&5 5126 5211 NEW_LINGUAS= 5127 5212 for lang in ${LINGUAS=$ALL_LINGUAS}; do … … 5151 5236 ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'` 5152 5237 echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6 5153 echo "configure:5 154: checking for linux/version.h" >&55238 echo "configure:5239: checking for linux/version.h" >&5 5154 5239 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 5155 5240 echo $ac_n "(cached) $ac_c" 1>&6 5156 5241 else 5157 5242 cat > conftest.$ac_ext <<EOF 5158 #line 5159 "configure" 5243 #include <sys/types.h> 5244 #line 5245 "configure" 5159 5245 #include "confdefs.h" 5160 5246 #include <linux/version.h> 5161 5247 EOF 5162 5248 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 5163 { (eval echo configure:5 164: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }5249 { (eval echo configure:5250: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 5164 5250 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 5165 5251 if test -z "$ac_err"; then … … 5209 5295 test -d po || mkdir po 5210 5296 if test "x$srcdir" != "x."; then 5211 if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then5297 if test "x`echo $srcdir | sed -e 's@.\:/.*@@' -e 's@/.*@@' `" = "x"; then 5212 5298 posrcprefix="$srcdir/" 5213 5299 else … … 5224 5310 5225 5311 echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 5226 echo "configure:5 227: checking whether to enable maintainer-specific portions of Makefiles" >&55312 echo "configure:5313: checking whether to enable maintainer-specific portions of Makefiles" >&5 5227 5313 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. 5228 5314 if test "${enable_maintainer_mode+set}" = set; then … … 5248 5334 5249 5335 5336 5250 5337 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 5251 echo "configure:5 252: checking for executable suffix" >&55338 echo "configure:5339: checking for executable suffix" >&5 5252 5339 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 5253 5340 echo $ac_n "(cached) $ac_c" 1>&6 5254 5341 else 5255 if test "$CYGWIN" = yes || test "$MINGW32" = yes ; then5342 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 5256 5343 ac_cv_exeext=.exe 5257 5344 else … … 5259 5346 echo 'int main () { return 0; }' > conftest.$ac_ext 5260 5347 ac_cv_exeext= 5261 if { (eval echo configure:5 262: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then5348 if { (eval echo configure:5349: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 5262 5349 for file in conftest.*; do 5263 5350 case $file in 5264 *.c | *.o | *.obj | *.ilk | *.pdb) ;;5351 *.c | *.o | *.obj) ;; 5265 5352 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; 5266 5353 esac … … 5284 5371 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 5285 5372 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 5286 echo "configure:5 287: checking for $ac_hdr" >&55373 echo "configure:5374: checking for $ac_hdr" >&5 5287 5374 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 5288 5375 echo $ac_n "(cached) $ac_c" 1>&6 5289 5376 else 5290 5377 cat > conftest.$ac_ext <<EOF 5291 #line 5292 "configure" 5378 #include <sys/types.h> 5379 #line 5380 "configure" 5292 5380 #include "confdefs.h" 5293 5381 #include <$ac_hdr> 5294 5382 EOF 5295 5383 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 5296 { (eval echo configure:5 297: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }5384 { (eval echo configure:5385: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 5297 5385 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 5298 5386 if test -z "$ac_err"; then … … 5324 5412 # people who are not cross-compiling but are compiling cross-assemblers. 5325 5413 echo $ac_n "checking whether compiling a cross-assembler""... $ac_c" 1>&6 5326 echo "configure:5 327: checking whether compiling a cross-assembler" >&55414 echo "configure:5415: checking whether compiling a cross-assembler" >&5 5327 5415 if test "${host}" = "${target}"; then 5328 5416 cross_gas=no … … 5339 5427 # for constant arguments. Useless! 5340 5428 echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 5341 echo "configure:5 342: checking for working alloca.h" >&55429 echo "configure:5430: checking for working alloca.h" >&5 5342 5430 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then 5343 5431 echo $ac_n "(cached) $ac_c" 1>&6 5344 5432 else 5345 5433 cat > conftest.$ac_ext <<EOF 5346 #line 5 347"configure"5434 #line 5435 "configure" 5347 5435 #include "confdefs.h" 5348 5436 #include <alloca.h> … … 5351 5439 ; return 0; } 5352 5440 EOF 5353 if { (eval echo configure:5 354: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5441 if { (eval echo configure:5442: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5354 5442 rm -rf conftest* 5355 5443 ac_cv_header_alloca_h=yes … … 5372 5460 5373 5461 echo $ac_n "checking for alloca""... $ac_c" 1>&6 5374 echo "configure:5 375: checking for alloca" >&55462 echo "configure:5463: checking for alloca" >&5 5375 5463 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then 5376 5464 echo $ac_n "(cached) $ac_c" 1>&6 5377 5465 else 5378 5466 cat > conftest.$ac_ext <<EOF 5379 #line 5 380"configure"5467 #line 5468 "configure" 5380 5468 #include "confdefs.h" 5381 5469 … … 5405 5493 ; return 0; } 5406 5494 EOF 5407 if { (eval echo configure:54 08: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5495 if { (eval echo configure:5496: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5408 5496 rm -rf conftest* 5409 5497 ac_cv_func_alloca_works=yes … … 5437 5525 5438 5526 echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 5439 echo "configure:5 440: checking whether alloca needs Cray hooks" >&55527 echo "configure:5528: checking whether alloca needs Cray hooks" >&5 5440 5528 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then 5441 5529 echo $ac_n "(cached) $ac_c" 1>&6 5442 5530 else 5443 5531 cat > conftest.$ac_ext <<EOF 5444 #line 5 445"configure"5532 #line 5533 "configure" 5445 5533 #include "confdefs.h" 5446 5534 #if defined(CRAY) && ! defined(CRAY2) … … 5467 5555 for ac_func in _getb67 GETB67 getb67; do 5468 5556 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 5469 echo "configure:5 470: checking for $ac_func" >&55557 echo "configure:5558: checking for $ac_func" >&5 5470 5558 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 5471 5559 echo $ac_n "(cached) $ac_c" 1>&6 5472 5560 else 5473 5561 cat > conftest.$ac_ext <<EOF 5474 #line 5 475"configure"5562 #line 5563 "configure" 5475 5563 #include "confdefs.h" 5476 5564 /* System header to define __stub macros and hopefully few prototypes, … … 5495 5583 ; return 0; } 5496 5584 EOF 5497 if { (eval echo configure:5 498: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5585 if { (eval echo configure:5586: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5498 5586 rm -rf conftest* 5499 5587 eval "ac_cv_func_$ac_func=yes" … … 5522 5610 5523 5611 echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 5524 echo "configure:5 525: checking stack direction for C alloca" >&55612 echo "configure:5613: checking stack direction for C alloca" >&5 5525 5613 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then 5526 5614 echo $ac_n "(cached) $ac_c" 1>&6 … … 5530 5618 else 5531 5619 cat > conftest.$ac_ext <<EOF 5532 #line 5 533"configure"5620 #line 5621 "configure" 5533 5621 #include "confdefs.h" 5534 5622 find_stack_direction () … … 5549 5637 } 5550 5638 EOF 5551 if { (eval echo configure:5 552: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null5639 if { (eval echo configure:5640: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 5552 5640 then 5553 5641 ac_cv_c_stack_direction=1 … … 5571 5659 5572 5660 echo $ac_n "checking for inline""... $ac_c" 1>&6 5573 echo "configure:5 574: checking for inline" >&55661 echo "configure:5662: checking for inline" >&5 5574 5662 if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then 5575 5663 echo $ac_n "(cached) $ac_c" 1>&6 … … 5578 5666 for ac_kw in inline __inline__ __inline; do 5579 5667 cat > conftest.$ac_ext <<EOF 5580 #line 5 581"configure"5668 #line 5669 "configure" 5581 5669 #include "confdefs.h" 5582 5670 … … 5585 5673 ; return 0; } 5586 5674 EOF 5587 if { (eval echo configure:5 588: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then5675 if { (eval echo configure:5676: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 5588 5676 rm -rf conftest* 5589 5677 ac_cv_c_inline=$ac_kw; break … … 5615 5703 do 5616 5704 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 5617 echo "configure:5 618: checking for $ac_func" >&55705 echo "configure:5706: checking for $ac_func" >&5 5618 5706 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 5619 5707 echo $ac_n "(cached) $ac_c" 1>&6 5620 5708 else 5621 5709 cat > conftest.$ac_ext <<EOF 5622 #line 5 623"configure"5710 #line 5711 "configure" 5623 5711 #include "confdefs.h" 5624 5712 /* System header to define __stub macros and hopefully few prototypes, … … 5643 5731 ; return 0; } 5644 5732 EOF 5645 if { (eval echo configure:5 646: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5733 if { (eval echo configure:5734: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5646 5734 rm -rf conftest* 5647 5735 eval "ac_cv_func_$ac_func=yes" … … 5672 5760 do 5673 5761 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 5674 echo "configure:5 675: checking for $ac_func" >&55762 echo "configure:5763: checking for $ac_func" >&5 5675 5763 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 5676 5764 echo $ac_n "(cached) $ac_c" 1>&6 5677 5765 else 5678 5766 cat > conftest.$ac_ext <<EOF 5679 #line 5 680"configure"5767 #line 5768 "configure" 5680 5768 #include "confdefs.h" 5681 5769 /* System header to define __stub macros and hopefully few prototypes, … … 5700 5788 ; return 0; } 5701 5789 EOF 5702 if { (eval echo configure:57 03: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5790 if { (eval echo configure:5791: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5703 5791 rm -rf conftest* 5704 5792 eval "ac_cv_func_$ac_func=yes" … … 5735 5823 *-ncr-sysv4.3*) 5736 5824 echo $ac_n "checking for _mwvalidcheckl in -lmw""... $ac_c" 1>&6 5737 echo "configure:5 738: checking for _mwvalidcheckl in -lmw" >&55825 echo "configure:5826: checking for _mwvalidcheckl in -lmw" >&5 5738 5826 ac_lib_var=`echo mw'_'_mwvalidcheckl | sed 'y%./+-%__p_%'` 5739 5827 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 5743 5831 LIBS="-lmw $LIBS" 5744 5832 cat > conftest.$ac_ext <<EOF 5745 #line 5 746"configure"5833 #line 5834 "configure" 5746 5834 #include "confdefs.h" 5747 5835 /* Override any gcc2 internal prototype to avoid an error. */ … … 5754 5842 ; return 0; } 5755 5843 EOF 5756 if { (eval echo configure:5 757: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5844 if { (eval echo configure:5845: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5757 5845 rm -rf conftest* 5758 5846 eval "ac_cv_lib_$ac_lib_var=yes" … … 5775 5863 5776 5864 echo $ac_n "checking for main in -lm""... $ac_c" 1>&6 5777 echo "configure:5 778: checking for main in -lm" >&55865 echo "configure:5866: checking for main in -lm" >&5 5778 5866 ac_lib_var=`echo m'_'main | sed 'y%./+-%__p_%'` 5779 5867 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 5783 5871 LIBS="-lm $LIBS" 5784 5872 cat > conftest.$ac_ext <<EOF 5785 #line 5 786"configure"5873 #line 5874 "configure" 5786 5874 #include "confdefs.h" 5787 5875 … … 5790 5878 ; return 0; } 5791 5879 EOF 5792 if { (eval echo configure:5 793: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5880 if { (eval echo configure:5881: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5793 5881 rm -rf conftest* 5794 5882 eval "ac_cv_lib_$ac_lib_var=yes" … … 5813 5901 *) 5814 5902 echo $ac_n "checking for main in -lm""... $ac_c" 1>&6 5815 echo "configure:5 816: checking for main in -lm" >&55903 echo "configure:5904: checking for main in -lm" >&5 5816 5904 ac_lib_var=`echo m'_'main | sed 'y%./+-%__p_%'` 5817 5905 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 5821 5909 LIBS="-lm $LIBS" 5822 5910 cat > conftest.$ac_ext <<EOF 5823 #line 5 824"configure"5911 #line 5912 "configure" 5824 5912 #include "confdefs.h" 5825 5913 … … 5828 5916 ; return 0; } 5829 5917 EOF 5830 if { (eval echo configure:5 831: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5918 if { (eval echo configure:5919: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5831 5919 rm -rf conftest* 5832 5920 eval "ac_cv_lib_$ac_lib_var=yes" … … 5859 5947 # working properly! 5860 5948 echo $ac_n "checking for working assert macro""... $ac_c" 1>&6 5861 echo "configure:5 862: checking for working assert macro" >&55949 echo "configure:5950: checking for working assert macro" >&5 5862 5950 if eval "test \"`echo '$''{'gas_cv_assert_ok'+set}'`\" = set"; then 5863 5951 echo $ac_n "(cached) $ac_c" 1>&6 5864 5952 else 5865 5953 cat > conftest.$ac_ext <<EOF 5866 #line 5 867"configure"5954 #line 5955 "configure" 5867 5955 #include "confdefs.h" 5868 5956 #include <assert.h> … … 5880 5968 ; return 0; } 5881 5969 EOF 5882 if { (eval echo configure:5 883: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then5970 if { (eval echo configure:5971: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5883 5971 rm -rf conftest* 5884 5972 gas_cv_assert_ok=yes … … 5921 6009 5922 6010 echo $ac_n "checking whether declaration is required for strstr""... $ac_c" 1>&6 5923 echo "configure: 5924: checking whether declaration is required for strstr" >&56011 echo "configure:6012: checking whether declaration is required for strstr" >&5 5924 6012 if eval "test \"`echo '$''{'gas_cv_decl_needed_strstr'+set}'`\" = set"; then 5925 6013 echo $ac_n "(cached) $ac_c" 1>&6 5926 6014 else 5927 6015 cat > conftest.$ac_ext <<EOF 5928 #line 5929"configure"6016 #line 6017 "configure" 5929 6017 #include "confdefs.h" 5930 6018 $gas_test_headers … … 5937 6025 ; return 0; } 5938 6026 EOF 5939 if { (eval echo configure: 5940: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then6027 if { (eval echo configure:6028: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5940 6028 rm -rf conftest* 5941 6029 gas_cv_decl_needed_strstr=no … … 5958 6046 5959 6047 echo $ac_n "checking whether declaration is required for malloc""... $ac_c" 1>&6 5960 echo "configure: 5961: checking whether declaration is required for malloc" >&56048 echo "configure:6049: checking whether declaration is required for malloc" >&5 5961 6049 if eval "test \"`echo '$''{'gas_cv_decl_needed_malloc'+set}'`\" = set"; then 5962 6050 echo $ac_n "(cached) $ac_c" 1>&6 5963 6051 else 5964 6052 cat > conftest.$ac_ext <<EOF 5965 #line 5966"configure"6053 #line 6054 "configure" 5966 6054 #include "confdefs.h" 5967 6055 $gas_test_headers … … 5974 6062 ; return 0; } 5975 6063 EOF 5976 if { (eval echo configure: 5977: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then6064 if { (eval echo configure:6065: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5977 6065 rm -rf conftest* 5978 6066 gas_cv_decl_needed_malloc=no … … 5995 6083 5996 6084 echo $ac_n "checking whether declaration is required for free""... $ac_c" 1>&6 5997 echo "configure: 5998: checking whether declaration is required for free" >&56085 echo "configure:6086: checking whether declaration is required for free" >&5 5998 6086 if eval "test \"`echo '$''{'gas_cv_decl_needed_free'+set}'`\" = set"; then 5999 6087 echo $ac_n "(cached) $ac_c" 1>&6 6000 6088 else 6001 6089 cat > conftest.$ac_ext <<EOF 6002 #line 60 03"configure"6090 #line 6091 "configure" 6003 6091 #include "confdefs.h" 6004 6092 $gas_test_headers … … 6011 6099 ; return 0; } 6012 6100 EOF 6013 if { (eval echo configure:6 014: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then6101 if { (eval echo configure:6102: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 6014 6102 rm -rf conftest* 6015 6103 gas_cv_decl_needed_free=no … … 6032 6120 6033 6121 echo $ac_n "checking whether declaration is required for sbrk""... $ac_c" 1>&6 6034 echo "configure:6 035: checking whether declaration is required for sbrk" >&56122 echo "configure:6123: checking whether declaration is required for sbrk" >&5 6035 6123 if eval "test \"`echo '$''{'gas_cv_decl_needed_sbrk'+set}'`\" = set"; then 6036 6124 echo $ac_n "(cached) $ac_c" 1>&6 6037 6125 else 6038 6126 cat > conftest.$ac_ext <<EOF 6039 #line 6 040"configure"6127 #line 6128 "configure" 6040 6128 #include "confdefs.h" 6041 6129 $gas_test_headers … … 6048 6136 ; return 0; } 6049 6137 EOF 6050 if { (eval echo configure:6 051: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then6138 if { (eval echo configure:6139: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 6051 6139 rm -rf conftest* 6052 6140 gas_cv_decl_needed_sbrk=no … … 6069 6157 6070 6158 echo $ac_n "checking whether declaration is required for environ""... $ac_c" 1>&6 6071 echo "configure:6 072: checking whether declaration is required for environ" >&56159 echo "configure:6160: checking whether declaration is required for environ" >&5 6072 6160 if eval "test \"`echo '$''{'gas_cv_decl_needed_environ'+set}'`\" = set"; then 6073 6161 echo $ac_n "(cached) $ac_c" 1>&6 6074 6162 else 6075 6163 cat > conftest.$ac_ext <<EOF 6076 #line 6 077"configure"6164 #line 6165 "configure" 6077 6165 #include "confdefs.h" 6078 6166 $gas_test_headers … … 6085 6173 ; return 0; } 6086 6174 EOF 6087 if { (eval echo configure:6 088: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then6175 if { (eval echo configure:6176: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 6088 6176 rm -rf conftest* 6089 6177 gas_cv_decl_needed_environ=no … … 6109 6197 6110 6198 echo $ac_n "checking whether declaration is required for errno""... $ac_c" 1>&6 6111 echo "configure:6 112: checking whether declaration is required for errno" >&56199 echo "configure:6200: checking whether declaration is required for errno" >&5 6112 6200 if eval "test \"`echo '$''{'gas_cv_decl_needed_errno'+set}'`\" = set"; then 6113 6201 echo $ac_n "(cached) $ac_c" 1>&6 6114 6202 else 6115 6203 cat > conftest.$ac_ext <<EOF 6116 #line 6 117"configure"6204 #line 6205 "configure" 6117 6205 #include "confdefs.h" 6118 6206 … … 6129 6217 ; return 0; } 6130 6218 EOF 6131 if { (eval echo configure:6 132: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then6219 if { (eval echo configure:6220: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 6132 6220 rm -rf conftest* 6133 6221 gas_cv_decl_needed_errno=no … … 6226 6314 # Run this file to recreate the current configuration. 6227 6315 # This directory was configured as follows, 6316 EOF 6317 echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS 6318 cat >> $CONFIG_STATUS <<EOF 6228 6319 # on host `(hostname || uname -n) 2>/dev/null | sed 1q`: 6229 6320 # … … 6251 6342 ac_given_srcdir=$srcdir 6252 6343 ac_given_INSTALL="$INSTALL" 6344 PATHIFS="$PATH_IFS" 6253 6345 6254 6346 trap 'rm -fr `echo "Makefile doc/Makefile ${GDBINIT}:gdbinit.in po/Makefile.in:po/Make-in config.h:config.in" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 … … 6261 6353 $ac_vpsub 6262 6354 $extrasub 6355 s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g 6263 6356 s%@SHELL@%$SHELL%g 6264 6357 s%@CFLAGS@%$CFLAGS%g … … 6284 6377 s%@infodir@%$infodir%g 6285 6378 s%@mandir@%$mandir%g 6379 s%@PATH_IFS@%$PATH_IFS%g 6380 s%@EXEEXT@%$EXEEXT%g 6286 6381 s%@host@%$host%g 6287 6382 s%@host_alias@%$host_alias%g … … 6313 6408 s%@LN_S@%$LN_S%g 6314 6409 s%@OBJEXT@%$OBJEXT%g 6315 s%@EXEEXT@%$EXEEXT%g6316 6410 s%@RANLIB@%$RANLIB%g 6317 6411 s%@STRIP@%$STRIP%g … … 6429 6523 if test -z "$ac_dots"; then top_srcdir=. 6430 6524 else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; 6431 /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 6525 /* | [A-Za-z]:*) 6526 srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 6432 6527 *) # Relative path. 6433 6528 srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" … … 6436 6531 6437 6532 case "$ac_given_INSTALL" in 6438 [/$]* ) INSTALL="$ac_given_INSTALL" ;;6533 [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;; 6439 6534 *) INSTALL="$ac_dots$ac_given_INSTALL" ;; 6440 6535 esac … … 6449 6544 esac 6450 6545 6451 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s% :% $ac_given_srcdir/%g"`6546 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%$PATHIFS% $ac_given_srcdir/%g"` 6452 6547 sed -e "$ac_comsub 6453 6548 s%@configure_input@%$configure_input%g … … 6496 6591 6497 6592 rm -f conftest.frag conftest.in conftest.out 6498 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 6593 # kso the other way around might work better with drive letters and such. 6594 # ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 6595 ac_file_inputs=`echo $ac_file_in|sed -e "s%:% $ac_given_srcdir/%g" -e "s%^%$ac_given_srcdir/%" ` 6499 6596 cat $ac_file_inputs > conftest.in 6500 6597 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.