Changeset 80 for trunk/src/gcc/libobjc/configure
- Timestamp:
- May 2, 2003, 12:30:43 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gcc/libobjc/configure
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r79 r80 545 545 fi 546 546 547 echo $ac_n "checking for path separator""... $ac_c" 1>&6 548 echo "configure:549: checking for path separator" >&5 549 # Filter path to get backslahes into forwardslashes 550 case "`uname -s 2> /dev/null`" in 551 OS/2) 552 PATH=`echo -E "$PATH" | sed 's+\\\\+/+g'` 553 PATH_IFS=';' 554 ;; 555 *) 556 PATH_IFS=':' 557 ;; 558 esac 559 echo "$ac_t""${PATH_IFS}" 1>&6 560 561 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 562 echo "configure:563: checking for Cygwin environment" >&5 563 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then 564 echo $ac_n "(cached) $ac_c" 1>&6 565 else 566 cat > conftest.$ac_ext <<EOF 567 #line 568 "configure" 568 #include "confdefs.h" 569 570 int main() { 571 572 #ifndef __CYGWIN__ 573 #define __CYGWIN__ __CYGWIN32__ 574 #endif 575 return __CYGWIN__; 576 ; return 0; } 577 EOF 578 if { (eval echo configure:579: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 579 rm -rf conftest* 580 ac_cv_cygwin=yes 581 else 582 echo "configure: failed program was:" >&5 583 cat conftest.$ac_ext >&5 584 rm -rf conftest* 585 ac_cv_cygwin=no 586 fi 587 rm -f conftest* 588 rm -f conftest* 589 fi 590 591 echo "$ac_t""$ac_cv_cygwin" 1>&6 592 CYGWIN= 593 test "$ac_cv_cygwin" = yes && CYGWIN=yes 594 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 595 echo "configure:596: checking for mingw32 environment" >&5 596 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then 597 echo $ac_n "(cached) $ac_c" 1>&6 598 else 599 cat > conftest.$ac_ext <<EOF 600 #line 601 "configure" 601 #include "confdefs.h" 602 603 int main() { 604 return __MINGW32__; 605 ; return 0; } 606 EOF 607 if { (eval echo configure:608: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 608 rm -rf conftest* 609 ac_cv_mingw32=yes 610 else 611 echo "configure: failed program was:" >&5 612 cat conftest.$ac_ext >&5 613 rm -rf conftest* 614 ac_cv_mingw32=no 615 fi 616 rm -f conftest* 617 rm -f conftest* 618 fi 619 620 echo "$ac_t""$ac_cv_mingw32" 1>&6 621 MINGW32= 622 test "$ac_cv_mingw32" = yes && MINGW32=yes 623 echo $ac_n "checking for EMX/OS2 environment""... $ac_c" 1>&6 624 echo "configure:625: checking for EMX/OS2 environment" >&5 625 if eval "test \"`echo '$''{'ac_cv_emxos2'+set}'`\" = set"; then 626 echo $ac_n "(cached) $ac_c" 1>&6 627 else 628 : ${CC=gcc.exe} 629 cat > conftest.$ac_ext <<EOF 630 #line 631 "configure" 631 #include "confdefs.h" 632 633 int main() { 634 return __EMX__; 635 ; return 0; } 636 EOF 637 if { (eval echo configure:638: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 638 rm -rf conftest* 639 ac_cv_emxos2=yes 640 else 641 echo "configure: failed program was:" >&5 642 cat conftest.$ac_ext >&5 643 rm -rf conftest* 644 ac_cv_emxos2=no 645 fi 646 rm -f conftest* 647 rm -f conftest* 648 fi 649 650 echo "$ac_t""$ac_cv_emxos2" 1>&6 651 if eval "test \"`echo '$''{'ac_cv_libpre'+set}'`\" = set"; then 652 echo $ac_n "(cached) $ac_c" 1>&6 653 else 654 if test "$ac_cv_emxos2" = yes ; then 655 ac_cv_libpre= 656 else 657 ac_cv_libpre=lib 658 fi 659 660 fi 661 662 EMXOS2= 663 test "$ac_cv_emxos2" = yes && EMXOS2=yes 664 665 666 667 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 668 echo "configure:669: checking for executable suffix" >&5 669 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 670 echo $ac_n "(cached) $ac_c" 1>&6 671 else 672 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 673 ac_cv_exeext=.exe 674 else 675 rm -f conftest* 676 echo 'int main () { return 0; }' > conftest.$ac_ext 677 ac_cv_exeext= 678 if { (eval echo configure:679: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 679 for file in conftest.*; do 680 case $file in 681 *.c | *.o | *.obj) ;; 682 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; 683 esac 684 done 685 else 686 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; } 687 fi 688 rm -f conftest* 689 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no 690 fi 691 fi 692 693 EXEEXT="" 694 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} 695 echo "$ac_t""${ac_cv_exeext}" 1>&6 696 ac_exeext=$EXEEXT 697 547 698 548 699 … … 636 787 637 788 echo $ac_n "checking host system type""... $ac_c" 1>&6 638 echo "configure: 639: checking host system type" >&5789 echo "configure:790: checking host system type" >&5 639 790 640 791 host_alias=$host … … 657 808 658 809 echo $ac_n "checking target system type""... $ac_c" 1>&6 659 echo "configure: 660: checking target system type" >&5810 echo "configure:811: checking target system type" >&5 660 811 661 812 target_alias=$target … … 675 826 676 827 echo $ac_n "checking build system type""... $ac_c" 1>&6 677 echo "configure: 678: checking build system type" >&5828 echo "configure:829: checking build system type" >&5 678 829 679 830 build_alias=$build … … 706 857 fi 707 858 708 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6709 echo "configure:710: checking for Cygwin environment" >&5710 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then711 echo $ac_n "(cached) $ac_c" 1>&6712 else713 cat > conftest.$ac_ext <<EOF714 #line 715 "configure"715 #include "confdefs.h"716 717 int main() {718 719 #ifndef __CYGWIN__720 #define __CYGWIN__ __CYGWIN32__721 #endif722 return __CYGWIN__;723 ; return 0; }724 EOF725 if { (eval echo configure:726: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then726 rm -rf conftest*727 ac_cv_cygwin=yes728 else729 echo "configure: failed program was:" >&5730 cat conftest.$ac_ext >&5731 rm -rf conftest*732 ac_cv_cygwin=no733 fi734 rm -f conftest*735 rm -f conftest*736 fi737 738 echo "$ac_t""$ac_cv_cygwin" 1>&6739 CYGWIN=740 test "$ac_cv_cygwin" = yes && CYGWIN=yes741 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6742 echo "configure:743: checking for mingw32 environment" >&5743 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then744 echo $ac_n "(cached) $ac_c" 1>&6745 else746 cat > conftest.$ac_ext <<EOF747 #line 748 "configure"748 #include "confdefs.h"749 750 int main() {751 return __MINGW32__;752 ; return 0; }753 EOF754 if { (eval echo configure:755: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then755 rm -rf conftest*756 ac_cv_mingw32=yes757 else758 echo "configure: failed program was:" >&5759 cat conftest.$ac_ext >&5760 rm -rf conftest*761 ac_cv_mingw32=no762 fi763 rm -f conftest*764 rm -f conftest*765 fi766 767 echo "$ac_t""$ac_cv_mingw32" 1>&6768 MINGW32=769 test "$ac_cv_mingw32" = yes && MINGW32=yes770 859 771 860 # Export build and source directories. … … 787 876 #ac_cv_prog_LN_S='cp -p' 788 877 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 789 echo "configure: 790: checking whether ln -s works" >&5878 echo "configure:879: checking whether ln -s works" >&5 790 879 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then 791 880 echo $ac_n "(cached) $ac_c" 1>&6 … … 797 886 ac_cv_prog_LN_S="ln -s" 798 887 else 799 ac_cv_prog_LN_S=ln 800 fi 888 echo A > conftestdata; 889 if ln conftestdata conftestdata2 2>/dev/null; then 890 ac_cv_prog_LN_S=ln 891 else 892 ac_cv_prog_LN_S=cp 893 fi 894 fi 895 rm -f conftestdata* 801 896 fi 802 897 LN_S="$ac_cv_prog_LN_S" … … 843 938 set dummy gcc; ac_word=$2 844 939 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 845 echo "configure: 846: checking for $ac_word" >&5940 echo "configure:941: checking for $ac_word" >&5 846 941 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 847 942 echo $ac_n "(cached) $ac_c" 1>&6 … … 850 945 ac_cv_prog_CC="$CC" # Let the user override the test. 851 946 else 852 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"947 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 853 948 ac_dummy="$PATH" 854 949 for ac_dir in $ac_dummy; do 855 950 test -z "$ac_dir" && ac_dir=. 856 if test -f $ac_dir/$ac_word; then 951 if test -f $ac_dir/$ac_word -o \ 952 -f $ac_dir/$ac_word$ac_exeext ; then 857 953 ac_cv_prog_CC="gcc" 858 954 break … … 873 969 set dummy cc; ac_word=$2 874 970 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 875 echo "configure: 876: checking for $ac_word" >&5971 echo "configure:972: checking for $ac_word" >&5 876 972 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 877 973 echo $ac_n "(cached) $ac_c" 1>&6 … … 880 976 ac_cv_prog_CC="$CC" # Let the user override the test. 881 977 else 882 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"978 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 883 979 ac_prog_rejected=no 884 980 ac_dummy="$PATH" 885 981 for ac_dir in $ac_dummy; do 886 982 test -z "$ac_dir" && ac_dir=. 887 if test -f $ac_dir/$ac_word; then 888 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 983 if test -f $ac_dir/$ac_word -o \ 984 -f $ac_dir/$ac_word$ac_exeext ; then 985 if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \ 986 "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then 889 987 ac_prog_rejected=yes 890 988 continue … … 922 1020 923 1021 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 924 echo "configure: 925: checking whether we are using GNU C" >&51022 echo "configure:1023: checking whether we are using GNU C" >&5 925 1023 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 926 1024 echo $ac_n "(cached) $ac_c" 1>&6 … … 931 1029 #endif 932 1030 EOF 933 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure: 934: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1031 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1032: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 934 1032 ac_cv_prog_gcc=yes 935 1033 else … … 946 1044 CFLAGS= 947 1045 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 948 echo "configure: 949: checking whether ${CC-cc} accepts -g" >&51046 echo "configure:1047: checking whether ${CC-cc} accepts -g" >&5 949 1047 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 950 1048 echo $ac_n "(cached) $ac_c" 1>&6 … … 977 1075 set dummy ${ac_tool_prefix}as; ac_word=$2 978 1076 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 979 echo "configure: 980: checking for $ac_word" >&51077 echo "configure:1078: checking for $ac_word" >&5 980 1078 if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then 981 1079 echo $ac_n "(cached) $ac_c" 1>&6 … … 984 1082 ac_cv_prog_AS="$AS" # Let the user override the test. 985 1083 else 986 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1084 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 987 1085 ac_dummy="$PATH" 988 1086 for ac_dir in $ac_dummy; do 989 1087 test -z "$ac_dir" && ac_dir=. 990 if test -f $ac_dir/$ac_word; then 1088 if test -f $ac_dir/$ac_word -o \ 1089 -f $ac_dir/$ac_word$ac_exeext ; then 991 1090 ac_cv_prog_AS="${ac_tool_prefix}as" 992 1091 break … … 1009 1108 set dummy ${ac_tool_prefix}ar; ac_word=$2 1010 1109 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1011 echo "configure:1 012: checking for $ac_word" >&51110 echo "configure:1111: checking for $ac_word" >&5 1012 1111 if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then 1013 1112 echo $ac_n "(cached) $ac_c" 1>&6 … … 1016 1115 ac_cv_prog_AR="$AR" # Let the user override the test. 1017 1116 else 1018 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1117 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1019 1118 ac_dummy="$PATH" 1020 1119 for ac_dir in $ac_dummy; do 1021 1120 test -z "$ac_dir" && ac_dir=. 1022 if test -f $ac_dir/$ac_word; then 1121 if test -f $ac_dir/$ac_word -o \ 1122 -f $ac_dir/$ac_word$ac_exeext ; then 1023 1123 ac_cv_prog_AR="${ac_tool_prefix}ar" 1024 1124 break … … 1041 1141 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 1042 1142 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1043 echo "configure:1 044: checking for $ac_word" >&51143 echo "configure:1144: checking for $ac_word" >&5 1044 1144 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1045 1145 echo $ac_n "(cached) $ac_c" 1>&6 … … 1048 1148 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1049 1149 else 1050 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1150 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1051 1151 ac_dummy="$PATH" 1052 1152 for ac_dir in $ac_dummy; do 1053 1153 test -z "$ac_dir" && ac_dir=. 1054 if test -f $ac_dir/$ac_word; then 1154 if test -f $ac_dir/$ac_word -o \ 1155 -f $ac_dir/$ac_word$ac_exeext ; then 1055 1156 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 1056 1157 break … … 1073 1174 set dummy ranlib; ac_word=$2 1074 1175 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1075 echo "configure:1 076: checking for $ac_word" >&51176 echo "configure:1177: checking for $ac_word" >&5 1076 1177 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1077 1178 echo $ac_n "(cached) $ac_c" 1>&6 … … 1080 1181 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1081 1182 else 1082 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1183 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1083 1184 ac_dummy="$PATH" 1084 1185 for ac_dir in $ac_dummy; do 1085 1186 test -z "$ac_dir" && ac_dir=. 1086 if test -f $ac_dir/$ac_word; then 1187 if test -f $ac_dir/$ac_word -o \ 1188 -f $ac_dir/$ac_word$ac_exeext ; then 1087 1189 ac_cv_prog_RANLIB="ranlib" 1088 1190 break … … 1117 1219 # ./install, which can be erroneously created by make from ./install.sh. 1118 1220 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 1119 echo "configure:1 120: checking for a BSD compatible install" >&51221 echo "configure:1222: checking for a BSD compatible install" >&5 1120 1222 if test -z "$INSTALL"; then 1121 1223 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 1122 1224 echo $ac_n "(cached) $ac_c" 1>&6 1123 1225 else 1124 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"1226 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 1125 1227 for ac_dir in $PATH; do 1126 1228 # Account for people who put trailing slashes in PATH elements. 1127 1229 case "$ac_dir/" in 1128 1230 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; 1231 # We reject the install program from OS/2 or W3.1 1232 */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;; 1129 1233 *) 1130 1234 # OSF1 and SCO ODT 3.0 have their own names for install. … … 1132 1236 # by default. 1133 1237 for ac_prog in ginstall scoinst install; do 1134 if test -f $ac_dir/$ac_prog ; then1238 if test -f $ac_dir/$ac_prog$ac_exeext; then 1135 1239 if test $ac_prog = install && 1136 1240 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 1138 1242 : 1139 1243 else 1140 ac_cv_path_install="$ac_dir/$ac_prog -c"1244 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 1141 1245 break 2 1142 1246 fi … … 1184 1288 1185 1289 1290 1186 1291 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 1187 echo "configure:1 188: checking for executable suffix" >&51292 echo "configure:1293: checking for executable suffix" >&5 1188 1293 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 1189 1294 echo $ac_n "(cached) $ac_c" 1>&6 1190 1295 else 1191 if test "$CYGWIN" = yes || test "$MINGW32" = yes ; then1296 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 1192 1297 ac_cv_exeext=.exe 1193 1298 else … … 1195 1300 echo 'int main () { return 0; }' > conftest.$ac_ext 1196 1301 ac_cv_exeext= 1197 if { (eval echo configure:1 198: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then1302 if { (eval echo configure:1303: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 1198 1303 for file in conftest.*; do 1199 1304 case $file in … … 1225 1330 1226 1331 echo $ac_n "checking for interface version number""... $ac_c" 1>&6 1227 echo "configure:1 228: checking for interface version number" >&51332 echo "configure:1333: checking for interface version number" >&5 1228 1333 libstdcxx_interface=$INTERFACE 1229 1334 echo "$ac_t""$libstdcxx_interface" 1>&6 … … 1231 1336 # Process the option "--enable-version-specific-runtime-libs" 1232 1337 echo $ac_n "checking for --enable-version-specific-runtime-libs""... $ac_c" 1>&6 1233 echo "configure:1 234: checking for --enable-version-specific-runtime-libs" >&51338 echo "configure:1339: checking for --enable-version-specific-runtime-libs" >&5 1234 1339 # Check whether --enable-version-specific-runtime-libs or --disable-version-specific-runtime-libs was given. 1235 1340 if test "${enable_version_specific_runtime_libs+set}" = set; then … … 1286 1391 rm -f skip-this-dir 1287 1392 echo $ac_n "checking if compiler $compiler_name has been built""... $ac_c" 1>&6 1288 echo "configure:1 289: checking if compiler $compiler_name has been built" >&51393 echo "configure:1394: checking if compiler $compiler_name has been built" >&5 1289 1394 if eval "test \"`echo '$''{'objc_cv_compiler_exists'+set}'`\" = set"; then 1290 1395 echo $ac_n "(cached) $ac_c" 1>&6 … … 1398 1503 # Check if gcc -print-prog-name=ld gives a path. 1399 1504 echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 1400 echo "configure:1 401: checking for ld used by GCC" >&51505 echo "configure:1506: checking for ld used by GCC" >&5 1401 1506 case $host in 1402 1507 *-*-mingw*) … … 1428 1533 elif test "$with_gnu_ld" = yes; then 1429 1534 echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 1430 echo "configure:1 431: checking for GNU ld" >&51535 echo "configure:1536: checking for GNU ld" >&5 1431 1536 else 1432 1537 echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 1433 echo "configure:1 434: checking for non-GNU ld" >&51538 echo "configure:1539: checking for non-GNU ld" >&5 1434 1539 fi 1435 1540 if eval "test \"`echo '$''{'lt_cv_path_LD'+set}'`\" = set"; then … … 1466 1571 test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } 1467 1572 echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 1468 echo "configure:1 469: checking if the linker ($LD) is GNU ld" >&51573 echo "configure:1574: checking if the linker ($LD) is GNU ld" >&5 1469 1574 if eval "test \"`echo '$''{'lt_cv_prog_gnu_ld'+set}'`\" = set"; then 1470 1575 echo $ac_n "(cached) $ac_c" 1>&6 … … 1483 1588 1484 1589 echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6 1485 echo "configure:1 486: checking for $LD option to reload object files" >&51590 echo "configure:1591: checking for $LD option to reload object files" >&5 1486 1591 if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then 1487 1592 echo $ac_n "(cached) $ac_c" 1>&6 … … 1495 1600 1496 1601 echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 1497 echo "configure:1 498: checking for BSD-compatible nm" >&51602 echo "configure:1603: checking for BSD-compatible nm" >&5 1498 1603 if eval "test \"`echo '$''{'lt_cv_path_NM'+set}'`\" = set"; then 1499 1604 echo $ac_n "(cached) $ac_c" 1>&6 … … 1533 1638 1534 1639 echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6 1535 echo "configure:1 536: checking how to recognise dependant libraries" >&51640 echo "configure:1641: checking how to recognise dependant libraries" >&5 1536 1641 if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then 1537 1642 echo $ac_n "(cached) $ac_c" 1>&6 … … 1697 1802 1698 1803 echo $ac_n "checking for object suffix""... $ac_c" 1>&6 1699 echo "configure:1 700: checking for object suffix" >&51804 echo "configure:1805: checking for object suffix" >&5 1700 1805 if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then 1701 1806 echo $ac_n "(cached) $ac_c" 1>&6 … … 1703 1808 rm -f conftest* 1704 1809 echo 'int i = 1;' > conftest.$ac_ext 1705 if { (eval echo configure:1 706: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1810 if { (eval echo configure:1811: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1706 1811 for ac_file in conftest.*; do 1707 1812 case $ac_file in … … 1727 1832 if test "$file_magic_cmd" = '$MAGIC_CMD'; then 1728 1833 echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6 1729 echo "configure:1 730: checking for ${ac_tool_prefix}file" >&51834 echo "configure:1835: checking for ${ac_tool_prefix}file" >&5 1730 1835 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 1731 1836 echo $ac_n "(cached) $ac_c" 1>&6 … … 1789 1894 if test -n "$ac_tool_prefix"; then 1790 1895 echo $ac_n "checking for file""... $ac_c" 1>&6 1791 echo "configure:1 792: checking for file" >&51896 echo "configure:1897: checking for file" >&5 1792 1897 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 1793 1898 echo $ac_n "(cached) $ac_c" 1>&6 … … 1860 1965 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 1861 1966 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1862 echo "configure:1 863: checking for $ac_word" >&51967 echo "configure:1968: checking for $ac_word" >&5 1863 1968 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1864 1969 echo $ac_n "(cached) $ac_c" 1>&6 … … 1867 1972 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1868 1973 else 1869 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1974 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1870 1975 ac_dummy="$PATH" 1871 1976 for ac_dir in $ac_dummy; do 1872 1977 test -z "$ac_dir" && ac_dir=. 1873 if test -f $ac_dir/$ac_word; then 1978 if test -f $ac_dir/$ac_word -o \ 1979 -f $ac_dir/$ac_word$ac_exeext ; then 1874 1980 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 1875 1981 break … … 1892 1998 set dummy ranlib; ac_word=$2 1893 1999 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1894 echo "configure: 1895: checking for $ac_word" >&52000 echo "configure:2001: checking for $ac_word" >&5 1895 2001 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1896 2002 echo $ac_n "(cached) $ac_c" 1>&6 … … 1899 2005 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1900 2006 else 1901 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2007 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1902 2008 ac_dummy="$PATH" 1903 2009 for ac_dir in $ac_dummy; do 1904 2010 test -z "$ac_dir" && ac_dir=. 1905 if test -f $ac_dir/$ac_word; then 2011 if test -f $ac_dir/$ac_word -o \ 2012 -f $ac_dir/$ac_word$ac_exeext ; then 1906 2013 ac_cv_prog_RANLIB="ranlib" 1907 2014 break … … 1927 2034 set dummy ${ac_tool_prefix}strip; ac_word=$2 1928 2035 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1929 echo "configure: 1930: checking for $ac_word" >&52036 echo "configure:2037: checking for $ac_word" >&5 1930 2037 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 1931 2038 echo $ac_n "(cached) $ac_c" 1>&6 … … 1934 2041 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 1935 2042 else 1936 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2043 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1937 2044 ac_dummy="$PATH" 1938 2045 for ac_dir in $ac_dummy; do 1939 2046 test -z "$ac_dir" && ac_dir=. 1940 if test -f $ac_dir/$ac_word; then 2047 if test -f $ac_dir/$ac_word -o \ 2048 -f $ac_dir/$ac_word$ac_exeext ; then 1941 2049 ac_cv_prog_STRIP="${ac_tool_prefix}strip" 1942 2050 break … … 1959 2067 set dummy strip; ac_word=$2 1960 2068 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1961 echo "configure: 1962: checking for $ac_word" >&52069 echo "configure:2070: checking for $ac_word" >&5 1962 2070 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 1963 2071 echo $ac_n "(cached) $ac_c" 1>&6 … … 1966 2074 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 1967 2075 else 1968 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2076 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1969 2077 ac_dummy="$PATH" 1970 2078 for ac_dir in $ac_dummy; do 1971 2079 test -z "$ac_dir" && ac_dir=. 1972 if test -f $ac_dir/$ac_word; then 2080 if test -f $ac_dir/$ac_word -o \ 2081 -f $ac_dir/$ac_word$ac_exeext ; then 1973 2082 ac_cv_prog_STRIP="strip" 1974 2083 break … … 2026 2135 *-*-irix6*) 2027 2136 # Find out which ABI we are using. 2028 echo '#line 2 029"configure"' > conftest.$ac_ext2029 if { (eval echo configure:2 030: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2137 echo '#line 2138 "configure"' > conftest.$ac_ext 2138 if { (eval echo configure:2139: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2030 2139 case `/usr/bin/file conftest.$ac_objext` in 2031 2140 *32-bit*) … … 2048 2157 CFLAGS="$CFLAGS -belf" 2049 2158 echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 2050 echo "configure:2 051: checking whether the C compiler needs -belf" >&52159 echo "configure:2160: checking whether the C compiler needs -belf" >&5 2051 2160 if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then 2052 2161 echo $ac_n "(cached) $ac_c" 1>&6 … … 2061 2170 2062 2171 cat > conftest.$ac_ext <<EOF 2063 #line 2 064"configure"2172 #line 2173 "configure" 2064 2173 #include "confdefs.h" 2065 2174 … … 2068 2177 ; return 0; } 2069 2178 EOF 2070 if { (eval echo configure:2 071: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2179 if { (eval echo configure:2180: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2071 2180 rm -rf conftest* 2072 2181 lt_cv_cc_needs_belf=yes … … 2098 2207 set dummy ${ac_tool_prefix}dlltool; ac_word=$2 2099 2208 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2100 echo "configure:2 101: checking for $ac_word" >&52209 echo "configure:2210: checking for $ac_word" >&5 2101 2210 if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then 2102 2211 echo $ac_n "(cached) $ac_c" 1>&6 … … 2105 2214 ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. 2106 2215 else 2107 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2216 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2108 2217 ac_dummy="$PATH" 2109 2218 for ac_dir in $ac_dummy; do 2110 2219 test -z "$ac_dir" && ac_dir=. 2111 if test -f $ac_dir/$ac_word; then 2220 if test -f $ac_dir/$ac_word -o \ 2221 -f $ac_dir/$ac_word$ac_exeext ; then 2112 2222 ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" 2113 2223 break … … 2130 2240 set dummy dlltool; ac_word=$2 2131 2241 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2132 echo "configure:2 133: checking for $ac_word" >&52242 echo "configure:2243: checking for $ac_word" >&5 2133 2243 if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then 2134 2244 echo $ac_n "(cached) $ac_c" 1>&6 … … 2137 2247 ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. 2138 2248 else 2139 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2249 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2140 2250 ac_dummy="$PATH" 2141 2251 for ac_dir in $ac_dummy; do 2142 2252 test -z "$ac_dir" && ac_dir=. 2143 if test -f $ac_dir/$ac_word; then 2253 if test -f $ac_dir/$ac_word -o \ 2254 -f $ac_dir/$ac_word$ac_exeext ; then 2144 2255 ac_cv_prog_DLLTOOL="dlltool" 2145 2256 break … … 2165 2276 set dummy ${ac_tool_prefix}as; ac_word=$2 2166 2277 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2167 echo "configure:2 168: checking for $ac_word" >&52278 echo "configure:2279: checking for $ac_word" >&5 2168 2279 if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then 2169 2280 echo $ac_n "(cached) $ac_c" 1>&6 … … 2172 2283 ac_cv_prog_AS="$AS" # Let the user override the test. 2173 2284 else 2174 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2285 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2175 2286 ac_dummy="$PATH" 2176 2287 for ac_dir in $ac_dummy; do 2177 2288 test -z "$ac_dir" && ac_dir=. 2178 if test -f $ac_dir/$ac_word; then 2289 if test -f $ac_dir/$ac_word -o \ 2290 -f $ac_dir/$ac_word$ac_exeext ; then 2179 2291 ac_cv_prog_AS="${ac_tool_prefix}as" 2180 2292 break … … 2197 2309 set dummy as; ac_word=$2 2198 2310 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2199 echo "configure:2 200: checking for $ac_word" >&52311 echo "configure:2312: checking for $ac_word" >&5 2200 2312 if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then 2201 2313 echo $ac_n "(cached) $ac_c" 1>&6 … … 2204 2316 ac_cv_prog_AS="$AS" # Let the user override the test. 2205 2317 else 2206 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2318 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2207 2319 ac_dummy="$PATH" 2208 2320 for ac_dir in $ac_dummy; do 2209 2321 test -z "$ac_dir" && ac_dir=. 2210 if test -f $ac_dir/$ac_word; then 2322 if test -f $ac_dir/$ac_word -o \ 2323 -f $ac_dir/$ac_word$ac_exeext ; then 2211 2324 ac_cv_prog_AS="as" 2212 2325 break … … 2232 2345 set dummy ${ac_tool_prefix}objdump; ac_word=$2 2233 2346 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2234 echo "configure:2 235: checking for $ac_word" >&52347 echo "configure:2348: checking for $ac_word" >&5 2235 2348 if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then 2236 2349 echo $ac_n "(cached) $ac_c" 1>&6 … … 2239 2352 ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. 2240 2353 else 2241 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2354 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2242 2355 ac_dummy="$PATH" 2243 2356 for ac_dir in $ac_dummy; do 2244 2357 test -z "$ac_dir" && ac_dir=. 2245 if test -f $ac_dir/$ac_word; then 2358 if test -f $ac_dir/$ac_word -o \ 2359 -f $ac_dir/$ac_word$ac_exeext ; then 2246 2360 ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" 2247 2361 break … … 2264 2378 set dummy objdump; ac_word=$2 2265 2379 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2266 echo "configure:2 267: checking for $ac_word" >&52380 echo "configure:2381: checking for $ac_word" >&5 2267 2381 if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then 2268 2382 echo $ac_n "(cached) $ac_c" 1>&6 … … 2271 2385 ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. 2272 2386 else 2273 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2387 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2274 2388 ac_dummy="$PATH" 2275 2389 for ac_dir in $ac_dummy; do 2276 2390 test -z "$ac_dir" && ac_dir=. 2277 if test -f $ac_dir/$ac_word; then 2391 if test -f $ac_dir/$ac_word -o \ 2392 -f $ac_dir/$ac_word$ac_exeext ; then 2278 2393 ac_cv_prog_OBJDUMP="objdump" 2279 2394 break … … 2300 2415 # can override, but on older systems we have to supply one 2301 2416 echo $ac_n "checking if libtool should supply DllMain function""... $ac_c" 1>&6 2302 echo "configure:2 303: checking if libtool should supply DllMain function" >&52417 echo "configure:2418: checking if libtool should supply DllMain function" >&5 2303 2418 if eval "test \"`echo '$''{'lt_cv_need_dllmain'+set}'`\" = set"; then 2304 2419 echo $ac_n "(cached) $ac_c" 1>&6 2305 2420 else 2306 2421 cat > conftest.$ac_ext <<EOF 2307 #line 2 308"configure"2422 #line 2423 "configure" 2308 2423 #include "confdefs.h" 2309 2424 … … 2313 2428 ; return 0; } 2314 2429 EOF 2315 if { (eval echo configure:2 316: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2430 if { (eval echo configure:2431: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2316 2431 rm -rf conftest* 2317 2432 lt_cv_need_dllmain=no … … 2334 2449 CFLAGS="$CFLAGS -mdll" 2335 2450 echo $ac_n "checking how to link DLLs""... $ac_c" 1>&6 2336 echo "configure:2 337: checking how to link DLLs" >&52451 echo "configure:2452: checking how to link DLLs" >&5 2337 2452 if eval "test \"`echo '$''{'lt_cv_cc_dll_switch'+set}'`\" = set"; then 2338 2453 echo $ac_n "(cached) $ac_c" 1>&6 2339 2454 else 2340 2455 cat > conftest.$ac_ext <<EOF 2341 #line 2 342"configure"2456 #line 2457 "configure" 2342 2457 #include "confdefs.h" 2343 2458 … … 2346 2461 ; return 0; } 2347 2462 EOF 2348 if { (eval echo configure:2 349: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2463 if { (eval echo configure:2464: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2349 2464 rm -rf conftest* 2350 2465 lt_cv_cc_dll_switch=-mdll … … 2464 2579 set dummy ranlib; ac_word=$2 2465 2580 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2466 echo "configure:2 467: checking for $ac_word" >&52581 echo "configure:2582: checking for $ac_word" >&5 2467 2582 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 2468 2583 echo $ac_n "(cached) $ac_c" 1>&6 … … 2471 2586 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 2472 2587 else 2473 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2588 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2474 2589 ac_dummy="$PATH" 2475 2590 for ac_dir in $ac_dummy; do 2476 2591 test -z "$ac_dir" && ac_dir=. 2477 if test -f $ac_dir/$ac_word; then 2592 if test -f $ac_dir/$ac_word -o \ 2593 -f $ac_dir/$ac_word$ac_exeext ; then 2478 2594 ac_cv_prog_RANLIB="ranlib" 2479 2595 break … … 2504 2620 # ./install, which can be erroneously created by make from ./install.sh. 2505 2621 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 2506 echo "configure:2 507: checking for a BSD compatible install" >&52622 echo "configure:2623: checking for a BSD compatible install" >&5 2507 2623 if test -z "$INSTALL"; then 2508 2624 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 2509 2625 echo $ac_n "(cached) $ac_c" 1>&6 2510 2626 else 2511 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"2627 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 2512 2628 for ac_dir in $PATH; do 2513 2629 # Account for people who put trailing slashes in PATH elements. 2514 2630 case "$ac_dir/" in 2515 2631 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; 2632 # We reject the install program from OS/2 or W3.1 2633 */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;; 2516 2634 *) 2517 2635 # OSF1 and SCO ODT 3.0 have their own names for install. … … 2519 2637 # by default. 2520 2638 for ac_prog in ginstall scoinst install; do 2521 if test -f $ac_dir/$ac_prog ; then2639 if test -f $ac_dir/$ac_prog$ac_exeext; then 2522 2640 if test $ac_prog = install && 2523 2641 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 2525 2643 : 2526 2644 else 2527 ac_cv_path_install="$ac_dir/$ac_prog -c"2645 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 2528 2646 break 2 2529 2647 fi … … 2557 2675 2558 2676 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 2559 echo "configure:2 560: checking whether ${MAKE-make} sets \${MAKE}" >&52677 echo "configure:2678: checking whether ${MAKE-make} sets \${MAKE}" >&5 2560 2678 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 2561 2679 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 2586 2704 # Sanity check for the cross-compilation case: 2587 2705 echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 2588 echo "configure:2 589: checking how to run the C preprocessor" >&52706 echo "configure:2707: checking how to run the C preprocessor" >&5 2589 2707 # On Suns, sometimes $CPP names a directory. 2590 2708 if test -n "$CPP" && test -d "$CPP"; then … … 2601 2719 # not just through cpp. 2602 2720 cat > conftest.$ac_ext <<EOF 2603 #line 2604 "configure" 2721 #include <sys/types.h> 2722 #line 2723 "configure" 2604 2723 #include "confdefs.h" 2605 2724 #include <assert.h> … … 2607 2726 EOF 2608 2727 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2609 { (eval echo configure:2 610: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2728 { (eval echo configure:2729: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2610 2729 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2611 2730 if test -z "$ac_err"; then … … 2618 2737 CPP="${CC-cc} -E -traditional-cpp" 2619 2738 cat > conftest.$ac_ext <<EOF 2620 #line 2621 "configure" 2739 #include <sys/types.h> 2740 #line 2741 "configure" 2621 2741 #include "confdefs.h" 2622 2742 #include <assert.h> … … 2624 2744 EOF 2625 2745 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2626 { (eval echo configure:2 627: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2746 { (eval echo configure:2747: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2627 2747 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2628 2748 if test -z "$ac_err"; then … … 2635 2755 CPP="${CC-cc} -nologo -E" 2636 2756 cat > conftest.$ac_ext <<EOF 2637 #line 2638 "configure" 2757 #include <sys/types.h> 2758 #line 2759 "configure" 2638 2759 #include "confdefs.h" 2639 2760 #include <assert.h> … … 2641 2762 EOF 2642 2763 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2643 { (eval echo configure:2 644: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2764 { (eval echo configure:2765: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2644 2765 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2645 2766 if test -z "$ac_err"; then … … 2667 2788 ac_safe=`echo "stdio.h" | sed 'y%./+-%__p_%'` 2668 2789 echo $ac_n "checking for stdio.h""... $ac_c" 1>&6 2669 echo "configure:2 670: checking for stdio.h" >&52790 echo "configure:2791: checking for stdio.h" >&5 2670 2791 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2671 2792 echo $ac_n "(cached) $ac_c" 1>&6 2672 2793 else 2673 2794 cat > conftest.$ac_ext <<EOF 2674 #line 2675 "configure" 2795 #include <sys/types.h> 2796 #line 2797 "configure" 2675 2797 #include "confdefs.h" 2676 2798 #include <stdio.h> 2677 2799 EOF 2678 2800 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2679 { (eval echo configure:2 680: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2801 { (eval echo configure:2802: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2680 2802 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2681 2803 if test -z "$ac_err"; then … … 2705 2827 2706 2828 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 2707 echo "configure:2 708: checking for ANSI C header files" >&52829 echo "configure:2830: checking for ANSI C header files" >&5 2708 2830 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 2709 2831 echo $ac_n "(cached) $ac_c" 1>&6 2710 2832 else 2711 2833 cat > conftest.$ac_ext <<EOF 2712 #line 2713 "configure" 2834 #include <sys/types.h> 2835 #line 2836 "configure" 2713 2836 #include "confdefs.h" 2714 2837 #include <stdlib.h> … … 2718 2841 EOF 2719 2842 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2720 { (eval echo configure:2 721: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2843 { (eval echo configure:2844: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2721 2844 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2722 2845 if test -z "$ac_err"; then … … 2735 2858 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 2736 2859 cat > conftest.$ac_ext <<EOF 2737 #line 2 738"configure"2860 #line 2861 "configure" 2738 2861 #include "confdefs.h" 2739 2862 #include <string.h> … … 2753 2876 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 2754 2877 cat > conftest.$ac_ext <<EOF 2755 #line 2 756"configure"2878 #line 2879 "configure" 2756 2879 #include "confdefs.h" 2757 2880 #include <stdlib.h> … … 2774 2897 else 2775 2898 cat > conftest.$ac_ext <<EOF 2776 #line 2 777"configure"2899 #line 2900 "configure" 2777 2900 #include "confdefs.h" 2778 2901 #include <ctype.h> … … 2785 2908 2786 2909 EOF 2787 if { (eval echo configure:2 788: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null2910 if { (eval echo configure:2911: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 2788 2911 then 2789 2912 : … … 2813 2936 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 2814 2937 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 2815 echo "configure:2 816: checking for $ac_hdr" >&52938 echo "configure:2939: checking for $ac_hdr" >&5 2816 2939 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2817 2940 echo $ac_n "(cached) $ac_c" 1>&6 2818 2941 else 2819 2942 cat > conftest.$ac_ext <<EOF 2820 #line 2821 "configure" 2943 #include <sys/types.h> 2944 #line 2945 "configure" 2821 2945 #include "confdefs.h" 2822 2946 #include <$ac_hdr> 2823 2947 EOF 2824 2948 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2825 { (eval echo configure:2 826: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2949 { (eval echo configure:2950: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2826 2950 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2827 2951 if test -z "$ac_err"; then … … 2853 2977 2854 2978 echo $ac_n "checking for gthread cflags""... $ac_c" 1>&6 2855 echo "configure:2 856: checking for gthread cflags" >&52979 echo "configure:2980: checking for gthread cflags" >&5 2856 2980 if eval "test \"`echo '$''{'objc_cv_gthread_flags'+set}'`\" = set"; then 2857 2981 echo $ac_n "(cached) $ac_c" 1>&6 … … 2960 3084 # Run this file to recreate the current configuration. 2961 3085 # This directory was configured as follows, 3086 EOF 3087 echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS 3088 cat >> $CONFIG_STATUS <<EOF 2962 3089 # on host `(hostname || uname -n) 2>/dev/null | sed 1q`: 2963 3090 # … … 2985 3112 ac_given_srcdir=$srcdir 2986 3113 ac_given_INSTALL="$INSTALL" 3114 PATHIFS="$PATH_IFS" 2987 3115 2988 3116 trap 'rm -fr `echo "Makefile config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 … … 2995 3123 $ac_vpsub 2996 3124 $extrasub 3125 s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g 2997 3126 s%@SHELL@%$SHELL%g 2998 3127 s%@CFLAGS@%$CFLAGS%g … … 3018 3147 s%@infodir@%$infodir%g 3019 3148 s%@mandir@%$mandir%g 3149 s%@PATH_IFS@%$PATH_IFS%g 3150 s%@EXEEXT@%$EXEEXT%g 3020 3151 s%@toplevel_srcdir@%$toplevel_srcdir%g 3021 3152 s%@host@%$host%g … … 3044 3175 s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g 3045 3176 s%@INSTALL_DATA@%$INSTALL_DATA%g 3046 s%@EXEEXT@%$EXEEXT%g3047 3177 s%@gcc_version@%$gcc_version%g 3048 3178 s%@gcc_version_trigger@%$gcc_version_trigger%g … … 3129 3259 if test -z "$ac_dots"; then top_srcdir=. 3130 3260 else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; 3131 /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 3261 /* | [A-Za-z]:*) 3262 srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 3132 3263 *) # Relative path. 3133 3264 srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" … … 3136 3267 3137 3268 case "$ac_given_INSTALL" in 3138 [/$]* ) INSTALL="$ac_given_INSTALL" ;;3269 [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;; 3139 3270 *) INSTALL="$ac_dots$ac_given_INSTALL" ;; 3140 3271 esac … … 3149 3280 esac 3150 3281 3151 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s% :% $ac_given_srcdir/%g"`3282 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%$PATHIFS% $ac_given_srcdir/%g"` 3152 3283 sed -e "$ac_comsub 3153 3284 s%@configure_input@%$configure_input%g … … 3196 3327 3197 3328 rm -f conftest.frag conftest.in conftest.out 3198 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 3329 # kso the other way around might work better with drive letters and such. 3330 # ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 3331 ac_file_inputs=`echo $ac_file_in|sed -e "s%:% $ac_given_srcdir/%g" -e "s%^%$ac_given_srcdir/%" ` 3199 3332 cat $ac_file_inputs > conftest.in 3200 3333 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.