Changeset 101 for trunk/src/binutils/gprof/configure
- Timestamp:
- May 7, 2003, 5:35:03 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/binutils/gprof/configure
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r100 r101 50 50 silent= 51 51 site= 52 sitefile=53 52 srcdir= 54 53 target=NONE … … 165 164 --no-create do not create output files 166 165 --quiet, --silent do not print \`checking...' messages 167 --site-file=FILE use FILE as the site file168 166 --version print the version of autoconf that created configure 169 167 Directory and file names: … … 336 334 site="$ac_optarg" ;; 337 335 338 -site-file | --site-file | --site-fil | --site-fi | --site-f)339 ac_prev=sitefile ;;340 -site-file=* | --site-file=* | --site-fil=* | --site-fi=* | --site-f=*)341 sitefile="$ac_optarg" ;;342 343 336 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) 344 337 ac_prev=srcdir ;; … … 506 499 507 500 # Prefer explicitly selected file to automatically selected ones. 508 if test -z "$sitefile"; then 509 if test -z "$CONFIG_SITE"; then 510 if test "x$prefix" != xNONE; then 511 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" 512 else 513 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" 514 fi 501 if test -z "$CONFIG_SITE"; then 502 if test "x$prefix" != xNONE; then 503 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" 504 else 505 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" 515 506 fi 516 else517 CONFIG_SITE="$sitefile"518 507 fi 519 508 for ac_site_file in $CONFIG_SITE; do … … 553 542 fi 554 543 544 echo $ac_n "checking for path separator""... $ac_c" 1>&6 545 echo "configure:546: checking for path separator" >&5 546 # Filter path to get backslahes into forwardslashes 547 case "`uname -s 2> /dev/null`" in 548 OS/2) 549 PATH=`echo -E "$PATH" | sed 's+\\\\+/+g'` 550 PATH_IFS=';' 551 ;; 552 *) 553 PATH_IFS=':' 554 ;; 555 esac 556 echo "$ac_t""${PATH_IFS}" 1>&6 557 555 558 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 556 echo "configure:5 57: checking for Cygwin environment" >&5559 echo "configure:560: checking for Cygwin environment" >&5 557 560 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then 558 561 echo $ac_n "(cached) $ac_c" 1>&6 559 562 else 560 563 cat > conftest.$ac_ext <<EOF 561 #line 56 2"configure"564 #line 565 "configure" 562 565 #include "confdefs.h" 563 566 … … 570 573 ; return 0; } 571 574 EOF 572 if { (eval echo configure:57 3: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then575 if { (eval echo configure:576: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 573 576 rm -rf conftest* 574 577 ac_cv_cygwin=yes … … 587 590 test "$ac_cv_cygwin" = yes && CYGWIN=yes 588 591 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 589 echo "configure:59 0: checking for mingw32 environment" >&5592 echo "configure:593: checking for mingw32 environment" >&5 590 593 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then 591 594 echo $ac_n "(cached) $ac_c" 1>&6 592 595 else 593 596 cat > conftest.$ac_ext <<EOF 594 #line 59 5"configure"597 #line 598 "configure" 595 598 #include "confdefs.h" 596 599 … … 599 602 ; return 0; } 600 603 EOF 601 if { (eval echo configure:60 2: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then604 if { (eval echo configure:605: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 602 605 rm -rf conftest* 603 606 ac_cv_mingw32=yes … … 615 618 MINGW32= 616 619 test "$ac_cv_mingw32" = yes && MINGW32=yes 620 echo $ac_n "checking for EMX/OS2 environment""... $ac_c" 1>&6 621 echo "configure:622: checking for EMX/OS2 environment" >&5 622 if eval "test \"`echo '$''{'ac_cv_emxos2'+set}'`\" = set"; then 623 echo $ac_n "(cached) $ac_c" 1>&6 624 else 625 : ${CC=gcc.exe} 626 cat > conftest.$ac_ext <<EOF 627 #line 628 "configure" 628 #include "confdefs.h" 629 630 int main() { 631 return __EMX__; 632 ; return 0; } 633 EOF 634 if { (eval echo configure:635: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 635 rm -rf conftest* 636 ac_cv_emxos2=yes 637 else 638 echo "configure: failed program was:" >&5 639 cat conftest.$ac_ext >&5 640 rm -rf conftest* 641 ac_cv_emxos2=no 642 fi 643 rm -f conftest* 644 rm -f conftest* 645 fi 646 647 echo "$ac_t""$ac_cv_emxos2" 1>&6 648 if eval "test \"`echo '$''{'ac_cv_libpre'+set}'`\" = set"; then 649 echo $ac_n "(cached) $ac_c" 1>&6 650 else 651 if test "$ac_cv_emxos2" = yes ; then 652 ac_cv_libpre= 653 else 654 ac_cv_libpre=lib 655 fi 656 657 fi 658 659 EMXOS2= 660 test "$ac_cv_emxos2" = yes && EMXOS2=yes 661 662 663 664 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 665 echo "configure:666: checking for executable suffix" >&5 666 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 667 echo $ac_n "(cached) $ac_c" 1>&6 668 else 669 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 670 ac_cv_exeext=.exe 671 else 672 rm -f conftest* 673 echo 'int main () { return 0; }' > conftest.$ac_ext 674 ac_cv_exeext= 675 if { (eval echo configure:676: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 676 for file in conftest.*; do 677 case $file in 678 *.c | *.o | *.obj) ;; 679 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; 680 esac 681 done 682 else 683 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; } 684 fi 685 rm -f conftest* 686 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no 687 fi 688 fi 689 690 EXEEXT="" 691 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} 692 echo "$ac_t""${ac_cv_exeext}" 1>&6 693 ac_exeext=$EXEEXT 694 617 695 618 696 … … 664 742 665 743 echo $ac_n "checking host system type""... $ac_c" 1>&6 666 echo "configure: 667: checking host system type" >&5744 echo "configure:745: checking host system type" >&5 667 745 668 746 host_alias=$host … … 685 763 686 764 echo $ac_n "checking target system type""... $ac_c" 1>&6 687 echo "configure: 688: checking target system type" >&5765 echo "configure:766: checking target system type" >&5 688 766 689 767 target_alias=$target … … 703 781 704 782 echo $ac_n "checking build system type""... $ac_c" 1>&6 705 echo "configure:7 06: checking build system type" >&5783 echo "configure:784: checking build system type" >&5 706 784 707 785 build_alias=$build … … 728 806 set dummy gcc; ac_word=$2 729 807 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 730 echo "configure: 731: checking for $ac_word" >&5808 echo "configure:809: checking for $ac_word" >&5 731 809 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 732 810 echo $ac_n "(cached) $ac_c" 1>&6 … … 735 813 ac_cv_prog_CC="$CC" # Let the user override the test. 736 814 else 737 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"815 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 738 816 ac_dummy="$PATH" 739 817 for ac_dir in $ac_dummy; do 740 818 test -z "$ac_dir" && ac_dir=. 741 if test -f $ac_dir/$ac_word; then 819 if test -f $ac_dir/$ac_word -o \ 820 -f $ac_dir/$ac_word$ac_exeext ; then 742 821 ac_cv_prog_CC="gcc" 743 822 break … … 758 837 set dummy cc; ac_word=$2 759 838 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 760 echo "configure: 761: checking for $ac_word" >&5839 echo "configure:840: checking for $ac_word" >&5 761 840 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 762 841 echo $ac_n "(cached) $ac_c" 1>&6 … … 765 844 ac_cv_prog_CC="$CC" # Let the user override the test. 766 845 else 767 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"846 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 768 847 ac_prog_rejected=no 769 848 ac_dummy="$PATH" 770 849 for ac_dir in $ac_dummy; do 771 850 test -z "$ac_dir" && ac_dir=. 772 if test -f $ac_dir/$ac_word; then 773 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 851 if test -f $ac_dir/$ac_word -o \ 852 -f $ac_dir/$ac_word$ac_exeext ; then 853 if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \ 854 "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then 774 855 ac_prog_rejected=yes 775 856 continue … … 809 890 set dummy cl; ac_word=$2 810 891 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 811 echo "configure:8 12: checking for $ac_word" >&5892 echo "configure:893: checking for $ac_word" >&5 812 893 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 813 894 echo $ac_n "(cached) $ac_c" 1>&6 … … 816 897 ac_cv_prog_CC="$CC" # Let the user override the test. 817 898 else 818 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"899 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 819 900 ac_dummy="$PATH" 820 901 for ac_dir in $ac_dummy; do 821 902 test -z "$ac_dir" && ac_dir=. 822 if test -f $ac_dir/$ac_word; then 903 if test -f $ac_dir/$ac_word -o \ 904 -f $ac_dir/$ac_word$ac_exeext ; then 823 905 ac_cv_prog_CC="cl" 824 906 break … … 841 923 842 924 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 843 echo "configure: 844: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5925 echo "configure:926: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 844 926 845 927 ac_ext=c … … 852 934 cat > conftest.$ac_ext << EOF 853 935 854 #line 855"configure"936 #line 937 "configure" 855 937 #include "confdefs.h" 856 938 857 939 main(){return(0);} 858 940 EOF 859 if { (eval echo configure: 860: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then941 if { (eval echo configure:942: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 860 942 ac_cv_prog_cc_works=yes 861 943 # If we can't run a trivial program, we are probably using a cross compiler. … … 883 965 fi 884 966 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 885 echo "configure: 886: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5967 echo "configure:968: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 886 968 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 887 969 cross_compiling=$ac_cv_prog_cc_cross 888 970 889 971 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 890 echo "configure: 891: checking whether we are using GNU C" >&5972 echo "configure:973: checking whether we are using GNU C" >&5 891 973 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 892 974 echo $ac_n "(cached) $ac_c" 1>&6 … … 897 979 #endif 898 980 EOF 899 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:9 00: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then981 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:982: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 900 982 ac_cv_prog_gcc=yes 901 983 else … … 916 998 CFLAGS= 917 999 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 918 echo "configure: 919: checking whether ${CC-cc} accepts -g" >&51000 echo "configure:1001: checking whether ${CC-cc} accepts -g" >&5 919 1001 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 920 1002 echo $ac_n "(cached) $ac_c" 1>&6 … … 948 1030 949 1031 echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&6 950 echo "configure: 951: checking for POSIXized ISC" >&51032 echo "configure:1033: checking for POSIXized ISC" >&5 951 1033 if test -d /etc/conf/kconfig.d && 952 1034 grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1 … … 982 1064 # ./install, which can be erroneously created by make from ./install.sh. 983 1065 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 984 echo "configure: 985: checking for a BSD compatible install" >&51066 echo "configure:1067: checking for a BSD compatible install" >&5 985 1067 if test -z "$INSTALL"; then 986 1068 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 987 1069 echo $ac_n "(cached) $ac_c" 1>&6 988 1070 else 989 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"1071 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 990 1072 for ac_dir in $PATH; do 991 1073 # Account for people who put trailing slashes in PATH elements. 992 1074 case "$ac_dir/" in 993 1075 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; 1076 # We reject the install program from OS/2 or W3.1 1077 */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;; 994 1078 *) 995 1079 # OSF1 and SCO ODT 3.0 have their own names for install. … … 997 1081 # by default. 998 1082 for ac_prog in ginstall scoinst install; do 999 if test -f $ac_dir/$ac_prog ; then1083 if test -f $ac_dir/$ac_prog$ac_exeext; then 1000 1084 if test $ac_prog = install && 1001 1085 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 1003 1087 : 1004 1088 else 1005 ac_cv_path_install="$ac_dir/$ac_prog -c"1089 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 1006 1090 break 2 1007 1091 fi … … 1035 1119 1036 1120 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 1037 echo "configure:1 038: checking whether build environment is sane" >&51121 echo "configure:1122: checking whether build environment is sane" >&5 1038 1122 # Just in case 1039 1123 sleep 1 … … 1092 1176 1093 1177 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 1094 echo "configure:1 095: checking whether ${MAKE-make} sets \${MAKE}" >&51178 echo "configure:1179: checking whether ${MAKE-make} sets \${MAKE}" >&5 1095 1179 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 1096 1180 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 1138 1222 missing_dir=`cd $ac_aux_dir && pwd` 1139 1223 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 1140 echo "configure:1 141: checking for working aclocal" >&51224 echo "configure:1225: checking for working aclocal" >&5 1141 1225 # Run test in a subshell; some versions of sh will print an error if 1142 1226 # an executable is not found, even if stderr is redirected. … … 1151 1235 1152 1236 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 1153 echo "configure:1 154: checking for working autoconf" >&51237 echo "configure:1238: checking for working autoconf" >&5 1154 1238 # Run test in a subshell; some versions of sh will print an error if 1155 1239 # an executable is not found, even if stderr is redirected. … … 1164 1248 1165 1249 echo $ac_n "checking for working automake""... $ac_c" 1>&6 1166 echo "configure:1 167: checking for working automake" >&51250 echo "configure:1251: checking for working automake" >&5 1167 1251 # Run test in a subshell; some versions of sh will print an error if 1168 1252 # an executable is not found, even if stderr is redirected. … … 1177 1261 1178 1262 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 1179 echo "configure:1 180: checking for working autoheader" >&51263 echo "configure:1264: checking for working autoheader" >&5 1180 1264 # Run test in a subshell; some versions of sh will print an error if 1181 1265 # an executable is not found, even if stderr is redirected. … … 1190 1274 1191 1275 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 1192 echo "configure:1 193: checking for working makeinfo" >&51276 echo "configure:1277: checking for working makeinfo" >&5 1193 1277 # Run test in a subshell; some versions of sh will print an error if 1194 1278 # an executable is not found, even if stderr is redirected. … … 1285 1369 # Check if gcc -print-prog-name=ld gives a path. 1286 1370 echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 1287 echo "configure:1 288: checking for ld used by GCC" >&51371 echo "configure:1372: checking for ld used by GCC" >&5 1288 1372 case $host in 1289 1373 *-*-mingw*) … … 1315 1399 elif test "$with_gnu_ld" = yes; then 1316 1400 echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 1317 echo "configure:1 318: checking for GNU ld" >&51401 echo "configure:1402: checking for GNU ld" >&5 1318 1402 else 1319 1403 echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 1320 echo "configure:1 321: checking for non-GNU ld" >&51404 echo "configure:1405: checking for non-GNU ld" >&5 1321 1405 fi 1322 1406 if eval "test \"`echo '$''{'ac_cv_path_LD'+set}'`\" = set"; then … … 1353 1437 test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } 1354 1438 echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 1355 echo "configure:1 356: checking if the linker ($LD) is GNU ld" >&51439 echo "configure:1440: checking if the linker ($LD) is GNU ld" >&5 1356 1440 if eval "test \"`echo '$''{'ac_cv_prog_gnu_ld'+set}'`\" = set"; then 1357 1441 echo $ac_n "(cached) $ac_c" 1>&6 … … 1370 1454 1371 1455 echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6 1372 echo "configure:1 373: checking for $LD option to reload object files" >&51456 echo "configure:1457: checking for $LD option to reload object files" >&5 1373 1457 if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then 1374 1458 echo $ac_n "(cached) $ac_c" 1>&6 … … 1382 1466 1383 1467 echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 1384 echo "configure:1 385: checking for BSD-compatible nm" >&51468 echo "configure:1469: checking for BSD-compatible nm" >&5 1385 1469 if eval "test \"`echo '$''{'ac_cv_path_NM'+set}'`\" = set"; then 1386 1470 echo $ac_n "(cached) $ac_c" 1>&6 … … 1420 1504 1421 1505 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 1422 echo "configure:1 423: checking whether ln -s works" >&51506 echo "configure:1507: checking whether ln -s works" >&5 1423 1507 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then 1424 1508 echo $ac_n "(cached) $ac_c" 1>&6 … … 1430 1514 ac_cv_prog_LN_S="ln -s" 1431 1515 else 1432 ac_cv_prog_LN_S=ln 1433 fi 1516 echo A > conftestdata; 1517 if ln conftestdata conftestdata2 2>/dev/null; then 1518 ac_cv_prog_LN_S=ln 1519 else 1520 ac_cv_prog_LN_S=cp 1521 fi 1522 fi 1523 rm -f conftestdata* 1434 1524 fi 1435 1525 LN_S="$ac_cv_prog_LN_S" … … 1441 1531 1442 1532 echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6 1443 echo "configure:1 444: checking how to recognise dependant libraries" >&51533 echo "configure:1534: checking how to recognise dependant libraries" >&5 1444 1534 if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then 1445 1535 echo $ac_n "(cached) $ac_c" 1>&6 … … 1584 1674 1585 1675 echo $ac_n "checking for object suffix""... $ac_c" 1>&6 1586 echo "configure:1 587: checking for object suffix" >&51676 echo "configure:1677: checking for object suffix" >&5 1587 1677 if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then 1588 1678 echo $ac_n "(cached) $ac_c" 1>&6 … … 1590 1680 rm -f conftest* 1591 1681 echo 'int i = 1;' > conftest.$ac_ext 1592 if { (eval echo configure:1 593: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1682 if { (eval echo configure:1683: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1593 1683 for ac_file in conftest.*; do 1594 1684 case $ac_file in … … 1607 1697 ac_objext=$ac_cv_objext 1608 1698 1609 1610 1611 echo $ac_n "checking for executable suffix""... $ac_c" 1>&61612 echo "configure:1613: checking for executable suffix" >&51613 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then1614 echo $ac_n "(cached) $ac_c" 1>&61615 else1616 if test "$CYGWIN" = yes || test "$MINGW32" = yes; then1617 ac_cv_exeext=.exe1618 else1619 rm -f conftest*1620 echo 'int main () { return 0; }' > conftest.$ac_ext1621 ac_cv_exeext=1622 if { (eval echo configure:1623: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then1623 for file in conftest.*; do1624 case $file in1625 *.c | *.o | *.obj | *.ilk | *.pdb) ;;1626 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;1627 esac1628 done1629 else1630 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; }1631 fi1632 rm -f conftest*1633 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no1634 fi1635 fi1636 1637 EXEEXT=""1638 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext}1639 echo "$ac_t""${ac_cv_exeext}" 1>&61640 ac_exeext=$EXEEXT1641 1642 1699 if test $host != $build; then 1643 1700 ac_tool_prefix=${host_alias}- … … 1653 1710 if test "$file_magic_cmd" = '$MAGIC_CMD'; then 1654 1711 echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6 1655 echo "configure:1 656: checking for ${ac_tool_prefix}file" >&51712 echo "configure:1713: checking for ${ac_tool_prefix}file" >&5 1656 1713 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 1657 1714 echo $ac_n "(cached) $ac_c" 1>&6 … … 1715 1772 if test -n "$ac_tool_prefix"; then 1716 1773 echo $ac_n "checking for file""... $ac_c" 1>&6 1717 echo "configure:17 18: checking for file" >&51774 echo "configure:1775: checking for file" >&5 1718 1775 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 1719 1776 echo $ac_n "(cached) $ac_c" 1>&6 … … 1786 1843 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 1787 1844 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1788 echo "configure:1 789: checking for $ac_word" >&51845 echo "configure:1846: checking for $ac_word" >&5 1789 1846 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1790 1847 echo $ac_n "(cached) $ac_c" 1>&6 … … 1793 1850 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1794 1851 else 1795 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1852 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1796 1853 ac_dummy="$PATH" 1797 1854 for ac_dir in $ac_dummy; do 1798 1855 test -z "$ac_dir" && ac_dir=. 1799 if test -f $ac_dir/$ac_word; then 1856 if test -f $ac_dir/$ac_word -o \ 1857 -f $ac_dir/$ac_word$ac_exeext ; then 1800 1858 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 1801 1859 break … … 1818 1876 set dummy ranlib; ac_word=$2 1819 1877 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1820 echo "configure:18 21: checking for $ac_word" >&51878 echo "configure:1879: checking for $ac_word" >&5 1821 1879 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1822 1880 echo $ac_n "(cached) $ac_c" 1>&6 … … 1825 1883 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1826 1884 else 1827 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1885 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1828 1886 ac_dummy="$PATH" 1829 1887 for ac_dir in $ac_dummy; do 1830 1888 test -z "$ac_dir" && ac_dir=. 1831 if test -f $ac_dir/$ac_word; then 1889 if test -f $ac_dir/$ac_word -o \ 1890 -f $ac_dir/$ac_word$ac_exeext ; then 1832 1891 ac_cv_prog_RANLIB="ranlib" 1833 1892 break … … 1853 1912 set dummy ${ac_tool_prefix}strip; ac_word=$2 1854 1913 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1855 echo "configure:1 856: checking for $ac_word" >&51914 echo "configure:1915: checking for $ac_word" >&5 1856 1915 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 1857 1916 echo $ac_n "(cached) $ac_c" 1>&6 … … 1860 1919 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 1861 1920 else 1862 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1921 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1863 1922 ac_dummy="$PATH" 1864 1923 for ac_dir in $ac_dummy; do 1865 1924 test -z "$ac_dir" && ac_dir=. 1866 if test -f $ac_dir/$ac_word; then 1925 if test -f $ac_dir/$ac_word -o \ 1926 -f $ac_dir/$ac_word$ac_exeext ; then 1867 1927 ac_cv_prog_STRIP="${ac_tool_prefix}strip" 1868 1928 break … … 1885 1945 set dummy strip; ac_word=$2 1886 1946 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1887 echo "configure:1 888: checking for $ac_word" >&51947 echo "configure:1948: checking for $ac_word" >&5 1888 1948 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 1889 1949 echo $ac_n "(cached) $ac_c" 1>&6 … … 1892 1952 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 1893 1953 else 1894 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1954 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1895 1955 ac_dummy="$PATH" 1896 1956 for ac_dir in $ac_dummy; do 1897 1957 test -z "$ac_dir" && ac_dir=. 1898 if test -f $ac_dir/$ac_word; then 1958 if test -f $ac_dir/$ac_word -o \ 1959 -f $ac_dir/$ac_word$ac_exeext ; then 1899 1960 ac_cv_prog_STRIP="strip" 1900 1961 break … … 1952 2013 *-*-irix6*) 1953 2014 # Find out which ABI we are using. 1954 echo '#line 1955"configure"' > conftest.$ac_ext1955 if { (eval echo configure: 1956: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2015 echo '#line 2016 "configure"' > conftest.$ac_ext 2016 if { (eval echo configure:2017: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1956 2017 case "`/usr/bin/file conftest.o`" in 1957 2018 *32-bit*) … … 1974 2035 CFLAGS="$CFLAGS -belf" 1975 2036 echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 1976 echo "configure: 1977: checking whether the C compiler needs -belf" >&52037 echo "configure:2038: checking whether the C compiler needs -belf" >&5 1977 2038 if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then 1978 2039 echo $ac_n "(cached) $ac_c" 1>&6 … … 1987 2048 1988 2049 cat > conftest.$ac_ext <<EOF 1989 #line 1990"configure"2050 #line 2051 "configure" 1990 2051 #include "confdefs.h" 1991 2052 … … 1994 2055 ; return 0; } 1995 2056 EOF 1996 if { (eval echo configure: 1997: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2057 if { (eval echo configure:2058: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1997 2058 rm -rf conftest* 1998 2059 lt_cv_cc_needs_belf=yes … … 2118 2179 set dummy gcc; ac_word=$2 2119 2180 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2120 echo "configure:21 21: checking for $ac_word" >&52181 echo "configure:2182: checking for $ac_word" >&5 2121 2182 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2122 2183 echo $ac_n "(cached) $ac_c" 1>&6 … … 2125 2186 ac_cv_prog_CC="$CC" # Let the user override the test. 2126 2187 else 2127 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2188 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2128 2189 ac_dummy="$PATH" 2129 2190 for ac_dir in $ac_dummy; do 2130 2191 test -z "$ac_dir" && ac_dir=. 2131 if test -f $ac_dir/$ac_word; then 2192 if test -f $ac_dir/$ac_word -o \ 2193 -f $ac_dir/$ac_word$ac_exeext ; then 2132 2194 ac_cv_prog_CC="gcc" 2133 2195 break … … 2148 2210 set dummy cc; ac_word=$2 2149 2211 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2150 echo "configure:2 151: checking for $ac_word" >&52212 echo "configure:2213: checking for $ac_word" >&5 2151 2213 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2152 2214 echo $ac_n "(cached) $ac_c" 1>&6 … … 2155 2217 ac_cv_prog_CC="$CC" # Let the user override the test. 2156 2218 else 2157 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2219 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2158 2220 ac_prog_rejected=no 2159 2221 ac_dummy="$PATH" 2160 2222 for ac_dir in $ac_dummy; do 2161 2223 test -z "$ac_dir" && ac_dir=. 2162 if test -f $ac_dir/$ac_word; then 2163 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 2224 if test -f $ac_dir/$ac_word -o \ 2225 -f $ac_dir/$ac_word$ac_exeext ; then 2226 if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \ 2227 "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then 2164 2228 ac_prog_rejected=yes 2165 2229 continue … … 2199 2263 set dummy cl; ac_word=$2 2200 2264 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2201 echo "configure:22 02: checking for $ac_word" >&52265 echo "configure:2266: checking for $ac_word" >&5 2202 2266 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2203 2267 echo $ac_n "(cached) $ac_c" 1>&6 … … 2206 2270 ac_cv_prog_CC="$CC" # Let the user override the test. 2207 2271 else 2208 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2272 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2209 2273 ac_dummy="$PATH" 2210 2274 for ac_dir in $ac_dummy; do 2211 2275 test -z "$ac_dir" && ac_dir=. 2212 if test -f $ac_dir/$ac_word; then 2276 if test -f $ac_dir/$ac_word -o \ 2277 -f $ac_dir/$ac_word$ac_exeext ; then 2213 2278 ac_cv_prog_CC="cl" 2214 2279 break … … 2231 2296 2232 2297 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 2233 echo "configure:22 34: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&52298 echo "configure:2299: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 2234 2299 2235 2300 ac_ext=c … … 2242 2307 cat > conftest.$ac_ext << EOF 2243 2308 2244 #line 2 245"configure"2309 #line 2310 "configure" 2245 2310 #include "confdefs.h" 2246 2311 2247 2312 main(){return(0);} 2248 2313 EOF 2249 if { (eval echo configure:2 250: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2314 if { (eval echo configure:2315: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2250 2315 ac_cv_prog_cc_works=yes 2251 2316 # If we can't run a trivial program, we are probably using a cross compiler. … … 2273 2338 fi 2274 2339 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 2275 echo "configure:2 276: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&52340 echo "configure:2341: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 2276 2341 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 2277 2342 cross_compiling=$ac_cv_prog_cc_cross 2278 2343 2279 2344 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 2280 echo "configure:2 281: checking whether we are using GNU C" >&52345 echo "configure:2346: checking whether we are using GNU C" >&5 2281 2346 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 2282 2347 echo $ac_n "(cached) $ac_c" 1>&6 … … 2287 2352 #endif 2288 2353 EOF 2289 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2 290: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then2354 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2355: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 2290 2355 ac_cv_prog_gcc=yes 2291 2356 else … … 2306 2371 CFLAGS= 2307 2372 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 2308 echo "configure:23 09: checking whether ${CC-cc} accepts -g" >&52373 echo "configure:2374: checking whether ${CC-cc} accepts -g" >&5 2309 2374 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 2310 2375 echo $ac_n "(cached) $ac_c" 1>&6 … … 2349 2414 # ./install, which can be erroneously created by make from ./install.sh. 2350 2415 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 2351 echo "configure:2 352: checking for a BSD compatible install" >&52416 echo "configure:2417: checking for a BSD compatible install" >&5 2352 2417 if test -z "$INSTALL"; then 2353 2418 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 2354 2419 echo $ac_n "(cached) $ac_c" 1>&6 2355 2420 else 2356 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"2421 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 2357 2422 for ac_dir in $PATH; do 2358 2423 # Account for people who put trailing slashes in PATH elements. 2359 2424 case "$ac_dir/" in 2360 2425 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; 2426 # We reject the install program from OS/2 or W3.1 2427 */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;; 2361 2428 *) 2362 2429 # OSF1 and SCO ODT 3.0 have their own names for install. … … 2364 2431 # by default. 2365 2432 for ac_prog in ginstall scoinst install; do 2366 if test -f $ac_dir/$ac_prog ; then2433 if test -f $ac_dir/$ac_prog$ac_exeext; then 2367 2434 if test $ac_prog = install && 2368 2435 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 2370 2437 : 2371 2438 else 2372 ac_cv_path_install="$ac_dir/$ac_prog -c"2439 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 2373 2440 break 2 2374 2441 fi … … 2405 2472 do 2406 2473 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 2407 echo "configure:24 08: checking for $ac_func" >&52474 echo "configure:2475: checking for $ac_func" >&5 2408 2475 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 2409 2476 echo $ac_n "(cached) $ac_c" 1>&6 2410 2477 else 2411 2478 cat > conftest.$ac_ext <<EOF 2412 #line 24 13"configure"2479 #line 2480 "configure" 2413 2480 #include "confdefs.h" 2414 2481 /* System header to define __stub macros and hopefully few prototypes, … … 2433 2500 ; return 0; } 2434 2501 EOF 2435 if { (eval echo configure:2 436: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2502 if { (eval echo configure:2503: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2436 2503 rm -rf conftest* 2437 2504 eval "ac_cv_func_$ac_func=yes" … … 2460 2527 ALL_LINGUAS= 2461 2528 echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 2462 echo "configure:2 463: checking how to run the C preprocessor" >&52529 echo "configure:2530: checking how to run the C preprocessor" >&5 2463 2530 # On Suns, sometimes $CPP names a directory. 2464 2531 if test -n "$CPP" && test -d "$CPP"; then … … 2475 2542 # not just through cpp. 2476 2543 cat > conftest.$ac_ext <<EOF 2477 #line 2478 "configure" 2544 #include <sys/types.h> 2545 #line 2546 "configure" 2478 2546 #include "confdefs.h" 2479 2547 #include <assert.h> … … 2481 2549 EOF 2482 2550 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2483 { (eval echo configure:2 484: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2551 { (eval echo configure:2552: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2484 2552 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2485 2553 if test -z "$ac_err"; then … … 2492 2560 CPP="${CC-cc} -E -traditional-cpp" 2493 2561 cat > conftest.$ac_ext <<EOF 2494 #line 2495 "configure" 2562 #include <sys/types.h> 2563 #line 2564 "configure" 2495 2564 #include "confdefs.h" 2496 2565 #include <assert.h> … … 2498 2567 EOF 2499 2568 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2500 { (eval echo configure:25 01: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2569 { (eval echo configure:2570: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2501 2570 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2502 2571 if test -z "$ac_err"; then … … 2509 2578 CPP="${CC-cc} -nologo -E" 2510 2579 cat > conftest.$ac_ext <<EOF 2511 #line 2512 "configure" 2580 #include <sys/types.h> 2581 #line 2582 "configure" 2512 2582 #include "confdefs.h" 2513 2583 #include <assert.h> … … 2515 2585 EOF 2516 2586 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2517 { (eval echo configure:25 18: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2587 { (eval echo configure:2588: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2518 2588 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2519 2589 if test -z "$ac_err"; then … … 2542 2612 set dummy ranlib; ac_word=$2 2543 2613 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2544 echo "configure:2 545: checking for $ac_word" >&52614 echo "configure:2615: checking for $ac_word" >&5 2545 2615 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 2546 2616 echo $ac_n "(cached) $ac_c" 1>&6 … … 2549 2619 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 2550 2620 else 2551 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2621 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2552 2622 ac_dummy="$PATH" 2553 2623 for ac_dir in $ac_dummy; do 2554 2624 test -z "$ac_dir" && ac_dir=. 2555 if test -f $ac_dir/$ac_word; then 2625 if test -f $ac_dir/$ac_word -o \ 2626 -f $ac_dir/$ac_word$ac_exeext ; then 2556 2627 ac_cv_prog_RANLIB="ranlib" 2557 2628 break … … 2570 2641 2571 2642 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 2572 echo "configure:2 573: checking for ANSI C header files" >&52643 echo "configure:2644: checking for ANSI C header files" >&5 2573 2644 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 2574 2645 echo $ac_n "(cached) $ac_c" 1>&6 2575 2646 else 2576 2647 cat > conftest.$ac_ext <<EOF 2577 #line 2578 "configure" 2648 #include <sys/types.h> 2649 #line 2650 "configure" 2578 2650 #include "confdefs.h" 2579 2651 #include <stdlib.h> … … 2583 2655 EOF 2584 2656 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2585 { (eval echo configure:2 586: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2657 { (eval echo configure:2658: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2586 2658 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2587 2659 if test -z "$ac_err"; then … … 2600 2672 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 2601 2673 cat > conftest.$ac_ext <<EOF 2602 #line 26 03"configure"2674 #line 2675 "configure" 2603 2675 #include "confdefs.h" 2604 2676 #include <string.h> … … 2618 2690 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 2619 2691 cat > conftest.$ac_ext <<EOF 2620 #line 26 21"configure"2692 #line 2693 "configure" 2621 2693 #include "confdefs.h" 2622 2694 #include <stdlib.h> … … 2639 2711 else 2640 2712 cat > conftest.$ac_ext <<EOF 2641 #line 2 642"configure"2713 #line 2714 "configure" 2642 2714 #include "confdefs.h" 2643 2715 #include <ctype.h> … … 2650 2722 2651 2723 EOF 2652 if { (eval echo configure:2 653: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null2724 if { (eval echo configure:2725: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 2653 2725 then 2654 2726 : … … 2674 2746 2675 2747 echo $ac_n "checking for working const""... $ac_c" 1>&6 2676 echo "configure:2 677: checking for working const" >&52748 echo "configure:2749: checking for working const" >&5 2677 2749 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then 2678 2750 echo $ac_n "(cached) $ac_c" 1>&6 2679 2751 else 2680 2752 cat > conftest.$ac_ext <<EOF 2681 #line 2 682"configure"2753 #line 2754 "configure" 2682 2754 #include "confdefs.h" 2683 2755 … … 2728 2800 ; return 0; } 2729 2801 EOF 2730 if { (eval echo configure:2 731: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2802 if { (eval echo configure:2803: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2731 2803 rm -rf conftest* 2732 2804 ac_cv_c_const=yes … … 2749 2821 2750 2822 echo $ac_n "checking for inline""... $ac_c" 1>&6 2751 echo "configure:2 752: checking for inline" >&52823 echo "configure:2824: checking for inline" >&5 2752 2824 if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then 2753 2825 echo $ac_n "(cached) $ac_c" 1>&6 … … 2756 2828 for ac_kw in inline __inline__ __inline; do 2757 2829 cat > conftest.$ac_ext <<EOF 2758 #line 2 759"configure"2830 #line 2831 "configure" 2759 2831 #include "confdefs.h" 2760 2832 … … 2763 2835 ; return 0; } 2764 2836 EOF 2765 if { (eval echo configure:2 766: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2837 if { (eval echo configure:2838: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2766 2838 rm -rf conftest* 2767 2839 ac_cv_c_inline=$ac_kw; break … … 2789 2861 2790 2862 echo $ac_n "checking for off_t""... $ac_c" 1>&6 2791 echo "configure:2 792: checking for off_t" >&52863 echo "configure:2864: checking for off_t" >&5 2792 2864 if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then 2793 2865 echo $ac_n "(cached) $ac_c" 1>&6 2794 2866 else 2795 2867 cat > conftest.$ac_ext <<EOF 2796 #line 2 797"configure"2868 #line 2869 "configure" 2797 2869 #include "confdefs.h" 2798 2870 #include <sys/types.h> … … 2822 2894 2823 2895 echo $ac_n "checking for size_t""... $ac_c" 1>&6 2824 echo "configure:28 25: checking for size_t" >&52896 echo "configure:2897: checking for size_t" >&5 2825 2897 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then 2826 2898 echo $ac_n "(cached) $ac_c" 1>&6 2827 2899 else 2828 2900 cat > conftest.$ac_ext <<EOF 2829 #line 2 830"configure"2901 #line 2902 "configure" 2830 2902 #include "confdefs.h" 2831 2903 #include <sys/types.h> … … 2857 2929 # for constant arguments. Useless! 2858 2930 echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 2859 echo "configure:2 860: checking for working alloca.h" >&52931 echo "configure:2932: checking for working alloca.h" >&5 2860 2932 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then 2861 2933 echo $ac_n "(cached) $ac_c" 1>&6 2862 2934 else 2863 2935 cat > conftest.$ac_ext <<EOF 2864 #line 2 865"configure"2936 #line 2937 "configure" 2865 2937 #include "confdefs.h" 2866 2938 #include <alloca.h> … … 2869 2941 ; return 0; } 2870 2942 EOF 2871 if { (eval echo configure:2 872: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2943 if { (eval echo configure:2944: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2872 2944 rm -rf conftest* 2873 2945 ac_cv_header_alloca_h=yes … … 2890 2962 2891 2963 echo $ac_n "checking for alloca""... $ac_c" 1>&6 2892 echo "configure:2 893: checking for alloca" >&52964 echo "configure:2965: checking for alloca" >&5 2893 2965 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then 2894 2966 echo $ac_n "(cached) $ac_c" 1>&6 2895 2967 else 2896 2968 cat > conftest.$ac_ext <<EOF 2897 #line 2 898"configure"2969 #line 2970 "configure" 2898 2970 #include "confdefs.h" 2899 2971 … … 2923 2995 ; return 0; } 2924 2996 EOF 2925 if { (eval echo configure:29 26: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2997 if { (eval echo configure:2998: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2926 2998 rm -rf conftest* 2927 2999 ac_cv_func_alloca_works=yes … … 2955 3027 2956 3028 echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 2957 echo "configure: 2958: checking whether alloca needs Cray hooks" >&53029 echo "configure:3030: checking whether alloca needs Cray hooks" >&5 2958 3030 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then 2959 3031 echo $ac_n "(cached) $ac_c" 1>&6 2960 3032 else 2961 3033 cat > conftest.$ac_ext <<EOF 2962 #line 2963"configure"3034 #line 3035 "configure" 2963 3035 #include "confdefs.h" 2964 3036 #if defined(CRAY) && ! defined(CRAY2) … … 2985 3057 for ac_func in _getb67 GETB67 getb67; do 2986 3058 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 2987 echo "configure: 2988: checking for $ac_func" >&53059 echo "configure:3060: checking for $ac_func" >&5 2988 3060 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 2989 3061 echo $ac_n "(cached) $ac_c" 1>&6 2990 3062 else 2991 3063 cat > conftest.$ac_ext <<EOF 2992 #line 2993"configure"3064 #line 3065 "configure" 2993 3065 #include "confdefs.h" 2994 3066 /* System header to define __stub macros and hopefully few prototypes, … … 3013 3085 ; return 0; } 3014 3086 EOF 3015 if { (eval echo configure:30 16: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3087 if { (eval echo configure:3088: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3016 3088 rm -rf conftest* 3017 3089 eval "ac_cv_func_$ac_func=yes" … … 3040 3112 3041 3113 echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 3042 echo "configure:3 043: checking stack direction for C alloca" >&53114 echo "configure:3115: checking stack direction for C alloca" >&5 3043 3115 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then 3044 3116 echo $ac_n "(cached) $ac_c" 1>&6 … … 3048 3120 else 3049 3121 cat > conftest.$ac_ext <<EOF 3050 #line 3 051"configure"3122 #line 3123 "configure" 3051 3123 #include "confdefs.h" 3052 3124 find_stack_direction () … … 3067 3139 } 3068 3140 EOF 3069 if { (eval echo configure:3 070: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null3141 if { (eval echo configure:3142: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 3070 3142 then 3071 3143 ac_cv_c_stack_direction=1 … … 3092 3164 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 3093 3165 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 3094 echo "configure:3 095: checking for $ac_hdr" >&53166 echo "configure:3167: checking for $ac_hdr" >&5 3095 3167 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 3096 3168 echo $ac_n "(cached) $ac_c" 1>&6 3097 3169 else 3098 3170 cat > conftest.$ac_ext <<EOF 3099 #line 3100 "configure" 3171 #include <sys/types.h> 3172 #line 3173 "configure" 3100 3173 #include "confdefs.h" 3101 3174 #include <$ac_hdr> 3102 3175 EOF 3103 3176 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3104 { (eval echo configure:31 05: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3177 { (eval echo configure:3178: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3105 3178 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3106 3179 if test -z "$ac_err"; then … … 3131 3204 do 3132 3205 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3133 echo "configure:3 134: checking for $ac_func" >&53206 echo "configure:3207: checking for $ac_func" >&5 3134 3207 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3135 3208 echo $ac_n "(cached) $ac_c" 1>&6 3136 3209 else 3137 3210 cat > conftest.$ac_ext <<EOF 3138 #line 3 139"configure"3211 #line 3212 "configure" 3139 3212 #include "confdefs.h" 3140 3213 /* System header to define __stub macros and hopefully few prototypes, … … 3159 3232 ; return 0; } 3160 3233 EOF 3161 if { (eval echo configure:3 162: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3234 if { (eval echo configure:3235: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3162 3235 rm -rf conftest* 3163 3236 eval "ac_cv_func_$ac_func=yes" … … 3184 3257 3185 3258 echo $ac_n "checking for working mmap""... $ac_c" 1>&6 3186 echo "configure:3 187: checking for working mmap" >&53259 echo "configure:3260: checking for working mmap" >&5 3187 3260 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then 3188 3261 echo $ac_n "(cached) $ac_c" 1>&6 … … 3192 3265 else 3193 3266 cat > conftest.$ac_ext <<EOF 3194 #line 3 195"configure"3267 #line 3268 "configure" 3195 3268 #include "confdefs.h" 3196 3269 … … 3332 3405 3333 3406 EOF 3334 if { (eval echo configure:3 335: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null3407 if { (eval echo configure:3408: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 3335 3408 then 3336 3409 ac_cv_func_mmap_fixed_mapped=yes … … 3360 3433 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 3361 3434 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 3362 echo "configure:3 363: checking for $ac_hdr" >&53435 echo "configure:3436: checking for $ac_hdr" >&5 3363 3436 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 3364 3437 echo $ac_n "(cached) $ac_c" 1>&6 3365 3438 else 3366 3439 cat > conftest.$ac_ext <<EOF 3367 #line 3368 "configure" 3440 #include <sys/types.h> 3441 #line 3442 "configure" 3368 3442 #include "confdefs.h" 3369 3443 #include <$ac_hdr> 3370 3444 EOF 3371 3445 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3372 { (eval echo configure:3 373: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3446 { (eval echo configure:3447: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3373 3447 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3374 3448 if test -z "$ac_err"; then … … 3400 3474 do 3401 3475 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3402 echo "configure:34 03: checking for $ac_func" >&53476 echo "configure:3477: checking for $ac_func" >&5 3403 3477 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3404 3478 echo $ac_n "(cached) $ac_c" 1>&6 3405 3479 else 3406 3480 cat > conftest.$ac_ext <<EOF 3407 #line 34 08"configure"3481 #line 3482 "configure" 3408 3482 #include "confdefs.h" 3409 3483 /* System header to define __stub macros and hopefully few prototypes, … … 3428 3502 ; return 0; } 3429 3503 EOF 3430 if { (eval echo configure:3 431: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3504 if { (eval echo configure:3505: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3431 3505 rm -rf conftest* 3432 3506 eval "ac_cv_func_$ac_func=yes" … … 3457 3531 do 3458 3532 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3459 echo "configure:3 460: checking for $ac_func" >&53533 echo "configure:3534: checking for $ac_func" >&5 3460 3534 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3461 3535 echo $ac_n "(cached) $ac_c" 1>&6 3462 3536 else 3463 3537 cat > conftest.$ac_ext <<EOF 3464 #line 3 465"configure"3538 #line 3539 "configure" 3465 3539 #include "confdefs.h" 3466 3540 /* System header to define __stub macros and hopefully few prototypes, … … 3485 3559 ; return 0; } 3486 3560 EOF 3487 if { (eval echo configure:3 488: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3561 if { (eval echo configure:3562: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3488 3562 rm -rf conftest* 3489 3563 eval "ac_cv_func_$ac_func=yes" … … 3519 3593 if test $ac_cv_header_locale_h = yes; then 3520 3594 echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 3521 echo "configure:35 22: checking for LC_MESSAGES" >&53595 echo "configure:3596: checking for LC_MESSAGES" >&5 3522 3596 if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then 3523 3597 echo $ac_n "(cached) $ac_c" 1>&6 3524 3598 else 3525 3599 cat > conftest.$ac_ext <<EOF 3526 #line 3 527"configure"3600 #line 3601 "configure" 3527 3601 #include "confdefs.h" 3528 3602 #include <locale.h> … … 3531 3605 ; return 0; } 3532 3606 EOF 3533 if { (eval echo configure:3 534: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3607 if { (eval echo configure:3608: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3534 3608 rm -rf conftest* 3535 3609 am_cv_val_LC_MESSAGES=yes … … 3552 3626 fi 3553 3627 echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6 3554 echo "configure:3 555: checking whether NLS is requested" >&53628 echo "configure:3629: checking whether NLS is requested" >&5 3555 3629 # Check whether --enable-nls or --disable-nls was given. 3556 3630 if test "${enable_nls+set}" = set; then … … 3572 3646 3573 3647 echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6 3574 echo "configure:3 575: checking whether included gettext is requested" >&53648 echo "configure:3649: checking whether included gettext is requested" >&5 3575 3649 # Check whether --with-included-gettext or --without-included-gettext was given. 3576 3650 if test "${with_included_gettext+set}" = set; then … … 3591 3665 ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'` 3592 3666 echo $ac_n "checking for libintl.h""... $ac_c" 1>&6 3593 echo "configure:3 594: checking for libintl.h" >&53667 echo "configure:3668: checking for libintl.h" >&5 3594 3668 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 3595 3669 echo $ac_n "(cached) $ac_c" 1>&6 3596 3670 else 3597 3671 cat > conftest.$ac_ext <<EOF 3598 #line 3599 "configure" 3672 #include <sys/types.h> 3673 #line 3674 "configure" 3599 3674 #include "confdefs.h" 3600 3675 #include <libintl.h> 3601 3676 EOF 3602 3677 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3603 { (eval echo configure:36 04: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3678 { (eval echo configure:3679: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3604 3679 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3605 3680 if test -z "$ac_err"; then … … 3618 3693 echo "$ac_t""yes" 1>&6 3619 3694 echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6 3620 echo "configure:36 21: checking for gettext in libc" >&53695 echo "configure:3696: checking for gettext in libc" >&5 3621 3696 if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then 3622 3697 echo $ac_n "(cached) $ac_c" 1>&6 3623 3698 else 3624 3699 cat > conftest.$ac_ext <<EOF 3625 #line 3 626"configure"3700 #line 3701 "configure" 3626 3701 #include "confdefs.h" 3627 3702 #include <libintl.h> … … 3630 3705 ; return 0; } 3631 3706 EOF 3632 if { (eval echo configure:3 633: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3707 if { (eval echo configure:3708: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3633 3708 rm -rf conftest* 3634 3709 gt_cv_func_gettext_libc=yes … … 3646 3721 if test "$gt_cv_func_gettext_libc" != "yes"; then 3647 3722 echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6 3648 echo "configure:3 649: checking for bindtextdomain in -lintl" >&53723 echo "configure:3724: checking for bindtextdomain in -lintl" >&5 3649 3724 ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'` 3650 3725 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3654 3729 LIBS="-lintl $LIBS" 3655 3730 cat > conftest.$ac_ext <<EOF 3656 #line 3 657"configure"3731 #line 3732 "configure" 3657 3732 #include "confdefs.h" 3658 3733 /* Override any gcc2 internal prototype to avoid an error. */ … … 3665 3740 ; return 0; } 3666 3741 EOF 3667 if { (eval echo configure:3 668: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3742 if { (eval echo configure:3743: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3668 3743 rm -rf conftest* 3669 3744 eval "ac_cv_lib_$ac_lib_var=yes" … … 3681 3756 echo "$ac_t""yes" 1>&6 3682 3757 echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6 3683 echo "configure:3 684: checking for gettext in libintl" >&53758 echo "configure:3759: checking for gettext in libintl" >&5 3684 3759 if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then 3685 3760 echo $ac_n "(cached) $ac_c" 1>&6 3686 3761 else 3687 3762 cat > conftest.$ac_ext <<EOF 3688 #line 3 689"configure"3763 #line 3764 "configure" 3689 3764 #include "confdefs.h" 3690 3765 … … 3693 3768 ; return 0; } 3694 3769 EOF 3695 if { (eval echo configure:3 696: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3770 if { (eval echo configure:3771: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3696 3771 rm -rf conftest* 3697 3772 gt_cv_func_gettext_libintl=yes … … 3721 3796 set dummy msgfmt; ac_word=$2 3722 3797 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3723 echo "configure:37 24: checking for $ac_word" >&53798 echo "configure:3799: checking for $ac_word" >&5 3724 3799 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then 3725 3800 echo $ac_n "(cached) $ac_c" 1>&6 … … 3730 3805 ;; 3731 3806 *) 3732 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${ IFS}:"3807 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${PATH_IFS}" 3733 3808 for ac_dir in $PATH; do 3734 3809 test -z "$ac_dir" && ac_dir=. … … 3755 3830 do 3756 3831 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3757 echo "configure:3 758: checking for $ac_func" >&53832 echo "configure:3833: checking for $ac_func" >&5 3758 3833 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3759 3834 echo $ac_n "(cached) $ac_c" 1>&6 3760 3835 else 3761 3836 cat > conftest.$ac_ext <<EOF 3762 #line 3 763"configure"3837 #line 3838 "configure" 3763 3838 #include "confdefs.h" 3764 3839 /* System header to define __stub macros and hopefully few prototypes, … … 3783 3858 ; return 0; } 3784 3859 EOF 3785 if { (eval echo configure:3 786: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3860 if { (eval echo configure:3861: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3786 3861 rm -rf conftest* 3787 3862 eval "ac_cv_func_$ac_func=yes" … … 3810 3885 set dummy gmsgfmt; ac_word=$2 3811 3886 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3812 echo "configure:38 13: checking for $ac_word" >&53887 echo "configure:3888: checking for $ac_word" >&5 3813 3888 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then 3814 3889 echo $ac_n "(cached) $ac_c" 1>&6 3815 3890 else 3816 3891 case "$GMSGFMT" in 3817 /* )3892 /* | [a-zA-Z]:*) 3818 3893 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. 3819 3894 ;; 3820 ?:/*) 3895 ?:/*) 3821 3896 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a dos path. 3822 3897 ;; 3823 3898 *) 3824 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3899 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3825 3900 ac_dummy="$PATH" 3826 for ac_dir in $ac_dummy; do 3901 for ac_dir in $ac_dummy; do 3827 3902 test -z "$ac_dir" && ac_dir=. 3828 3903 if test -f $ac_dir/$ac_word; then 3829 3904 ac_cv_path_GMSGFMT="$ac_dir/$ac_word" 3905 break 3906 fi 3907 if test -f $ac_dir/$ac_word$ac_exeext; then 3908 ac_cv_path_GMSGFMT="$ac_dir/$ac_word$ac_exeext" 3830 3909 break 3831 3910 fi … … 3846 3925 set dummy xgettext; ac_word=$2 3847 3926 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3848 echo "configure:3 849: checking for $ac_word" >&53927 echo "configure:3928: checking for $ac_word" >&5 3849 3928 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then 3850 3929 echo $ac_n "(cached) $ac_c" 1>&6 … … 3855 3934 ;; 3856 3935 *) 3857 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${ IFS}:"3936 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${PATH_IFS}" 3858 3937 for ac_dir in $PATH; do 3859 3938 test -z "$ac_dir" && ac_dir=. … … 3878 3957 3879 3958 cat > conftest.$ac_ext <<EOF 3880 #line 3 881"configure"3959 #line 3960 "configure" 3881 3960 #include "confdefs.h" 3882 3961 … … 3886 3965 ; return 0; } 3887 3966 EOF 3888 if { (eval echo configure:3 889: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3967 if { (eval echo configure:3968: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3889 3968 rm -rf conftest* 3890 3969 CATOBJEXT=.gmo … … 3918 3997 set dummy msgfmt; ac_word=$2 3919 3998 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3920 echo "configure: 3921: checking for $ac_word" >&53999 echo "configure:4000: checking for $ac_word" >&5 3921 4000 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then 3922 4001 echo $ac_n "(cached) $ac_c" 1>&6 … … 3927 4006 ;; 3928 4007 *) 3929 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${ IFS}:"4008 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${PATH_IFS}" 3930 4009 for ac_dir in $PATH; do 3931 4010 test -z "$ac_dir" && ac_dir=. … … 3952 4031 set dummy gmsgfmt; ac_word=$2 3953 4032 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3954 echo "configure: 3955: checking for $ac_word" >&54033 echo "configure:4034: checking for $ac_word" >&5 3955 4034 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then 3956 4035 echo $ac_n "(cached) $ac_c" 1>&6 3957 4036 else 3958 4037 case "$GMSGFMT" in 3959 /* )4038 /* | [a-zA-Z]:*) 3960 4039 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. 3961 4040 ;; 3962 ?:/*) 4041 ?:/*) 3963 4042 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a dos path. 3964 4043 ;; 3965 4044 *) 3966 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"4045 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3967 4046 ac_dummy="$PATH" 3968 for ac_dir in $ac_dummy; do 4047 for ac_dir in $ac_dummy; do 3969 4048 test -z "$ac_dir" && ac_dir=. 3970 4049 if test -f $ac_dir/$ac_word; then 3971 4050 ac_cv_path_GMSGFMT="$ac_dir/$ac_word" 4051 break 4052 fi 4053 if test -f $ac_dir/$ac_word$ac_exeext; then 4054 ac_cv_path_GMSGFMT="$ac_dir/$ac_word$ac_exeext" 3972 4055 break 3973 4056 fi … … 3988 4071 set dummy xgettext; ac_word=$2 3989 4072 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3990 echo "configure: 3991: checking for $ac_word" >&54073 echo "configure:4074: checking for $ac_word" >&5 3991 4074 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then 3992 4075 echo $ac_n "(cached) $ac_c" 1>&6 … … 3997 4080 ;; 3998 4081 *) 3999 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${ IFS}:"4082 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${PATH_IFS}" 4000 4083 for ac_dir in $PATH; do 4001 4084 test -z "$ac_dir" && ac_dir=. … … 4078 4161 else 4079 4162 echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6 4080 echo "configure:4 081: checking for catalogs to be installed" >&54163 echo "configure:4164: checking for catalogs to be installed" >&5 4081 4164 NEW_LINGUAS= 4082 4165 for lang in ${LINGUAS=$ALL_LINGUAS}; do … … 4106 4189 ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'` 4107 4190 echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6 4108 echo "configure:41 09: checking for linux/version.h" >&54191 echo "configure:4192: checking for linux/version.h" >&5 4109 4192 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4110 4193 echo $ac_n "(cached) $ac_c" 1>&6 4111 4194 else 4112 4195 cat > conftest.$ac_ext <<EOF 4113 #line 4114 "configure" 4196 #include <sys/types.h> 4197 #line 4198 "configure" 4114 4198 #include "confdefs.h" 4115 4199 #include <linux/version.h> 4116 4200 EOF 4117 4201 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4118 { (eval echo configure:4 119: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4202 { (eval echo configure:4203: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4119 4203 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4120 4204 if test -z "$ac_err"; then … … 4164 4248 test -d po || mkdir po 4165 4249 if test "x$srcdir" != "x."; then 4166 if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then4250 if test "x`echo $srcdir | sed -e 's@.\:/.*@@' -e 's@/.*@@' `" = "x"; then 4167 4251 posrcprefix="$srcdir/" 4168 4252 else … … 4179 4263 4180 4264 echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 4181 echo "configure:4 182: checking whether to enable maintainer-specific portions of Makefiles" >&54265 echo "configure:4266: checking whether to enable maintainer-specific portions of Makefiles" >&5 4182 4266 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. 4183 4267 if test "${enable_maintainer_mode+set}" = set; then … … 4203 4287 4204 4288 4289 4205 4290 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 4206 echo "configure:42 07: checking for executable suffix" >&54291 echo "configure:4292: checking for executable suffix" >&5 4207 4292 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 4208 4293 echo $ac_n "(cached) $ac_c" 1>&6 4209 4294 else 4210 if test "$CYGWIN" = yes || test "$MINGW32" = yes ; then4295 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 4211 4296 ac_cv_exeext=.exe 4212 4297 else … … 4214 4299 echo 'int main () { return 0; }' > conftest.$ac_ext 4215 4300 ac_cv_exeext= 4216 if { (eval echo configure:4 217: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then4301 if { (eval echo configure:4302: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 4217 4302 for file in conftest.*; do 4218 4303 case $file in 4219 *.c | *.o | *.obj | *.ilk | *.pdb) ;;4304 *.c | *.o | *.obj) ;; 4220 4305 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; 4221 4306 esac … … 4239 4324 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 4240 4325 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 4241 echo "configure:4 242: checking for $ac_hdr" >&54326 echo "configure:4327: checking for $ac_hdr" >&5 4242 4327 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4243 4328 echo $ac_n "(cached) $ac_c" 1>&6 4244 4329 else 4245 4330 cat > conftest.$ac_ext <<EOF 4246 #line 4247 "configure" 4331 #include <sys/types.h> 4332 #line 4333 "configure" 4247 4333 #include "confdefs.h" 4248 4334 #include <$ac_hdr> 4249 4335 EOF 4250 4336 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4251 { (eval echo configure:4 252: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4337 { (eval echo configure:4338: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4252 4338 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4253 4339 if test -z "$ac_err"; then … … 4277 4363 4278 4364 echo $ac_n "checking the size of gmon pointers""... $ac_c" 1>&6 4279 echo "configure:4 280: checking the size of gmon pointers" >&54365 echo "configure:4366: checking the size of gmon pointers" >&5 4280 4366 if test "$cross_compiling" = yes; then 4281 4367 gmon_ptr_size=4 4282 4368 else 4283 4369 cat > conftest.$ac_ext <<EOF 4284 #line 4 285"configure"4370 #line 4371 "configure" 4285 4371 #include "confdefs.h" 4286 4372 #include <stdio.h> … … 4305 4391 } 4306 4392 EOF 4307 if { (eval echo configure:43 08: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null4393 if { (eval echo configure:4394: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 4308 4394 then 4309 4395 gmon_ptr_size=`cat conftestval` … … 4422 4508 # Run this file to recreate the current configuration. 4423 4509 # This directory was configured as follows, 4510 EOF 4511 echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS 4512 cat >> $CONFIG_STATUS <<EOF 4424 4513 # on host `(hostname || uname -n) 2>/dev/null | sed 1q`: 4425 4514 # … … 4447 4536 ac_given_srcdir=$srcdir 4448 4537 ac_given_INSTALL="$INSTALL" 4538 PATHIFS="$PATH_IFS" 4449 4539 4450 4540 trap 'rm -fr `echo "Makefile po/Makefile.in:po/Make-in gconfig.h:gconfig.in" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 … … 4457 4547 $ac_vpsub 4458 4548 $extrasub 4549 s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g 4459 4550 s%@SHELL@%$SHELL%g 4460 4551 s%@CFLAGS@%$CFLAGS%g … … 4480 4571 s%@infodir@%$infodir%g 4481 4572 s%@mandir@%$mandir%g 4573 s%@PATH_IFS@%$PATH_IFS%g 4574 s%@EXEEXT@%$EXEEXT%g 4482 4575 s%@host@%$host%g 4483 4576 s%@host_alias@%$host_alias%g … … 4509 4602 s%@LN_S@%$LN_S%g 4510 4603 s%@OBJEXT@%$OBJEXT%g 4511 s%@EXEEXT@%$EXEEXT%g4512 4604 s%@RANLIB@%$RANLIB%g 4513 4605 s%@STRIP@%$STRIP%g … … 4609 4701 if test -z "$ac_dots"; then top_srcdir=. 4610 4702 else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; 4611 /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 4703 /* | [A-Za-z]:*) 4704 srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 4612 4705 *) # Relative path. 4613 4706 srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" … … 4616 4709 4617 4710 case "$ac_given_INSTALL" in 4618 [/$]* ) INSTALL="$ac_given_INSTALL" ;;4711 [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;; 4619 4712 *) INSTALL="$ac_dots$ac_given_INSTALL" ;; 4620 4713 esac … … 4629 4722 esac 4630 4723 4631 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s% :% $ac_given_srcdir/%g"`4724 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%$PATHIFS% $ac_given_srcdir/%g"` 4632 4725 sed -e "$ac_comsub 4633 4726 s%@configure_input@%$configure_input%g … … 4676 4769 4677 4770 rm -f conftest.frag conftest.in conftest.out 4678 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 4771 # kso the other way around might work better with drive letters and such. 4772 # ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 4773 ac_file_inputs=`echo $ac_file_in|sed -e "s%:% $ac_given_srcdir/%g" -e "s%^%$ac_given_srcdir/%" ` 4679 4774 cat $ac_file_inputs > conftest.in 4680 4775 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.