Changeset 101 for trunk/src/binutils/opcodes/configure
- Timestamp:
- May 7, 2003, 5:35:03 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/binutils/opcodes/configure
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r100 r101 56 56 silent= 57 57 site= 58 sitefile=59 58 srcdir= 60 59 target=NONE … … 171 170 --no-create do not create output files 172 171 --quiet, --silent do not print \`checking...' messages 173 --site-file=FILE use FILE as the site file174 172 --version print the version of autoconf that created configure 175 173 Directory and file names: … … 342 340 site="$ac_optarg" ;; 343 341 344 -site-file | --site-file | --site-fil | --site-fi | --site-f)345 ac_prev=sitefile ;;346 -site-file=* | --site-file=* | --site-fil=* | --site-fi=* | --site-f=*)347 sitefile="$ac_optarg" ;;348 349 342 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) 350 343 ac_prev=srcdir ;; … … 512 505 513 506 # Prefer explicitly selected file to automatically selected ones. 514 if test -z "$sitefile"; then 515 if test -z "$CONFIG_SITE"; then 516 if test "x$prefix" != xNONE; then 517 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" 518 else 519 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" 520 fi 507 if test -z "$CONFIG_SITE"; then 508 if test "x$prefix" != xNONE; then 509 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" 510 else 511 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" 521 512 fi 522 else523 CONFIG_SITE="$sitefile"524 513 fi 525 514 for ac_site_file in $CONFIG_SITE; do … … 559 548 fi 560 549 550 echo $ac_n "checking for path separator""... $ac_c" 1>&6 551 echo "configure:552: checking for path separator" >&5 552 # Filter path to get backslahes into forwardslashes 553 case "`uname -s 2> /dev/null`" in 554 OS/2) 555 PATH=`echo -E "$PATH" | sed 's+\\\\+/+g'` 556 PATH_IFS=';' 557 ;; 558 *) 559 PATH_IFS=':' 560 ;; 561 esac 562 echo "$ac_t""${PATH_IFS}" 1>&6 563 561 564 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 562 echo "configure:56 3: checking for Cygwin environment" >&5565 echo "configure:566: checking for Cygwin environment" >&5 563 566 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then 564 567 echo $ac_n "(cached) $ac_c" 1>&6 565 568 else 566 569 cat > conftest.$ac_ext <<EOF 567 #line 5 68"configure"570 #line 571 "configure" 568 571 #include "confdefs.h" 569 572 … … 576 579 ; return 0; } 577 580 EOF 578 if { (eval echo configure:5 79: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then581 if { (eval echo configure:582: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 579 582 rm -rf conftest* 580 583 ac_cv_cygwin=yes … … 593 596 test "$ac_cv_cygwin" = yes && CYGWIN=yes 594 597 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 595 echo "configure:59 6: checking for mingw32 environment" >&5598 echo "configure:599: checking for mingw32 environment" >&5 596 599 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then 597 600 echo $ac_n "(cached) $ac_c" 1>&6 598 601 else 599 602 cat > conftest.$ac_ext <<EOF 600 #line 60 1"configure"603 #line 604 "configure" 601 604 #include "confdefs.h" 602 605 … … 605 608 ; return 0; } 606 609 EOF 607 if { (eval echo configure:6 08: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then610 if { (eval echo configure:611: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 608 611 rm -rf conftest* 609 612 ac_cv_mingw32=yes … … 621 624 MINGW32= 622 625 test "$ac_cv_mingw32" = yes && MINGW32=yes 626 echo $ac_n "checking for EMX/OS2 environment""... $ac_c" 1>&6 627 echo "configure:628: checking for EMX/OS2 environment" >&5 628 if eval "test \"`echo '$''{'ac_cv_emxos2'+set}'`\" = set"; then 629 echo $ac_n "(cached) $ac_c" 1>&6 630 else 631 : ${CC=gcc.exe} 632 cat > conftest.$ac_ext <<EOF 633 #line 634 "configure" 634 #include "confdefs.h" 635 636 int main() { 637 return __EMX__; 638 ; return 0; } 639 EOF 640 if { (eval echo configure:641: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 641 rm -rf conftest* 642 ac_cv_emxos2=yes 643 else 644 echo "configure: failed program was:" >&5 645 cat conftest.$ac_ext >&5 646 rm -rf conftest* 647 ac_cv_emxos2=no 648 fi 649 rm -f conftest* 650 rm -f conftest* 651 fi 652 653 echo "$ac_t""$ac_cv_emxos2" 1>&6 654 if eval "test \"`echo '$''{'ac_cv_libpre'+set}'`\" = set"; then 655 echo $ac_n "(cached) $ac_c" 1>&6 656 else 657 if test "$ac_cv_emxos2" = yes ; then 658 ac_cv_libpre= 659 else 660 ac_cv_libpre=lib 661 fi 662 663 fi 664 665 EMXOS2= 666 test "$ac_cv_emxos2" = yes && EMXOS2=yes 667 668 669 670 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 671 echo "configure:672: checking for executable suffix" >&5 672 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 673 echo $ac_n "(cached) $ac_c" 1>&6 674 else 675 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 676 ac_cv_exeext=.exe 677 else 678 rm -f conftest* 679 echo 'int main () { return 0; }' > conftest.$ac_ext 680 ac_cv_exeext= 681 if { (eval echo configure:682: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 682 for file in conftest.*; do 683 case $file in 684 *.c | *.o | *.obj) ;; 685 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; 686 esac 687 done 688 else 689 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; } 690 fi 691 rm -f conftest* 692 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no 693 fi 694 fi 695 696 EXEEXT="" 697 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} 698 echo "$ac_t""${ac_cv_exeext}" 1>&6 699 ac_exeext=$EXEEXT 700 623 701 624 702 … … 670 748 671 749 echo $ac_n "checking host system type""... $ac_c" 1>&6 672 echo "configure: 673: checking host system type" >&5750 echo "configure:751: checking host system type" >&5 673 751 674 752 host_alias=$host … … 691 769 692 770 echo $ac_n "checking target system type""... $ac_c" 1>&6 693 echo "configure: 694: checking target system type" >&5771 echo "configure:772: checking target system type" >&5 694 772 695 773 target_alias=$target … … 709 787 710 788 echo $ac_n "checking build system type""... $ac_c" 1>&6 711 echo "configure:7 12: checking build system type" >&5789 echo "configure:790: checking build system type" >&5 712 790 713 791 build_alias=$build … … 734 812 set dummy gcc; ac_word=$2 735 813 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 736 echo "configure: 737: checking for $ac_word" >&5814 echo "configure:815: checking for $ac_word" >&5 737 815 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 738 816 echo $ac_n "(cached) $ac_c" 1>&6 … … 741 819 ac_cv_prog_CC="$CC" # Let the user override the test. 742 820 else 743 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"821 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 744 822 ac_dummy="$PATH" 745 823 for ac_dir in $ac_dummy; do 746 824 test -z "$ac_dir" && ac_dir=. 747 if test -f $ac_dir/$ac_word; then 825 if test -f $ac_dir/$ac_word -o \ 826 -f $ac_dir/$ac_word$ac_exeext ; then 748 827 ac_cv_prog_CC="gcc" 749 828 break … … 764 843 set dummy cc; ac_word=$2 765 844 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 766 echo "configure: 767: checking for $ac_word" >&5845 echo "configure:846: checking for $ac_word" >&5 767 846 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 768 847 echo $ac_n "(cached) $ac_c" 1>&6 … … 771 850 ac_cv_prog_CC="$CC" # Let the user override the test. 772 851 else 773 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"852 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 774 853 ac_prog_rejected=no 775 854 ac_dummy="$PATH" 776 855 for ac_dir in $ac_dummy; do 777 856 test -z "$ac_dir" && ac_dir=. 778 if test -f $ac_dir/$ac_word; then 779 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 857 if test -f $ac_dir/$ac_word -o \ 858 -f $ac_dir/$ac_word$ac_exeext ; then 859 if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \ 860 "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then 780 861 ac_prog_rejected=yes 781 862 continue … … 815 896 set dummy cl; ac_word=$2 816 897 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 817 echo "configure:8 18: checking for $ac_word" >&5898 echo "configure:899: checking for $ac_word" >&5 818 899 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 819 900 echo $ac_n "(cached) $ac_c" 1>&6 … … 822 903 ac_cv_prog_CC="$CC" # Let the user override the test. 823 904 else 824 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"905 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 825 906 ac_dummy="$PATH" 826 907 for ac_dir in $ac_dummy; do 827 908 test -z "$ac_dir" && ac_dir=. 828 if test -f $ac_dir/$ac_word; then 909 if test -f $ac_dir/$ac_word -o \ 910 -f $ac_dir/$ac_word$ac_exeext ; then 829 911 ac_cv_prog_CC="cl" 830 912 break … … 847 929 848 930 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 849 echo "configure: 850: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5931 echo "configure:932: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 850 932 851 933 ac_ext=c … … 858 940 cat > conftest.$ac_ext << EOF 859 941 860 #line 861"configure"942 #line 943 "configure" 861 943 #include "confdefs.h" 862 944 863 945 main(){return(0);} 864 946 EOF 865 if { (eval echo configure: 866: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then947 if { (eval echo configure:948: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 866 948 ac_cv_prog_cc_works=yes 867 949 # If we can't run a trivial program, we are probably using a cross compiler. … … 889 971 fi 890 972 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 891 echo "configure: 892: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5973 echo "configure:974: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 892 974 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 893 975 cross_compiling=$ac_cv_prog_cc_cross 894 976 895 977 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 896 echo "configure: 897: checking whether we are using GNU C" >&5978 echo "configure:979: checking whether we are using GNU C" >&5 897 979 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 898 980 echo $ac_n "(cached) $ac_c" 1>&6 … … 903 985 #endif 904 986 EOF 905 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:9 06: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then987 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:988: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 906 988 ac_cv_prog_gcc=yes 907 989 else … … 922 1004 CFLAGS= 923 1005 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 924 echo "configure: 925: checking whether ${CC-cc} accepts -g" >&51006 echo "configure:1007: checking whether ${CC-cc} accepts -g" >&5 925 1007 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 926 1008 echo $ac_n "(cached) $ac_c" 1>&6 … … 954 1036 955 1037 echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&6 956 echo "configure: 957: checking for POSIXized ISC" >&51038 echo "configure:1039: checking for POSIXized ISC" >&5 957 1039 if test -d /etc/conf/kconfig.d && 958 1040 grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1 … … 992 1074 # ./install, which can be erroneously created by make from ./install.sh. 993 1075 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 994 echo "configure: 995: checking for a BSD compatible install" >&51076 echo "configure:1077: checking for a BSD compatible install" >&5 995 1077 if test -z "$INSTALL"; then 996 1078 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 997 1079 echo $ac_n "(cached) $ac_c" 1>&6 998 1080 else 999 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"1081 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 1000 1082 for ac_dir in $PATH; do 1001 1083 # Account for people who put trailing slashes in PATH elements. 1002 1084 case "$ac_dir/" in 1003 1085 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; 1086 # We reject the install program from OS/2 or W3.1 1087 */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;; 1004 1088 *) 1005 1089 # OSF1 and SCO ODT 3.0 have their own names for install. … … 1007 1091 # by default. 1008 1092 for ac_prog in ginstall scoinst install; do 1009 if test -f $ac_dir/$ac_prog ; then1093 if test -f $ac_dir/$ac_prog$ac_exeext; then 1010 1094 if test $ac_prog = install && 1011 1095 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 1013 1097 : 1014 1098 else 1015 ac_cv_path_install="$ac_dir/$ac_prog -c"1099 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 1016 1100 break 2 1017 1101 fi … … 1045 1129 1046 1130 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 1047 echo "configure:1 048: checking whether build environment is sane" >&51131 echo "configure:1132: checking whether build environment is sane" >&5 1048 1132 # Just in case 1049 1133 sleep 1 … … 1102 1186 1103 1187 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 1104 echo "configure:11 05: checking whether ${MAKE-make} sets \${MAKE}" >&51188 echo "configure:1189: checking whether ${MAKE-make} sets \${MAKE}" >&5 1105 1189 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 1106 1190 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 1148 1232 missing_dir=`cd $ac_aux_dir && pwd` 1149 1233 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 1150 echo "configure:1 151: checking for working aclocal" >&51234 echo "configure:1235: checking for working aclocal" >&5 1151 1235 # Run test in a subshell; some versions of sh will print an error if 1152 1236 # an executable is not found, even if stderr is redirected. … … 1161 1245 1162 1246 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 1163 echo "configure:1 164: checking for working autoconf" >&51247 echo "configure:1248: checking for working autoconf" >&5 1164 1248 # Run test in a subshell; some versions of sh will print an error if 1165 1249 # an executable is not found, even if stderr is redirected. … … 1174 1258 1175 1259 echo $ac_n "checking for working automake""... $ac_c" 1>&6 1176 echo "configure:1 177: checking for working automake" >&51260 echo "configure:1261: checking for working automake" >&5 1177 1261 # Run test in a subshell; some versions of sh will print an error if 1178 1262 # an executable is not found, even if stderr is redirected. … … 1187 1271 1188 1272 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 1189 echo "configure:1 190: checking for working autoheader" >&51273 echo "configure:1274: checking for working autoheader" >&5 1190 1274 # Run test in a subshell; some versions of sh will print an error if 1191 1275 # an executable is not found, even if stderr is redirected. … … 1200 1284 1201 1285 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 1202 echo "configure:12 03: checking for working makeinfo" >&51286 echo "configure:1287: checking for working makeinfo" >&5 1203 1287 # Run test in a subshell; some versions of sh will print an error if 1204 1288 # an executable is not found, even if stderr is redirected. … … 1223 1307 set dummy ${ac_tool_prefix}ar; ac_word=$2 1224 1308 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1225 echo "configure:1 226: checking for $ac_word" >&51309 echo "configure:1310: checking for $ac_word" >&5 1226 1310 if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then 1227 1311 echo $ac_n "(cached) $ac_c" 1>&6 … … 1230 1314 ac_cv_prog_AR="$AR" # Let the user override the test. 1231 1315 else 1232 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1316 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1233 1317 ac_dummy="$PATH" 1234 1318 for ac_dir in $ac_dummy; do 1235 1319 test -z "$ac_dir" && ac_dir=. 1236 if test -f $ac_dir/$ac_word; then 1320 if test -f $ac_dir/$ac_word -o \ 1321 -f $ac_dir/$ac_word$ac_exeext ; then 1237 1322 ac_cv_prog_AR="${ac_tool_prefix}ar" 1238 1323 break … … 1255 1340 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 1256 1341 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1257 echo "configure:1 258: checking for $ac_word" >&51342 echo "configure:1343: checking for $ac_word" >&5 1258 1343 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1259 1344 echo $ac_n "(cached) $ac_c" 1>&6 … … 1262 1347 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1263 1348 else 1264 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1349 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1265 1350 ac_dummy="$PATH" 1266 1351 for ac_dir in $ac_dummy; do 1267 1352 test -z "$ac_dir" && ac_dir=. 1268 if test -f $ac_dir/$ac_word; then 1353 if test -f $ac_dir/$ac_word -o \ 1354 -f $ac_dir/$ac_word$ac_exeext ; then 1269 1355 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 1270 1356 break … … 1287 1373 set dummy ranlib; ac_word=$2 1288 1374 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1289 echo "configure:1 290: checking for $ac_word" >&51375 echo "configure:1376: checking for $ac_word" >&5 1290 1376 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1291 1377 echo $ac_n "(cached) $ac_c" 1>&6 … … 1294 1380 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1295 1381 else 1296 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1382 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1297 1383 ac_dummy="$PATH" 1298 1384 for ac_dir in $ac_dummy; do 1299 1385 test -z "$ac_dir" && ac_dir=. 1300 if test -f $ac_dir/$ac_word; then 1386 if test -f $ac_dir/$ac_word -o \ 1387 -f $ac_dir/$ac_word$ac_exeext ; then 1301 1388 ac_cv_prog_RANLIB="ranlib" 1302 1389 break … … 1402 1489 # Check if gcc -print-prog-name=ld gives a path. 1403 1490 echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 1404 echo "configure:14 05: checking for ld used by GCC" >&51491 echo "configure:1492: checking for ld used by GCC" >&5 1405 1492 case $host in 1406 1493 *-*-mingw*) … … 1432 1519 elif test "$with_gnu_ld" = yes; then 1433 1520 echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 1434 echo "configure:1 435: checking for GNU ld" >&51521 echo "configure:1522: checking for GNU ld" >&5 1435 1522 else 1436 1523 echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 1437 echo "configure:1 438: checking for non-GNU ld" >&51524 echo "configure:1525: checking for non-GNU ld" >&5 1438 1525 fi 1439 1526 if eval "test \"`echo '$''{'ac_cv_path_LD'+set}'`\" = set"; then … … 1470 1557 test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } 1471 1558 echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 1472 echo "configure:1 473: checking if the linker ($LD) is GNU ld" >&51559 echo "configure:1560: checking if the linker ($LD) is GNU ld" >&5 1473 1560 if eval "test \"`echo '$''{'ac_cv_prog_gnu_ld'+set}'`\" = set"; then 1474 1561 echo $ac_n "(cached) $ac_c" 1>&6 … … 1487 1574 1488 1575 echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6 1489 echo "configure:1 490: checking for $LD option to reload object files" >&51576 echo "configure:1577: checking for $LD option to reload object files" >&5 1490 1577 if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then 1491 1578 echo $ac_n "(cached) $ac_c" 1>&6 … … 1499 1586 1500 1587 echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 1501 echo "configure:15 02: checking for BSD-compatible nm" >&51588 echo "configure:1589: checking for BSD-compatible nm" >&5 1502 1589 if eval "test \"`echo '$''{'ac_cv_path_NM'+set}'`\" = set"; then 1503 1590 echo $ac_n "(cached) $ac_c" 1>&6 … … 1537 1624 1538 1625 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 1539 echo "configure:1 540: checking whether ln -s works" >&51626 echo "configure:1627: checking whether ln -s works" >&5 1540 1627 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then 1541 1628 echo $ac_n "(cached) $ac_c" 1>&6 … … 1547 1634 ac_cv_prog_LN_S="ln -s" 1548 1635 else 1549 ac_cv_prog_LN_S=ln 1550 fi 1636 echo A > conftestdata; 1637 if ln conftestdata conftestdata2 2>/dev/null; then 1638 ac_cv_prog_LN_S=ln 1639 else 1640 ac_cv_prog_LN_S=cp 1641 fi 1642 fi 1643 rm -f conftestdata* 1551 1644 fi 1552 1645 LN_S="$ac_cv_prog_LN_S" … … 1558 1651 1559 1652 echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6 1560 echo "configure:1 561: checking how to recognise dependant libraries" >&51653 echo "configure:1654: checking how to recognise dependant libraries" >&5 1561 1654 if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then 1562 1655 echo $ac_n "(cached) $ac_c" 1>&6 … … 1701 1794 1702 1795 echo $ac_n "checking for object suffix""... $ac_c" 1>&6 1703 echo "configure:17 04: checking for object suffix" >&51796 echo "configure:1797: checking for object suffix" >&5 1704 1797 if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then 1705 1798 echo $ac_n "(cached) $ac_c" 1>&6 … … 1707 1800 rm -f conftest* 1708 1801 echo 'int i = 1;' > conftest.$ac_ext 1709 if { (eval echo configure:1 710: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1802 if { (eval echo configure:1803: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1710 1803 for ac_file in conftest.*; do 1711 1804 case $ac_file in … … 1724 1817 ac_objext=$ac_cv_objext 1725 1818 1726 1727 1728 echo $ac_n "checking for executable suffix""... $ac_c" 1>&61729 echo "configure:1730: checking for executable suffix" >&51730 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then1731 echo $ac_n "(cached) $ac_c" 1>&61732 else1733 if test "$CYGWIN" = yes || test "$MINGW32" = yes; then1734 ac_cv_exeext=.exe1735 else1736 rm -f conftest*1737 echo 'int main () { return 0; }' > conftest.$ac_ext1738 ac_cv_exeext=1739 if { (eval echo configure:1740: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then1740 for file in conftest.*; do1741 case $file in1742 *.c | *.o | *.obj | *.ilk | *.pdb) ;;1743 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;1744 esac1745 done1746 else1747 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; }1748 fi1749 rm -f conftest*1750 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no1751 fi1752 fi1753 1754 EXEEXT=""1755 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext}1756 echo "$ac_t""${ac_cv_exeext}" 1>&61757 ac_exeext=$EXEEXT1758 1759 1819 # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! 1760 1820 … … 1764 1824 if test "$file_magic_cmd" = '$MAGIC_CMD'; then 1765 1825 echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6 1766 echo "configure:1 767: checking for ${ac_tool_prefix}file" >&51826 echo "configure:1827: checking for ${ac_tool_prefix}file" >&5 1767 1827 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 1768 1828 echo $ac_n "(cached) $ac_c" 1>&6 … … 1826 1886 if test -n "$ac_tool_prefix"; then 1827 1887 echo $ac_n "checking for file""... $ac_c" 1>&6 1828 echo "configure:18 29: checking for file" >&51888 echo "configure:1889: checking for file" >&5 1829 1889 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 1830 1890 echo $ac_n "(cached) $ac_c" 1>&6 … … 1897 1957 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 1898 1958 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1899 echo "configure:19 00: checking for $ac_word" >&51959 echo "configure:1960: checking for $ac_word" >&5 1900 1960 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1901 1961 echo $ac_n "(cached) $ac_c" 1>&6 … … 1904 1964 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1905 1965 else 1906 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1966 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1907 1967 ac_dummy="$PATH" 1908 1968 for ac_dir in $ac_dummy; do 1909 1969 test -z "$ac_dir" && ac_dir=. 1910 if test -f $ac_dir/$ac_word; then 1970 if test -f $ac_dir/$ac_word -o \ 1971 -f $ac_dir/$ac_word$ac_exeext ; then 1911 1972 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 1912 1973 break … … 1929 1990 set dummy ranlib; ac_word=$2 1930 1991 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1931 echo "configure:19 32: checking for $ac_word" >&51992 echo "configure:1993: checking for $ac_word" >&5 1932 1993 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1933 1994 echo $ac_n "(cached) $ac_c" 1>&6 … … 1936 1997 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1937 1998 else 1938 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1999 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1939 2000 ac_dummy="$PATH" 1940 2001 for ac_dir in $ac_dummy; do 1941 2002 test -z "$ac_dir" && ac_dir=. 1942 if test -f $ac_dir/$ac_word; then 2003 if test -f $ac_dir/$ac_word -o \ 2004 -f $ac_dir/$ac_word$ac_exeext ; then 1943 2005 ac_cv_prog_RANLIB="ranlib" 1944 2006 break … … 1964 2026 set dummy ${ac_tool_prefix}strip; ac_word=$2 1965 2027 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1966 echo "configure: 1967: checking for $ac_word" >&52028 echo "configure:2029: checking for $ac_word" >&5 1967 2029 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 1968 2030 echo $ac_n "(cached) $ac_c" 1>&6 … … 1971 2033 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 1972 2034 else 1973 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2035 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1974 2036 ac_dummy="$PATH" 1975 2037 for ac_dir in $ac_dummy; do 1976 2038 test -z "$ac_dir" && ac_dir=. 1977 if test -f $ac_dir/$ac_word; then 2039 if test -f $ac_dir/$ac_word -o \ 2040 -f $ac_dir/$ac_word$ac_exeext ; then 1978 2041 ac_cv_prog_STRIP="${ac_tool_prefix}strip" 1979 2042 break … … 1996 2059 set dummy strip; ac_word=$2 1997 2060 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1998 echo "configure: 1999: checking for $ac_word" >&52061 echo "configure:2062: checking for $ac_word" >&5 1999 2062 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 2000 2063 echo $ac_n "(cached) $ac_c" 1>&6 … … 2003 2066 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 2004 2067 else 2005 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2068 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2006 2069 ac_dummy="$PATH" 2007 2070 for ac_dir in $ac_dummy; do 2008 2071 test -z "$ac_dir" && ac_dir=. 2009 if test -f $ac_dir/$ac_word; then 2072 if test -f $ac_dir/$ac_word -o \ 2073 -f $ac_dir/$ac_word$ac_exeext ; then 2010 2074 ac_cv_prog_STRIP="strip" 2011 2075 break … … 2063 2127 *-*-irix6*) 2064 2128 # Find out which ABI we are using. 2065 echo '#line 2 066"configure"' > conftest.$ac_ext2066 if { (eval echo configure:2 067: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2129 echo '#line 2130 "configure"' > conftest.$ac_ext 2130 if { (eval echo configure:2131: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2067 2131 case "`/usr/bin/file conftest.o`" in 2068 2132 *32-bit*) … … 2085 2149 CFLAGS="$CFLAGS -belf" 2086 2150 echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 2087 echo "configure:2 088: checking whether the C compiler needs -belf" >&52151 echo "configure:2152: checking whether the C compiler needs -belf" >&5 2088 2152 if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then 2089 2153 echo $ac_n "(cached) $ac_c" 1>&6 … … 2098 2162 2099 2163 cat > conftest.$ac_ext <<EOF 2100 #line 21 01"configure"2164 #line 2165 "configure" 2101 2165 #include "confdefs.h" 2102 2166 … … 2105 2169 ; return 0; } 2106 2170 EOF 2107 if { (eval echo configure:21 08: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2171 if { (eval echo configure:2172: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2108 2172 rm -rf conftest* 2109 2173 lt_cv_cc_needs_belf=yes … … 2293 2357 2294 2358 echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 2295 echo "configure:2 296: checking whether to enable maintainer-specific portions of Makefiles" >&52359 echo "configure:2360: checking whether to enable maintainer-specific portions of Makefiles" >&5 2296 2360 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. 2297 2361 if test "${enable_maintainer_mode+set}" = set; then … … 2317 2381 2318 2382 2383 2319 2384 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 2320 echo "configure:23 21: checking for executable suffix" >&52385 echo "configure:2386: checking for executable suffix" >&5 2321 2386 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 2322 2387 echo $ac_n "(cached) $ac_c" 1>&6 2323 2388 else 2324 if test "$CYGWIN" = yes || test "$MINGW32" = yes ; then2389 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 2325 2390 ac_cv_exeext=.exe 2326 2391 else … … 2328 2393 echo 'int main () { return 0; }' > conftest.$ac_ext 2329 2394 ac_cv_exeext= 2330 if { (eval echo configure:23 31: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then2395 if { (eval echo configure:2396: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 2331 2396 for file in conftest.*; do 2332 2397 case $file in 2333 *.c | *.o | *.obj | *.ilk | *.pdb) ;;2398 *.c | *.o | *.obj) ;; 2334 2399 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; 2335 2400 esac … … 2354 2419 set dummy gcc; ac_word=$2 2355 2420 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2356 echo "configure:2 357: checking for $ac_word" >&52421 echo "configure:2422: checking for $ac_word" >&5 2357 2422 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2358 2423 echo $ac_n "(cached) $ac_c" 1>&6 … … 2361 2426 ac_cv_prog_CC="$CC" # Let the user override the test. 2362 2427 else 2363 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2428 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2364 2429 ac_dummy="$PATH" 2365 2430 for ac_dir in $ac_dummy; do 2366 2431 test -z "$ac_dir" && ac_dir=. 2367 if test -f $ac_dir/$ac_word; then 2432 if test -f $ac_dir/$ac_word -o \ 2433 -f $ac_dir/$ac_word$ac_exeext ; then 2368 2434 ac_cv_prog_CC="gcc" 2369 2435 break … … 2384 2450 set dummy cc; ac_word=$2 2385 2451 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2386 echo "configure:2 387: checking for $ac_word" >&52452 echo "configure:2453: checking for $ac_word" >&5 2387 2453 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2388 2454 echo $ac_n "(cached) $ac_c" 1>&6 … … 2391 2457 ac_cv_prog_CC="$CC" # Let the user override the test. 2392 2458 else 2393 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2459 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2394 2460 ac_prog_rejected=no 2395 2461 ac_dummy="$PATH" 2396 2462 for ac_dir in $ac_dummy; do 2397 2463 test -z "$ac_dir" && ac_dir=. 2398 if test -f $ac_dir/$ac_word; then 2399 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 2464 if test -f $ac_dir/$ac_word -o \ 2465 -f $ac_dir/$ac_word$ac_exeext ; then 2466 if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \ 2467 "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then 2400 2468 ac_prog_rejected=yes 2401 2469 continue … … 2435 2503 set dummy cl; ac_word=$2 2436 2504 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2437 echo "configure:2 438: checking for $ac_word" >&52505 echo "configure:2506: checking for $ac_word" >&5 2438 2506 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2439 2507 echo $ac_n "(cached) $ac_c" 1>&6 … … 2442 2510 ac_cv_prog_CC="$CC" # Let the user override the test. 2443 2511 else 2444 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2512 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2445 2513 ac_dummy="$PATH" 2446 2514 for ac_dir in $ac_dummy; do 2447 2515 test -z "$ac_dir" && ac_dir=. 2448 if test -f $ac_dir/$ac_word; then 2516 if test -f $ac_dir/$ac_word -o \ 2517 -f $ac_dir/$ac_word$ac_exeext ; then 2449 2518 ac_cv_prog_CC="cl" 2450 2519 break … … 2467 2536 2468 2537 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 2469 echo "configure:2 470: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&52538 echo "configure:2539: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 2470 2539 2471 2540 ac_ext=c … … 2478 2547 cat > conftest.$ac_ext << EOF 2479 2548 2480 #line 2 481"configure"2549 #line 2550 "configure" 2481 2550 #include "confdefs.h" 2482 2551 2483 2552 main(){return(0);} 2484 2553 EOF 2485 if { (eval echo configure:2 486: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2554 if { (eval echo configure:2555: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2486 2555 ac_cv_prog_cc_works=yes 2487 2556 # If we can't run a trivial program, we are probably using a cross compiler. … … 2509 2578 fi 2510 2579 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 2511 echo "configure:25 12: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&52580 echo "configure:2581: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 2512 2581 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 2513 2582 cross_compiling=$ac_cv_prog_cc_cross 2514 2583 2515 2584 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 2516 echo "configure:25 17: checking whether we are using GNU C" >&52585 echo "configure:2586: checking whether we are using GNU C" >&5 2517 2586 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 2518 2587 echo $ac_n "(cached) $ac_c" 1>&6 … … 2523 2592 #endif 2524 2593 EOF 2525 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:25 26: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then2594 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2595: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 2526 2595 ac_cv_prog_gcc=yes 2527 2596 else … … 2542 2611 CFLAGS= 2543 2612 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 2544 echo "configure:2 545: checking whether ${CC-cc} accepts -g" >&52613 echo "configure:2614: checking whether ${CC-cc} accepts -g" >&5 2545 2614 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 2546 2615 echo $ac_n "(cached) $ac_c" 1>&6 … … 2576 2645 ALL_LINGUAS= 2577 2646 echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 2578 echo "configure:2 579: checking how to run the C preprocessor" >&52647 echo "configure:2648: checking how to run the C preprocessor" >&5 2579 2648 # On Suns, sometimes $CPP names a directory. 2580 2649 if test -n "$CPP" && test -d "$CPP"; then … … 2591 2660 # not just through cpp. 2592 2661 cat > conftest.$ac_ext <<EOF 2593 #line 2594 "configure" 2662 #include <sys/types.h> 2663 #line 2664 "configure" 2594 2664 #include "confdefs.h" 2595 2665 #include <assert.h> … … 2597 2667 EOF 2598 2668 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2599 { (eval echo configure:26 00: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2669 { (eval echo configure:2670: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2600 2670 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2601 2671 if test -z "$ac_err"; then … … 2608 2678 CPP="${CC-cc} -E -traditional-cpp" 2609 2679 cat > conftest.$ac_ext <<EOF 2610 #line 2611 "configure" 2680 #include <sys/types.h> 2681 #line 2682 "configure" 2611 2682 #include "confdefs.h" 2612 2683 #include <assert.h> … … 2614 2685 EOF 2615 2686 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2616 { (eval echo configure:26 17: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2687 { (eval echo configure:2688: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2617 2688 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2618 2689 if test -z "$ac_err"; then … … 2625 2696 CPP="${CC-cc} -nologo -E" 2626 2697 cat > conftest.$ac_ext <<EOF 2627 #line 2628 "configure" 2698 #include <sys/types.h> 2699 #line 2700 "configure" 2628 2700 #include "confdefs.h" 2629 2701 #include <assert.h> … … 2631 2703 EOF 2632 2704 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2633 { (eval echo configure:2 634: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2705 { (eval echo configure:2706: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2634 2706 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2635 2707 if test -z "$ac_err"; then … … 2658 2730 set dummy ranlib; ac_word=$2 2659 2731 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2660 echo "configure:2 661: checking for $ac_word" >&52732 echo "configure:2733: checking for $ac_word" >&5 2661 2733 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 2662 2734 echo $ac_n "(cached) $ac_c" 1>&6 … … 2665 2737 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 2666 2738 else 2667 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2739 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2668 2740 ac_dummy="$PATH" 2669 2741 for ac_dir in $ac_dummy; do 2670 2742 test -z "$ac_dir" && ac_dir=. 2671 if test -f $ac_dir/$ac_word; then 2743 if test -f $ac_dir/$ac_word -o \ 2744 -f $ac_dir/$ac_word$ac_exeext ; then 2672 2745 ac_cv_prog_RANLIB="ranlib" 2673 2746 break … … 2686 2759 2687 2760 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 2688 echo "configure:2 689: checking for ANSI C header files" >&52761 echo "configure:2762: checking for ANSI C header files" >&5 2689 2762 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 2690 2763 echo $ac_n "(cached) $ac_c" 1>&6 2691 2764 else 2692 2765 cat > conftest.$ac_ext <<EOF 2693 #line 2694 "configure" 2766 #include <sys/types.h> 2767 #line 2768 "configure" 2694 2768 #include "confdefs.h" 2695 2769 #include <stdlib.h> … … 2699 2773 EOF 2700 2774 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2701 { (eval echo configure:27 02: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2775 { (eval echo configure:2776: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2702 2776 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2703 2777 if test -z "$ac_err"; then … … 2716 2790 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 2717 2791 cat > conftest.$ac_ext <<EOF 2718 #line 27 19"configure"2792 #line 2793 "configure" 2719 2793 #include "confdefs.h" 2720 2794 #include <string.h> … … 2734 2808 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 2735 2809 cat > conftest.$ac_ext <<EOF 2736 #line 2 737"configure"2810 #line 2811 "configure" 2737 2811 #include "confdefs.h" 2738 2812 #include <stdlib.h> … … 2755 2829 else 2756 2830 cat > conftest.$ac_ext <<EOF 2757 #line 2 758"configure"2831 #line 2832 "configure" 2758 2832 #include "confdefs.h" 2759 2833 #include <ctype.h> … … 2766 2840 2767 2841 EOF 2768 if { (eval echo configure:2 769: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null2842 if { (eval echo configure:2843: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 2769 2843 then 2770 2844 : … … 2790 2864 2791 2865 echo $ac_n "checking for working const""... $ac_c" 1>&6 2792 echo "configure:2 793: checking for working const" >&52866 echo "configure:2867: checking for working const" >&5 2793 2867 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then 2794 2868 echo $ac_n "(cached) $ac_c" 1>&6 2795 2869 else 2796 2870 cat > conftest.$ac_ext <<EOF 2797 #line 2 798"configure"2871 #line 2872 "configure" 2798 2872 #include "confdefs.h" 2799 2873 … … 2844 2918 ; return 0; } 2845 2919 EOF 2846 if { (eval echo configure:2 847: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2920 if { (eval echo configure:2921: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2847 2921 rm -rf conftest* 2848 2922 ac_cv_c_const=yes … … 2865 2939 2866 2940 echo $ac_n "checking for inline""... $ac_c" 1>&6 2867 echo "configure:2 868: checking for inline" >&52941 echo "configure:2942: checking for inline" >&5 2868 2942 if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then 2869 2943 echo $ac_n "(cached) $ac_c" 1>&6 … … 2872 2946 for ac_kw in inline __inline__ __inline; do 2873 2947 cat > conftest.$ac_ext <<EOF 2874 #line 2 875"configure"2948 #line 2949 "configure" 2875 2949 #include "confdefs.h" 2876 2950 … … 2879 2953 ; return 0; } 2880 2954 EOF 2881 if { (eval echo configure:2 882: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2955 if { (eval echo configure:2956: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2882 2956 rm -rf conftest* 2883 2957 ac_cv_c_inline=$ac_kw; break … … 2905 2979 2906 2980 echo $ac_n "checking for off_t""... $ac_c" 1>&6 2907 echo "configure:29 08: checking for off_t" >&52981 echo "configure:2982: checking for off_t" >&5 2908 2982 if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then 2909 2983 echo $ac_n "(cached) $ac_c" 1>&6 2910 2984 else 2911 2985 cat > conftest.$ac_ext <<EOF 2912 #line 29 13"configure"2986 #line 2987 "configure" 2913 2987 #include "confdefs.h" 2914 2988 #include <sys/types.h> … … 2938 3012 2939 3013 echo $ac_n "checking for size_t""... $ac_c" 1>&6 2940 echo "configure: 2941: checking for size_t" >&53014 echo "configure:3015: checking for size_t" >&5 2941 3015 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then 2942 3016 echo $ac_n "(cached) $ac_c" 1>&6 2943 3017 else 2944 3018 cat > conftest.$ac_ext <<EOF 2945 #line 2946"configure"3019 #line 3020 "configure" 2946 3020 #include "confdefs.h" 2947 3021 #include <sys/types.h> … … 2973 3047 # for constant arguments. Useless! 2974 3048 echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 2975 echo "configure: 2976: checking for working alloca.h" >&53049 echo "configure:3050: checking for working alloca.h" >&5 2976 3050 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then 2977 3051 echo $ac_n "(cached) $ac_c" 1>&6 2978 3052 else 2979 3053 cat > conftest.$ac_ext <<EOF 2980 #line 2981"configure"3054 #line 3055 "configure" 2981 3055 #include "confdefs.h" 2982 3056 #include <alloca.h> … … 2985 3059 ; return 0; } 2986 3060 EOF 2987 if { (eval echo configure: 2988: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3061 if { (eval echo configure:3062: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2988 3062 rm -rf conftest* 2989 3063 ac_cv_header_alloca_h=yes … … 3006 3080 3007 3081 echo $ac_n "checking for alloca""... $ac_c" 1>&6 3008 echo "configure:30 09: checking for alloca" >&53082 echo "configure:3083: checking for alloca" >&5 3009 3083 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then 3010 3084 echo $ac_n "(cached) $ac_c" 1>&6 3011 3085 else 3012 3086 cat > conftest.$ac_ext <<EOF 3013 #line 30 14"configure"3087 #line 3088 "configure" 3014 3088 #include "confdefs.h" 3015 3089 … … 3039 3113 ; return 0; } 3040 3114 EOF 3041 if { (eval echo configure:3 042: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3115 if { (eval echo configure:3116: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3042 3116 rm -rf conftest* 3043 3117 ac_cv_func_alloca_works=yes … … 3071 3145 3072 3146 echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 3073 echo "configure:3 074: checking whether alloca needs Cray hooks" >&53147 echo "configure:3148: checking whether alloca needs Cray hooks" >&5 3074 3148 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then 3075 3149 echo $ac_n "(cached) $ac_c" 1>&6 3076 3150 else 3077 3151 cat > conftest.$ac_ext <<EOF 3078 #line 3 079"configure"3152 #line 3153 "configure" 3079 3153 #include "confdefs.h" 3080 3154 #if defined(CRAY) && ! defined(CRAY2) … … 3101 3175 for ac_func in _getb67 GETB67 getb67; do 3102 3176 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3103 echo "configure:31 04: checking for $ac_func" >&53177 echo "configure:3178: checking for $ac_func" >&5 3104 3178 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3105 3179 echo $ac_n "(cached) $ac_c" 1>&6 3106 3180 else 3107 3181 cat > conftest.$ac_ext <<EOF 3108 #line 31 09"configure"3182 #line 3183 "configure" 3109 3183 #include "confdefs.h" 3110 3184 /* System header to define __stub macros and hopefully few prototypes, … … 3129 3203 ; return 0; } 3130 3204 EOF 3131 if { (eval echo configure:3 132: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3205 if { (eval echo configure:3206: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3132 3206 rm -rf conftest* 3133 3207 eval "ac_cv_func_$ac_func=yes" … … 3156 3230 3157 3231 echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 3158 echo "configure:3 159: checking stack direction for C alloca" >&53232 echo "configure:3233: checking stack direction for C alloca" >&5 3159 3233 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then 3160 3234 echo $ac_n "(cached) $ac_c" 1>&6 … … 3164 3238 else 3165 3239 cat > conftest.$ac_ext <<EOF 3166 #line 3 167"configure"3240 #line 3241 "configure" 3167 3241 #include "confdefs.h" 3168 3242 find_stack_direction () … … 3183 3257 } 3184 3258 EOF 3185 if { (eval echo configure:3 186: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null3259 if { (eval echo configure:3260: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 3186 3260 then 3187 3261 ac_cv_c_stack_direction=1 … … 3208 3282 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 3209 3283 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 3210 echo "configure:32 11: checking for $ac_hdr" >&53284 echo "configure:3285: checking for $ac_hdr" >&5 3211 3285 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 3212 3286 echo $ac_n "(cached) $ac_c" 1>&6 3213 3287 else 3214 3288 cat > conftest.$ac_ext <<EOF 3215 #line 3216 "configure" 3289 #include <sys/types.h> 3290 #line 3291 "configure" 3216 3291 #include "confdefs.h" 3217 3292 #include <$ac_hdr> 3218 3293 EOF 3219 3294 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3220 { (eval echo configure:32 21: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3295 { (eval echo configure:3296: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3221 3296 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3222 3297 if test -z "$ac_err"; then … … 3247 3322 do 3248 3323 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3249 echo "configure:3 250: checking for $ac_func" >&53324 echo "configure:3325: checking for $ac_func" >&5 3250 3325 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3251 3326 echo $ac_n "(cached) $ac_c" 1>&6 3252 3327 else 3253 3328 cat > conftest.$ac_ext <<EOF 3254 #line 3 255"configure"3329 #line 3330 "configure" 3255 3330 #include "confdefs.h" 3256 3331 /* System header to define __stub macros and hopefully few prototypes, … … 3275 3350 ; return 0; } 3276 3351 EOF 3277 if { (eval echo configure:3 278: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3352 if { (eval echo configure:3353: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3278 3353 rm -rf conftest* 3279 3354 eval "ac_cv_func_$ac_func=yes" … … 3300 3375 3301 3376 echo $ac_n "checking for working mmap""... $ac_c" 1>&6 3302 echo "configure:33 03: checking for working mmap" >&53377 echo "configure:3378: checking for working mmap" >&5 3303 3378 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then 3304 3379 echo $ac_n "(cached) $ac_c" 1>&6 … … 3308 3383 else 3309 3384 cat > conftest.$ac_ext <<EOF 3310 #line 33 11"configure"3385 #line 3386 "configure" 3311 3386 #include "confdefs.h" 3312 3387 … … 3448 3523 3449 3524 EOF 3450 if { (eval echo configure:3 451: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null3525 if { (eval echo configure:3526: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 3451 3526 then 3452 3527 ac_cv_func_mmap_fixed_mapped=yes … … 3476 3551 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 3477 3552 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 3478 echo "configure:3 479: checking for $ac_hdr" >&53553 echo "configure:3554: checking for $ac_hdr" >&5 3479 3554 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 3480 3555 echo $ac_n "(cached) $ac_c" 1>&6 3481 3556 else 3482 3557 cat > conftest.$ac_ext <<EOF 3483 #line 3484 "configure" 3558 #include <sys/types.h> 3559 #line 3560 "configure" 3484 3560 #include "confdefs.h" 3485 3561 #include <$ac_hdr> 3486 3562 EOF 3487 3563 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3488 { (eval echo configure:3 489: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3564 { (eval echo configure:3565: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3489 3565 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3490 3566 if test -z "$ac_err"; then … … 3516 3592 do 3517 3593 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3518 echo "configure:35 19: checking for $ac_func" >&53594 echo "configure:3595: checking for $ac_func" >&5 3519 3595 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3520 3596 echo $ac_n "(cached) $ac_c" 1>&6 3521 3597 else 3522 3598 cat > conftest.$ac_ext <<EOF 3523 #line 3 524"configure"3599 #line 3600 "configure" 3524 3600 #include "confdefs.h" 3525 3601 /* System header to define __stub macros and hopefully few prototypes, … … 3544 3620 ; return 0; } 3545 3621 EOF 3546 if { (eval echo configure:3 547: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3622 if { (eval echo configure:3623: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3547 3623 rm -rf conftest* 3548 3624 eval "ac_cv_func_$ac_func=yes" … … 3573 3649 do 3574 3650 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3575 echo "configure:3 576: checking for $ac_func" >&53651 echo "configure:3652: checking for $ac_func" >&5 3576 3652 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3577 3653 echo $ac_n "(cached) $ac_c" 1>&6 3578 3654 else 3579 3655 cat > conftest.$ac_ext <<EOF 3580 #line 3 581"configure"3656 #line 3657 "configure" 3581 3657 #include "confdefs.h" 3582 3658 /* System header to define __stub macros and hopefully few prototypes, … … 3601 3677 ; return 0; } 3602 3678 EOF 3603 if { (eval echo configure:36 04: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3679 if { (eval echo configure:3680: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3604 3680 rm -rf conftest* 3605 3681 eval "ac_cv_func_$ac_func=yes" … … 3635 3711 if test $ac_cv_header_locale_h = yes; then 3636 3712 echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 3637 echo "configure:3 638: checking for LC_MESSAGES" >&53713 echo "configure:3714: checking for LC_MESSAGES" >&5 3638 3714 if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then 3639 3715 echo $ac_n "(cached) $ac_c" 1>&6 3640 3716 else 3641 3717 cat > conftest.$ac_ext <<EOF 3642 #line 3 643"configure"3718 #line 3719 "configure" 3643 3719 #include "confdefs.h" 3644 3720 #include <locale.h> … … 3647 3723 ; return 0; } 3648 3724 EOF 3649 if { (eval echo configure:3 650: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3725 if { (eval echo configure:3726: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3650 3726 rm -rf conftest* 3651 3727 am_cv_val_LC_MESSAGES=yes … … 3668 3744 fi 3669 3745 echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6 3670 echo "configure:3 671: checking whether NLS is requested" >&53746 echo "configure:3747: checking whether NLS is requested" >&5 3671 3747 # Check whether --enable-nls or --disable-nls was given. 3672 3748 if test "${enable_nls+set}" = set; then … … 3688 3764 3689 3765 echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6 3690 echo "configure:3 691: checking whether included gettext is requested" >&53766 echo "configure:3767: checking whether included gettext is requested" >&5 3691 3767 # Check whether --with-included-gettext or --without-included-gettext was given. 3692 3768 if test "${with_included_gettext+set}" = set; then … … 3707 3783 ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'` 3708 3784 echo $ac_n "checking for libintl.h""... $ac_c" 1>&6 3709 echo "configure:37 10: checking for libintl.h" >&53785 echo "configure:3786: checking for libintl.h" >&5 3710 3786 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 3711 3787 echo $ac_n "(cached) $ac_c" 1>&6 3712 3788 else 3713 3789 cat > conftest.$ac_ext <<EOF 3714 #line 3715 "configure" 3790 #include <sys/types.h> 3791 #line 3792 "configure" 3715 3792 #include "confdefs.h" 3716 3793 #include <libintl.h> 3717 3794 EOF 3718 3795 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3719 { (eval echo configure:37 20: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3796 { (eval echo configure:3797: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3720 3797 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 3721 3798 if test -z "$ac_err"; then … … 3734 3811 echo "$ac_t""yes" 1>&6 3735 3812 echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6 3736 echo "configure:3 737: checking for gettext in libc" >&53813 echo "configure:3814: checking for gettext in libc" >&5 3737 3814 if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then 3738 3815 echo $ac_n "(cached) $ac_c" 1>&6 3739 3816 else 3740 3817 cat > conftest.$ac_ext <<EOF 3741 #line 3 742"configure"3818 #line 3819 "configure" 3742 3819 #include "confdefs.h" 3743 3820 #include <libintl.h> … … 3746 3823 ; return 0; } 3747 3824 EOF 3748 if { (eval echo configure:3 749: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3825 if { (eval echo configure:3826: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3749 3826 rm -rf conftest* 3750 3827 gt_cv_func_gettext_libc=yes … … 3762 3839 if test "$gt_cv_func_gettext_libc" != "yes"; then 3763 3840 echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6 3764 echo "configure:3 765: checking for bindtextdomain in -lintl" >&53841 echo "configure:3842: checking for bindtextdomain in -lintl" >&5 3765 3842 ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'` 3766 3843 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3770 3847 LIBS="-lintl $LIBS" 3771 3848 cat > conftest.$ac_ext <<EOF 3772 #line 3 773"configure"3849 #line 3850 "configure" 3773 3850 #include "confdefs.h" 3774 3851 /* Override any gcc2 internal prototype to avoid an error. */ … … 3781 3858 ; return 0; } 3782 3859 EOF 3783 if { (eval echo configure:3 784: \"$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 3784 3861 rm -rf conftest* 3785 3862 eval "ac_cv_lib_$ac_lib_var=yes" … … 3797 3874 echo "$ac_t""yes" 1>&6 3798 3875 echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6 3799 echo "configure:38 00: checking for gettext in libintl" >&53876 echo "configure:3877: checking for gettext in libintl" >&5 3800 3877 if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then 3801 3878 echo $ac_n "(cached) $ac_c" 1>&6 3802 3879 else 3803 3880 cat > conftest.$ac_ext <<EOF 3804 #line 38 05"configure"3881 #line 3882 "configure" 3805 3882 #include "confdefs.h" 3806 3883 … … 3809 3886 ; return 0; } 3810 3887 EOF 3811 if { (eval echo configure:38 12: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3888 if { (eval echo configure:3889: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3812 3889 rm -rf conftest* 3813 3890 gt_cv_func_gettext_libintl=yes … … 3837 3914 set dummy msgfmt; ac_word=$2 3838 3915 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3839 echo "configure:3 840: checking for $ac_word" >&53916 echo "configure:3917: checking for $ac_word" >&5 3840 3917 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then 3841 3918 echo $ac_n "(cached) $ac_c" 1>&6 … … 3846 3923 ;; 3847 3924 *) 3848 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${ IFS}:"3925 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${PATH_IFS}" 3849 3926 for ac_dir in $PATH; do 3850 3927 test -z "$ac_dir" && ac_dir=. … … 3871 3948 do 3872 3949 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3873 echo "configure:3 874: checking for $ac_func" >&53950 echo "configure:3951: checking for $ac_func" >&5 3874 3951 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3875 3952 echo $ac_n "(cached) $ac_c" 1>&6 3876 3953 else 3877 3954 cat > conftest.$ac_ext <<EOF 3878 #line 3 879"configure"3955 #line 3956 "configure" 3879 3956 #include "confdefs.h" 3880 3957 /* System header to define __stub macros and hopefully few prototypes, … … 3899 3976 ; return 0; } 3900 3977 EOF 3901 if { (eval echo configure:39 02: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3978 if { (eval echo configure:3979: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3902 3979 rm -rf conftest* 3903 3980 eval "ac_cv_func_$ac_func=yes" … … 3926 4003 set dummy gmsgfmt; ac_word=$2 3927 4004 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3928 echo "configure: 3929: checking for $ac_word" >&54005 echo "configure:4006: checking for $ac_word" >&5 3929 4006 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then 3930 4007 echo $ac_n "(cached) $ac_c" 1>&6 3931 4008 else 3932 4009 case "$GMSGFMT" in 3933 /* )4010 /* | [a-zA-Z]:*) 3934 4011 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. 3935 4012 ;; 3936 ?:/*) 4013 ?:/*) 3937 4014 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a dos path. 3938 4015 ;; 3939 4016 *) 3940 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"4017 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3941 4018 ac_dummy="$PATH" 3942 for ac_dir in $ac_dummy; do 4019 for ac_dir in $ac_dummy; do 3943 4020 test -z "$ac_dir" && ac_dir=. 3944 4021 if test -f $ac_dir/$ac_word; then 3945 4022 ac_cv_path_GMSGFMT="$ac_dir/$ac_word" 4023 break 4024 fi 4025 if test -f $ac_dir/$ac_word$ac_exeext; then 4026 ac_cv_path_GMSGFMT="$ac_dir/$ac_word$ac_exeext" 3946 4027 break 3947 4028 fi … … 3962 4043 set dummy xgettext; ac_word=$2 3963 4044 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3964 echo "configure: 3965: checking for $ac_word" >&54045 echo "configure:4046: checking for $ac_word" >&5 3965 4046 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then 3966 4047 echo $ac_n "(cached) $ac_c" 1>&6 … … 3971 4052 ;; 3972 4053 *) 3973 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${ IFS}:"4054 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${PATH_IFS}" 3974 4055 for ac_dir in $PATH; do 3975 4056 test -z "$ac_dir" && ac_dir=. … … 3994 4075 3995 4076 cat > conftest.$ac_ext <<EOF 3996 #line 3997"configure"4077 #line 4078 "configure" 3997 4078 #include "confdefs.h" 3998 4079 … … 4002 4083 ; return 0; } 4003 4084 EOF 4004 if { (eval echo configure:40 05: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4085 if { (eval echo configure:4086: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4005 4086 rm -rf conftest* 4006 4087 CATOBJEXT=.gmo … … 4034 4115 set dummy msgfmt; ac_word=$2 4035 4116 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 4036 echo "configure:4 037: checking for $ac_word" >&54117 echo "configure:4118: checking for $ac_word" >&5 4037 4118 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then 4038 4119 echo $ac_n "(cached) $ac_c" 1>&6 … … 4043 4124 ;; 4044 4125 *) 4045 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${ IFS}:"4126 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${PATH_IFS}" 4046 4127 for ac_dir in $PATH; do 4047 4128 test -z "$ac_dir" && ac_dir=. … … 4068 4149 set dummy gmsgfmt; ac_word=$2 4069 4150 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 4070 echo "configure:4 071: checking for $ac_word" >&54151 echo "configure:4152: checking for $ac_word" >&5 4071 4152 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then 4072 4153 echo $ac_n "(cached) $ac_c" 1>&6 4073 4154 else 4074 4155 case "$GMSGFMT" in 4075 /* )4156 /* | [a-zA-Z]:*) 4076 4157 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. 4077 4158 ;; 4078 ?:/*) 4159 ?:/*) 4079 4160 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a dos path. 4080 4161 ;; 4081 4162 *) 4082 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"4163 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 4083 4164 ac_dummy="$PATH" 4084 for ac_dir in $ac_dummy; do 4165 for ac_dir in $ac_dummy; do 4085 4166 test -z "$ac_dir" && ac_dir=. 4086 4167 if test -f $ac_dir/$ac_word; then 4087 4168 ac_cv_path_GMSGFMT="$ac_dir/$ac_word" 4169 break 4170 fi 4171 if test -f $ac_dir/$ac_word$ac_exeext; then 4172 ac_cv_path_GMSGFMT="$ac_dir/$ac_word$ac_exeext" 4088 4173 break 4089 4174 fi … … 4104 4189 set dummy xgettext; ac_word=$2 4105 4190 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 4106 echo "configure:41 07: checking for $ac_word" >&54191 echo "configure:4192: checking for $ac_word" >&5 4107 4192 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then 4108 4193 echo $ac_n "(cached) $ac_c" 1>&6 … … 4113 4198 ;; 4114 4199 *) 4115 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${ IFS}:"4200 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${PATH_IFS}" 4116 4201 for ac_dir in $PATH; do 4117 4202 test -z "$ac_dir" && ac_dir=. … … 4194 4279 else 4195 4280 echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6 4196 echo "configure:4 197: checking for catalogs to be installed" >&54281 echo "configure:4282: checking for catalogs to be installed" >&5 4197 4282 NEW_LINGUAS= 4198 4283 for lang in ${LINGUAS=$ALL_LINGUAS}; do … … 4222 4307 ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'` 4223 4308 echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6 4224 echo "configure:4 225: checking for linux/version.h" >&54309 echo "configure:4310: checking for linux/version.h" >&5 4225 4310 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4226 4311 echo $ac_n "(cached) $ac_c" 1>&6 4227 4312 else 4228 4313 cat > conftest.$ac_ext <<EOF 4229 #line 4230 "configure" 4314 #include <sys/types.h> 4315 #line 4316 "configure" 4230 4316 #include "confdefs.h" 4231 4317 #include <linux/version.h> 4232 4318 EOF 4233 4319 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4234 { (eval echo configure:4 235: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4320 { (eval echo configure:4321: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4235 4321 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4236 4322 if test -z "$ac_err"; then … … 4280 4366 test -d po || mkdir po 4281 4367 if test "x$srcdir" != "x."; then 4282 if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then4368 if test "x`echo $srcdir | sed -e 's@.\:/.*@@' -e 's@/.*@@' `" = "x"; then 4283 4369 posrcprefix="$srcdir/" 4284 4370 else … … 4309 4395 # ./install, which can be erroneously created by make from ./install.sh. 4310 4396 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 4311 echo "configure:43 12: checking for a BSD compatible install" >&54397 echo "configure:4398: checking for a BSD compatible install" >&5 4312 4398 if test -z "$INSTALL"; then 4313 4399 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 4314 4400 echo $ac_n "(cached) $ac_c" 1>&6 4315 4401 else 4316 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"4402 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 4317 4403 for ac_dir in $PATH; do 4318 4404 # Account for people who put trailing slashes in PATH elements. 4319 4405 case "$ac_dir/" in 4320 4406 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; 4407 # We reject the install program from OS/2 or W3.1 4408 */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;; 4321 4409 *) 4322 4410 # OSF1 and SCO ODT 3.0 have their own names for install. … … 4324 4412 # by default. 4325 4413 for ac_prog in ginstall scoinst install; do 4326 if test -f $ac_dir/$ac_prog ; then4414 if test -f $ac_dir/$ac_prog$ac_exeext; then 4327 4415 if test $ac_prog = install && 4328 4416 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 4330 4418 : 4331 4419 else 4332 ac_cv_path_install="$ac_dir/$ac_prog -c"4420 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 4333 4421 break 2 4334 4422 fi … … 4366 4454 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 4367 4455 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 4368 echo "configure:4 369: checking for $ac_hdr" >&54456 echo "configure:4457: checking for $ac_hdr" >&5 4369 4457 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4370 4458 echo $ac_n "(cached) $ac_c" 1>&6 4371 4459 else 4372 4460 cat > conftest.$ac_ext <<EOF 4373 #line 4374 "configure" 4461 #include <sys/types.h> 4462 #line 4463 "configure" 4374 4463 #include "confdefs.h" 4375 4464 #include <$ac_hdr> 4376 4465 EOF 4377 4466 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4378 { (eval echo configure:4 379: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4467 { (eval echo configure:4468: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4379 4468 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4380 4469 if test -z "$ac_err"; then … … 4656 4745 # Run this file to recreate the current configuration. 4657 4746 # This directory was configured as follows, 4747 EOF 4748 echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS 4749 cat >> $CONFIG_STATUS <<EOF 4658 4750 # on host `(hostname || uname -n) 2>/dev/null | sed 1q`: 4659 4751 # … … 4681 4773 ac_given_srcdir=$srcdir 4682 4774 ac_given_INSTALL="$INSTALL" 4775 PATHIFS="$PATH_IFS" 4683 4776 4684 4777 trap 'rm -fr `echo "Makefile po/Makefile.in:po/Make-in config.h:config.in" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 … … 4691 4784 $ac_vpsub 4692 4785 $extrasub 4786 s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g 4693 4787 s%@SHELL@%$SHELL%g 4694 4788 s%@CFLAGS@%$CFLAGS%g … … 4714 4808 s%@infodir@%$infodir%g 4715 4809 s%@mandir@%$mandir%g 4810 s%@PATH_IFS@%$PATH_IFS%g 4811 s%@EXEEXT@%$EXEEXT%g 4716 4812 s%@host@%$host%g 4717 4813 s%@host_alias@%$host_alias%g … … 4745 4841 s%@LN_S@%$LN_S%g 4746 4842 s%@OBJEXT@%$OBJEXT%g 4747 s%@EXEEXT@%$EXEEXT%g4748 4843 s%@STRIP@%$STRIP%g 4749 4844 s%@LIBTOOL@%$LIBTOOL%g … … 4852 4947 if test -z "$ac_dots"; then top_srcdir=. 4853 4948 else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; 4854 /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 4949 /* | [A-Za-z]:*) 4950 srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 4855 4951 *) # Relative path. 4856 4952 srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" … … 4859 4955 4860 4956 case "$ac_given_INSTALL" in 4861 [/$]* ) INSTALL="$ac_given_INSTALL" ;;4957 [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;; 4862 4958 *) INSTALL="$ac_dots$ac_given_INSTALL" ;; 4863 4959 esac … … 4872 4968 esac 4873 4969 4874 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s% :% $ac_given_srcdir/%g"`4970 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%$PATHIFS% $ac_given_srcdir/%g"` 4875 4971 sed -e "$ac_comsub 4876 4972 s%@configure_input@%$configure_input%g … … 4919 5015 4920 5016 rm -f conftest.frag conftest.in conftest.out 4921 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 5017 # kso the other way around might work better with drive letters and such. 5018 # ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` 5019 ac_file_inputs=`echo $ac_file_in|sed -e "s%:% $ac_given_srcdir/%g" -e "s%^%$ac_given_srcdir/%" ` 4922 5020 cat $ac_file_inputs > conftest.in 4923 5021 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.