Changeset 619 for trunk/src/binutils/configure
- Timestamp:
- Aug 16, 2003, 11:56:50 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/binutils/configure
-
Property cvs2svn:cvs-rev
changed from
1.1.1.2
to1.2
r618 r619 529 529 fi 530 530 531 echo $ac_n "checking for path separator""... $ac_c" 1>&6 532 echo "configure:533: checking for path separator" >&5 533 # Filter path to get backslahes into forwardslashes 534 case "`uname -s 2> /dev/null`" in 535 OS/2) 536 PATH=`echo -E "$PATH" | sed 's+\\\\+/+g'` 537 PATH_IFS=';' 538 ;; 539 *) 540 PATH_IFS=':' 541 ;; 542 esac 543 echo "$ac_t""${PATH_IFS}" 1>&6 544 545 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 546 echo "configure:547: checking for Cygwin environment" >&5 547 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then 548 echo $ac_n "(cached) $ac_c" 1>&6 549 else 550 cat > conftest.$ac_ext <<EOF 551 #line 552 "configure" 552 #include "confdefs.h" 553 554 int main() { 555 556 #ifndef __CYGWIN__ 557 #define __CYGWIN__ __CYGWIN32__ 558 #endif 559 return __CYGWIN__; 560 ; return 0; } 561 EOF 562 if { (eval echo configure:563: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 563 rm -rf conftest* 564 ac_cv_cygwin=yes 565 else 566 echo "configure: failed program was:" >&5 567 cat conftest.$ac_ext >&5 568 rm -rf conftest* 569 ac_cv_cygwin=no 570 fi 571 rm -f conftest* 572 rm -f conftest* 573 fi 574 575 echo "$ac_t""$ac_cv_cygwin" 1>&6 576 CYGWIN= 577 test "$ac_cv_cygwin" = yes && CYGWIN=yes 578 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 579 echo "configure:580: checking for mingw32 environment" >&5 580 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then 581 echo $ac_n "(cached) $ac_c" 1>&6 582 else 583 cat > conftest.$ac_ext <<EOF 584 #line 585 "configure" 585 #include "confdefs.h" 586 587 int main() { 588 return __MINGW32__; 589 ; return 0; } 590 EOF 591 if { (eval echo configure:592: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 592 rm -rf conftest* 593 ac_cv_mingw32=yes 594 else 595 echo "configure: failed program was:" >&5 596 cat conftest.$ac_ext >&5 597 rm -rf conftest* 598 ac_cv_mingw32=no 599 fi 600 rm -f conftest* 601 rm -f conftest* 602 fi 603 604 echo "$ac_t""$ac_cv_mingw32" 1>&6 605 MINGW32= 606 test "$ac_cv_mingw32" = yes && MINGW32=yes 607 echo $ac_n "checking for EMX/OS2 environment""... $ac_c" 1>&6 608 echo "configure:609: checking for EMX/OS2 environment" >&5 609 if eval "test \"`echo '$''{'ac_cv_emxos2'+set}'`\" = set"; then 610 echo $ac_n "(cached) $ac_c" 1>&6 611 else 612 : ${CC=gcc.exe} 613 cat > conftest.$ac_ext <<EOF 614 #line 615 "configure" 615 #include "confdefs.h" 616 617 int main() { 618 return __EMX__; 619 ; return 0; } 620 EOF 621 if { (eval echo configure:622: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 622 rm -rf conftest* 623 ac_cv_emxos2=yes 624 else 625 echo "configure: failed program was:" >&5 626 cat conftest.$ac_ext >&5 627 rm -rf conftest* 628 ac_cv_emxos2=no 629 fi 630 rm -f conftest* 631 rm -f conftest* 632 fi 633 634 echo "$ac_t""$ac_cv_emxos2" 1>&6 635 if eval "test \"`echo '$''{'ac_cv_libpre'+set}'`\" = set"; then 636 echo $ac_n "(cached) $ac_c" 1>&6 637 else 638 if test "$ac_cv_emxos2" = yes ; then 639 ac_cv_libpre= 640 else 641 ac_cv_libpre=lib 642 fi 643 644 fi 645 646 EMXOS2= 647 test "$ac_cv_emxos2" = yes && EMXOS2=yes 648 649 650 651 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 652 echo "configure:653: checking for executable suffix" >&5 653 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 654 echo $ac_n "(cached) $ac_c" 1>&6 655 else 656 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 657 ac_cv_exeext=.exe 658 else 659 rm -f conftest* 660 echo 'int main () { return 0; }' > conftest.$ac_ext 661 ac_cv_exeext= 662 if { (eval echo configure:663: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 663 for file in conftest.*; do 664 case $file in 665 *.c | *.o | *.obj) ;; 666 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; 667 esac 668 done 669 else 670 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; } 671 fi 672 rm -f conftest* 673 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no 674 fi 675 fi 676 677 EXEEXT="" 678 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} 679 echo "$ac_t""${ac_cv_exeext}" 1>&6 680 ac_exeext=$EXEEXT 681 531 682 532 683 … … 578 729 579 730 echo $ac_n "checking host system type""... $ac_c" 1>&6 580 echo "configure: 581: checking host system type" >&5731 echo "configure:732: checking host system type" >&5 581 732 582 733 host_alias=$host … … 599 750 600 751 echo $ac_n "checking target system type""... $ac_c" 1>&6 601 echo "configure: 602: checking target system type" >&5752 echo "configure:753: checking target system type" >&5 602 753 603 754 target_alias=$target … … 617 768 618 769 echo $ac_n "checking build system type""... $ac_c" 1>&6 619 echo "configure: 620: checking build system type" >&5770 echo "configure:771: checking build system type" >&5 620 771 621 772 build_alias=$build … … 700 851 else 701 852 for prog in sh sh.exe bash bash.exe; do 702 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${ IFS}:"853 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${PATH_IFS}" 703 854 for dir in $PATH; do 704 855 test -z "$dir" && dir=. … … 766 917 ### (library or tools, host or target), doing a dependency sort. 767 918 768 # Subdirs will be configured in the order listed in build_configdirs, 919 # Subdirs will be configured in the order listed in build_configdirs, 769 920 # configdirs, or target_configdirs; see the serialization section below. 770 921 771 # Dependency sorting is only needed when *configuration* must be done in 772 # a particular order. In all cases a dependency should be specified in 922 # Dependency sorting is only needed when *configuration* must be done in 923 # a particular order. In all cases a dependency should be specified in 773 924 # the Makefile, whether or not it's implicitly specified here. 774 925 … … 785 936 # binutils, gas and ld appear in that order because it makes sense to run 786 937 # "make check" in that particular order. 787 host_tools=" texinfobyacc flex bison binutils gas ld gcc sid sim gdb make patch prms send-pr gprof etc expect dejagnu ash bash bzip2 m4 autoconf automake libtool diff rcs fileutils shellutils time textutils wdiff find uudecode hello tar gzip indent recode release sed utils guile perl gawk findutils gettext zip fastjar"938 host_tools="byacc flex bison binutils gas ld gcc sid sim gdb make patch prms send-pr gprof etc expect dejagnu ash bash bzip2 m4 autoconf automake libtool diff rcs fileutils shellutils time textutils wdiff find uudecode hello tar gzip indent recode release sed utils guile perl gawk findutils gettext zip fastjar" 788 939 789 940 # libgcj represents the runtime libraries only used by gcj. … … 884 1035 fi 885 1036 886 # some tools are so dependent upon X11 that if we're not building with X, 1037 # some tools are so dependent upon X11 that if we're not building with X, 887 1038 # it's not even worth trying to configure, much less build, that tool. 888 1039 … … 892 1043 skipdirs="${skipdirs} tk tix itcl libgui" 893 1044 # We won't be able to build gdbtk without X. 894 enable_gdbtk=no 1045 enable_gdbtk=no 895 1046 ;; 896 1047 *) echo "*** bad value \"${with_x}\" for -with-x flag; ignored" 1>&2 ;; … … 898 1049 899 1050 # Some tools are only suitable for building in a "native" situation. 900 # Remove these if host!=target. 1051 # Remove these if host!=target. 901 1052 native_only="autoconf automake libtool fileutils find gawk gettext gzip hello indent m4 rcs recode sed shellutils tar textutils uudecode wdiff gprof target-groff guile perl time ash bash bzip2 prms gnuserv target-gperf" 902 1053 … … 931 1082 esac 932 1083 933 # Remove more programs from consideration, based on the host or 1084 # Remove more programs from consideration, based on the host or 934 1085 # target this usually means that a port of the program doesn't 935 1086 # exist yet. … … 1053 1204 sh-*-linux*) 1054 1205 noconfigdirs="$noconfigdirs ${libgcj} target-newlib target-libgloss" 1055 ;; 1206 ;; 1056 1207 sh*-*-pe|mips*-*-pe|*arm-wince-pe) 1057 1208 noconfigdirs="$noconfigdirs ${libgcj}" … … 1191 1342 ;; 1192 1343 esac 1193 ;; 1344 ;; 1194 1345 *-*-cygwin*) 1195 1346 target_configdirs="$target_configdirs target-libtermcap target-winsup" … … 1204 1355 ;; 1205 1356 esac 1206 ;; 1357 ;; 1207 1358 i[3456]86-*-pe) 1208 1359 noconfigdirs="$noconfigdirs target-libstdc++-v3 target-libgloss ${libgcj}" … … 1366 1517 *-*-lynxos*) 1367 1518 noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}" 1368 ;; 1519 ;; 1369 1520 *-*-*) 1370 1521 noconfigdirs="$noconfigdirs ${libgcj}" … … 1521 1672 target_configdirs= 1522 1673 for i in ${target_configdirs_all} ; do 1523 j=`echo $i | sed -e s/target-//g` 1674 j=`echo $i | sed -e s/target-//g` 1524 1675 if test -f ${srcdir}/$j/configure ; then 1525 1676 target_configdirs="${target_configdirs} $i" … … 1746 1897 host_makefile_frag="config/mh-djgpp" 1747 1898 ;; 1899 i345686-*-os2*) 1900 host_makefile_frag="config/mh-emx" 1901 ;; 1748 1902 *-cygwin*) 1749 1903 host_makefile_frag="config/mh-cygwin" … … 1803 1957 ;; 1804 1958 *-*-aix4.[3456789]* | *-*-aix[56789].*) 1805 # nm and ar from AIX 4.3 and above require -X32_64 flag to all ar and nm 1959 # nm and ar from AIX 4.3 and above require -X32_64 flag to all ar and nm 1806 1960 # commands to handle both 32-bit and 64-bit objects. These flags are 1807 1961 # harmless if we're using GNU nm or ar. … … 1853 2007 # is available, and by checking whether or not specific configurations 1854 2008 # have requested that this magic not happen. 1855 # 1856 # The command line options always override the explicit settings in 2009 # 2010 # The command line options always override the explicit settings in 1857 2011 # configure.in, and the settings in configure.in override this magic. 1858 2012 # 1859 # If the default for a toolchain is to use GNU as and ld, and you don't 2013 # If the default for a toolchain is to use GNU as and ld, and you don't 1860 2014 # want to do that, then you should use the --without-gnu-as and 1861 2015 # --without-gnu-ld options for the configure script. … … 1910 2064 # Actually, use the 'pre-extracted' version above. 1911 2065 if test -z "${CC}" && test "${build}" = "${host}" ; then 1912 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${ IFS}:"2066 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${PATH_IFS}" 1913 2067 found= 1914 2068 for dir in $PATH; do … … 1936 2090 do 1937 2091 set dummy $prog; tmp=$2 1938 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${ IFS}:"2092 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${PATH_IFS}" 1939 2093 for dir in $PATH; do 1940 2094 test -z "$dir" && dir=. … … 1955 2109 do 1956 2110 set dummy $prog; tmp=$2 1957 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${ IFS}:"2111 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${PATH_IFS}" 1958 2112 for dir in $PATH; do 1959 2113 test -z "$dir" && dir=. … … 1974 2128 do 1975 2129 set dummy $prog; tmp=$2 1976 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${ IFS}:"2130 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${PATH_IFS}" 1977 2131 for dir in $PATH; do 1978 2132 test -z "$dir" && dir=. … … 2006 2160 2007 2161 if test -z "${YACC}" ; then 2008 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${ IFS}:"2162 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${PATH_IFS}" 2009 2163 for dir in $PATH; do 2010 2164 test -z "$dir" && dir=. … … 2029 2183 2030 2184 if test -z "${LEX}" ; then 2031 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${ IFS}:"2185 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${PATH_IFS}" 2032 2186 for dir in $PATH; do 2033 2187 test -z "$dir" && dir=. … … 2066 2220 cc_prog_is_gcc= 2067 2221 if test -z "${CC}" ; then 2068 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${ IFS}:"2222 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${PATH_IFS}" 2069 2223 for dir in $PATH; do 2070 2224 test -z "$dir" && dir=. … … 2169 2323 true 2170 2324 else 2171 # We need to re-remove the file because Lynx leaves a 2325 # We need to re-remove the file because Lynx leaves a 2172 2326 # very strange directory there when it fails an NFS symlink. 2173 2327 ${remove} -r -f ${link} … … 2209 2363 we_are_ok=yes 2210 2364 fi 2211 fi 2365 fi 2212 2366 case $we_are_ok in 2213 2367 no) … … 2680 2834 set dummy ${ncn_tool_prefix}ar; ac_word=$2 2681 2835 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2682 echo "configure:2 683: checking for $ac_word" >&52836 echo "configure:2837: checking for $ac_word" >&5 2683 2837 if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then 2684 2838 echo $ac_n "(cached) $ac_c" 1>&6 … … 2687 2841 ac_cv_prog_AR="$AR" # Let the user override the test. 2688 2842 else 2689 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2843 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2690 2844 ac_dummy="$PATH" 2691 2845 for ac_dir in $ac_dummy; do 2692 2846 test -z "$ac_dir" && ac_dir=. 2693 if test -f $ac_dir/$ac_word; then 2847 if test -f $ac_dir/$ac_word -o \ 2848 -f $ac_dir/$ac_word$ac_exeext ; then 2694 2849 ac_cv_prog_AR="${ncn_tool_prefix}ar" 2695 2850 break … … 2713 2868 set dummy ar; ac_word=$2 2714 2869 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2715 echo "configure:2 716: checking for $ac_word" >&52870 echo "configure:2871: checking for $ac_word" >&5 2716 2871 if eval "test \"`echo '$''{'ac_cv_prog_ncn_cv_AR'+set}'`\" = set"; then 2717 2872 echo $ac_n "(cached) $ac_c" 1>&6 … … 2720 2875 ac_cv_prog_ncn_cv_AR="$ncn_cv_AR" # Let the user override the test. 2721 2876 else 2722 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2877 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2723 2878 ac_dummy="$PATH" 2724 2879 for ac_dir in $ac_dummy; do 2725 2880 test -z "$ac_dir" && ac_dir=. 2726 if test -f $ac_dir/$ac_word; then 2881 if test -f $ac_dir/$ac_word -o \ 2882 -f $ac_dir/$ac_word$ac_exeext ; then 2727 2883 ac_cv_prog_ncn_cv_AR="ar" 2728 2884 break … … 2752 2908 set dummy ${ncn_tool_prefix}as; ac_word=$2 2753 2909 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2754 echo "configure:2 755: checking for $ac_word" >&52910 echo "configure:2911: checking for $ac_word" >&5 2755 2911 if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then 2756 2912 echo $ac_n "(cached) $ac_c" 1>&6 … … 2759 2915 ac_cv_prog_AS="$AS" # Let the user override the test. 2760 2916 else 2761 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2917 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2762 2918 ac_dummy="$PATH" 2763 2919 for ac_dir in $ac_dummy; do 2764 2920 test -z "$ac_dir" && ac_dir=. 2765 if test -f $ac_dir/$ac_word; then 2921 if test -f $ac_dir/$ac_word -o \ 2922 -f $ac_dir/$ac_word$ac_exeext ; then 2766 2923 ac_cv_prog_AS="${ncn_tool_prefix}as" 2767 2924 break … … 2785 2942 set dummy as; ac_word=$2 2786 2943 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2787 echo "configure:2 788: checking for $ac_word" >&52944 echo "configure:2945: checking for $ac_word" >&5 2788 2945 if eval "test \"`echo '$''{'ac_cv_prog_ncn_cv_AS'+set}'`\" = set"; then 2789 2946 echo $ac_n "(cached) $ac_c" 1>&6 … … 2792 2949 ac_cv_prog_ncn_cv_AS="$ncn_cv_AS" # Let the user override the test. 2793 2950 else 2794 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2951 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2795 2952 ac_dummy="$PATH" 2796 2953 for ac_dir in $ac_dummy; do 2797 2954 test -z "$ac_dir" && ac_dir=. 2798 if test -f $ac_dir/$ac_word; then 2955 if test -f $ac_dir/$ac_word -o \ 2956 -f $ac_dir/$ac_word$ac_exeext ; then 2799 2957 ac_cv_prog_ncn_cv_AS="as" 2800 2958 break … … 2824 2982 set dummy ${ncn_tool_prefix}dlltool; ac_word=$2 2825 2983 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2826 echo "configure:2 827: checking for $ac_word" >&52984 echo "configure:2985: checking for $ac_word" >&5 2827 2985 if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then 2828 2986 echo $ac_n "(cached) $ac_c" 1>&6 … … 2831 2989 ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. 2832 2990 else 2833 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2991 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2834 2992 ac_dummy="$PATH" 2835 2993 for ac_dir in $ac_dummy; do 2836 2994 test -z "$ac_dir" && ac_dir=. 2837 if test -f $ac_dir/$ac_word; then 2995 if test -f $ac_dir/$ac_word -o \ 2996 -f $ac_dir/$ac_word$ac_exeext ; then 2838 2997 ac_cv_prog_DLLTOOL="${ncn_tool_prefix}dlltool" 2839 2998 break … … 2857 3016 set dummy dlltool; ac_word=$2 2858 3017 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2859 echo "configure: 2860: checking for $ac_word" >&53018 echo "configure:3019: checking for $ac_word" >&5 2860 3019 if eval "test \"`echo '$''{'ac_cv_prog_ncn_cv_DLLTOOL'+set}'`\" = set"; then 2861 3020 echo $ac_n "(cached) $ac_c" 1>&6 … … 2864 3023 ac_cv_prog_ncn_cv_DLLTOOL="$ncn_cv_DLLTOOL" # Let the user override the test. 2865 3024 else 2866 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3025 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2867 3026 ac_dummy="$PATH" 2868 3027 for ac_dir in $ac_dummy; do 2869 3028 test -z "$ac_dir" && ac_dir=. 2870 if test -f $ac_dir/$ac_word; then 3029 if test -f $ac_dir/$ac_word -o \ 3030 -f $ac_dir/$ac_word$ac_exeext ; then 2871 3031 ac_cv_prog_ncn_cv_DLLTOOL="dlltool" 2872 3032 break … … 2896 3056 set dummy ${ncn_tool_prefix}ld; ac_word=$2 2897 3057 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2898 echo "configure: 2899: checking for $ac_word" >&53058 echo "configure:3059: checking for $ac_word" >&5 2899 3059 if eval "test \"`echo '$''{'ac_cv_prog_LD'+set}'`\" = set"; then 2900 3060 echo $ac_n "(cached) $ac_c" 1>&6 … … 2903 3063 ac_cv_prog_LD="$LD" # Let the user override the test. 2904 3064 else 2905 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3065 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2906 3066 ac_dummy="$PATH" 2907 3067 for ac_dir in $ac_dummy; do 2908 3068 test -z "$ac_dir" && ac_dir=. 2909 if test -f $ac_dir/$ac_word; then 3069 if test -f $ac_dir/$ac_word -o \ 3070 -f $ac_dir/$ac_word$ac_exeext ; then 2910 3071 ac_cv_prog_LD="${ncn_tool_prefix}ld" 2911 3072 break … … 2929 3090 set dummy ld; ac_word=$2 2930 3091 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2931 echo "configure: 2932: checking for $ac_word" >&53092 echo "configure:3093: checking for $ac_word" >&5 2932 3093 if eval "test \"`echo '$''{'ac_cv_prog_ncn_cv_LD'+set}'`\" = set"; then 2933 3094 echo $ac_n "(cached) $ac_c" 1>&6 … … 2936 3097 ac_cv_prog_ncn_cv_LD="$ncn_cv_LD" # Let the user override the test. 2937 3098 else 2938 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3099 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2939 3100 ac_dummy="$PATH" 2940 3101 for ac_dir in $ac_dummy; do 2941 3102 test -z "$ac_dir" && ac_dir=. 2942 if test -f $ac_dir/$ac_word; then 3103 if test -f $ac_dir/$ac_word -o \ 3104 -f $ac_dir/$ac_word$ac_exeext ; then 2943 3105 ac_cv_prog_ncn_cv_LD="ld" 2944 3106 break … … 2968 3130 set dummy ${ncn_tool_prefix}nm; ac_word=$2 2969 3131 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2970 echo "configure: 2971: checking for $ac_word" >&53132 echo "configure:3133: checking for $ac_word" >&5 2971 3133 if eval "test \"`echo '$''{'ac_cv_prog_NM'+set}'`\" = set"; then 2972 3134 echo $ac_n "(cached) $ac_c" 1>&6 … … 2975 3137 ac_cv_prog_NM="$NM" # Let the user override the test. 2976 3138 else 2977 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3139 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2978 3140 ac_dummy="$PATH" 2979 3141 for ac_dir in $ac_dummy; do 2980 3142 test -z "$ac_dir" && ac_dir=. 2981 if test -f $ac_dir/$ac_word; then 3143 if test -f $ac_dir/$ac_word -o \ 3144 -f $ac_dir/$ac_word$ac_exeext ; then 2982 3145 ac_cv_prog_NM="${ncn_tool_prefix}nm" 2983 3146 break … … 3001 3164 set dummy nm; ac_word=$2 3002 3165 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3003 echo "configure:3 004: checking for $ac_word" >&53166 echo "configure:3167: checking for $ac_word" >&5 3004 3167 if eval "test \"`echo '$''{'ac_cv_prog_ncn_cv_NM'+set}'`\" = set"; then 3005 3168 echo $ac_n "(cached) $ac_c" 1>&6 … … 3008 3171 ac_cv_prog_ncn_cv_NM="$ncn_cv_NM" # Let the user override the test. 3009 3172 else 3010 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3173 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3011 3174 ac_dummy="$PATH" 3012 3175 for ac_dir in $ac_dummy; do 3013 3176 test -z "$ac_dir" && ac_dir=. 3014 if test -f $ac_dir/$ac_word; then 3177 if test -f $ac_dir/$ac_word -o \ 3178 -f $ac_dir/$ac_word$ac_exeext ; then 3015 3179 ac_cv_prog_ncn_cv_NM="nm" 3016 3180 break … … 3040 3204 set dummy ${ncn_tool_prefix}ranlib; ac_word=$2 3041 3205 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3042 echo "configure:3 043: checking for $ac_word" >&53206 echo "configure:3207: checking for $ac_word" >&5 3043 3207 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 3044 3208 echo $ac_n "(cached) $ac_c" 1>&6 … … 3047 3211 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 3048 3212 else 3049 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3213 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3050 3214 ac_dummy="$PATH" 3051 3215 for ac_dir in $ac_dummy; do 3052 3216 test -z "$ac_dir" && ac_dir=. 3053 if test -f $ac_dir/$ac_word; then 3217 if test -f $ac_dir/$ac_word -o \ 3218 -f $ac_dir/$ac_word$ac_exeext ; then 3054 3219 ac_cv_prog_RANLIB="${ncn_tool_prefix}ranlib" 3055 3220 break … … 3073 3238 set dummy ranlib; ac_word=$2 3074 3239 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3075 echo "configure:3 076: checking for $ac_word" >&53240 echo "configure:3241: checking for $ac_word" >&5 3076 3241 if eval "test \"`echo '$''{'ac_cv_prog_ncn_cv_RANLIB'+set}'`\" = set"; then 3077 3242 echo $ac_n "(cached) $ac_c" 1>&6 … … 3080 3245 ac_cv_prog_ncn_cv_RANLIB="$ncn_cv_RANLIB" # Let the user override the test. 3081 3246 else 3082 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3247 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3083 3248 ac_dummy="$PATH" 3084 3249 for ac_dir in $ac_dummy; do 3085 3250 test -z "$ac_dir" && ac_dir=. 3086 if test -f $ac_dir/$ac_word; then 3251 if test -f $ac_dir/$ac_word -o \ 3252 -f $ac_dir/$ac_word$ac_exeext ; then 3087 3253 ac_cv_prog_ncn_cv_RANLIB="ranlib" 3088 3254 break … … 3112 3278 set dummy ${ncn_tool_prefix}windres; ac_word=$2 3113 3279 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3114 echo "configure:3 115: checking for $ac_word" >&53280 echo "configure:3281: checking for $ac_word" >&5 3115 3281 if eval "test \"`echo '$''{'ac_cv_prog_WINDRES'+set}'`\" = set"; then 3116 3282 echo $ac_n "(cached) $ac_c" 1>&6 … … 3119 3285 ac_cv_prog_WINDRES="$WINDRES" # Let the user override the test. 3120 3286 else 3121 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3287 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3122 3288 ac_dummy="$PATH" 3123 3289 for ac_dir in $ac_dummy; do 3124 3290 test -z "$ac_dir" && ac_dir=. 3125 if test -f $ac_dir/$ac_word; then 3291 if test -f $ac_dir/$ac_word -o \ 3292 -f $ac_dir/$ac_word$ac_exeext ; then 3126 3293 ac_cv_prog_WINDRES="${ncn_tool_prefix}windres" 3127 3294 break … … 3145 3312 set dummy windres; ac_word=$2 3146 3313 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3147 echo "configure:3 148: checking for $ac_word" >&53314 echo "configure:3315: checking for $ac_word" >&5 3148 3315 if eval "test \"`echo '$''{'ac_cv_prog_ncn_cv_WINDRES'+set}'`\" = set"; then 3149 3316 echo $ac_n "(cached) $ac_c" 1>&6 … … 3152 3319 ac_cv_prog_ncn_cv_WINDRES="$ncn_cv_WINDRES" # Let the user override the test. 3153 3320 else 3154 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3321 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3155 3322 ac_dummy="$PATH" 3156 3323 for ac_dir in $ac_dummy; do 3157 3324 test -z "$ac_dir" && ac_dir=. 3158 if test -f $ac_dir/$ac_word; then 3325 if test -f $ac_dir/$ac_word -o \ 3326 -f $ac_dir/$ac_word$ac_exeext ; then 3159 3327 ac_cv_prog_ncn_cv_WINDRES="windres" 3160 3328 break … … 3184 3352 set dummy ${ncn_tool_prefix}objcopy; ac_word=$2 3185 3353 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3186 echo "configure:3 187: checking for $ac_word" >&53354 echo "configure:3355: checking for $ac_word" >&5 3187 3355 if eval "test \"`echo '$''{'ac_cv_prog_OBJCOPY'+set}'`\" = set"; then 3188 3356 echo $ac_n "(cached) $ac_c" 1>&6 … … 3191 3359 ac_cv_prog_OBJCOPY="$OBJCOPY" # Let the user override the test. 3192 3360 else 3193 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3361 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3194 3362 ac_dummy="$PATH" 3195 3363 for ac_dir in $ac_dummy; do 3196 3364 test -z "$ac_dir" && ac_dir=. 3197 if test -f $ac_dir/$ac_word; then 3365 if test -f $ac_dir/$ac_word -o \ 3366 -f $ac_dir/$ac_word$ac_exeext ; then 3198 3367 ac_cv_prog_OBJCOPY="${ncn_tool_prefix}objcopy" 3199 3368 break … … 3217 3386 set dummy objcopy; ac_word=$2 3218 3387 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3219 echo "configure:3 220: checking for $ac_word" >&53388 echo "configure:3389: checking for $ac_word" >&5 3220 3389 if eval "test \"`echo '$''{'ac_cv_prog_ncn_cv_OBJCOPY'+set}'`\" = set"; then 3221 3390 echo $ac_n "(cached) $ac_c" 1>&6 … … 3224 3393 ac_cv_prog_ncn_cv_OBJCOPY="$ncn_cv_OBJCOPY" # Let the user override the test. 3225 3394 else 3226 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3395 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3227 3396 ac_dummy="$PATH" 3228 3397 for ac_dir in $ac_dummy; do 3229 3398 test -z "$ac_dir" && ac_dir=. 3230 if test -f $ac_dir/$ac_word; then 3399 if test -f $ac_dir/$ac_word -o \ 3400 -f $ac_dir/$ac_word$ac_exeext ; then 3231 3401 ac_cv_prog_ncn_cv_OBJCOPY="objcopy" 3232 3402 break … … 3256 3426 set dummy ${ncn_tool_prefix}objdump; ac_word=$2 3257 3427 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3258 echo "configure:3 259: checking for $ac_word" >&53428 echo "configure:3429: checking for $ac_word" >&5 3259 3429 if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then 3260 3430 echo $ac_n "(cached) $ac_c" 1>&6 … … 3263 3433 ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. 3264 3434 else 3265 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3435 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3266 3436 ac_dummy="$PATH" 3267 3437 for ac_dir in $ac_dummy; do 3268 3438 test -z "$ac_dir" && ac_dir=. 3269 if test -f $ac_dir/$ac_word; then 3439 if test -f $ac_dir/$ac_word -o \ 3440 -f $ac_dir/$ac_word$ac_exeext ; then 3270 3441 ac_cv_prog_OBJDUMP="${ncn_tool_prefix}objdump" 3271 3442 break … … 3289 3460 set dummy objdump; ac_word=$2 3290 3461 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3291 echo "configure:3 292: checking for $ac_word" >&53462 echo "configure:3463: checking for $ac_word" >&5 3292 3463 if eval "test \"`echo '$''{'ac_cv_prog_ncn_cv_OBJDUMP'+set}'`\" = set"; then 3293 3464 echo $ac_n "(cached) $ac_c" 1>&6 … … 3296 3467 ac_cv_prog_ncn_cv_OBJDUMP="$ncn_cv_OBJDUMP" # Let the user override the test. 3297 3468 else 3298 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3469 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3299 3470 ac_dummy="$PATH" 3300 3471 for ac_dir in $ac_dummy; do 3301 3472 test -z "$ac_dir" && ac_dir=. 3302 if test -f $ac_dir/$ac_word; then 3473 if test -f $ac_dir/$ac_word -o \ 3474 -f $ac_dir/$ac_word$ac_exeext ; then 3303 3475 ac_cv_prog_ncn_cv_OBJDUMP="objdump" 3304 3476 break … … 3337 3509 set dummy ${ncn_target_tool_prefix}ar; ac_word=$2 3338 3510 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3339 echo "configure:3 340: checking for $ac_word" >&53511 echo "configure:3512: checking for $ac_word" >&5 3340 3512 if eval "test \"`echo '$''{'ac_cv_prog_AR_FOR_TARGET'+set}'`\" = set"; then 3341 3513 echo $ac_n "(cached) $ac_c" 1>&6 … … 3344 3516 ac_cv_prog_AR_FOR_TARGET="$AR_FOR_TARGET" # Let the user override the test. 3345 3517 else 3346 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3518 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3347 3519 ac_dummy="$PATH" 3348 3520 for ac_dir in $ac_dummy; do 3349 3521 test -z "$ac_dir" && ac_dir=. 3350 if test -f $ac_dir/$ac_word; then 3522 if test -f $ac_dir/$ac_word -o \ 3523 -f $ac_dir/$ac_word$ac_exeext ; then 3351 3524 ac_cv_prog_AR_FOR_TARGET="${ncn_target_tool_prefix}ar" 3352 3525 break … … 3370 3543 set dummy ar; ac_word=$2 3371 3544 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3372 echo "configure:3 373: checking for $ac_word" >&53545 echo "configure:3546: checking for $ac_word" >&5 3373 3546 if eval "test \"`echo '$''{'ac_cv_prog_ncn_cv_AR_FOR_TARGET'+set}'`\" = set"; then 3374 3547 echo $ac_n "(cached) $ac_c" 1>&6 … … 3377 3550 ac_cv_prog_ncn_cv_AR_FOR_TARGET="$ncn_cv_AR_FOR_TARGET" # Let the user override the test. 3378 3551 else 3379 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3552 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3380 3553 ac_dummy="$PATH" 3381 3554 for ac_dir in $ac_dummy; do 3382 3555 test -z "$ac_dir" && ac_dir=. 3383 if test -f $ac_dir/$ac_word; then 3556 if test -f $ac_dir/$ac_word -o \ 3557 -f $ac_dir/$ac_word$ac_exeext ; then 3384 3558 ac_cv_prog_ncn_cv_AR_FOR_TARGET="ar" 3385 3559 break … … 3409 3583 set dummy ${ncn_target_tool_prefix}as; ac_word=$2 3410 3584 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3411 echo "configure:3 412: checking for $ac_word" >&53585 echo "configure:3586: checking for $ac_word" >&5 3412 3586 if eval "test \"`echo '$''{'ac_cv_prog_AS_FOR_TARGET'+set}'`\" = set"; then 3413 3587 echo $ac_n "(cached) $ac_c" 1>&6 … … 3416 3590 ac_cv_prog_AS_FOR_TARGET="$AS_FOR_TARGET" # Let the user override the test. 3417 3591 else 3418 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3592 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3419 3593 ac_dummy="$PATH" 3420 3594 for ac_dir in $ac_dummy; do 3421 3595 test -z "$ac_dir" && ac_dir=. 3422 if test -f $ac_dir/$ac_word; then 3596 if test -f $ac_dir/$ac_word -o \ 3597 -f $ac_dir/$ac_word$ac_exeext ; then 3423 3598 ac_cv_prog_AS_FOR_TARGET="${ncn_target_tool_prefix}as" 3424 3599 break … … 3442 3617 set dummy as; ac_word=$2 3443 3618 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3444 echo "configure:3 445: checking for $ac_word" >&53619 echo "configure:3620: checking for $ac_word" >&5 3445 3620 if eval "test \"`echo '$''{'ac_cv_prog_ncn_cv_AS_FOR_TARGET'+set}'`\" = set"; then 3446 3621 echo $ac_n "(cached) $ac_c" 1>&6 … … 3449 3624 ac_cv_prog_ncn_cv_AS_FOR_TARGET="$ncn_cv_AS_FOR_TARGET" # Let the user override the test. 3450 3625 else 3451 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3626 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3452 3627 ac_dummy="$PATH" 3453 3628 for ac_dir in $ac_dummy; do 3454 3629 test -z "$ac_dir" && ac_dir=. 3455 if test -f $ac_dir/$ac_word; then 3630 if test -f $ac_dir/$ac_word -o \ 3631 -f $ac_dir/$ac_word$ac_exeext ; then 3456 3632 ac_cv_prog_ncn_cv_AS_FOR_TARGET="as" 3457 3633 break … … 3481 3657 set dummy ${ncn_target_tool_prefix}dlltool; ac_word=$2 3482 3658 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3483 echo "configure:3 484: checking for $ac_word" >&53659 echo "configure:3660: checking for $ac_word" >&5 3484 3660 if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL_FOR_TARGET'+set}'`\" = set"; then 3485 3661 echo $ac_n "(cached) $ac_c" 1>&6 … … 3488 3664 ac_cv_prog_DLLTOOL_FOR_TARGET="$DLLTOOL_FOR_TARGET" # Let the user override the test. 3489 3665 else 3490 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3666 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3491 3667 ac_dummy="$PATH" 3492 3668 for ac_dir in $ac_dummy; do 3493 3669 test -z "$ac_dir" && ac_dir=. 3494 if test -f $ac_dir/$ac_word; then 3670 if test -f $ac_dir/$ac_word -o \ 3671 -f $ac_dir/$ac_word$ac_exeext ; then 3495 3672 ac_cv_prog_DLLTOOL_FOR_TARGET="${ncn_target_tool_prefix}dlltool" 3496 3673 break … … 3514 3691 set dummy dlltool; ac_word=$2 3515 3692 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3516 echo "configure:3 517: checking for $ac_word" >&53693 echo "configure:3694: checking for $ac_word" >&5 3517 3694 if eval "test \"`echo '$''{'ac_cv_prog_ncn_cv_DLLTOOL_FOR_TARGET'+set}'`\" = set"; then 3518 3695 echo $ac_n "(cached) $ac_c" 1>&6 … … 3521 3698 ac_cv_prog_ncn_cv_DLLTOOL_FOR_TARGET="$ncn_cv_DLLTOOL_FOR_TARGET" # Let the user override the test. 3522 3699 else 3523 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3700 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3524 3701 ac_dummy="$PATH" 3525 3702 for ac_dir in $ac_dummy; do 3526 3703 test -z "$ac_dir" && ac_dir=. 3527 if test -f $ac_dir/$ac_word; then 3704 if test -f $ac_dir/$ac_word -o \ 3705 -f $ac_dir/$ac_word$ac_exeext ; then 3528 3706 ac_cv_prog_ncn_cv_DLLTOOL_FOR_TARGET="dlltool" 3529 3707 break … … 3553 3731 set dummy ${ncn_target_tool_prefix}ld; ac_word=$2 3554 3732 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3555 echo "configure:3 556: checking for $ac_word" >&53733 echo "configure:3734: checking for $ac_word" >&5 3556 3734 if eval "test \"`echo '$''{'ac_cv_prog_LD_FOR_TARGET'+set}'`\" = set"; then 3557 3735 echo $ac_n "(cached) $ac_c" 1>&6 … … 3560 3738 ac_cv_prog_LD_FOR_TARGET="$LD_FOR_TARGET" # Let the user override the test. 3561 3739 else 3562 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3740 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3563 3741 ac_dummy="$PATH" 3564 3742 for ac_dir in $ac_dummy; do 3565 3743 test -z "$ac_dir" && ac_dir=. 3566 if test -f $ac_dir/$ac_word; then 3744 if test -f $ac_dir/$ac_word -o \ 3745 -f $ac_dir/$ac_word$ac_exeext ; then 3567 3746 ac_cv_prog_LD_FOR_TARGET="${ncn_target_tool_prefix}ld" 3568 3747 break … … 3586 3765 set dummy ld; ac_word=$2 3587 3766 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3588 echo "configure:3 589: checking for $ac_word" >&53767 echo "configure:3768: checking for $ac_word" >&5 3589 3768 if eval "test \"`echo '$''{'ac_cv_prog_ncn_cv_LD_FOR_TARGET'+set}'`\" = set"; then 3590 3769 echo $ac_n "(cached) $ac_c" 1>&6 … … 3593 3772 ac_cv_prog_ncn_cv_LD_FOR_TARGET="$ncn_cv_LD_FOR_TARGET" # Let the user override the test. 3594 3773 else 3595 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3774 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3596 3775 ac_dummy="$PATH" 3597 3776 for ac_dir in $ac_dummy; do 3598 3777 test -z "$ac_dir" && ac_dir=. 3599 if test -f $ac_dir/$ac_word; then 3778 if test -f $ac_dir/$ac_word -o \ 3779 -f $ac_dir/$ac_word$ac_exeext ; then 3600 3780 ac_cv_prog_ncn_cv_LD_FOR_TARGET="ld" 3601 3781 break … … 3625 3805 set dummy ${ncn_target_tool_prefix}nm; ac_word=$2 3626 3806 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3627 echo "configure:3 628: checking for $ac_word" >&53807 echo "configure:3808: checking for $ac_word" >&5 3628 3808 if eval "test \"`echo '$''{'ac_cv_prog_NM_FOR_TARGET'+set}'`\" = set"; then 3629 3809 echo $ac_n "(cached) $ac_c" 1>&6 … … 3632 3812 ac_cv_prog_NM_FOR_TARGET="$NM_FOR_TARGET" # Let the user override the test. 3633 3813 else 3634 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3814 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3635 3815 ac_dummy="$PATH" 3636 3816 for ac_dir in $ac_dummy; do 3637 3817 test -z "$ac_dir" && ac_dir=. 3638 if test -f $ac_dir/$ac_word; then 3818 if test -f $ac_dir/$ac_word -o \ 3819 -f $ac_dir/$ac_word$ac_exeext ; then 3639 3820 ac_cv_prog_NM_FOR_TARGET="${ncn_target_tool_prefix}nm" 3640 3821 break … … 3658 3839 set dummy nm; ac_word=$2 3659 3840 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3660 echo "configure:3 661: checking for $ac_word" >&53841 echo "configure:3842: checking for $ac_word" >&5 3661 3842 if eval "test \"`echo '$''{'ac_cv_prog_ncn_cv_NM_FOR_TARGET'+set}'`\" = set"; then 3662 3843 echo $ac_n "(cached) $ac_c" 1>&6 … … 3665 3846 ac_cv_prog_ncn_cv_NM_FOR_TARGET="$ncn_cv_NM_FOR_TARGET" # Let the user override the test. 3666 3847 else 3667 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3848 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3668 3849 ac_dummy="$PATH" 3669 3850 for ac_dir in $ac_dummy; do 3670 3851 test -z "$ac_dir" && ac_dir=. 3671 if test -f $ac_dir/$ac_word; then 3852 if test -f $ac_dir/$ac_word -o \ 3853 -f $ac_dir/$ac_word$ac_exeext ; then 3672 3854 ac_cv_prog_ncn_cv_NM_FOR_TARGET="nm" 3673 3855 break … … 3697 3879 set dummy ${ncn_target_tool_prefix}ranlib; ac_word=$2 3698 3880 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3699 echo "configure:3 700: checking for $ac_word" >&53881 echo "configure:3882: checking for $ac_word" >&5 3700 3882 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB_FOR_TARGET'+set}'`\" = set"; then 3701 3883 echo $ac_n "(cached) $ac_c" 1>&6 … … 3704 3886 ac_cv_prog_RANLIB_FOR_TARGET="$RANLIB_FOR_TARGET" # Let the user override the test. 3705 3887 else 3706 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3888 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3707 3889 ac_dummy="$PATH" 3708 3890 for ac_dir in $ac_dummy; do 3709 3891 test -z "$ac_dir" && ac_dir=. 3710 if test -f $ac_dir/$ac_word; then 3892 if test -f $ac_dir/$ac_word -o \ 3893 -f $ac_dir/$ac_word$ac_exeext ; then 3711 3894 ac_cv_prog_RANLIB_FOR_TARGET="${ncn_target_tool_prefix}ranlib" 3712 3895 break … … 3730 3913 set dummy ranlib; ac_word=$2 3731 3914 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3732 echo "configure:3 733: checking for $ac_word" >&53915 echo "configure:3916: checking for $ac_word" >&5 3733 3916 if eval "test \"`echo '$''{'ac_cv_prog_ncn_cv_RANLIB_FOR_TARGET'+set}'`\" = set"; then 3734 3917 echo $ac_n "(cached) $ac_c" 1>&6 … … 3737 3920 ac_cv_prog_ncn_cv_RANLIB_FOR_TARGET="$ncn_cv_RANLIB_FOR_TARGET" # Let the user override the test. 3738 3921 else 3739 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3922 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3740 3923 ac_dummy="$PATH" 3741 3924 for ac_dir in $ac_dummy; do 3742 3925 test -z "$ac_dir" && ac_dir=. 3743 if test -f $ac_dir/$ac_word; then 3926 if test -f $ac_dir/$ac_word -o \ 3927 -f $ac_dir/$ac_word$ac_exeext ; then 3744 3928 ac_cv_prog_ncn_cv_RANLIB_FOR_TARGET="ranlib" 3745 3929 break … … 3769 3953 set dummy ${ncn_target_tool_prefix}windres; ac_word=$2 3770 3954 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3771 echo "configure:3 772: checking for $ac_word" >&53955 echo "configure:3956: checking for $ac_word" >&5 3772 3956 if eval "test \"`echo '$''{'ac_cv_prog_WINDRES_FOR_TARGET'+set}'`\" = set"; then 3773 3957 echo $ac_n "(cached) $ac_c" 1>&6 … … 3776 3960 ac_cv_prog_WINDRES_FOR_TARGET="$WINDRES_FOR_TARGET" # Let the user override the test. 3777 3961 else 3778 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3962 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3779 3963 ac_dummy="$PATH" 3780 3964 for ac_dir in $ac_dummy; do 3781 3965 test -z "$ac_dir" && ac_dir=. 3782 if test -f $ac_dir/$ac_word; then 3966 if test -f $ac_dir/$ac_word -o \ 3967 -f $ac_dir/$ac_word$ac_exeext ; then 3783 3968 ac_cv_prog_WINDRES_FOR_TARGET="${ncn_target_tool_prefix}windres" 3784 3969 break … … 3802 3987 set dummy windres; ac_word=$2 3803 3988 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3804 echo "configure:3 805: checking for $ac_word" >&53989 echo "configure:3990: checking for $ac_word" >&5 3805 3990 if eval "test \"`echo '$''{'ac_cv_prog_ncn_cv_WINDRES_FOR_TARGET'+set}'`\" = set"; then 3806 3991 echo $ac_n "(cached) $ac_c" 1>&6 … … 3809 3994 ac_cv_prog_ncn_cv_WINDRES_FOR_TARGET="$ncn_cv_WINDRES_FOR_TARGET" # Let the user override the test. 3810 3995 else 3811 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"3996 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 3812 3997 ac_dummy="$PATH" 3813 3998 for ac_dir in $ac_dummy; do 3814 3999 test -z "$ac_dir" && ac_dir=. 3815 if test -f $ac_dir/$ac_word; then 4000 if test -f $ac_dir/$ac_word -o \ 4001 -f $ac_dir/$ac_word$ac_exeext ; then 3816 4002 ac_cv_prog_ncn_cv_WINDRES_FOR_TARGET="windres" 3817 4003 break … … 3869 4055 3870 4056 echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 3871 echo "configure: 3872: checking whether to enable maintainer-specific portions of Makefiles" >&54057 echo "configure:4058: checking whether to enable maintainer-specific portions of Makefiles" >&5 3872 4058 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. 3873 4059 if test "${enable_maintainer_mode+set}" = set; then … … 3963 4149 s%\$%$$%g 3964 4150 EOF 3965 DEFS=`sed -f conftest.defs confdefs.h | tr '\012 ' ''`4151 DEFS=`sed -f conftest.defs confdefs.h | tr '\012\015' ' '` 3966 4152 rm -f conftest.defs 3967 4153 … … 3977 4163 # Run this file to recreate the current configuration. 3978 4164 # This directory was configured as follows, 4165 EOF 4166 echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS 4167 cat >> $CONFIG_STATUS <<EOF 3979 4168 # on host `(hostname || uname -n) 2>/dev/null | sed 1q`: 3980 4169 # … … 4001 4190 4002 4191 ac_given_srcdir=$srcdir 4192 PATHIFS="$PATH_IFS" 4003 4193 4004 4194 trap 'rm -fr `echo "Makefile" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 … … 4011 4201 $ac_vpsub 4012 4202 $extrasub 4203 s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g 4013 4204 s%@SHELL@%$SHELL%g 4014 4205 s%@CFLAGS@%$CFLAGS%g … … 4034 4225 s%@infodir@%$infodir%g 4035 4226 s%@mandir@%$mandir%g 4227 s%@PATH_IFS@%$PATH_IFS%g 4228 s%@EXEEXT@%$EXEEXT%g 4036 4229 s%@host@%$host%g 4037 4230 s%@host_alias@%$host_alias%g … … 4216 4409 if test -z "$ac_dots"; then top_srcdir=. 4217 4410 else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; 4218 /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 4411 /* | [A-Za-z]:*) 4412 srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 4219 4413 *) # Relative path. 4220 4414 srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" … … 4232 4426 esac 4233 4427 4234 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s% :% $ac_given_srcdir/%g"`4428 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%$PATHIFS% $ac_given_srcdir/%g"` 4235 4429 sed -e "$ac_comsub 4236 4430 s%@configure_input@%$configure_input%g -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.