Changeset 8c92fa3 in rtems
- Timestamp:
- 06/16/99 14:55:28 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 2691449
- Parents:
- 1407343
- Files:
-
- 33 edited
Legend:
- Unmodified
- Added
- Removed
-
aclocal.m4
r1407343 r8c92fa3 64 64 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 65 65 [ 66 rtems_target=$target;67 case "$target" in68 no_cpu*) target=$host;;69 *) ;;70 esac71 66 AC_CANONICAL_SYSTEM 72 67 AC_MSG_CHECKING(rtems target cpu) 73 68 changequote(,)dnl 74 case "${ rtems_target}" in69 case "${target}" in 75 70 # hpux unix port should go here 76 71 i[3456]86-go32-rtems*) … … 90 85 ;; 91 86 *) 92 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`87 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 93 88 ;; 94 89 esac -
aclocal/canonical-target-name.m4
r1407343 r8c92fa3 11 11 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 12 12 [ 13 rtems_target=$target;14 case "$target" in15 no_cpu*) target=$host;;16 *) ;;17 esac18 13 AC_CANONICAL_SYSTEM 19 14 AC_MSG_CHECKING(rtems target cpu) 20 15 changequote(,)dnl 21 case "${ rtems_target}" in16 case "${target}" in 22 17 # hpux unix port should go here 23 18 i[3456]86-go32-rtems*) … … 37 32 ;; 38 33 *) 39 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`34 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 40 35 ;; 41 36 esac -
c/src/exec/score/tools/generic/aclocal.m4
r1407343 r8c92fa3 64 64 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 65 65 [ 66 rtems_target=$target;67 case "$target" in68 no_cpu*) target=$host;;69 *) ;;70 esac71 66 AC_CANONICAL_SYSTEM 72 67 AC_MSG_CHECKING(rtems target cpu) 73 68 changequote(,)dnl 74 case "${ rtems_target}" in69 case "${target}" in 75 70 # hpux unix port should go here 76 71 i[3456]86-go32-rtems*) … … 90 85 ;; 91 86 *) 92 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`87 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 93 88 ;; 94 89 esac -
c/src/exec/score/tools/generic/configure
r1407343 r8c92fa3 577 577 578 578 579 rtems_target=$target;580 case "$target" in581 no_cpu*) target=$host;;582 *) ;;583 esac584 579 585 580 # Do some error checking and defaulting for the host and target type. … … 610 605 611 606 echo $ac_n "checking host system type""... $ac_c" 1>&6 612 echo "configure:6 13: checking host system type" >&5607 echo "configure:608: checking host system type" >&5 613 608 614 609 host_alias=$host … … 631 626 632 627 echo $ac_n "checking target system type""... $ac_c" 1>&6 633 echo "configure:6 34: checking target system type" >&5628 echo "configure:629: checking target system type" >&5 634 629 635 630 target_alias=$target … … 649 644 650 645 echo $ac_n "checking build system type""... $ac_c" 1>&6 651 echo "configure:6 52: checking build system type" >&5646 echo "configure:647: checking build system type" >&5 652 647 653 648 build_alias=$build … … 672 667 673 668 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 674 echo "configure:67 5: checking rtems target cpu" >&5675 case "${ rtems_target}" in669 echo "configure:670: checking rtems target cpu" >&5 670 case "${target}" in 676 671 # hpux unix port should go here 677 672 i[3456]86-go32-rtems*) … … 691 686 ;; 692 687 *) 693 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`688 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 694 689 ;; 695 690 esac … … 710 705 # ./install, which can be erroneously created by make from ./install.sh. 711 706 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 712 echo "configure:7 13: checking for a BSD compatible install" >&5707 echo "configure:708: checking for a BSD compatible install" >&5 713 708 if test -z "$INSTALL"; then 714 709 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 763 758 764 759 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 765 echo "configure:76 6: checking whether build environment is sane" >&5760 echo "configure:761: checking whether build environment is sane" >&5 766 761 # Just in case 767 762 sleep 1 … … 820 815 821 816 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 822 echo "configure:8 23: checking whether ${MAKE-make} sets \${MAKE}" >&5817 echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5 823 818 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 824 819 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 859 854 missing_dir=`cd $ac_aux_dir && pwd` 860 855 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 861 echo "configure:8 62: checking for working aclocal" >&5856 echo "configure:857: checking for working aclocal" >&5 862 857 # Run test in a subshell; some versions of sh will print an error if 863 858 # an executable is not found, even if stderr is redirected. … … 872 867 873 868 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 874 echo "configure:87 5: checking for working autoconf" >&5869 echo "configure:870: checking for working autoconf" >&5 875 870 # Run test in a subshell; some versions of sh will print an error if 876 871 # an executable is not found, even if stderr is redirected. … … 885 880 886 881 echo $ac_n "checking for working automake""... $ac_c" 1>&6 887 echo "configure:88 8: checking for working automake" >&5882 echo "configure:883: checking for working automake" >&5 888 883 # Run test in a subshell; some versions of sh will print an error if 889 884 # an executable is not found, even if stderr is redirected. … … 898 893 899 894 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 900 echo "configure: 901: checking for working autoheader" >&5895 echo "configure:896: checking for working autoheader" >&5 901 896 # Run test in a subshell; some versions of sh will print an error if 902 897 # an executable is not found, even if stderr is redirected. … … 911 906 912 907 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 913 echo "configure:9 14: checking for working makeinfo" >&5908 echo "configure:909: checking for working makeinfo" >&5 914 909 # Run test in a subshell; some versions of sh will print an error if 915 910 # an executable is not found, even if stderr is redirected. … … 931 926 set dummy $ac_prog; ac_word=$2 932 927 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 933 echo "configure:9 34: checking for $ac_word" >&5928 echo "configure:929: checking for $ac_word" >&5 934 929 if eval "test \"`echo '$''{'ac_cv_path_KSH'+set}'`\" = set"; then 935 930 echo $ac_n "(cached) $ac_c" 1>&6 -
c/src/exec/score/tools/hppa1.1/aclocal.m4
r1407343 r8c92fa3 64 64 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 65 65 [ 66 rtems_target=$target;67 case "$target" in68 no_cpu*) target=$host;;69 *) ;;70 esac71 66 AC_CANONICAL_SYSTEM 72 67 AC_MSG_CHECKING(rtems target cpu) 73 68 changequote(,)dnl 74 case "${ rtems_target}" in69 case "${target}" in 75 70 # hpux unix port should go here 76 71 i[3456]86-go32-rtems*) … … 90 85 ;; 91 86 *) 92 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`87 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 93 88 ;; 94 89 esac -
c/src/exec/score/tools/hppa1.1/configure
r1407343 r8c92fa3 577 577 578 578 579 rtems_target=$target;580 case "$target" in581 no_cpu*) target=$host;;582 *) ;;583 esac584 579 585 580 # Do some error checking and defaulting for the host and target type. … … 610 605 611 606 echo $ac_n "checking host system type""... $ac_c" 1>&6 612 echo "configure:6 13: checking host system type" >&5607 echo "configure:608: checking host system type" >&5 613 608 614 609 host_alias=$host … … 631 626 632 627 echo $ac_n "checking target system type""... $ac_c" 1>&6 633 echo "configure:6 34: checking target system type" >&5628 echo "configure:629: checking target system type" >&5 634 629 635 630 target_alias=$target … … 649 644 650 645 echo $ac_n "checking build system type""... $ac_c" 1>&6 651 echo "configure:6 52: checking build system type" >&5646 echo "configure:647: checking build system type" >&5 652 647 653 648 build_alias=$build … … 672 667 673 668 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 674 echo "configure:67 5: checking rtems target cpu" >&5675 case "${ rtems_target}" in669 echo "configure:670: checking rtems target cpu" >&5 670 case "${target}" in 676 671 # hpux unix port should go here 677 672 i[3456]86-go32-rtems*) … … 691 686 ;; 692 687 *) 693 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`688 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 694 689 ;; 695 690 esac … … 710 705 # ./install, which can be erroneously created by make from ./install.sh. 711 706 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 712 echo "configure:7 13: checking for a BSD compatible install" >&5707 echo "configure:708: checking for a BSD compatible install" >&5 713 708 if test -z "$INSTALL"; then 714 709 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 763 758 764 759 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 765 echo "configure:76 6: checking whether build environment is sane" >&5760 echo "configure:761: checking whether build environment is sane" >&5 766 761 # Just in case 767 762 sleep 1 … … 820 815 821 816 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 822 echo "configure:8 23: checking whether ${MAKE-make} sets \${MAKE}" >&5817 echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5 823 818 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 824 819 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 859 854 missing_dir=`cd $ac_aux_dir && pwd` 860 855 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 861 echo "configure:8 62: checking for working aclocal" >&5856 echo "configure:857: checking for working aclocal" >&5 862 857 # Run test in a subshell; some versions of sh will print an error if 863 858 # an executable is not found, even if stderr is redirected. … … 872 867 873 868 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 874 echo "configure:87 5: checking for working autoconf" >&5869 echo "configure:870: checking for working autoconf" >&5 875 870 # Run test in a subshell; some versions of sh will print an error if 876 871 # an executable is not found, even if stderr is redirected. … … 885 880 886 881 echo $ac_n "checking for working automake""... $ac_c" 1>&6 887 echo "configure:88 8: checking for working automake" >&5882 echo "configure:883: checking for working automake" >&5 888 883 # Run test in a subshell; some versions of sh will print an error if 889 884 # an executable is not found, even if stderr is redirected. … … 898 893 899 894 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 900 echo "configure: 901: checking for working autoheader" >&5895 echo "configure:896: checking for working autoheader" >&5 901 896 # Run test in a subshell; some versions of sh will print an error if 902 897 # an executable is not found, even if stderr is redirected. … … 911 906 912 907 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 913 echo "configure:9 14: checking for working makeinfo" >&5908 echo "configure:909: checking for working makeinfo" >&5 914 909 # Run test in a subshell; some versions of sh will print an error if 915 910 # an executable is not found, even if stderr is redirected. … … 928 923 set dummy gcc; ac_word=$2 929 924 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 930 echo "configure:9 31: checking for $ac_word" >&5925 echo "configure:926: checking for $ac_word" >&5 931 926 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 932 927 echo $ac_n "(cached) $ac_c" 1>&6 … … 958 953 set dummy cc; ac_word=$2 959 954 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 960 echo "configure:9 61: checking for $ac_word" >&5955 echo "configure:956: checking for $ac_word" >&5 961 956 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 962 957 echo $ac_n "(cached) $ac_c" 1>&6 … … 1009 1004 set dummy cl; ac_word=$2 1010 1005 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1011 echo "configure:10 12: checking for $ac_word" >&51006 echo "configure:1007: checking for $ac_word" >&5 1012 1007 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 1013 1008 echo $ac_n "(cached) $ac_c" 1>&6 … … 1041 1036 1042 1037 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1043 echo "configure:10 44: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&51038 echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 1044 1039 1045 1040 ac_ext=c … … 1052 1047 cat > conftest.$ac_ext << EOF 1053 1048 1054 #line 105 5"configure"1049 #line 1050 "configure" 1055 1050 #include "confdefs.h" 1056 1051 1057 1052 main(){return(0);} 1058 1053 EOF 1059 if { (eval echo configure:10 60: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1054 if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1060 1055 ac_cv_prog_cc_works=yes 1061 1056 # If we can't run a trivial program, we are probably using a cross compiler. … … 1083 1078 fi 1084 1079 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1085 echo "configure:108 6: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&51080 echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 1086 1081 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 1087 1082 cross_compiling=$ac_cv_prog_cc_cross 1088 1083 1089 1084 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 1090 echo "configure:10 91: checking whether we are using GNU C" >&51085 echo "configure:1086: checking whether we are using GNU C" >&5 1091 1086 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 1092 1087 echo $ac_n "(cached) $ac_c" 1>&6 … … 1097 1092 #endif 1098 1093 EOF 1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1 100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1094 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1095: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1100 1095 ac_cv_prog_gcc=yes 1101 1096 else … … 1116 1111 CFLAGS= 1117 1112 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 1118 echo "configure:111 9: checking whether ${CC-cc} accepts -g" >&51113 echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5 1119 1114 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 1120 1115 echo $ac_n "(cached) $ac_c" 1>&6 -
c/src/exec/score/tools/sh/aclocal.m4
r1407343 r8c92fa3 64 64 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 65 65 [ 66 rtems_target=$target;67 case "$target" in68 no_cpu*) target=$host;;69 *) ;;70 esac71 66 AC_CANONICAL_SYSTEM 72 67 AC_MSG_CHECKING(rtems target cpu) 73 68 changequote(,)dnl 74 case "${ rtems_target}" in69 case "${target}" in 75 70 # hpux unix port should go here 76 71 i[3456]86-go32-rtems*) … … 90 85 ;; 91 86 *) 92 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`87 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 93 88 ;; 94 89 esac -
c/src/exec/score/tools/sh/configure
r1407343 r8c92fa3 577 577 578 578 579 rtems_target=$target;580 case "$target" in581 no_cpu*) target=$host;;582 *) ;;583 esac584 579 585 580 # Do some error checking and defaulting for the host and target type. … … 610 605 611 606 echo $ac_n "checking host system type""... $ac_c" 1>&6 612 echo "configure:6 13: checking host system type" >&5607 echo "configure:608: checking host system type" >&5 613 608 614 609 host_alias=$host … … 631 626 632 627 echo $ac_n "checking target system type""... $ac_c" 1>&6 633 echo "configure:6 34: checking target system type" >&5628 echo "configure:629: checking target system type" >&5 634 629 635 630 target_alias=$target … … 649 644 650 645 echo $ac_n "checking build system type""... $ac_c" 1>&6 651 echo "configure:6 52: checking build system type" >&5646 echo "configure:647: checking build system type" >&5 652 647 653 648 build_alias=$build … … 672 667 673 668 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 674 echo "configure:67 5: checking rtems target cpu" >&5675 case "${ rtems_target}" in669 echo "configure:670: checking rtems target cpu" >&5 670 case "${target}" in 676 671 # hpux unix port should go here 677 672 i[3456]86-go32-rtems*) … … 691 686 ;; 692 687 *) 693 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`688 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 694 689 ;; 695 690 esac … … 710 705 # ./install, which can be erroneously created by make from ./install.sh. 711 706 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 712 echo "configure:7 13: checking for a BSD compatible install" >&5707 echo "configure:708: checking for a BSD compatible install" >&5 713 708 if test -z "$INSTALL"; then 714 709 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 763 758 764 759 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 765 echo "configure:76 6: checking whether build environment is sane" >&5760 echo "configure:761: checking whether build environment is sane" >&5 766 761 # Just in case 767 762 sleep 1 … … 820 815 821 816 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 822 echo "configure:8 23: checking whether ${MAKE-make} sets \${MAKE}" >&5817 echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5 823 818 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 824 819 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 859 854 missing_dir=`cd $ac_aux_dir && pwd` 860 855 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 861 echo "configure:8 62: checking for working aclocal" >&5856 echo "configure:857: checking for working aclocal" >&5 862 857 # Run test in a subshell; some versions of sh will print an error if 863 858 # an executable is not found, even if stderr is redirected. … … 872 867 873 868 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 874 echo "configure:87 5: checking for working autoconf" >&5869 echo "configure:870: checking for working autoconf" >&5 875 870 # Run test in a subshell; some versions of sh will print an error if 876 871 # an executable is not found, even if stderr is redirected. … … 885 880 886 881 echo $ac_n "checking for working automake""... $ac_c" 1>&6 887 echo "configure:88 8: checking for working automake" >&5882 echo "configure:883: checking for working automake" >&5 888 883 # Run test in a subshell; some versions of sh will print an error if 889 884 # an executable is not found, even if stderr is redirected. … … 898 893 899 894 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 900 echo "configure: 901: checking for working autoheader" >&5895 echo "configure:896: checking for working autoheader" >&5 901 896 # Run test in a subshell; some versions of sh will print an error if 902 897 # an executable is not found, even if stderr is redirected. … … 911 906 912 907 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 913 echo "configure:9 14: checking for working makeinfo" >&5908 echo "configure:909: checking for working makeinfo" >&5 914 909 # Run test in a subshell; some versions of sh will print an error if 915 910 # an executable is not found, even if stderr is redirected. … … 928 923 set dummy gcc; ac_word=$2 929 924 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 930 echo "configure:9 31: checking for $ac_word" >&5925 echo "configure:926: checking for $ac_word" >&5 931 926 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 932 927 echo $ac_n "(cached) $ac_c" 1>&6 … … 958 953 set dummy cc; ac_word=$2 959 954 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 960 echo "configure:9 61: checking for $ac_word" >&5955 echo "configure:956: checking for $ac_word" >&5 961 956 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 962 957 echo $ac_n "(cached) $ac_c" 1>&6 … … 1009 1004 set dummy cl; ac_word=$2 1010 1005 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1011 echo "configure:10 12: checking for $ac_word" >&51006 echo "configure:1007: checking for $ac_word" >&5 1012 1007 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 1013 1008 echo $ac_n "(cached) $ac_c" 1>&6 … … 1041 1036 1042 1037 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1043 echo "configure:10 44: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&51038 echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 1044 1039 1045 1040 ac_ext=c … … 1052 1047 cat > conftest.$ac_ext << EOF 1053 1048 1054 #line 105 5"configure"1049 #line 1050 "configure" 1055 1050 #include "confdefs.h" 1056 1051 1057 1052 main(){return(0);} 1058 1053 EOF 1059 if { (eval echo configure:10 60: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1054 if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1060 1055 ac_cv_prog_cc_works=yes 1061 1056 # If we can't run a trivial program, we are probably using a cross compiler. … … 1083 1078 fi 1084 1079 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1085 echo "configure:108 6: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&51080 echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 1086 1081 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 1087 1082 cross_compiling=$ac_cv_prog_cc_cross 1088 1083 1089 1084 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 1090 echo "configure:10 91: checking whether we are using GNU C" >&51085 echo "configure:1086: checking whether we are using GNU C" >&5 1091 1086 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 1092 1087 echo $ac_n "(cached) $ac_c" 1>&6 … … 1097 1092 #endif 1098 1093 EOF 1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1 100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1094 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1095: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1100 1095 ac_cv_prog_gcc=yes 1101 1096 else … … 1116 1111 CFLAGS= 1117 1112 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 1118 echo "configure:111 9: checking whether ${CC-cc} accepts -g" >&51113 echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5 1119 1114 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 1120 1115 echo $ac_n "(cached) $ac_c" 1>&6 … … 1148 1143 1149 1144 echo $ac_n "checking for fabs in -lm""... $ac_c" 1>&6 1150 echo "configure:11 51: checking for fabs in -lm" >&51145 echo "configure:1146: checking for fabs in -lm" >&5 1151 1146 ac_lib_var=`echo m'_'fabs | sed 'y%./+-%__p_%'` 1152 1147 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1156 1151 LIBS="-lm $LIBS" 1157 1152 cat > conftest.$ac_ext <<EOF 1158 #line 115 9"configure"1153 #line 1154 "configure" 1159 1154 #include "confdefs.h" 1160 1155 /* Override any gcc2 internal prototype to avoid an error. */ … … 1167 1162 ; return 0; } 1168 1163 EOF 1169 if { (eval echo configure:11 70: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1164 if { (eval echo configure:1165: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1170 1165 rm -rf conftest* 1171 1166 eval "ac_cv_lib_$ac_lib_var=yes" -
c/src/exec/score/tools/unix/aclocal.m4
r1407343 r8c92fa3 64 64 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 65 65 [ 66 rtems_target=$target;67 case "$target" in68 no_cpu*) target=$host;;69 *) ;;70 esac71 66 AC_CANONICAL_SYSTEM 72 67 AC_MSG_CHECKING(rtems target cpu) 73 68 changequote(,)dnl 74 case "${ rtems_target}" in69 case "${target}" in 75 70 # hpux unix port should go here 76 71 i[3456]86-go32-rtems*) … … 90 85 ;; 91 86 *) 92 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`87 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 93 88 ;; 94 89 esac -
c/src/exec/score/tools/unix/configure
r1407343 r8c92fa3 577 577 578 578 579 rtems_target=$target;580 case "$target" in581 no_cpu*) target=$host;;582 *) ;;583 esac584 579 585 580 # Do some error checking and defaulting for the host and target type. … … 610 605 611 606 echo $ac_n "checking host system type""... $ac_c" 1>&6 612 echo "configure:6 13: checking host system type" >&5607 echo "configure:608: checking host system type" >&5 613 608 614 609 host_alias=$host … … 631 626 632 627 echo $ac_n "checking target system type""... $ac_c" 1>&6 633 echo "configure:6 34: checking target system type" >&5628 echo "configure:629: checking target system type" >&5 634 629 635 630 target_alias=$target … … 649 644 650 645 echo $ac_n "checking build system type""... $ac_c" 1>&6 651 echo "configure:6 52: checking build system type" >&5646 echo "configure:647: checking build system type" >&5 652 647 653 648 build_alias=$build … … 672 667 673 668 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 674 echo "configure:67 5: checking rtems target cpu" >&5675 case "${ rtems_target}" in669 echo "configure:670: checking rtems target cpu" >&5 670 case "${target}" in 676 671 # hpux unix port should go here 677 672 i[3456]86-go32-rtems*) … … 691 686 ;; 692 687 *) 693 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`688 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 694 689 ;; 695 690 esac … … 710 705 # ./install, which can be erroneously created by make from ./install.sh. 711 706 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 712 echo "configure:7 13: checking for a BSD compatible install" >&5707 echo "configure:708: checking for a BSD compatible install" >&5 713 708 if test -z "$INSTALL"; then 714 709 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 763 758 764 759 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 765 echo "configure:76 6: checking whether build environment is sane" >&5760 echo "configure:761: checking whether build environment is sane" >&5 766 761 # Just in case 767 762 sleep 1 … … 820 815 821 816 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 822 echo "configure:8 23: checking whether ${MAKE-make} sets \${MAKE}" >&5817 echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5 823 818 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 824 819 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 859 854 missing_dir=`cd $ac_aux_dir && pwd` 860 855 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 861 echo "configure:8 62: checking for working aclocal" >&5856 echo "configure:857: checking for working aclocal" >&5 862 857 # Run test in a subshell; some versions of sh will print an error if 863 858 # an executable is not found, even if stderr is redirected. … … 872 867 873 868 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 874 echo "configure:87 5: checking for working autoconf" >&5869 echo "configure:870: checking for working autoconf" >&5 875 870 # Run test in a subshell; some versions of sh will print an error if 876 871 # an executable is not found, even if stderr is redirected. … … 885 880 886 881 echo $ac_n "checking for working automake""... $ac_c" 1>&6 887 echo "configure:88 8: checking for working automake" >&5882 echo "configure:883: checking for working automake" >&5 888 883 # Run test in a subshell; some versions of sh will print an error if 889 884 # an executable is not found, even if stderr is redirected. … … 898 893 899 894 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 900 echo "configure: 901: checking for working autoheader" >&5895 echo "configure:896: checking for working autoheader" >&5 901 896 # Run test in a subshell; some versions of sh will print an error if 902 897 # an executable is not found, even if stderr is redirected. … … 911 906 912 907 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 913 echo "configure:9 14: checking for working makeinfo" >&5908 echo "configure:909: checking for working makeinfo" >&5 914 909 # Run test in a subshell; some versions of sh will print an error if 915 910 # an executable is not found, even if stderr is redirected. … … 928 923 set dummy gcc; ac_word=$2 929 924 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 930 echo "configure:9 31: checking for $ac_word" >&5925 echo "configure:926: checking for $ac_word" >&5 931 926 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 932 927 echo $ac_n "(cached) $ac_c" 1>&6 … … 958 953 set dummy cc; ac_word=$2 959 954 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 960 echo "configure:9 61: checking for $ac_word" >&5955 echo "configure:956: checking for $ac_word" >&5 961 956 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 962 957 echo $ac_n "(cached) $ac_c" 1>&6 … … 1009 1004 set dummy cl; ac_word=$2 1010 1005 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1011 echo "configure:10 12: checking for $ac_word" >&51006 echo "configure:1007: checking for $ac_word" >&5 1012 1007 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 1013 1008 echo $ac_n "(cached) $ac_c" 1>&6 … … 1041 1036 1042 1037 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1043 echo "configure:10 44: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&51038 echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 1044 1039 1045 1040 ac_ext=c … … 1052 1047 cat > conftest.$ac_ext << EOF 1053 1048 1054 #line 105 5"configure"1049 #line 1050 "configure" 1055 1050 #include "confdefs.h" 1056 1051 1057 1052 main(){return(0);} 1058 1053 EOF 1059 if { (eval echo configure:10 60: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1054 if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1060 1055 ac_cv_prog_cc_works=yes 1061 1056 # If we can't run a trivial program, we are probably using a cross compiler. … … 1083 1078 fi 1084 1079 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1085 echo "configure:108 6: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&51080 echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 1086 1081 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 1087 1082 cross_compiling=$ac_cv_prog_cc_cross 1088 1083 1089 1084 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 1090 echo "configure:10 91: checking whether we are using GNU C" >&51085 echo "configure:1086: checking whether we are using GNU C" >&5 1091 1086 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 1092 1087 echo $ac_n "(cached) $ac_c" 1>&6 … … 1097 1092 #endif 1098 1093 EOF 1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1 100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1094 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1095: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1100 1095 ac_cv_prog_gcc=yes 1101 1096 else … … 1116 1111 CFLAGS= 1117 1112 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 1118 echo "configure:111 9: checking whether ${CC-cc} accepts -g" >&51113 echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5 1119 1114 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 1120 1115 echo $ac_n "(cached) $ac_c" 1>&6 -
c/src/lib/libbsp/hppa1.1/simhppa/tools/aclocal.m4
r1407343 r8c92fa3 64 64 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 65 65 [ 66 rtems_target=$target;67 case "$target" in68 no_cpu*) target=$host;;69 *) ;;70 esac71 66 AC_CANONICAL_SYSTEM 72 67 AC_MSG_CHECKING(rtems target cpu) 73 68 changequote(,)dnl 74 case "${ rtems_target}" in69 case "${target}" in 75 70 # hpux unix port should go here 76 71 i[3456]86-go32-rtems*) … … 90 85 ;; 91 86 *) 92 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`87 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 93 88 ;; 94 89 esac -
c/src/lib/libbsp/hppa1.1/simhppa/tools/configure
r1407343 r8c92fa3 577 577 578 578 579 rtems_target=$target;580 case "$target" in581 no_cpu*) target=$host;;582 *) ;;583 esac584 579 585 580 # Do some error checking and defaulting for the host and target type. … … 610 605 611 606 echo $ac_n "checking host system type""... $ac_c" 1>&6 612 echo "configure:6 13: checking host system type" >&5607 echo "configure:608: checking host system type" >&5 613 608 614 609 host_alias=$host … … 631 626 632 627 echo $ac_n "checking target system type""... $ac_c" 1>&6 633 echo "configure:6 34: checking target system type" >&5628 echo "configure:629: checking target system type" >&5 634 629 635 630 target_alias=$target … … 649 644 650 645 echo $ac_n "checking build system type""... $ac_c" 1>&6 651 echo "configure:6 52: checking build system type" >&5646 echo "configure:647: checking build system type" >&5 652 647 653 648 build_alias=$build … … 672 667 673 668 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 674 echo "configure:67 5: checking rtems target cpu" >&5675 case "${ rtems_target}" in669 echo "configure:670: checking rtems target cpu" >&5 670 case "${target}" in 676 671 # hpux unix port should go here 677 672 i[3456]86-go32-rtems*) … … 691 686 ;; 692 687 *) 693 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`688 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 694 689 ;; 695 690 esac … … 710 705 # ./install, which can be erroneously created by make from ./install.sh. 711 706 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 712 echo "configure:7 13: checking for a BSD compatible install" >&5707 echo "configure:708: checking for a BSD compatible install" >&5 713 708 if test -z "$INSTALL"; then 714 709 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 763 758 764 759 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 765 echo "configure:76 6: checking whether build environment is sane" >&5760 echo "configure:761: checking whether build environment is sane" >&5 766 761 # Just in case 767 762 sleep 1 … … 820 815 821 816 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 822 echo "configure:8 23: checking whether ${MAKE-make} sets \${MAKE}" >&5817 echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5 823 818 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 824 819 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 859 854 missing_dir=`cd $ac_aux_dir && pwd` 860 855 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 861 echo "configure:8 62: checking for working aclocal" >&5856 echo "configure:857: checking for working aclocal" >&5 862 857 # Run test in a subshell; some versions of sh will print an error if 863 858 # an executable is not found, even if stderr is redirected. … … 872 867 873 868 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 874 echo "configure:87 5: checking for working autoconf" >&5869 echo "configure:870: checking for working autoconf" >&5 875 870 # Run test in a subshell; some versions of sh will print an error if 876 871 # an executable is not found, even if stderr is redirected. … … 885 880 886 881 echo $ac_n "checking for working automake""... $ac_c" 1>&6 887 echo "configure:88 8: checking for working automake" >&5882 echo "configure:883: checking for working automake" >&5 888 883 # Run test in a subshell; some versions of sh will print an error if 889 884 # an executable is not found, even if stderr is redirected. … … 898 893 899 894 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 900 echo "configure: 901: checking for working autoheader" >&5895 echo "configure:896: checking for working autoheader" >&5 901 896 # Run test in a subshell; some versions of sh will print an error if 902 897 # an executable is not found, even if stderr is redirected. … … 911 906 912 907 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 913 echo "configure:9 14: checking for working makeinfo" >&5908 echo "configure:909: checking for working makeinfo" >&5 914 909 # Run test in a subshell; some versions of sh will print an error if 915 910 # an executable is not found, even if stderr is redirected. … … 928 923 set dummy gcc; ac_word=$2 929 924 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 930 echo "configure:9 31: checking for $ac_word" >&5925 echo "configure:926: checking for $ac_word" >&5 931 926 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 932 927 echo $ac_n "(cached) $ac_c" 1>&6 … … 958 953 set dummy cc; ac_word=$2 959 954 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 960 echo "configure:9 61: checking for $ac_word" >&5955 echo "configure:956: checking for $ac_word" >&5 961 956 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 962 957 echo $ac_n "(cached) $ac_c" 1>&6 … … 1009 1004 set dummy cl; ac_word=$2 1010 1005 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1011 echo "configure:10 12: checking for $ac_word" >&51006 echo "configure:1007: checking for $ac_word" >&5 1012 1007 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 1013 1008 echo $ac_n "(cached) $ac_c" 1>&6 … … 1041 1036 1042 1037 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1043 echo "configure:10 44: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&51038 echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 1044 1039 1045 1040 ac_ext=c … … 1052 1047 cat > conftest.$ac_ext << EOF 1053 1048 1054 #line 105 5"configure"1049 #line 1050 "configure" 1055 1050 #include "confdefs.h" 1056 1051 1057 1052 main(){return(0);} 1058 1053 EOF 1059 if { (eval echo configure:10 60: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1054 if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1060 1055 ac_cv_prog_cc_works=yes 1061 1056 # If we can't run a trivial program, we are probably using a cross compiler. … … 1083 1078 fi 1084 1079 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1085 echo "configure:108 6: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&51080 echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 1086 1081 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 1087 1082 cross_compiling=$ac_cv_prog_cc_cross 1088 1083 1089 1084 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 1090 echo "configure:10 91: checking whether we are using GNU C" >&51085 echo "configure:1086: checking whether we are using GNU C" >&5 1091 1086 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 1092 1087 echo $ac_n "(cached) $ac_c" 1>&6 … … 1097 1092 #endif 1098 1093 EOF 1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1 100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1094 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1095: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1100 1095 ac_cv_prog_gcc=yes 1101 1096 else … … 1116 1111 CFLAGS= 1117 1112 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 1118 echo "configure:111 9: checking whether ${CC-cc} accepts -g" >&51113 echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5 1119 1114 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 1120 1115 echo $ac_n "(cached) $ac_c" 1>&6 … … 1151 1146 do 1152 1147 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1153 echo "configure:11 54: checking for $ac_func" >&51148 echo "configure:1149: checking for $ac_func" >&5 1154 1149 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1155 1150 echo $ac_n "(cached) $ac_c" 1>&6 1156 1151 else 1157 1152 cat > conftest.$ac_ext <<EOF 1158 #line 115 9"configure"1153 #line 1154 "configure" 1159 1154 #include "confdefs.h" 1160 1155 /* System header to define __stub macros and hopefully few prototypes, … … 1179 1174 ; return 0; } 1180 1175 EOF 1181 if { (eval echo configure:11 82: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1176 if { (eval echo configure:1177: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1182 1177 rm -rf conftest* 1183 1178 eval "ac_cv_func_$ac_func=yes" -
c/src/lib/libbsp/i386/pc386/tools/aclocal.m4
r1407343 r8c92fa3 64 64 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 65 65 [ 66 rtems_target=$target;67 case "$target" in68 no_cpu*) target=$host;;69 *) ;;70 esac71 66 AC_CANONICAL_SYSTEM 72 67 AC_MSG_CHECKING(rtems target cpu) 73 68 changequote(,)dnl 74 case "${ rtems_target}" in69 case "${target}" in 75 70 # hpux unix port should go here 76 71 i[3456]86-go32-rtems*) … … 90 85 ;; 91 86 *) 92 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`87 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 93 88 ;; 94 89 esac -
c/src/lib/libbsp/i386/pc386/tools/configure
r1407343 r8c92fa3 577 577 578 578 579 rtems_target=$target;580 case "$target" in581 no_cpu*) target=$host;;582 *) ;;583 esac584 579 585 580 # Do some error checking and defaulting for the host and target type. … … 610 605 611 606 echo $ac_n "checking host system type""... $ac_c" 1>&6 612 echo "configure:6 13: checking host system type" >&5607 echo "configure:608: checking host system type" >&5 613 608 614 609 host_alias=$host … … 631 626 632 627 echo $ac_n "checking target system type""... $ac_c" 1>&6 633 echo "configure:6 34: checking target system type" >&5628 echo "configure:629: checking target system type" >&5 634 629 635 630 target_alias=$target … … 649 644 650 645 echo $ac_n "checking build system type""... $ac_c" 1>&6 651 echo "configure:6 52: checking build system type" >&5646 echo "configure:647: checking build system type" >&5 652 647 653 648 build_alias=$build … … 672 667 673 668 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 674 echo "configure:67 5: checking rtems target cpu" >&5675 case "${ rtems_target}" in669 echo "configure:670: checking rtems target cpu" >&5 670 case "${target}" in 676 671 # hpux unix port should go here 677 672 i[3456]86-go32-rtems*) … … 691 686 ;; 692 687 *) 693 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`688 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 694 689 ;; 695 690 esac … … 710 705 # ./install, which can be erroneously created by make from ./install.sh. 711 706 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 712 echo "configure:7 13: checking for a BSD compatible install" >&5707 echo "configure:708: checking for a BSD compatible install" >&5 713 708 if test -z "$INSTALL"; then 714 709 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 763 758 764 759 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 765 echo "configure:76 6: checking whether build environment is sane" >&5760 echo "configure:761: checking whether build environment is sane" >&5 766 761 # Just in case 767 762 sleep 1 … … 820 815 821 816 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 822 echo "configure:8 23: checking whether ${MAKE-make} sets \${MAKE}" >&5817 echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5 823 818 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 824 819 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 859 854 missing_dir=`cd $ac_aux_dir && pwd` 860 855 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 861 echo "configure:8 62: checking for working aclocal" >&5856 echo "configure:857: checking for working aclocal" >&5 862 857 # Run test in a subshell; some versions of sh will print an error if 863 858 # an executable is not found, even if stderr is redirected. … … 872 867 873 868 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 874 echo "configure:87 5: checking for working autoconf" >&5869 echo "configure:870: checking for working autoconf" >&5 875 870 # Run test in a subshell; some versions of sh will print an error if 876 871 # an executable is not found, even if stderr is redirected. … … 885 880 886 881 echo $ac_n "checking for working automake""... $ac_c" 1>&6 887 echo "configure:88 8: checking for working automake" >&5882 echo "configure:883: checking for working automake" >&5 888 883 # Run test in a subshell; some versions of sh will print an error if 889 884 # an executable is not found, even if stderr is redirected. … … 898 893 899 894 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 900 echo "configure: 901: checking for working autoheader" >&5895 echo "configure:896: checking for working autoheader" >&5 901 896 # Run test in a subshell; some versions of sh will print an error if 902 897 # an executable is not found, even if stderr is redirected. … … 911 906 912 907 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 913 echo "configure:9 14: checking for working makeinfo" >&5908 echo "configure:909: checking for working makeinfo" >&5 914 909 # Run test in a subshell; some versions of sh will print an error if 915 910 # an executable is not found, even if stderr is redirected. … … 928 923 set dummy gcc; ac_word=$2 929 924 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 930 echo "configure:9 31: checking for $ac_word" >&5925 echo "configure:926: checking for $ac_word" >&5 931 926 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 932 927 echo $ac_n "(cached) $ac_c" 1>&6 … … 958 953 set dummy cc; ac_word=$2 959 954 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 960 echo "configure:9 61: checking for $ac_word" >&5955 echo "configure:956: checking for $ac_word" >&5 961 956 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 962 957 echo $ac_n "(cached) $ac_c" 1>&6 … … 1009 1004 set dummy cl; ac_word=$2 1010 1005 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1011 echo "configure:10 12: checking for $ac_word" >&51006 echo "configure:1007: checking for $ac_word" >&5 1012 1007 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 1013 1008 echo $ac_n "(cached) $ac_c" 1>&6 … … 1041 1036 1042 1037 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1043 echo "configure:10 44: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&51038 echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 1044 1039 1045 1040 ac_ext=c … … 1052 1047 cat > conftest.$ac_ext << EOF 1053 1048 1054 #line 105 5"configure"1049 #line 1050 "configure" 1055 1050 #include "confdefs.h" 1056 1051 1057 1052 main(){return(0);} 1058 1053 EOF 1059 if { (eval echo configure:10 60: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1054 if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1060 1055 ac_cv_prog_cc_works=yes 1061 1056 # If we can't run a trivial program, we are probably using a cross compiler. … … 1083 1078 fi 1084 1079 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1085 echo "configure:108 6: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&51080 echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 1086 1081 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 1087 1082 cross_compiling=$ac_cv_prog_cc_cross 1088 1083 1089 1084 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 1090 echo "configure:10 91: checking whether we are using GNU C" >&51085 echo "configure:1086: checking whether we are using GNU C" >&5 1091 1086 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 1092 1087 echo $ac_n "(cached) $ac_c" 1>&6 … … 1097 1092 #endif 1098 1093 EOF 1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1 100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1094 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1095: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1100 1095 ac_cv_prog_gcc=yes 1101 1096 else … … 1116 1111 CFLAGS= 1117 1112 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 1118 echo "configure:111 9: checking whether ${CC-cc} accepts -g" >&51113 echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5 1119 1114 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 1120 1115 echo $ac_n "(cached) $ac_c" 1>&6 … … 1151 1146 do 1152 1147 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1153 echo "configure:11 54: checking for $ac_func" >&51148 echo "configure:1149: checking for $ac_func" >&5 1154 1149 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1155 1150 echo $ac_n "(cached) $ac_c" 1>&6 1156 1151 else 1157 1152 cat > conftest.$ac_ext <<EOF 1158 #line 115 9"configure"1153 #line 1154 "configure" 1159 1154 #include "confdefs.h" 1160 1155 /* System header to define __stub macros and hopefully few prototypes, … … 1179 1174 ; return 0; } 1180 1175 EOF 1181 if { (eval echo configure:11 82: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1176 if { (eval echo configure:1177: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1182 1177 rm -rf conftest* 1183 1178 eval "ac_cv_func_$ac_func=yes" -
c/src/lib/libbsp/m68k/mvme162/tools/aclocal.m4
r1407343 r8c92fa3 64 64 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 65 65 [ 66 rtems_target=$target;67 case "$target" in68 no_cpu*) target=$host;;69 *) ;;70 esac71 66 AC_CANONICAL_SYSTEM 72 67 AC_MSG_CHECKING(rtems target cpu) 73 68 changequote(,)dnl 74 case "${ rtems_target}" in69 case "${target}" in 75 70 # hpux unix port should go here 76 71 i[3456]86-go32-rtems*) … … 90 85 ;; 91 86 *) 92 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`87 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 93 88 ;; 94 89 esac -
c/src/lib/libbsp/m68k/mvme162/tools/configure
r1407343 r8c92fa3 577 577 578 578 579 rtems_target=$target;580 case "$target" in581 no_cpu*) target=$host;;582 *) ;;583 esac584 579 585 580 # Do some error checking and defaulting for the host and target type. … … 610 605 611 606 echo $ac_n "checking host system type""... $ac_c" 1>&6 612 echo "configure:6 13: checking host system type" >&5607 echo "configure:608: checking host system type" >&5 613 608 614 609 host_alias=$host … … 631 626 632 627 echo $ac_n "checking target system type""... $ac_c" 1>&6 633 echo "configure:6 34: checking target system type" >&5628 echo "configure:629: checking target system type" >&5 634 629 635 630 target_alias=$target … … 649 644 650 645 echo $ac_n "checking build system type""... $ac_c" 1>&6 651 echo "configure:6 52: checking build system type" >&5646 echo "configure:647: checking build system type" >&5 652 647 653 648 build_alias=$build … … 672 667 673 668 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 674 echo "configure:67 5: checking rtems target cpu" >&5675 case "${ rtems_target}" in669 echo "configure:670: checking rtems target cpu" >&5 670 case "${target}" in 676 671 # hpux unix port should go here 677 672 i[3456]86-go32-rtems*) … … 691 686 ;; 692 687 *) 693 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`688 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 694 689 ;; 695 690 esac … … 710 705 # ./install, which can be erroneously created by make from ./install.sh. 711 706 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 712 echo "configure:7 13: checking for a BSD compatible install" >&5707 echo "configure:708: checking for a BSD compatible install" >&5 713 708 if test -z "$INSTALL"; then 714 709 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 763 758 764 759 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 765 echo "configure:76 6: checking whether build environment is sane" >&5760 echo "configure:761: checking whether build environment is sane" >&5 766 761 # Just in case 767 762 sleep 1 … … 820 815 821 816 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 822 echo "configure:8 23: checking whether ${MAKE-make} sets \${MAKE}" >&5817 echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5 823 818 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 824 819 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 859 854 missing_dir=`cd $ac_aux_dir && pwd` 860 855 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 861 echo "configure:8 62: checking for working aclocal" >&5856 echo "configure:857: checking for working aclocal" >&5 862 857 # Run test in a subshell; some versions of sh will print an error if 863 858 # an executable is not found, even if stderr is redirected. … … 872 867 873 868 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 874 echo "configure:87 5: checking for working autoconf" >&5869 echo "configure:870: checking for working autoconf" >&5 875 870 # Run test in a subshell; some versions of sh will print an error if 876 871 # an executable is not found, even if stderr is redirected. … … 885 880 886 881 echo $ac_n "checking for working automake""... $ac_c" 1>&6 887 echo "configure:88 8: checking for working automake" >&5882 echo "configure:883: checking for working automake" >&5 888 883 # Run test in a subshell; some versions of sh will print an error if 889 884 # an executable is not found, even if stderr is redirected. … … 898 893 899 894 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 900 echo "configure: 901: checking for working autoheader" >&5895 echo "configure:896: checking for working autoheader" >&5 901 896 # Run test in a subshell; some versions of sh will print an error if 902 897 # an executable is not found, even if stderr is redirected. … … 911 906 912 907 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 913 echo "configure:9 14: checking for working makeinfo" >&5908 echo "configure:909: checking for working makeinfo" >&5 914 909 # Run test in a subshell; some versions of sh will print an error if 915 910 # an executable is not found, even if stderr is redirected. … … 928 923 set dummy gcc; ac_word=$2 929 924 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 930 echo "configure:9 31: checking for $ac_word" >&5925 echo "configure:926: checking for $ac_word" >&5 931 926 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 932 927 echo $ac_n "(cached) $ac_c" 1>&6 … … 958 953 set dummy cc; ac_word=$2 959 954 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 960 echo "configure:9 61: checking for $ac_word" >&5955 echo "configure:956: checking for $ac_word" >&5 961 956 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 962 957 echo $ac_n "(cached) $ac_c" 1>&6 … … 1009 1004 set dummy cl; ac_word=$2 1010 1005 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1011 echo "configure:10 12: checking for $ac_word" >&51006 echo "configure:1007: checking for $ac_word" >&5 1012 1007 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 1013 1008 echo $ac_n "(cached) $ac_c" 1>&6 … … 1041 1036 1042 1037 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1043 echo "configure:10 44: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&51038 echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 1044 1039 1045 1040 ac_ext=c … … 1052 1047 cat > conftest.$ac_ext << EOF 1053 1048 1054 #line 105 5"configure"1049 #line 1050 "configure" 1055 1050 #include "confdefs.h" 1056 1051 1057 1052 main(){return(0);} 1058 1053 EOF 1059 if { (eval echo configure:10 60: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1054 if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1060 1055 ac_cv_prog_cc_works=yes 1061 1056 # If we can't run a trivial program, we are probably using a cross compiler. … … 1083 1078 fi 1084 1079 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1085 echo "configure:108 6: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&51080 echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 1086 1081 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 1087 1082 cross_compiling=$ac_cv_prog_cc_cross 1088 1083 1089 1084 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 1090 echo "configure:10 91: checking whether we are using GNU C" >&51085 echo "configure:1086: checking whether we are using GNU C" >&5 1091 1086 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 1092 1087 echo $ac_n "(cached) $ac_c" 1>&6 … … 1097 1092 #endif 1098 1093 EOF 1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1 100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1094 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1095: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1100 1095 ac_cv_prog_gcc=yes 1101 1096 else … … 1116 1111 CFLAGS= 1117 1112 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 1118 echo "configure:111 9: checking whether ${CC-cc} accepts -g" >&51113 echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5 1119 1114 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 1120 1115 echo $ac_n "(cached) $ac_c" 1>&6 … … 1149 1144 1150 1145 echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 1151 echo "configure:11 52: checking how to run the C preprocessor" >&51146 echo "configure:1147: checking how to run the C preprocessor" >&5 1152 1147 # On Suns, sometimes $CPP names a directory. 1153 1148 if test -n "$CPP" && test -d "$CPP"; then … … 1164 1159 # not just through cpp. 1165 1160 cat > conftest.$ac_ext <<EOF 1166 #line 116 7"configure"1161 #line 1162 "configure" 1167 1162 #include "confdefs.h" 1168 1163 #include <assert.h> … … 1170 1165 EOF 1171 1166 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1172 { (eval echo configure:11 73: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1167 { (eval echo configure:1168: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1173 1168 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1174 1169 if test -z "$ac_err"; then … … 1181 1176 CPP="${CC-cc} -E -traditional-cpp" 1182 1177 cat > conftest.$ac_ext <<EOF 1183 #line 11 84"configure"1178 #line 1179 "configure" 1184 1179 #include "confdefs.h" 1185 1180 #include <assert.h> … … 1187 1182 EOF 1188 1183 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1189 { (eval echo configure:11 90: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1184 { (eval echo configure:1185: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1190 1185 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1191 1186 if test -z "$ac_err"; then … … 1198 1193 CPP="${CC-cc} -nologo -E" 1199 1194 cat > conftest.$ac_ext <<EOF 1200 #line 1 201"configure"1195 #line 1196 "configure" 1201 1196 #include "confdefs.h" 1202 1197 #include <assert.h> … … 1204 1199 EOF 1205 1200 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1206 { (eval echo configure:120 7: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1201 { (eval echo configure:1202: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1207 1202 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1208 1203 if test -z "$ac_err"; then … … 1229 1224 1230 1225 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 1231 echo "configure:12 32: checking for ANSI C header files" >&51226 echo "configure:1227: checking for ANSI C header files" >&5 1232 1227 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 1233 1228 echo $ac_n "(cached) $ac_c" 1>&6 1234 1229 else 1235 1230 cat > conftest.$ac_ext <<EOF 1236 #line 123 7"configure"1231 #line 1232 "configure" 1237 1232 #include "confdefs.h" 1238 1233 #include <stdlib.h> … … 1242 1237 EOF 1243 1238 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1244 { (eval echo configure:124 5: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1239 { (eval echo configure:1240: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1245 1240 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1246 1241 if test -z "$ac_err"; then … … 1259 1254 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 1260 1255 cat > conftest.$ac_ext <<EOF 1261 #line 12 62"configure"1256 #line 1257 "configure" 1262 1257 #include "confdefs.h" 1263 1258 #include <string.h> … … 1277 1272 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 1278 1273 cat > conftest.$ac_ext <<EOF 1279 #line 12 80"configure"1274 #line 1275 "configure" 1280 1275 #include "confdefs.h" 1281 1276 #include <stdlib.h> … … 1298 1293 else 1299 1294 cat > conftest.$ac_ext <<EOF 1300 #line 1 301"configure"1295 #line 1296 "configure" 1301 1296 #include "confdefs.h" 1302 1297 #include <ctype.h> … … 1309 1304 1310 1305 EOF 1311 if { (eval echo configure:13 12: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null1306 if { (eval echo configure:1307: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 1312 1307 then 1313 1308 : … … 1336 1331 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 1337 1332 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 1338 echo "configure:133 9: checking for $ac_hdr" >&51333 echo "configure:1334: checking for $ac_hdr" >&5 1339 1334 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 1340 1335 echo $ac_n "(cached) $ac_c" 1>&6 1341 1336 else 1342 1337 cat > conftest.$ac_ext <<EOF 1343 #line 13 44"configure"1338 #line 1339 "configure" 1344 1339 #include "confdefs.h" 1345 1340 #include <$ac_hdr> 1346 1341 EOF 1347 1342 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1348 { (eval echo configure:134 9: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1343 { (eval echo configure:1344: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1349 1344 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1350 1345 if test -z "$ac_err"; then … … 1376 1371 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 1377 1372 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 1378 echo "configure:137 9: checking for $ac_hdr" >&51373 echo "configure:1374: checking for $ac_hdr" >&5 1379 1374 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 1380 1375 echo $ac_n "(cached) $ac_c" 1>&6 1381 1376 else 1382 1377 cat > conftest.$ac_ext <<EOF 1383 #line 13 84"configure"1378 #line 1379 "configure" 1384 1379 #include "confdefs.h" 1385 1380 #include <$ac_hdr> 1386 1381 EOF 1387 1382 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1388 { (eval echo configure:138 9: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1383 { (eval echo configure:1384: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1389 1384 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1390 1385 if test -z "$ac_err"; then … … 1415 1410 do 1416 1411 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1417 echo "configure:141 8: checking for $ac_func" >&51412 echo "configure:1413: checking for $ac_func" >&5 1418 1413 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1419 1414 echo $ac_n "(cached) $ac_c" 1>&6 1420 1415 else 1421 1416 cat > conftest.$ac_ext <<EOF 1422 #line 14 23"configure"1417 #line 1418 "configure" 1423 1418 #include "confdefs.h" 1424 1419 /* System header to define __stub macros and hopefully few prototypes, … … 1443 1438 ; return 0; } 1444 1439 EOF 1445 if { (eval echo configure:144 6: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1440 if { (eval echo configure:1441: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1446 1441 rm -rf conftest* 1447 1442 eval "ac_cv_func_$ac_func=yes" … … 1468 1463 1469 1464 echo $ac_n "checking for working mmap""... $ac_c" 1>&6 1470 echo "configure:14 71: checking for working mmap" >&51465 echo "configure:1466: checking for working mmap" >&5 1471 1466 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then 1472 1467 echo $ac_n "(cached) $ac_c" 1>&6 … … 1476 1471 else 1477 1472 cat > conftest.$ac_ext <<EOF 1478 #line 147 9"configure"1473 #line 1474 "configure" 1479 1474 #include "confdefs.h" 1480 1475 … … 1616 1611 1617 1612 EOF 1618 if { (eval echo configure:161 9: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null1613 if { (eval echo configure:1614: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 1619 1614 then 1620 1615 ac_cv_func_mmap_fixed_mapped=yes -
c/src/lib/libbsp/powerpc/psim/tools/aclocal.m4
r1407343 r8c92fa3 64 64 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 65 65 [ 66 rtems_target=$target;67 case "$target" in68 no_cpu*) target=$host;;69 *) ;;70 esac71 66 AC_CANONICAL_SYSTEM 72 67 AC_MSG_CHECKING(rtems target cpu) 73 68 changequote(,)dnl 74 case "${ rtems_target}" in69 case "${target}" in 75 70 # hpux unix port should go here 76 71 i[3456]86-go32-rtems*) … … 90 85 ;; 91 86 *) 92 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`87 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 93 88 ;; 94 89 esac -
c/src/lib/libbsp/powerpc/psim/tools/configure
r1407343 r8c92fa3 577 577 578 578 579 rtems_target=$target;580 case "$target" in581 no_cpu*) target=$host;;582 *) ;;583 esac584 579 585 580 # Do some error checking and defaulting for the host and target type. … … 610 605 611 606 echo $ac_n "checking host system type""... $ac_c" 1>&6 612 echo "configure:6 13: checking host system type" >&5607 echo "configure:608: checking host system type" >&5 613 608 614 609 host_alias=$host … … 631 626 632 627 echo $ac_n "checking target system type""... $ac_c" 1>&6 633 echo "configure:6 34: checking target system type" >&5628 echo "configure:629: checking target system type" >&5 634 629 635 630 target_alias=$target … … 649 644 650 645 echo $ac_n "checking build system type""... $ac_c" 1>&6 651 echo "configure:6 52: checking build system type" >&5646 echo "configure:647: checking build system type" >&5 652 647 653 648 build_alias=$build … … 672 667 673 668 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 674 echo "configure:67 5: checking rtems target cpu" >&5675 case "${ rtems_target}" in669 echo "configure:670: checking rtems target cpu" >&5 670 case "${target}" in 676 671 # hpux unix port should go here 677 672 i[3456]86-go32-rtems*) … … 691 686 ;; 692 687 *) 693 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`688 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 694 689 ;; 695 690 esac … … 710 705 # ./install, which can be erroneously created by make from ./install.sh. 711 706 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 712 echo "configure:7 13: checking for a BSD compatible install" >&5707 echo "configure:708: checking for a BSD compatible install" >&5 713 708 if test -z "$INSTALL"; then 714 709 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 763 758 764 759 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 765 echo "configure:76 6: checking whether build environment is sane" >&5760 echo "configure:761: checking whether build environment is sane" >&5 766 761 # Just in case 767 762 sleep 1 … … 820 815 821 816 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 822 echo "configure:8 23: checking whether ${MAKE-make} sets \${MAKE}" >&5817 echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5 823 818 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 824 819 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 859 854 missing_dir=`cd $ac_aux_dir && pwd` 860 855 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 861 echo "configure:8 62: checking for working aclocal" >&5856 echo "configure:857: checking for working aclocal" >&5 862 857 # Run test in a subshell; some versions of sh will print an error if 863 858 # an executable is not found, even if stderr is redirected. … … 872 867 873 868 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 874 echo "configure:87 5: checking for working autoconf" >&5869 echo "configure:870: checking for working autoconf" >&5 875 870 # Run test in a subshell; some versions of sh will print an error if 876 871 # an executable is not found, even if stderr is redirected. … … 885 880 886 881 echo $ac_n "checking for working automake""... $ac_c" 1>&6 887 echo "configure:88 8: checking for working automake" >&5882 echo "configure:883: checking for working automake" >&5 888 883 # Run test in a subshell; some versions of sh will print an error if 889 884 # an executable is not found, even if stderr is redirected. … … 898 893 899 894 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 900 echo "configure: 901: checking for working autoheader" >&5895 echo "configure:896: checking for working autoheader" >&5 901 896 # Run test in a subshell; some versions of sh will print an error if 902 897 # an executable is not found, even if stderr is redirected. … … 911 906 912 907 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 913 echo "configure:9 14: checking for working makeinfo" >&5908 echo "configure:909: checking for working makeinfo" >&5 914 909 # Run test in a subshell; some versions of sh will print an error if 915 910 # an executable is not found, even if stderr is redirected. -
c/src/lib/libbsp/sparc/erc32/tools/aclocal.m4
r1407343 r8c92fa3 64 64 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 65 65 [ 66 rtems_target=$target;67 case "$target" in68 no_cpu*) target=$host;;69 *) ;;70 esac71 66 AC_CANONICAL_SYSTEM 72 67 AC_MSG_CHECKING(rtems target cpu) 73 68 changequote(,)dnl 74 case "${ rtems_target}" in69 case "${target}" in 75 70 # hpux unix port should go here 76 71 i[3456]86-go32-rtems*) … … 90 85 ;; 91 86 *) 92 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`87 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 93 88 ;; 94 89 esac -
c/src/lib/libbsp/sparc/erc32/tools/configure
r1407343 r8c92fa3 577 577 578 578 579 rtems_target=$target;580 case "$target" in581 no_cpu*) target=$host;;582 *) ;;583 esac584 579 585 580 # Do some error checking and defaulting for the host and target type. … … 610 605 611 606 echo $ac_n "checking host system type""... $ac_c" 1>&6 612 echo "configure:6 13: checking host system type" >&5607 echo "configure:608: checking host system type" >&5 613 608 614 609 host_alias=$host … … 631 626 632 627 echo $ac_n "checking target system type""... $ac_c" 1>&6 633 echo "configure:6 34: checking target system type" >&5628 echo "configure:629: checking target system type" >&5 634 629 635 630 target_alias=$target … … 649 644 650 645 echo $ac_n "checking build system type""... $ac_c" 1>&6 651 echo "configure:6 52: checking build system type" >&5646 echo "configure:647: checking build system type" >&5 652 647 653 648 build_alias=$build … … 672 667 673 668 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 674 echo "configure:67 5: checking rtems target cpu" >&5675 case "${ rtems_target}" in669 echo "configure:670: checking rtems target cpu" >&5 670 case "${target}" in 676 671 # hpux unix port should go here 677 672 i[3456]86-go32-rtems*) … … 691 686 ;; 692 687 *) 693 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`688 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 694 689 ;; 695 690 esac … … 710 705 # ./install, which can be erroneously created by make from ./install.sh. 711 706 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 712 echo "configure:7 13: checking for a BSD compatible install" >&5707 echo "configure:708: checking for a BSD compatible install" >&5 713 708 if test -z "$INSTALL"; then 714 709 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 763 758 764 759 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 765 echo "configure:76 6: checking whether build environment is sane" >&5760 echo "configure:761: checking whether build environment is sane" >&5 766 761 # Just in case 767 762 sleep 1 … … 820 815 821 816 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 822 echo "configure:8 23: checking whether ${MAKE-make} sets \${MAKE}" >&5817 echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5 823 818 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 824 819 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 859 854 missing_dir=`cd $ac_aux_dir && pwd` 860 855 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 861 echo "configure:8 62: checking for working aclocal" >&5856 echo "configure:857: checking for working aclocal" >&5 862 857 # Run test in a subshell; some versions of sh will print an error if 863 858 # an executable is not found, even if stderr is redirected. … … 872 867 873 868 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 874 echo "configure:87 5: checking for working autoconf" >&5869 echo "configure:870: checking for working autoconf" >&5 875 870 # Run test in a subshell; some versions of sh will print an error if 876 871 # an executable is not found, even if stderr is redirected. … … 885 880 886 881 echo $ac_n "checking for working automake""... $ac_c" 1>&6 887 echo "configure:88 8: checking for working automake" >&5882 echo "configure:883: checking for working automake" >&5 888 883 # Run test in a subshell; some versions of sh will print an error if 889 884 # an executable is not found, even if stderr is redirected. … … 898 893 899 894 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 900 echo "configure: 901: checking for working autoheader" >&5895 echo "configure:896: checking for working autoheader" >&5 901 896 # Run test in a subshell; some versions of sh will print an error if 902 897 # an executable is not found, even if stderr is redirected. … … 911 906 912 907 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 913 echo "configure:9 14: checking for working makeinfo" >&5908 echo "configure:909: checking for working makeinfo" >&5 914 909 # Run test in a subshell; some versions of sh will print an error if 915 910 # an executable is not found, even if stderr is redirected. … … 931 926 set dummy $ac_prog; ac_word=$2 932 927 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 933 echo "configure:9 34: checking for $ac_word" >&5928 echo "configure:929: checking for $ac_word" >&5 934 929 if eval "test \"`echo '$''{'ac_cv_path_KSH'+set}'`\" = set"; then 935 930 echo $ac_n "(cached) $ac_c" 1>&6 -
c/src/lib/libbsp/unix/posix/tools/aclocal.m4
r1407343 r8c92fa3 64 64 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 65 65 [ 66 rtems_target=$target;67 case "$target" in68 no_cpu*) target=$host;;69 *) ;;70 esac71 66 AC_CANONICAL_SYSTEM 72 67 AC_MSG_CHECKING(rtems target cpu) 73 68 changequote(,)dnl 74 case "${ rtems_target}" in69 case "${target}" in 75 70 # hpux unix port should go here 76 71 i[3456]86-go32-rtems*) … … 90 85 ;; 91 86 *) 92 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`87 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 93 88 ;; 94 89 esac -
c/src/lib/libbsp/unix/posix/tools/configure
r1407343 r8c92fa3 577 577 578 578 579 rtems_target=$target;580 case "$target" in581 no_cpu*) target=$host;;582 *) ;;583 esac584 579 585 580 # Do some error checking and defaulting for the host and target type. … … 610 605 611 606 echo $ac_n "checking host system type""... $ac_c" 1>&6 612 echo "configure:6 13: checking host system type" >&5607 echo "configure:608: checking host system type" >&5 613 608 614 609 host_alias=$host … … 631 626 632 627 echo $ac_n "checking target system type""... $ac_c" 1>&6 633 echo "configure:6 34: checking target system type" >&5628 echo "configure:629: checking target system type" >&5 634 629 635 630 target_alias=$target … … 649 644 650 645 echo $ac_n "checking build system type""... $ac_c" 1>&6 651 echo "configure:6 52: checking build system type" >&5646 echo "configure:647: checking build system type" >&5 652 647 653 648 build_alias=$build … … 672 667 673 668 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 674 echo "configure:67 5: checking rtems target cpu" >&5675 case "${ rtems_target}" in669 echo "configure:670: checking rtems target cpu" >&5 670 case "${target}" in 676 671 # hpux unix port should go here 677 672 i[3456]86-go32-rtems*) … … 691 686 ;; 692 687 *) 693 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`688 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 694 689 ;; 695 690 esac … … 710 705 # ./install, which can be erroneously created by make from ./install.sh. 711 706 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 712 echo "configure:7 13: checking for a BSD compatible install" >&5707 echo "configure:708: checking for a BSD compatible install" >&5 713 708 if test -z "$INSTALL"; then 714 709 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 763 758 764 759 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 765 echo "configure:76 6: checking whether build environment is sane" >&5760 echo "configure:761: checking whether build environment is sane" >&5 766 761 # Just in case 767 762 sleep 1 … … 820 815 821 816 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 822 echo "configure:8 23: checking whether ${MAKE-make} sets \${MAKE}" >&5817 echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5 823 818 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 824 819 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 859 854 missing_dir=`cd $ac_aux_dir && pwd` 860 855 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 861 echo "configure:8 62: checking for working aclocal" >&5856 echo "configure:857: checking for working aclocal" >&5 862 857 # Run test in a subshell; some versions of sh will print an error if 863 858 # an executable is not found, even if stderr is redirected. … … 872 867 873 868 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 874 echo "configure:87 5: checking for working autoconf" >&5869 echo "configure:870: checking for working autoconf" >&5 875 870 # Run test in a subshell; some versions of sh will print an error if 876 871 # an executable is not found, even if stderr is redirected. … … 885 880 886 881 echo $ac_n "checking for working automake""... $ac_c" 1>&6 887 echo "configure:88 8: checking for working automake" >&5882 echo "configure:883: checking for working automake" >&5 888 883 # Run test in a subshell; some versions of sh will print an error if 889 884 # an executable is not found, even if stderr is redirected. … … 898 893 899 894 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 900 echo "configure: 901: checking for working autoheader" >&5895 echo "configure:896: checking for working autoheader" >&5 901 896 # Run test in a subshell; some versions of sh will print an error if 902 897 # an executable is not found, even if stderr is redirected. … … 911 906 912 907 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 913 echo "configure:9 14: checking for working makeinfo" >&5908 echo "configure:909: checking for working makeinfo" >&5 914 909 # Run test in a subshell; some versions of sh will print an error if 915 910 # an executable is not found, even if stderr is redirected. … … 931 926 set dummy $ac_prog; ac_word=$2 932 927 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 933 echo "configure:9 34: checking for $ac_word" >&5928 echo "configure:929: checking for $ac_word" >&5 934 929 if eval "test \"`echo '$''{'ac_cv_path_KSH'+set}'`\" = set"; then 935 930 echo $ac_n "(cached) $ac_c" 1>&6 … … 976 971 set dummy perl; ac_word=$2 977 972 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 978 echo "configure:97 9: checking for $ac_word" >&5973 echo "configure:974: checking for $ac_word" >&5 979 974 if eval "test \"`echo '$''{'ac_cv_path_PERL'+set}'`\" = set"; then 980 975 echo $ac_n "(cached) $ac_c" 1>&6 -
c/src/tests/tools/generic/aclocal.m4
r1407343 r8c92fa3 64 64 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 65 65 [ 66 rtems_target=$target;67 case "$target" in68 no_cpu*) target=$host;;69 *) ;;70 esac71 66 AC_CANONICAL_SYSTEM 72 67 AC_MSG_CHECKING(rtems target cpu) 73 68 changequote(,)dnl 74 case "${ rtems_target}" in69 case "${target}" in 75 70 # hpux unix port should go here 76 71 i[3456]86-go32-rtems*) … … 90 85 ;; 91 86 *) 92 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`87 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 93 88 ;; 94 89 esac -
c/src/tests/tools/generic/configure
r1407343 r8c92fa3 577 577 578 578 579 rtems_target=$target;580 case "$target" in581 no_cpu*) target=$host;;582 *) ;;583 esac584 579 585 580 # Do some error checking and defaulting for the host and target type. … … 610 605 611 606 echo $ac_n "checking host system type""... $ac_c" 1>&6 612 echo "configure:6 13: checking host system type" >&5607 echo "configure:608: checking host system type" >&5 613 608 614 609 host_alias=$host … … 631 626 632 627 echo $ac_n "checking target system type""... $ac_c" 1>&6 633 echo "configure:6 34: checking target system type" >&5628 echo "configure:629: checking target system type" >&5 634 629 635 630 target_alias=$target … … 649 644 650 645 echo $ac_n "checking build system type""... $ac_c" 1>&6 651 echo "configure:6 52: checking build system type" >&5646 echo "configure:647: checking build system type" >&5 652 647 653 648 build_alias=$build … … 672 667 673 668 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 674 echo "configure:67 5: checking rtems target cpu" >&5675 case "${ rtems_target}" in669 echo "configure:670: checking rtems target cpu" >&5 670 case "${target}" in 676 671 # hpux unix port should go here 677 672 i[3456]86-go32-rtems*) … … 691 686 ;; 692 687 *) 693 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`688 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 694 689 ;; 695 690 esac … … 710 705 # ./install, which can be erroneously created by make from ./install.sh. 711 706 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 712 echo "configure:7 13: checking for a BSD compatible install" >&5707 echo "configure:708: checking for a BSD compatible install" >&5 713 708 if test -z "$INSTALL"; then 714 709 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 763 758 764 759 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 765 echo "configure:76 6: checking whether build environment is sane" >&5760 echo "configure:761: checking whether build environment is sane" >&5 766 761 # Just in case 767 762 sleep 1 … … 820 815 821 816 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 822 echo "configure:8 23: checking whether ${MAKE-make} sets \${MAKE}" >&5817 echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5 823 818 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 824 819 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 859 854 missing_dir=`cd $ac_aux_dir && pwd` 860 855 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 861 echo "configure:8 62: checking for working aclocal" >&5856 echo "configure:857: checking for working aclocal" >&5 862 857 # Run test in a subshell; some versions of sh will print an error if 863 858 # an executable is not found, even if stderr is redirected. … … 872 867 873 868 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 874 echo "configure:87 5: checking for working autoconf" >&5869 echo "configure:870: checking for working autoconf" >&5 875 870 # Run test in a subshell; some versions of sh will print an error if 876 871 # an executable is not found, even if stderr is redirected. … … 885 880 886 881 echo $ac_n "checking for working automake""... $ac_c" 1>&6 887 echo "configure:88 8: checking for working automake" >&5882 echo "configure:883: checking for working automake" >&5 888 883 # Run test in a subshell; some versions of sh will print an error if 889 884 # an executable is not found, even if stderr is redirected. … … 898 893 899 894 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 900 echo "configure: 901: checking for working autoheader" >&5895 echo "configure:896: checking for working autoheader" >&5 901 896 # Run test in a subshell; some versions of sh will print an error if 902 897 # an executable is not found, even if stderr is redirected. … … 911 906 912 907 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 913 echo "configure:9 14: checking for working makeinfo" >&5908 echo "configure:909: checking for working makeinfo" >&5 914 909 # Run test in a subshell; some versions of sh will print an error if 915 910 # an executable is not found, even if stderr is redirected. … … 931 926 set dummy $ac_prog; ac_word=$2 932 927 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 933 echo "configure:9 34: checking for $ac_word" >&5928 echo "configure:929: checking for $ac_word" >&5 934 929 if eval "test \"`echo '$''{'ac_cv_path_KSH'+set}'`\" = set"; then 935 930 echo $ac_n "(cached) $ac_c" 1>&6 -
configure
r1407343 r8c92fa3 647 647 648 648 649 rtems_target=$target;650 case "$target" in651 no_cpu*) target=$host;;652 *) ;;653 esac654 649 655 650 # Do some error checking and defaulting for the host and target type. … … 680 675 681 676 echo $ac_n "checking host system type""... $ac_c" 1>&6 682 echo "configure:6 83: checking host system type" >&5677 echo "configure:678: checking host system type" >&5 683 678 684 679 host_alias=$host … … 701 696 702 697 echo $ac_n "checking target system type""... $ac_c" 1>&6 703 echo "configure: 704: checking target system type" >&5698 echo "configure:699: checking target system type" >&5 704 699 705 700 target_alias=$target … … 719 714 720 715 echo $ac_n "checking build system type""... $ac_c" 1>&6 721 echo "configure:7 22: checking build system type" >&5716 echo "configure:717: checking build system type" >&5 722 717 723 718 build_alias=$build … … 742 737 743 738 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 744 echo "configure:74 5: checking rtems target cpu" >&5745 case "${ rtems_target}" in739 echo "configure:740: checking rtems target cpu" >&5 740 case "${target}" in 746 741 # hpux unix port should go here 747 742 i[3456]86-go32-rtems*) … … 761 756 ;; 762 757 *) 763 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`758 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 764 759 ;; 765 760 esac … … 928 923 set dummy cat; ac_word=$2 929 924 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 930 echo "configure:9 31: checking for $ac_word" >&5925 echo "configure:926: checking for $ac_word" >&5 931 926 if eval "test \"`echo '$''{'ac_cv_path_CAT'+set}'`\" = set"; then 932 927 echo $ac_n "(cached) $ac_c" 1>&6 … … 963 958 set dummy rm; ac_word=$2 964 959 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 965 echo "configure:96 6: checking for $ac_word" >&5960 echo "configure:961: checking for $ac_word" >&5 966 961 if eval "test \"`echo '$''{'ac_cv_path_RM'+set}'`\" = set"; then 967 962 echo $ac_n "(cached) $ac_c" 1>&6 … … 998 993 set dummy cp; ac_word=$2 999 994 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1000 echo "configure: 1001: checking for $ac_word" >&5995 echo "configure:996: checking for $ac_word" >&5 1001 996 if eval "test \"`echo '$''{'ac_cv_path_CP'+set}'`\" = set"; then 1002 997 echo $ac_n "(cached) $ac_c" 1>&6 … … 1033 1028 set dummy mv; ac_word=$2 1034 1029 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1035 echo "configure:103 6: checking for $ac_word" >&51030 echo "configure:1031: checking for $ac_word" >&5 1036 1031 if eval "test \"`echo '$''{'ac_cv_path_MV'+set}'`\" = set"; then 1037 1032 echo $ac_n "(cached) $ac_c" 1>&6 … … 1068 1063 set dummy ln; ac_word=$2 1069 1064 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1070 echo "configure:10 71: checking for $ac_word" >&51065 echo "configure:1066: checking for $ac_word" >&5 1071 1066 if eval "test \"`echo '$''{'ac_cv_path_LN'+set}'`\" = set"; then 1072 1067 echo $ac_n "(cached) $ac_c" 1>&6 … … 1101 1096 1102 1097 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 1103 echo "configure:1 104: checking whether ln -s works" >&51098 echo "configure:1099: checking whether ln -s works" >&5 1104 1099 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then 1105 1100 echo $ac_n "(cached) $ac_c" 1>&6 … … 1124 1119 set dummy chmod; ac_word=$2 1125 1120 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1126 echo "configure:112 7: checking for $ac_word" >&51121 echo "configure:1122: checking for $ac_word" >&5 1127 1122 if eval "test \"`echo '$''{'ac_cv_path_CHMOD'+set}'`\" = set"; then 1128 1123 echo $ac_n "(cached) $ac_c" 1>&6 … … 1159 1154 set dummy sort; ac_word=$2 1160 1155 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1161 echo "configure:11 62: checking for $ac_word" >&51156 echo "configure:1157: checking for $ac_word" >&5 1162 1157 if eval "test \"`echo '$''{'ac_cv_path_SORT'+set}'`\" = set"; then 1163 1158 echo $ac_n "(cached) $ac_c" 1>&6 … … 1203 1198 # ./install, which can be erroneously created by make from ./install.sh. 1204 1199 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 1205 echo "configure:120 6: checking for a BSD compatible install" >&51200 echo "configure:1201: checking for a BSD compatible install" >&5 1206 1201 if test -z "$INSTALL"; then 1207 1202 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 1259 1254 set dummy perl; ac_word=$2 1260 1255 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1261 echo "configure:12 62: checking for $ac_word" >&51256 echo "configure:1257: checking for $ac_word" >&5 1262 1257 if eval "test \"`echo '$''{'ac_cv_path_PERL'+set}'`\" = set"; then 1263 1258 echo $ac_n "(cached) $ac_c" 1>&6 … … 1301 1296 set dummy touch; ac_word=$2 1302 1297 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1303 echo "configure:1 304: checking for $ac_word" >&51298 echo "configure:1299: checking for $ac_word" >&5 1304 1299 if eval "test \"`echo '$''{'ac_cv_path_TOUCH'+set}'`\" = set"; then 1305 1300 echo $ac_n "(cached) $ac_c" 1>&6 … … 1336 1331 set dummy cmp; ac_word=$2 1337 1332 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1338 echo "configure:133 9: checking for $ac_word" >&51333 echo "configure:1334: checking for $ac_word" >&5 1339 1334 if eval "test \"`echo '$''{'ac_cv_path_CMP'+set}'`\" = set"; then 1340 1335 echo $ac_n "(cached) $ac_c" 1>&6 … … 1372 1367 set dummy sed; ac_word=$2 1373 1368 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1374 echo "configure:137 5: checking for $ac_word" >&51369 echo "configure:1370: checking for $ac_word" >&5 1375 1370 if eval "test \"`echo '$''{'ac_cv_path_SED'+set}'`\" = set"; then 1376 1371 echo $ac_n "(cached) $ac_c" 1>&6 … … 1409 1404 set dummy $ac_prog; ac_word=$2 1410 1405 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1411 echo "configure:14 12: checking for $ac_word" >&51406 echo "configure:1407: checking for $ac_word" >&5 1412 1407 if eval "test \"`echo '$''{'ac_cv_path_M4'+set}'`\" = set"; then 1413 1408 echo $ac_n "(cached) $ac_c" 1>&6 … … 1451 1446 set dummy $ac_prog; ac_word=$2 1452 1447 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1453 echo "configure:14 54: checking for $ac_word" >&51448 echo "configure:1449: checking for $ac_word" >&5 1454 1449 if eval "test \"`echo '$''{'ac_cv_path_KSH'+set}'`\" = set"; then 1455 1450 echo $ac_n "(cached) $ac_c" 1>&6 … … 1501 1496 # Is this a supported CPU? 1502 1497 echo $ac_n "checking if cpu $RTEMS_CPU is supported""... $ac_c" 1>&6 1503 echo "configure:1 504: checking if cpu $RTEMS_CPU is supported" >&51498 echo "configure:1499: checking if cpu $RTEMS_CPU is supported" >&5 1504 1499 if test -d "$srcdir/$RTEMS_TOPdir/c/src/exec/score/cpu/$RTEMS_CPU"; then 1505 1500 echo "$ac_t""yes" 1>&6 … … 1563 1558 set dummy $ac_prog; ac_word=$2 1564 1559 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1565 echo "configure:156 6: checking for $ac_word" >&51560 echo "configure:1561: checking for $ac_word" >&5 1566 1561 if eval "test \"`echo '$''{'ac_cv_path_CC_FOR_TARGET'+set}'`\" = set"; then 1567 1562 echo $ac_n "(cached) $ac_c" 1>&6 … … 1607 1602 1608 1603 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1609 echo "configure:16 10: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&51604 echo "configure:1605: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 1610 1605 1611 1606 ac_ext=c … … 1618 1613 cat > conftest.$ac_ext << EOF 1619 1614 1620 #line 16 21"configure"1615 #line 1616 "configure" 1621 1616 #include "confdefs.h" 1622 1617 1623 1618 main(){return(0);} 1624 1619 EOF 1625 if { (eval echo configure:162 6: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1620 if { (eval echo configure:1621: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1626 1621 ac_cv_prog_cc_works=yes 1627 1622 # If we can't run a trivial program, we are probably using a cross compiler. … … 1649 1644 fi 1650 1645 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1651 echo "configure:16 52: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&51646 echo "configure:1647: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 1652 1647 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 1653 1648 cross_compiling=$ac_cv_prog_cc_cross 1654 1649 1655 1650 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 1656 echo "configure:165 7: checking whether we are using GNU C" >&51651 echo "configure:1652: checking whether we are using GNU C" >&5 1657 1652 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 1658 1653 echo $ac_n "(cached) $ac_c" 1>&6 … … 1663 1658 #endif 1664 1659 EOF 1665 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:166 6: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1660 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1661: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1666 1661 ac_cv_prog_gcc=yes 1667 1662 else … … 1678 1673 CFLAGS= 1679 1674 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 1680 echo "configure:16 81: checking whether ${CC-cc} accepts -g" >&51675 echo "configure:1676: checking whether ${CC-cc} accepts -g" >&5 1681 1676 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 1682 1677 echo $ac_n "(cached) $ac_c" 1>&6 … … 1720 1715 1721 1716 echo $ac_n "checking whether $CC_FOR_TARGET accepts -specs""... $ac_c" 1>&6 1722 echo "configure:17 23: checking whether $CC_FOR_TARGET accepts -specs" >&51717 echo "configure:1718: checking whether $CC_FOR_TARGET accepts -specs" >&5 1723 1718 if eval "test \"`echo '$''{'rtems_cv_gcc_specs'+set}'`\" = set"; then 1724 1719 echo $ac_n "(cached) $ac_c" 1>&6 … … 1741 1736 1742 1737 echo $ac_n "checking whether $CC_FOR_TARGET accepts --pipe""... $ac_c" 1>&6 1743 echo "configure:17 44: checking whether $CC_FOR_TARGET accepts --pipe" >&51738 echo "configure:1739: checking whether $CC_FOR_TARGET accepts --pipe" >&5 1744 1739 if eval "test \"`echo '$''{'rtems_cv_gcc_pipe'+set}'`\" = set"; then 1745 1740 echo $ac_n "(cached) $ac_c" 1>&6 … … 1782 1777 set dummy $ac_prog; ac_word=$2 1783 1778 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1784 echo "configure:178 5: checking for $ac_word" >&51779 echo "configure:1780: checking for $ac_word" >&5 1785 1780 if eval "test \"`echo '$''{'ac_cv_path_CXX_FOR_TARGET'+set}'`\" = set"; then 1786 1781 echo $ac_n "(cached) $ac_c" 1>&6 … … 1826 1821 1827 1822 echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1828 echo "configure:182 9: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&51823 echo "configure:1824: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5 1829 1824 1830 1825 ac_ext=C … … 1837 1832 cat > conftest.$ac_ext << EOF 1838 1833 1839 #line 18 40"configure"1834 #line 1835 "configure" 1840 1835 #include "confdefs.h" 1841 1836 1842 1837 int main(){return(0);} 1843 1838 EOF 1844 if { (eval echo configure:184 5: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1839 if { (eval echo configure:1840: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1845 1840 ac_cv_prog_cxx_works=yes 1846 1841 # If we can't run a trivial program, we are probably using a cross compiler. … … 1868 1863 fi 1869 1864 echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1870 echo "configure:18 71: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&51865 echo "configure:1866: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5 1871 1866 echo "$ac_t""$ac_cv_prog_cxx_cross" 1>&6 1872 1867 cross_compiling=$ac_cv_prog_cxx_cross 1873 1868 1874 1869 echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6 1875 echo "configure:187 6: checking whether we are using GNU C++" >&51870 echo "configure:1871: checking whether we are using GNU C++" >&5 1876 1871 if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then 1877 1872 echo $ac_n "(cached) $ac_c" 1>&6 … … 1882 1877 #endif 1883 1878 EOF 1884 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:188 5: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1879 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1880: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1885 1880 ac_cv_prog_gxx=yes 1886 1881 else … … 1897 1892 CXXFLAGS= 1898 1893 echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6 1899 echo "configure:1 900: checking whether ${CXX-g++} accepts -g" >&51894 echo "configure:1895: checking whether ${CXX-g++} accepts -g" >&5 1900 1895 if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then 1901 1896 echo $ac_n "(cached) $ac_c" 1>&6 … … 1951 1946 1952 1947 echo $ac_n "checking target's ar""... $ac_c" 1>&6 1953 echo "configure:19 54: checking target's ar" >&51948 echo "configure:1949: checking target's ar" >&5 1954 1949 if eval "test \"`echo '$''{'ac_cv_path_AR_FOR_TARGET'+set}'`\" = set"; then 1955 1950 echo $ac_n "(cached) $ac_c" 1>&6 … … 1984 1979 # intends 1985 1980 echo $ac_n "checking whether environment variable AR_FOR_TARGET is an absolute path""... $ac_c" 1>&6 1986 echo "configure:198 7: checking whether environment variable AR_FOR_TARGET is an absolute path" >&51981 echo "configure:1982: checking whether environment variable AR_FOR_TARGET is an absolute path" >&5 1987 1982 case "$AR_FOR_TARGET" in 1988 1983 /*) # valid … … 2001 1996 set dummy "$program_prefix"ar; ac_word=$2 2002 1997 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2003 echo "configure: 2004: checking for $ac_word" >&51998 echo "configure:1999: checking for $ac_word" >&5 2004 1999 if eval "test \"`echo '$''{'ac_cv_path_AR_FOR_TARGET'+set}'`\" = set"; then 2005 2000 echo $ac_n "(cached) $ac_c" 1>&6 … … 2038 2033 2039 2034 echo $ac_n "checking target's as""... $ac_c" 1>&6 2040 echo "configure:20 41: checking target's as" >&52035 echo "configure:2036: checking target's as" >&5 2041 2036 if eval "test \"`echo '$''{'ac_cv_path_AS_FOR_TARGET'+set}'`\" = set"; then 2042 2037 echo $ac_n "(cached) $ac_c" 1>&6 … … 2071 2066 # intends 2072 2067 echo $ac_n "checking whether environment variable AS_FOR_TARGET is an absolute path""... $ac_c" 1>&6 2073 echo "configure:20 74: checking whether environment variable AS_FOR_TARGET is an absolute path" >&52068 echo "configure:2069: checking whether environment variable AS_FOR_TARGET is an absolute path" >&5 2074 2069 case "$AS_FOR_TARGET" in 2075 2070 /*) # valid … … 2088 2083 set dummy "$program_prefix"as; ac_word=$2 2089 2084 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2090 echo "configure:20 91: checking for $ac_word" >&52085 echo "configure:2086: checking for $ac_word" >&5 2091 2086 if eval "test \"`echo '$''{'ac_cv_path_AS_FOR_TARGET'+set}'`\" = set"; then 2092 2087 echo $ac_n "(cached) $ac_c" 1>&6 … … 2125 2120 2126 2121 echo $ac_n "checking target's ld""... $ac_c" 1>&6 2127 echo "configure:212 8: checking target's ld" >&52122 echo "configure:2123: checking target's ld" >&5 2128 2123 if eval "test \"`echo '$''{'ac_cv_path_LD_FOR_TARGET'+set}'`\" = set"; then 2129 2124 echo $ac_n "(cached) $ac_c" 1>&6 … … 2158 2153 # intends 2159 2154 echo $ac_n "checking whether environment variable LD_FOR_TARGET is an absolute path""... $ac_c" 1>&6 2160 echo "configure:21 61: checking whether environment variable LD_FOR_TARGET is an absolute path" >&52155 echo "configure:2156: checking whether environment variable LD_FOR_TARGET is an absolute path" >&5 2161 2156 case "$LD_FOR_TARGET" in 2162 2157 /*) # valid … … 2175 2170 set dummy "$program_prefix"ld; ac_word=$2 2176 2171 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2177 echo "configure:217 8: checking for $ac_word" >&52172 echo "configure:2173: checking for $ac_word" >&5 2178 2173 if eval "test \"`echo '$''{'ac_cv_path_LD_FOR_TARGET'+set}'`\" = set"; then 2179 2174 echo $ac_n "(cached) $ac_c" 1>&6 … … 2212 2207 2213 2208 echo $ac_n "checking target's nm""... $ac_c" 1>&6 2214 echo "configure:221 5: checking target's nm" >&52209 echo "configure:2210: checking target's nm" >&5 2215 2210 if eval "test \"`echo '$''{'ac_cv_path_NM_FOR_TARGET'+set}'`\" = set"; then 2216 2211 echo $ac_n "(cached) $ac_c" 1>&6 … … 2245 2240 # intends 2246 2241 echo $ac_n "checking whether environment variable NM_FOR_TARGET is an absolute path""... $ac_c" 1>&6 2247 echo "configure:224 8: checking whether environment variable NM_FOR_TARGET is an absolute path" >&52242 echo "configure:2243: checking whether environment variable NM_FOR_TARGET is an absolute path" >&5 2248 2243 case "$NM_FOR_TARGET" in 2249 2244 /*) # valid … … 2262 2257 set dummy "$program_prefix"nm; ac_word=$2 2263 2258 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2264 echo "configure:226 5: checking for $ac_word" >&52259 echo "configure:2260: checking for $ac_word" >&5 2265 2260 if eval "test \"`echo '$''{'ac_cv_path_NM_FOR_TARGET'+set}'`\" = set"; then 2266 2261 echo $ac_n "(cached) $ac_c" 1>&6 … … 2300 2295 2301 2296 echo $ac_n "checking target's ranlib""... $ac_c" 1>&6 2302 echo "configure:2 303: checking target's ranlib" >&52297 echo "configure:2298: checking target's ranlib" >&5 2303 2298 if eval "test \"`echo '$''{'ac_cv_path_RANLIB_FOR_TARGET'+set}'`\" = set"; then 2304 2299 echo $ac_n "(cached) $ac_c" 1>&6 … … 2333 2328 # intends 2334 2329 echo $ac_n "checking whether environment variable RANLIB_FOR_TARGET is an absolute path""... $ac_c" 1>&6 2335 echo "configure:233 6: checking whether environment variable RANLIB_FOR_TARGET is an absolute path" >&52330 echo "configure:2331: checking whether environment variable RANLIB_FOR_TARGET is an absolute path" >&5 2336 2331 case "$RANLIB_FOR_TARGET" in 2337 2332 /*) # valid … … 2350 2345 set dummy "$program_prefix"ranlib; ac_word=$2 2351 2346 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2352 echo "configure:23 53: checking for $ac_word" >&52347 echo "configure:2348: checking for $ac_word" >&5 2353 2348 if eval "test \"`echo '$''{'ac_cv_path_RANLIB_FOR_TARGET'+set}'`\" = set"; then 2354 2349 echo $ac_n "(cached) $ac_c" 1>&6 … … 2389 2384 2390 2385 echo $ac_n "checking whether $AR_FOR_TARGET -s works""... $ac_c" 1>&6 2391 echo "configure:23 92: checking whether $AR_FOR_TARGET -s works" >&52386 echo "configure:2387: checking whether $AR_FOR_TARGET -s works" >&5 2392 2387 if eval "test \"`echo '$''{'rtems_cv_AR_FOR_TARGET_S'+set}'`\" = set"; then 2393 2388 echo $ac_n "(cached) $ac_c" 1>&6 … … 2398 2393 { return b; } 2399 2394 EOF 2400 if { ac_try='$CC_FOR_TARGET -o conftest.o -c conftest.$ac_ext'; { (eval echo configure:2 401: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } \2401 && { ac_try='$AR_FOR_TARGET -sr conftest.a conftest.o'; { (eval echo configure:2 402: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } \2395 if { ac_try='$CC_FOR_TARGET -o conftest.o -c conftest.$ac_ext'; { (eval echo configure:2396: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } \ 2396 && { ac_try='$AR_FOR_TARGET -sr conftest.a conftest.o'; { (eval echo configure:2397: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } \ 2402 2397 && test -s conftest.a ; \ 2403 2398 then … … 2424 2419 2425 2420 echo $ac_n "checking target's objcopy""... $ac_c" 1>&6 2426 echo "configure:242 7: checking target's objcopy" >&52421 echo "configure:2422: checking target's objcopy" >&5 2427 2422 if eval "test \"`echo '$''{'ac_cv_path_OBJCOPY_FOR_TARGET'+set}'`\" = set"; then 2428 2423 echo $ac_n "(cached) $ac_c" 1>&6 … … 2457 2452 # intends 2458 2453 echo $ac_n "checking whether environment variable OBJCOPY_FOR_TARGET is an absolute path""... $ac_c" 1>&6 2459 echo "configure:24 60: checking whether environment variable OBJCOPY_FOR_TARGET is an absolute path" >&52454 echo "configure:2455: checking whether environment variable OBJCOPY_FOR_TARGET is an absolute path" >&5 2460 2455 case "$OBJCOPY_FOR_TARGET" in 2461 2456 /*) # valid … … 2474 2469 set dummy "$program_prefix"objcopy; ac_word=$2 2475 2470 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2476 echo "configure:247 7: checking for $ac_word" >&52471 echo "configure:2472: checking for $ac_word" >&5 2477 2472 if eval "test \"`echo '$''{'ac_cv_path_OBJCOPY_FOR_TARGET'+set}'`\" = set"; then 2478 2473 echo $ac_n "(cached) $ac_c" 1>&6 … … 2511 2506 2512 2507 echo $ac_n "checking target's size""... $ac_c" 1>&6 2513 echo "configure:25 14: checking target's size" >&52508 echo "configure:2509: checking target's size" >&5 2514 2509 if eval "test \"`echo '$''{'ac_cv_path_SIZE_FOR_TARGET'+set}'`\" = set"; then 2515 2510 echo $ac_n "(cached) $ac_c" 1>&6 … … 2544 2539 # intends 2545 2540 echo $ac_n "checking whether environment variable SIZE_FOR_TARGET is an absolute path""... $ac_c" 1>&6 2546 echo "configure:254 7: checking whether environment variable SIZE_FOR_TARGET is an absolute path" >&52541 echo "configure:2542: checking whether environment variable SIZE_FOR_TARGET is an absolute path" >&5 2547 2542 case "$SIZE_FOR_TARGET" in 2548 2543 /*) # valid … … 2561 2556 set dummy "$program_prefix"size; ac_word=$2 2562 2557 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2563 echo "configure:25 64: checking for $ac_word" >&52558 echo "configure:2559: checking for $ac_word" >&5 2564 2559 if eval "test \"`echo '$''{'ac_cv_path_SIZE_FOR_TARGET'+set}'`\" = set"; then 2565 2560 echo $ac_n "(cached) $ac_c" 1>&6 … … 2598 2593 2599 2594 echo $ac_n "checking target's strip""... $ac_c" 1>&6 2600 echo "configure:2 601: checking target's strip" >&52595 echo "configure:2596: checking target's strip" >&5 2601 2596 if eval "test \"`echo '$''{'ac_cv_path_STRIP_FOR_TARGET'+set}'`\" = set"; then 2602 2597 echo $ac_n "(cached) $ac_c" 1>&6 … … 2631 2626 # intends 2632 2627 echo $ac_n "checking whether environment variable STRIP_FOR_TARGET is an absolute path""... $ac_c" 1>&6 2633 echo "configure:26 34: checking whether environment variable STRIP_FOR_TARGET is an absolute path" >&52628 echo "configure:2629: checking whether environment variable STRIP_FOR_TARGET is an absolute path" >&5 2634 2629 case "$STRIP_FOR_TARGET" in 2635 2630 /*) # valid … … 2648 2643 set dummy "$program_prefix"strip; ac_word=$2 2649 2644 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2650 echo "configure:26 51: checking for $ac_word" >&52645 echo "configure:2646: checking for $ac_word" >&5 2651 2646 if eval "test \"`echo '$''{'ac_cv_path_STRIP_FOR_TARGET'+set}'`\" = set"; then 2652 2647 echo $ac_n "(cached) $ac_c" 1>&6 … … 2687 2682 if test "${target_cpu}" = "i386"; then 2688 2683 echo $ac_n "checking for 16 bit mode assembler support""... $ac_c" 1>&6 2689 echo "configure:26 90: checking for 16 bit mode assembler support" >&52684 echo "configure:2685: checking for 16 bit mode assembler support" >&5 2690 2685 if eval "test \"`echo '$''{'rtems_cv_prog_gas_code16'+set}'`\" = set"; then 2691 2686 echo $ac_n "(cached) $ac_c" 1>&6 … … 2697 2692 lgdt 0 2698 2693 EOF 2699 if { ac_try='$AS_FOR_TARGET -o conftest.o conftest.s'; { (eval echo configure:2 700: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then2694 if { ac_try='$AS_FOR_TARGET -o conftest.o conftest.s'; { (eval echo configure:2695: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then 2700 2695 rtems_cv_prog_gas_code16=yes 2701 2696 else … … 2713 2708 set dummy gcc; ac_word=$2 2714 2709 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2715 echo "configure:271 6: checking for $ac_word" >&52710 echo "configure:2711: checking for $ac_word" >&5 2716 2711 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2717 2712 echo $ac_n "(cached) $ac_c" 1>&6 … … 2743 2738 set dummy cc; ac_word=$2 2744 2739 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2745 echo "configure:274 6: checking for $ac_word" >&52740 echo "configure:2741: checking for $ac_word" >&5 2746 2741 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2747 2742 echo $ac_n "(cached) $ac_c" 1>&6 … … 2794 2789 set dummy cl; ac_word=$2 2795 2790 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2796 echo "configure:279 7: checking for $ac_word" >&52791 echo "configure:2792: checking for $ac_word" >&5 2797 2792 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2798 2793 echo $ac_n "(cached) $ac_c" 1>&6 … … 2826 2821 2827 2822 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 2828 echo "configure:282 9: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&52823 echo "configure:2824: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 2829 2824 2830 2825 ac_ext=c … … 2837 2832 cat > conftest.$ac_ext << EOF 2838 2833 2839 #line 28 40"configure"2834 #line 2835 "configure" 2840 2835 #include "confdefs.h" 2841 2836 2842 2837 main(){return(0);} 2843 2838 EOF 2844 if { (eval echo configure:284 5: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2839 if { (eval echo configure:2840: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2845 2840 ac_cv_prog_cc_works=yes 2846 2841 # If we can't run a trivial program, we are probably using a cross compiler. … … 2868 2863 fi 2869 2864 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 2870 echo "configure:28 71: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&52865 echo "configure:2866: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 2871 2866 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 2872 2867 cross_compiling=$ac_cv_prog_cc_cross 2873 2868 2874 2869 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 2875 echo "configure:287 6: checking whether we are using GNU C" >&52870 echo "configure:2871: checking whether we are using GNU C" >&5 2876 2871 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 2877 2872 echo $ac_n "(cached) $ac_c" 1>&6 … … 2882 2877 #endif 2883 2878 EOF 2884 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:288 5: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then2879 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2880: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 2885 2880 ac_cv_prog_gcc=yes 2886 2881 else … … 2901 2896 CFLAGS= 2902 2897 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 2903 echo "configure:2 904: checking whether ${CC-cc} accepts -g" >&52898 echo "configure:2899: checking whether ${CC-cc} accepts -g" >&5 2904 2899 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 2905 2900 echo $ac_n "(cached) $ac_c" 1>&6 … … 2933 2928 2934 2929 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 2935 echo "configure:293 6: checking for Cygwin environment" >&52930 echo "configure:2931: checking for Cygwin environment" >&5 2936 2931 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then 2937 2932 echo $ac_n "(cached) $ac_c" 1>&6 2938 2933 else 2939 2934 cat > conftest.$ac_ext <<EOF 2940 #line 29 41"configure"2935 #line 2936 "configure" 2941 2936 #include "confdefs.h" 2942 2937 … … 2949 2944 ; return 0; } 2950 2945 EOF 2951 if { (eval echo configure:29 52: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2946 if { (eval echo configure:2947: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2952 2947 rm -rf conftest* 2953 2948 ac_cv_cygwin=yes … … 2966 2961 test "$ac_cv_cygwin" = yes && CYGWIN=yes 2967 2962 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 2968 echo "configure:296 9: checking for mingw32 environment" >&52963 echo "configure:2964: checking for mingw32 environment" >&5 2969 2964 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then 2970 2965 echo $ac_n "(cached) $ac_c" 1>&6 2971 2966 else 2972 2967 cat > conftest.$ac_ext <<EOF 2973 #line 29 74"configure"2968 #line 2969 "configure" 2974 2969 #include "confdefs.h" 2975 2970 … … 2978 2973 ; return 0; } 2979 2974 EOF 2980 if { (eval echo configure:29 81: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2975 if { (eval echo configure:2976: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2981 2976 rm -rf conftest* 2982 2977 ac_cv_mingw32=yes … … 2997 2992 2998 2993 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 2999 echo "configure: 3000: checking for executable suffix" >&52994 echo "configure:2995: checking for executable suffix" >&5 3000 2995 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 3001 2996 echo $ac_n "(cached) $ac_c" 1>&6 … … 3007 3002 echo 'int main () { return 0; }' > conftest.$ac_ext 3008 3003 ac_cv_exeext= 3009 if { (eval echo configure:30 10: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then3004 if { (eval echo configure:3005: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 3010 3005 for file in conftest.*; do 3011 3006 case $file in … … 3046 3041 3047 3042 echo $ac_n "checking whether $RTEMS_HOST supports System V semaphores""... $ac_c" 1>&6 3048 echo "configure:304 9: checking whether $RTEMS_HOST supports System V semaphores" >&53043 echo "configure:3044: checking whether $RTEMS_HOST supports System V semaphores" >&5 3049 3044 if eval "test \"`echo '$''{'rtems_cv_sysv_sem'+set}'`\" = set"; then 3050 3045 echo $ac_n "(cached) $ac_c" 1>&6 … … 3055 3050 else 3056 3051 cat > conftest.$ac_ext <<EOF 3057 #line 305 8"configure"3052 #line 3053 "configure" 3058 3053 #include "confdefs.h" 3059 3054 … … 3081 3076 3082 3077 EOF 3083 if { (eval echo configure:30 84: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null3078 if { (eval echo configure:3079: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 3084 3079 then 3085 3080 rtems_cv_sysv_sem="yes" … … 3104 3099 3105 3100 echo $ac_n "checking whether $RTEMS_HOST supports System V shared memory""... $ac_c" 1>&6 3106 echo "configure:310 7: checking whether $RTEMS_HOST supports System V shared memory" >&53101 echo "configure:3102: checking whether $RTEMS_HOST supports System V shared memory" >&5 3107 3102 if eval "test \"`echo '$''{'rtems_cv_sysv_shm'+set}'`\" = set"; then 3108 3103 echo $ac_n "(cached) $ac_c" 1>&6 … … 3113 3108 else 3114 3109 cat > conftest.$ac_ext <<EOF 3115 #line 311 6"configure"3110 #line 3111 "configure" 3116 3111 #include "confdefs.h" 3117 3112 … … 3129 3124 3130 3125 EOF 3131 if { (eval echo configure:31 32: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null3126 if { (eval echo configure:3127: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 3132 3127 then 3133 3128 rtems_cv_sysv_shm="yes" … … 3152 3147 3153 3148 echo $ac_n "checking whether $RTEMS_HOST supports System V messages""... $ac_c" 1>&6 3154 echo "configure:315 5: checking whether $RTEMS_HOST supports System V messages" >&53149 echo "configure:3150: checking whether $RTEMS_HOST supports System V messages" >&5 3155 3150 if eval "test \"`echo '$''{'rtems_cv_sysv_msg'+set}'`\" = set"; then 3156 3151 echo $ac_n "(cached) $ac_c" 1>&6 … … 3161 3156 else 3162 3157 cat > conftest.$ac_ext <<EOF 3163 #line 31 64"configure"3158 #line 3159 "configure" 3164 3159 #include "confdefs.h" 3165 3160 … … 3177 3172 3178 3173 EOF 3179 if { (eval echo configure:31 80: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null3174 if { (eval echo configure:3175: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 3180 3175 then 3181 3176 rtems_cv_sysv_msg="yes" … … 3209 3204 3210 3205 echo $ac_n "checking for Makefile.in in c/src/exec/rtems""... $ac_c" 1>&6 3211 echo "configure:32 12: checking for Makefile.in in c/src/exec/rtems" >&53206 echo "configure:3207: checking for Makefile.in in c/src/exec/rtems" >&5 3212 3207 if test -d $srcdir/c/src/exec/rtems; then 3213 3208 rtems_av_save_dir=`pwd`; … … 3224 3219 3225 3220 echo $ac_n "checking for Makefile.in in c/src/exec/sapi""... $ac_c" 1>&6 3226 echo "configure:322 7: checking for Makefile.in in c/src/exec/sapi" >&53221 echo "configure:3222: checking for Makefile.in in c/src/exec/sapi" >&5 3227 3222 if test -d $srcdir/c/src/exec/sapi; then 3228 3223 rtems_av_save_dir=`pwd`; … … 3239 3234 3240 3235 echo $ac_n "checking for Makefile.in in c/src/exec/score/cpu/$RTEMS_CPU""... $ac_c" 1>&6 3241 echo "configure:32 42: checking for Makefile.in in c/src/exec/score/cpu/$RTEMS_CPU" >&53236 echo "configure:3237: checking for Makefile.in in c/src/exec/score/cpu/$RTEMS_CPU" >&5 3242 3237 if test -d $srcdir/c/src/exec/score/cpu/$RTEMS_CPU; then 3243 3238 rtems_av_save_dir=`pwd`; … … 3256 3251 3257 3252 echo $ac_n "checking for Makefile.in in c/src/exec/posix""... $ac_c" 1>&6 3258 echo "configure:325 9: checking for Makefile.in in c/src/exec/posix" >&53253 echo "configure:3254: checking for Makefile.in in c/src/exec/posix" >&5 3259 3254 if test -d $srcdir/c/src/exec/posix; then 3260 3255 rtems_av_save_dir=`pwd`; … … 3278 3273 if test -z "$rtems_bsp"; then 3279 3274 echo $ac_n "checking for bsps""... $ac_c" 1>&6 3280 echo "configure:32 81: checking for bsps" >&53275 echo "configure:3276: checking for bsps" >&5 3281 3276 files=`ls $srcdir/c/src/lib/libbsp/$RTEMS_CPU` 3282 3277 for file in $files; do … … 3343 3338 3344 3339 echo $ac_n "checking for Makefile.in in c/src/lib/libbsp/$bspcpudir$bspdir""... $ac_c" 1>&6 3345 echo "configure:334 6: checking for Makefile.in in c/src/lib/libbsp/$bspcpudir$bspdir" >&53340 echo "configure:3341: checking for Makefile.in in c/src/lib/libbsp/$bspcpudir$bspdir" >&5 3346 3341 if test -d $srcdir/c/src/lib/libbsp/$bspcpudir$bspdir; then 3347 3342 rtems_av_save_dir=`pwd`; … … 3358 3353 3359 3354 echo $ac_n "checking for Makefile.in in c/src/lib/libbsp/${bspcpudir}shared""... $ac_c" 1>&6 3360 echo "configure:33 61: checking for Makefile.in in c/src/lib/libbsp/${bspcpudir}shared" >&53355 echo "configure:3356: checking for Makefile.in in c/src/lib/libbsp/${bspcpudir}shared" >&5 3361 3356 if test -d $srcdir/c/src/lib/libbsp/${bspcpudir}shared; then 3362 3357 rtems_av_save_dir=`pwd`; … … 3388 3383 3389 3384 echo $ac_n "checking for Makefile.in in c/src/lib/libcpu/$RTEMS_CPU""... $ac_c" 1>&6 3390 echo "configure:33 91: checking for Makefile.in in c/src/lib/libcpu/$RTEMS_CPU" >&53385 echo "configure:3386: checking for Makefile.in in c/src/lib/libcpu/$RTEMS_CPU" >&5 3391 3386 if test -d $srcdir/c/src/lib/libcpu/$RTEMS_CPU; then 3392 3387 rtems_av_save_dir=`pwd`; … … 3405 3400 3406 3401 echo $ac_n "checking for Makefile.in in c/src/lib/start/$RTEMS_CPU""... $ac_c" 1>&6 3407 echo "configure:340 8: checking for Makefile.in in c/src/lib/start/$RTEMS_CPU" >&53402 echo "configure:3403: checking for Makefile.in in c/src/lib/start/$RTEMS_CPU" >&5 3408 3403 if test -d $srcdir/c/src/lib/start/$RTEMS_CPU; then 3409 3404 rtems_av_save_dir=`pwd`; … … 3434 3429 # If the TCP/IP stack is enabled, then find all TCP/IP Makefiles 3435 3430 echo $ac_n "checking if networking is enabled? ""... $ac_c" 1>&6 3436 echo "configure:343 7: checking if networking is enabled? " >&53431 echo "configure:3432: checking if networking is enabled? " >&5 3437 3432 echo "$ac_t""$RTEMS_HAS_NETWORKING" 1>&6 3438 3433 if test "$RTEMS_HAS_NETWORKING" = "yes"; then 3439 3434 3440 3435 echo $ac_n "checking for Makefile.in in c/src/lib/libnetworking""... $ac_c" 1>&6 3441 echo "configure:34 42: checking for Makefile.in in c/src/lib/libnetworking" >&53436 echo "configure:3437: checking for Makefile.in in c/src/lib/libnetworking" >&5 3442 3437 if test -d $srcdir/c/src/lib/libnetworking; then 3443 3438 rtems_av_save_dir=`pwd`; … … 3454 3449 3455 3450 echo $ac_n "checking for Makefile.in in c/src/lib/librpc""... $ac_c" 1>&6 3456 echo "configure:345 7: checking for Makefile.in in c/src/lib/librpc" >&53451 echo "configure:3452: checking for Makefile.in in c/src/lib/librpc" >&5 3457 3452 if test -d $srcdir/c/src/lib/librpc; then 3458 3453 rtems_av_save_dir=`pwd`; … … 3469 3464 if test "$RTEMS_HAS_RDBG" = "yes"; then 3470 3465 echo $ac_n "checking whether cpu supports rdbg? ""... $ac_c" 1>&6 3471 echo "configure:34 72: checking whether cpu supports rdbg? " >&53466 echo "configure:3467: checking whether cpu supports rdbg? " >&5 3472 3467 test ! -d "$srcdir/c/src/lib/librdbg/$RTEMS_CPU" && RTEMS_HAS_RDBG="no" ; 3473 3468 echo "$ac_t""$RTEMS_HAS_RDBG" 1>&6 … … 3476 3471 set dummy rpcgen; ac_word=$2 3477 3472 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3478 echo "configure:347 9: checking for $ac_word" >&53473 echo "configure:3474: checking for $ac_word" >&5 3479 3474 if eval "test \"`echo '$''{'ac_cv_path_RPCGEN'+set}'`\" = set"; then 3480 3475 echo $ac_n "(cached) $ac_c" 1>&6 … … 3516 3511 set dummy $ac_prog; ac_word=$2 3517 3512 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3518 echo "configure:351 9: checking for $ac_word" >&53513 echo "configure:3514: checking for $ac_word" >&5 3519 3514 if eval "test \"`echo '$''{'ac_cv_prog_AWK'+set}'`\" = set"; then 3520 3515 echo $ac_n "(cached) $ac_c" 1>&6 … … 3550 3545 3551 3546 echo $ac_n "checking for Makefile.in in c/src/lib/librdbg""... $ac_c" 1>&6 3552 echo "configure:35 53: checking for Makefile.in in c/src/lib/librdbg" >&53547 echo "configure:3548: checking for Makefile.in in c/src/lib/librdbg" >&5 3553 3548 if test -d $srcdir/c/src/lib/librdbg; then 3554 3549 rtems_av_save_dir=`pwd`; … … 3577 3572 # If the tests are enabled, then find all the test suite Makefiles 3578 3573 echo $ac_n "checking if the test suites are enabled? ""... $ac_c" 1>&6 3579 echo "configure:35 80: checking if the test suites are enabled? " >&53574 echo "configure:3575: checking if the test suites are enabled? " >&5 3580 3575 # Check whether --enable-tests or --disable-tests was given. 3581 3576 if test "${enable_tests+set}" = set; then … … 3598 3593 3599 3594 echo $ac_n "checking for Makefile.in in c/src/tests/libtests""... $ac_c" 1>&6 3600 echo "configure:3 601: checking for Makefile.in in c/src/tests/libtests" >&53595 echo "configure:3596: checking for Makefile.in in c/src/tests/libtests" >&5 3601 3596 if test -d $srcdir/c/src/tests/libtests; then 3602 3597 rtems_av_save_dir=`pwd`; … … 3613 3608 3614 3609 echo $ac_n "checking for Makefile.in in c/src/tests/sptests""... $ac_c" 1>&6 3615 echo "configure:361 6: checking for Makefile.in in c/src/tests/sptests" >&53610 echo "configure:3611: checking for Makefile.in in c/src/tests/sptests" >&5 3616 3611 if test -d $srcdir/c/src/tests/sptests; then 3617 3612 rtems_av_save_dir=`pwd`; … … 3628 3623 3629 3624 echo $ac_n "checking for Makefile.in in c/src/tests/tmtests""... $ac_c" 1>&6 3630 echo "configure:36 31: checking for Makefile.in in c/src/tests/tmtests" >&53625 echo "configure:3626: checking for Makefile.in in c/src/tests/tmtests" >&5 3631 3626 if test -d $srcdir/c/src/tests/tmtests; then 3632 3627 rtems_av_save_dir=`pwd`; … … 3644 3639 3645 3640 echo $ac_n "checking for Makefile.in in c/src/tests/mptests""... $ac_c" 1>&6 3646 echo "configure:364 7: checking for Makefile.in in c/src/tests/mptests" >&53641 echo "configure:3642: checking for Makefile.in in c/src/tests/mptests" >&5 3647 3642 if test -d $srcdir/c/src/tests/mptests; then 3648 3643 rtems_av_save_dir=`pwd`; … … 3661 3656 3662 3657 echo $ac_n "checking for Makefile.in in c/src/tests/psxtests""... $ac_c" 1>&6 3663 echo "configure:36 64: checking for Makefile.in in c/src/tests/psxtests" >&53658 echo "configure:3659: checking for Makefile.in in c/src/tests/psxtests" >&5 3664 3659 if test -d $srcdir/c/src/tests/psxtests; then 3665 3660 rtems_av_save_dir=`pwd`; … … 3696 3691 if test "$RTEMS_HAS_HWAPI" = "yes"; then 3697 3692 echo $ac_n "checking whether libwapi is present""... $ac_c" 1>&6 3698 echo "configure:369 9: checking whether libwapi is present" >&53693 echo "configure:3694: checking whether libwapi is present" >&5 3699 3694 if test -f ${srcdir}/c/src/lib/libhwapi/Makefile.in ; then 3700 3695 echo "$ac_t""yes" 1>&6 … … 3702 3697 3703 3698 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/analog""... $ac_c" 1>&6 3704 echo "configure:370 5: checking for Makefile.in in c/src/lib/libhwapi/analog" >&53699 echo "configure:3700: checking for Makefile.in in c/src/lib/libhwapi/analog" >&5 3705 3700 if test -d $srcdir/c/src/lib/libhwapi/analog; then 3706 3701 rtems_av_save_dir=`pwd`; … … 3717 3712 3718 3713 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/discrete""... $ac_c" 1>&6 3719 echo "configure:37 20: checking for Makefile.in in c/src/lib/libhwapi/discrete" >&53714 echo "configure:3715: checking for Makefile.in in c/src/lib/libhwapi/discrete" >&5 3720 3715 if test -d $srcdir/c/src/lib/libhwapi/discrete; then 3721 3716 rtems_av_save_dir=`pwd`; … … 3732 3727 3733 3728 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/drivers""... $ac_c" 1>&6 3734 echo "configure:373 5: checking for Makefile.in in c/src/lib/libhwapi/drivers" >&53729 echo "configure:3730: checking for Makefile.in in c/src/lib/libhwapi/drivers" >&5 3735 3730 if test -d $srcdir/c/src/lib/libhwapi/drivers; then 3736 3731 rtems_av_save_dir=`pwd`; … … 3747 3742 3748 3743 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory""... $ac_c" 1>&6 3749 echo "configure:37 50: checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory" >&53744 echo "configure:3745: checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory" >&5 3750 3745 if test -d $srcdir/c/src/lib/libhwapi/non_volatile_memory; then 3751 3746 rtems_av_save_dir=`pwd`; … … 3762 3757 3763 3758 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/serial""... $ac_c" 1>&6 3764 echo "configure:376 5: checking for Makefile.in in c/src/lib/libhwapi/serial" >&53759 echo "configure:3760: checking for Makefile.in in c/src/lib/libhwapi/serial" >&5 3765 3760 if test -d $srcdir/c/src/lib/libhwapi/serial; then 3766 3761 rtems_av_save_dir=`pwd`; … … 3777 3772 3778 3773 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/support""... $ac_c" 1>&6 3779 echo "configure:37 80: checking for Makefile.in in c/src/lib/libhwapi/support" >&53774 echo "configure:3775: checking for Makefile.in in c/src/lib/libhwapi/support" >&5 3780 3775 if test -d $srcdir/c/src/lib/libhwapi/support; then 3781 3776 rtems_av_save_dir=`pwd`; … … 3792 3787 3793 3788 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/wrapup""... $ac_c" 1>&6 3794 echo "configure:379 5: checking for Makefile.in in c/src/lib/libhwapi/wrapup" >&53789 echo "configure:3790: checking for Makefile.in in c/src/lib/libhwapi/wrapup" >&5 3795 3790 if test -d $srcdir/c/src/lib/libhwapi/wrapup; then 3796 3791 rtems_av_save_dir=`pwd`; … … 3825 3820 3826 3821 echo $ac_n "checking for Makefile.in in make""... $ac_c" 1>&6 3827 echo "configure:382 8: checking for Makefile.in in make" >&53822 echo "configure:3823: checking for Makefile.in in make" >&5 3828 3823 if test -d $srcdir/make; then 3829 3824 rtems_av_save_dir=`pwd`; … … 3840 3835 3841 3836 echo $ac_n "checking for Makefile.in in c/src/lib/libchip""... $ac_c" 1>&6 3842 echo "configure:38 43: checking for Makefile.in in c/src/lib/libchip" >&53837 echo "configure:3838: checking for Makefile.in in c/src/lib/libchip" >&5 3843 3838 if test -d $srcdir/c/src/lib/libchip; then 3844 3839 rtems_av_save_dir=`pwd`; … … 3855 3850 3856 3851 echo $ac_n "checking for Makefile.in in c/src/lib/libmisc""... $ac_c" 1>&6 3857 echo "configure:385 8: checking for Makefile.in in c/src/lib/libmisc" >&53852 echo "configure:3853: checking for Makefile.in in c/src/lib/libmisc" >&5 3858 3853 if test -d $srcdir/c/src/lib/libmisc; then 3859 3854 rtems_av_save_dir=`pwd`; … … 3870 3865 3871 3866 echo $ac_n "checking for Makefile.in in c/src/tests/samples""... $ac_c" 1>&6 3872 echo "configure:38 73: checking for Makefile.in in c/src/tests/samples" >&53867 echo "configure:3868: checking for Makefile.in in c/src/tests/samples" >&5 3873 3868 if test -d $srcdir/c/src/tests/samples; then 3874 3869 rtems_av_save_dir=`pwd`; -
tools/cpu/generic/aclocal.m4
r1407343 r8c92fa3 64 64 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 65 65 [ 66 rtems_target=$target;67 case "$target" in68 no_cpu*) target=$host;;69 *) ;;70 esac71 66 AC_CANONICAL_SYSTEM 72 67 AC_MSG_CHECKING(rtems target cpu) 73 68 changequote(,)dnl 74 case "${ rtems_target}" in69 case "${target}" in 75 70 # hpux unix port should go here 76 71 i[3456]86-go32-rtems*) … … 90 85 ;; 91 86 *) 92 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`87 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 93 88 ;; 94 89 esac -
tools/cpu/generic/configure
r1407343 r8c92fa3 577 577 578 578 579 rtems_target=$target;580 case "$target" in581 no_cpu*) target=$host;;582 *) ;;583 esac584 579 585 580 # Do some error checking and defaulting for the host and target type. … … 610 605 611 606 echo $ac_n "checking host system type""... $ac_c" 1>&6 612 echo "configure:6 13: checking host system type" >&5607 echo "configure:608: checking host system type" >&5 613 608 614 609 host_alias=$host … … 631 626 632 627 echo $ac_n "checking target system type""... $ac_c" 1>&6 633 echo "configure:6 34: checking target system type" >&5628 echo "configure:629: checking target system type" >&5 634 629 635 630 target_alias=$target … … 649 644 650 645 echo $ac_n "checking build system type""... $ac_c" 1>&6 651 echo "configure:6 52: checking build system type" >&5646 echo "configure:647: checking build system type" >&5 652 647 653 648 build_alias=$build … … 672 667 673 668 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 674 echo "configure:67 5: checking rtems target cpu" >&5675 case "${ rtems_target}" in669 echo "configure:670: checking rtems target cpu" >&5 670 case "${target}" in 676 671 # hpux unix port should go here 677 672 i[3456]86-go32-rtems*) … … 691 686 ;; 692 687 *) 693 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`688 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 694 689 ;; 695 690 esac … … 710 705 # ./install, which can be erroneously created by make from ./install.sh. 711 706 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 712 echo "configure:7 13: checking for a BSD compatible install" >&5707 echo "configure:708: checking for a BSD compatible install" >&5 713 708 if test -z "$INSTALL"; then 714 709 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 763 758 764 759 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 765 echo "configure:76 6: checking whether build environment is sane" >&5760 echo "configure:761: checking whether build environment is sane" >&5 766 761 # Just in case 767 762 sleep 1 … … 820 815 821 816 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 822 echo "configure:8 23: checking whether ${MAKE-make} sets \${MAKE}" >&5817 echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5 823 818 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 824 819 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 859 854 missing_dir=`cd $ac_aux_dir && pwd` 860 855 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 861 echo "configure:8 62: checking for working aclocal" >&5856 echo "configure:857: checking for working aclocal" >&5 862 857 # Run test in a subshell; some versions of sh will print an error if 863 858 # an executable is not found, even if stderr is redirected. … … 872 867 873 868 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 874 echo "configure:87 5: checking for working autoconf" >&5869 echo "configure:870: checking for working autoconf" >&5 875 870 # Run test in a subshell; some versions of sh will print an error if 876 871 # an executable is not found, even if stderr is redirected. … … 885 880 886 881 echo $ac_n "checking for working automake""... $ac_c" 1>&6 887 echo "configure:88 8: checking for working automake" >&5882 echo "configure:883: checking for working automake" >&5 888 883 # Run test in a subshell; some versions of sh will print an error if 889 884 # an executable is not found, even if stderr is redirected. … … 898 893 899 894 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 900 echo "configure: 901: checking for working autoheader" >&5895 echo "configure:896: checking for working autoheader" >&5 901 896 # Run test in a subshell; some versions of sh will print an error if 902 897 # an executable is not found, even if stderr is redirected. … … 911 906 912 907 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 913 echo "configure:9 14: checking for working makeinfo" >&5908 echo "configure:909: checking for working makeinfo" >&5 914 909 # Run test in a subshell; some versions of sh will print an error if 915 910 # an executable is not found, even if stderr is redirected. … … 931 926 set dummy $ac_prog; ac_word=$2 932 927 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 933 echo "configure:9 34: checking for $ac_word" >&5928 echo "configure:929: checking for $ac_word" >&5 934 929 if eval "test \"`echo '$''{'ac_cv_path_KSH'+set}'`\" = set"; then 935 930 echo $ac_n "(cached) $ac_c" 1>&6 -
tools/cpu/hppa1.1/aclocal.m4
r1407343 r8c92fa3 64 64 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 65 65 [ 66 rtems_target=$target;67 case "$target" in68 no_cpu*) target=$host;;69 *) ;;70 esac71 66 AC_CANONICAL_SYSTEM 72 67 AC_MSG_CHECKING(rtems target cpu) 73 68 changequote(,)dnl 74 case "${ rtems_target}" in69 case "${target}" in 75 70 # hpux unix port should go here 76 71 i[3456]86-go32-rtems*) … … 90 85 ;; 91 86 *) 92 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`87 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 93 88 ;; 94 89 esac -
tools/cpu/hppa1.1/configure
r1407343 r8c92fa3 577 577 578 578 579 rtems_target=$target;580 case "$target" in581 no_cpu*) target=$host;;582 *) ;;583 esac584 579 585 580 # Do some error checking and defaulting for the host and target type. … … 610 605 611 606 echo $ac_n "checking host system type""... $ac_c" 1>&6 612 echo "configure:6 13: checking host system type" >&5607 echo "configure:608: checking host system type" >&5 613 608 614 609 host_alias=$host … … 631 626 632 627 echo $ac_n "checking target system type""... $ac_c" 1>&6 633 echo "configure:6 34: checking target system type" >&5628 echo "configure:629: checking target system type" >&5 634 629 635 630 target_alias=$target … … 649 644 650 645 echo $ac_n "checking build system type""... $ac_c" 1>&6 651 echo "configure:6 52: checking build system type" >&5646 echo "configure:647: checking build system type" >&5 652 647 653 648 build_alias=$build … … 672 667 673 668 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 674 echo "configure:67 5: checking rtems target cpu" >&5675 case "${ rtems_target}" in669 echo "configure:670: checking rtems target cpu" >&5 670 case "${target}" in 676 671 # hpux unix port should go here 677 672 i[3456]86-go32-rtems*) … … 691 686 ;; 692 687 *) 693 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`688 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 694 689 ;; 695 690 esac … … 710 705 # ./install, which can be erroneously created by make from ./install.sh. 711 706 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 712 echo "configure:7 13: checking for a BSD compatible install" >&5707 echo "configure:708: checking for a BSD compatible install" >&5 713 708 if test -z "$INSTALL"; then 714 709 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 763 758 764 759 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 765 echo "configure:76 6: checking whether build environment is sane" >&5760 echo "configure:761: checking whether build environment is sane" >&5 766 761 # Just in case 767 762 sleep 1 … … 820 815 821 816 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 822 echo "configure:8 23: checking whether ${MAKE-make} sets \${MAKE}" >&5817 echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5 823 818 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 824 819 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 859 854 missing_dir=`cd $ac_aux_dir && pwd` 860 855 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 861 echo "configure:8 62: checking for working aclocal" >&5856 echo "configure:857: checking for working aclocal" >&5 862 857 # Run test in a subshell; some versions of sh will print an error if 863 858 # an executable is not found, even if stderr is redirected. … … 872 867 873 868 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 874 echo "configure:87 5: checking for working autoconf" >&5869 echo "configure:870: checking for working autoconf" >&5 875 870 # Run test in a subshell; some versions of sh will print an error if 876 871 # an executable is not found, even if stderr is redirected. … … 885 880 886 881 echo $ac_n "checking for working automake""... $ac_c" 1>&6 887 echo "configure:88 8: checking for working automake" >&5882 echo "configure:883: checking for working automake" >&5 888 883 # Run test in a subshell; some versions of sh will print an error if 889 884 # an executable is not found, even if stderr is redirected. … … 898 893 899 894 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 900 echo "configure: 901: checking for working autoheader" >&5895 echo "configure:896: checking for working autoheader" >&5 901 896 # Run test in a subshell; some versions of sh will print an error if 902 897 # an executable is not found, even if stderr is redirected. … … 911 906 912 907 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 913 echo "configure:9 14: checking for working makeinfo" >&5908 echo "configure:909: checking for working makeinfo" >&5 914 909 # Run test in a subshell; some versions of sh will print an error if 915 910 # an executable is not found, even if stderr is redirected. … … 928 923 set dummy gcc; ac_word=$2 929 924 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 930 echo "configure:9 31: checking for $ac_word" >&5925 echo "configure:926: checking for $ac_word" >&5 931 926 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 932 927 echo $ac_n "(cached) $ac_c" 1>&6 … … 958 953 set dummy cc; ac_word=$2 959 954 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 960 echo "configure:9 61: checking for $ac_word" >&5955 echo "configure:956: checking for $ac_word" >&5 961 956 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 962 957 echo $ac_n "(cached) $ac_c" 1>&6 … … 1009 1004 set dummy cl; ac_word=$2 1010 1005 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1011 echo "configure:10 12: checking for $ac_word" >&51006 echo "configure:1007: checking for $ac_word" >&5 1012 1007 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 1013 1008 echo $ac_n "(cached) $ac_c" 1>&6 … … 1041 1036 1042 1037 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1043 echo "configure:10 44: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&51038 echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 1044 1039 1045 1040 ac_ext=c … … 1052 1047 cat > conftest.$ac_ext << EOF 1053 1048 1054 #line 105 5"configure"1049 #line 1050 "configure" 1055 1050 #include "confdefs.h" 1056 1051 1057 1052 main(){return(0);} 1058 1053 EOF 1059 if { (eval echo configure:10 60: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1054 if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1060 1055 ac_cv_prog_cc_works=yes 1061 1056 # If we can't run a trivial program, we are probably using a cross compiler. … … 1083 1078 fi 1084 1079 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1085 echo "configure:108 6: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&51080 echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 1086 1081 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 1087 1082 cross_compiling=$ac_cv_prog_cc_cross 1088 1083 1089 1084 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 1090 echo "configure:10 91: checking whether we are using GNU C" >&51085 echo "configure:1086: checking whether we are using GNU C" >&5 1091 1086 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 1092 1087 echo $ac_n "(cached) $ac_c" 1>&6 … … 1097 1092 #endif 1098 1093 EOF 1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1 100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1094 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1095: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1100 1095 ac_cv_prog_gcc=yes 1101 1096 else … … 1116 1111 CFLAGS= 1117 1112 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 1118 echo "configure:111 9: checking whether ${CC-cc} accepts -g" >&51113 echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5 1119 1114 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 1120 1115 echo $ac_n "(cached) $ac_c" 1>&6 -
tools/cpu/sh/aclocal.m4
r1407343 r8c92fa3 64 64 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 65 65 [ 66 rtems_target=$target;67 case "$target" in68 no_cpu*) target=$host;;69 *) ;;70 esac71 66 AC_CANONICAL_SYSTEM 72 67 AC_MSG_CHECKING(rtems target cpu) 73 68 changequote(,)dnl 74 case "${ rtems_target}" in69 case "${target}" in 75 70 # hpux unix port should go here 76 71 i[3456]86-go32-rtems*) … … 90 85 ;; 91 86 *) 92 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`87 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 93 88 ;; 94 89 esac -
tools/cpu/sh/configure
r1407343 r8c92fa3 577 577 578 578 579 rtems_target=$target;580 case "$target" in581 no_cpu*) target=$host;;582 *) ;;583 esac584 579 585 580 # Do some error checking and defaulting for the host and target type. … … 610 605 611 606 echo $ac_n "checking host system type""... $ac_c" 1>&6 612 echo "configure:6 13: checking host system type" >&5607 echo "configure:608: checking host system type" >&5 613 608 614 609 host_alias=$host … … 631 626 632 627 echo $ac_n "checking target system type""... $ac_c" 1>&6 633 echo "configure:6 34: checking target system type" >&5628 echo "configure:629: checking target system type" >&5 634 629 635 630 target_alias=$target … … 649 644 650 645 echo $ac_n "checking build system type""... $ac_c" 1>&6 651 echo "configure:6 52: checking build system type" >&5646 echo "configure:647: checking build system type" >&5 652 647 653 648 build_alias=$build … … 672 667 673 668 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 674 echo "configure:67 5: checking rtems target cpu" >&5675 case "${ rtems_target}" in669 echo "configure:670: checking rtems target cpu" >&5 670 case "${target}" in 676 671 # hpux unix port should go here 677 672 i[3456]86-go32-rtems*) … … 691 686 ;; 692 687 *) 693 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`688 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 694 689 ;; 695 690 esac … … 710 705 # ./install, which can be erroneously created by make from ./install.sh. 711 706 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 712 echo "configure:7 13: checking for a BSD compatible install" >&5707 echo "configure:708: checking for a BSD compatible install" >&5 713 708 if test -z "$INSTALL"; then 714 709 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 763 758 764 759 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 765 echo "configure:76 6: checking whether build environment is sane" >&5760 echo "configure:761: checking whether build environment is sane" >&5 766 761 # Just in case 767 762 sleep 1 … … 820 815 821 816 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 822 echo "configure:8 23: checking whether ${MAKE-make} sets \${MAKE}" >&5817 echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5 823 818 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 824 819 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 859 854 missing_dir=`cd $ac_aux_dir && pwd` 860 855 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 861 echo "configure:8 62: checking for working aclocal" >&5856 echo "configure:857: checking for working aclocal" >&5 862 857 # Run test in a subshell; some versions of sh will print an error if 863 858 # an executable is not found, even if stderr is redirected. … … 872 867 873 868 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 874 echo "configure:87 5: checking for working autoconf" >&5869 echo "configure:870: checking for working autoconf" >&5 875 870 # Run test in a subshell; some versions of sh will print an error if 876 871 # an executable is not found, even if stderr is redirected. … … 885 880 886 881 echo $ac_n "checking for working automake""... $ac_c" 1>&6 887 echo "configure:88 8: checking for working automake" >&5882 echo "configure:883: checking for working automake" >&5 888 883 # Run test in a subshell; some versions of sh will print an error if 889 884 # an executable is not found, even if stderr is redirected. … … 898 893 899 894 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 900 echo "configure: 901: checking for working autoheader" >&5895 echo "configure:896: checking for working autoheader" >&5 901 896 # Run test in a subshell; some versions of sh will print an error if 902 897 # an executable is not found, even if stderr is redirected. … … 911 906 912 907 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 913 echo "configure:9 14: checking for working makeinfo" >&5908 echo "configure:909: checking for working makeinfo" >&5 914 909 # Run test in a subshell; some versions of sh will print an error if 915 910 # an executable is not found, even if stderr is redirected. … … 928 923 set dummy gcc; ac_word=$2 929 924 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 930 echo "configure:9 31: checking for $ac_word" >&5925 echo "configure:926: checking for $ac_word" >&5 931 926 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 932 927 echo $ac_n "(cached) $ac_c" 1>&6 … … 958 953 set dummy cc; ac_word=$2 959 954 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 960 echo "configure:9 61: checking for $ac_word" >&5955 echo "configure:956: checking for $ac_word" >&5 961 956 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 962 957 echo $ac_n "(cached) $ac_c" 1>&6 … … 1009 1004 set dummy cl; ac_word=$2 1010 1005 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1011 echo "configure:10 12: checking for $ac_word" >&51006 echo "configure:1007: checking for $ac_word" >&5 1012 1007 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 1013 1008 echo $ac_n "(cached) $ac_c" 1>&6 … … 1041 1036 1042 1037 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1043 echo "configure:10 44: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&51038 echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 1044 1039 1045 1040 ac_ext=c … … 1052 1047 cat > conftest.$ac_ext << EOF 1053 1048 1054 #line 105 5"configure"1049 #line 1050 "configure" 1055 1050 #include "confdefs.h" 1056 1051 1057 1052 main(){return(0);} 1058 1053 EOF 1059 if { (eval echo configure:10 60: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1054 if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1060 1055 ac_cv_prog_cc_works=yes 1061 1056 # If we can't run a trivial program, we are probably using a cross compiler. … … 1083 1078 fi 1084 1079 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1085 echo "configure:108 6: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&51080 echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 1086 1081 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 1087 1082 cross_compiling=$ac_cv_prog_cc_cross 1088 1083 1089 1084 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 1090 echo "configure:10 91: checking whether we are using GNU C" >&51085 echo "configure:1086: checking whether we are using GNU C" >&5 1091 1086 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 1092 1087 echo $ac_n "(cached) $ac_c" 1>&6 … … 1097 1092 #endif 1098 1093 EOF 1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1 100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1094 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1095: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1100 1095 ac_cv_prog_gcc=yes 1101 1096 else … … 1116 1111 CFLAGS= 1117 1112 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 1118 echo "configure:111 9: checking whether ${CC-cc} accepts -g" >&51113 echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5 1119 1114 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 1120 1115 echo $ac_n "(cached) $ac_c" 1>&6 … … 1148 1143 1149 1144 echo $ac_n "checking for fabs in -lm""... $ac_c" 1>&6 1150 echo "configure:11 51: checking for fabs in -lm" >&51145 echo "configure:1146: checking for fabs in -lm" >&5 1151 1146 ac_lib_var=`echo m'_'fabs | sed 'y%./+-%__p_%'` 1152 1147 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1156 1151 LIBS="-lm $LIBS" 1157 1152 cat > conftest.$ac_ext <<EOF 1158 #line 115 9"configure"1153 #line 1154 "configure" 1159 1154 #include "confdefs.h" 1160 1155 /* Override any gcc2 internal prototype to avoid an error. */ … … 1167 1162 ; return 0; } 1168 1163 EOF 1169 if { (eval echo configure:11 70: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1164 if { (eval echo configure:1165: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1170 1165 rm -rf conftest* 1171 1166 eval "ac_cv_lib_$ac_lib_var=yes" -
tools/cpu/unix/aclocal.m4
r1407343 r8c92fa3 64 64 AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU, 65 65 [ 66 rtems_target=$target;67 case "$target" in68 no_cpu*) target=$host;;69 *) ;;70 esac71 66 AC_CANONICAL_SYSTEM 72 67 AC_MSG_CHECKING(rtems target cpu) 73 68 changequote(,)dnl 74 case "${ rtems_target}" in69 case "${target}" in 75 70 # hpux unix port should go here 76 71 i[3456]86-go32-rtems*) … … 90 85 ;; 91 86 *) 92 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`87 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 93 88 ;; 94 89 esac -
tools/cpu/unix/configure
r1407343 r8c92fa3 577 577 578 578 579 rtems_target=$target;580 case "$target" in581 no_cpu*) target=$host;;582 *) ;;583 esac584 579 585 580 # Do some error checking and defaulting for the host and target type. … … 610 605 611 606 echo $ac_n "checking host system type""... $ac_c" 1>&6 612 echo "configure:6 13: checking host system type" >&5607 echo "configure:608: checking host system type" >&5 613 608 614 609 host_alias=$host … … 631 626 632 627 echo $ac_n "checking target system type""... $ac_c" 1>&6 633 echo "configure:6 34: checking target system type" >&5628 echo "configure:629: checking target system type" >&5 634 629 635 630 target_alias=$target … … 649 644 650 645 echo $ac_n "checking build system type""... $ac_c" 1>&6 651 echo "configure:6 52: checking build system type" >&5646 echo "configure:647: checking build system type" >&5 652 647 653 648 build_alias=$build … … 672 667 673 668 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 674 echo "configure:67 5: checking rtems target cpu" >&5675 case "${ rtems_target}" in669 echo "configure:670: checking rtems target cpu" >&5 670 case "${target}" in 676 671 # hpux unix port should go here 677 672 i[3456]86-go32-rtems*) … … 691 686 ;; 692 687 *) 693 RTEMS_CPU=`echo $ rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`688 RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 694 689 ;; 695 690 esac … … 710 705 # ./install, which can be erroneously created by make from ./install.sh. 711 706 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 712 echo "configure:7 13: checking for a BSD compatible install" >&5707 echo "configure:708: checking for a BSD compatible install" >&5 713 708 if test -z "$INSTALL"; then 714 709 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 763 758 764 759 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 765 echo "configure:76 6: checking whether build environment is sane" >&5760 echo "configure:761: checking whether build environment is sane" >&5 766 761 # Just in case 767 762 sleep 1 … … 820 815 821 816 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 822 echo "configure:8 23: checking whether ${MAKE-make} sets \${MAKE}" >&5817 echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5 823 818 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 824 819 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 859 854 missing_dir=`cd $ac_aux_dir && pwd` 860 855 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 861 echo "configure:8 62: checking for working aclocal" >&5856 echo "configure:857: checking for working aclocal" >&5 862 857 # Run test in a subshell; some versions of sh will print an error if 863 858 # an executable is not found, even if stderr is redirected. … … 872 867 873 868 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 874 echo "configure:87 5: checking for working autoconf" >&5869 echo "configure:870: checking for working autoconf" >&5 875 870 # Run test in a subshell; some versions of sh will print an error if 876 871 # an executable is not found, even if stderr is redirected. … … 885 880 886 881 echo $ac_n "checking for working automake""... $ac_c" 1>&6 887 echo "configure:88 8: checking for working automake" >&5882 echo "configure:883: checking for working automake" >&5 888 883 # Run test in a subshell; some versions of sh will print an error if 889 884 # an executable is not found, even if stderr is redirected. … … 898 893 899 894 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 900 echo "configure: 901: checking for working autoheader" >&5895 echo "configure:896: checking for working autoheader" >&5 901 896 # Run test in a subshell; some versions of sh will print an error if 902 897 # an executable is not found, even if stderr is redirected. … … 911 906 912 907 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 913 echo "configure:9 14: checking for working makeinfo" >&5908 echo "configure:909: checking for working makeinfo" >&5 914 909 # Run test in a subshell; some versions of sh will print an error if 915 910 # an executable is not found, even if stderr is redirected. … … 928 923 set dummy gcc; ac_word=$2 929 924 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 930 echo "configure:9 31: checking for $ac_word" >&5925 echo "configure:926: checking for $ac_word" >&5 931 926 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 932 927 echo $ac_n "(cached) $ac_c" 1>&6 … … 958 953 set dummy cc; ac_word=$2 959 954 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 960 echo "configure:9 61: checking for $ac_word" >&5955 echo "configure:956: checking for $ac_word" >&5 961 956 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 962 957 echo $ac_n "(cached) $ac_c" 1>&6 … … 1009 1004 set dummy cl; ac_word=$2 1010 1005 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1011 echo "configure:10 12: checking for $ac_word" >&51006 echo "configure:1007: checking for $ac_word" >&5 1012 1007 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 1013 1008 echo $ac_n "(cached) $ac_c" 1>&6 … … 1041 1036 1042 1037 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1043 echo "configure:10 44: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&51038 echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 1044 1039 1045 1040 ac_ext=c … … 1052 1047 cat > conftest.$ac_ext << EOF 1053 1048 1054 #line 105 5"configure"1049 #line 1050 "configure" 1055 1050 #include "confdefs.h" 1056 1051 1057 1052 main(){return(0);} 1058 1053 EOF 1059 if { (eval echo configure:10 60: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1054 if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1060 1055 ac_cv_prog_cc_works=yes 1061 1056 # If we can't run a trivial program, we are probably using a cross compiler. … … 1083 1078 fi 1084 1079 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1085 echo "configure:108 6: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&51080 echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 1086 1081 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 1087 1082 cross_compiling=$ac_cv_prog_cc_cross 1088 1083 1089 1084 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 1090 echo "configure:10 91: checking whether we are using GNU C" >&51085 echo "configure:1086: checking whether we are using GNU C" >&5 1091 1086 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 1092 1087 echo $ac_n "(cached) $ac_c" 1>&6 … … 1097 1092 #endif 1098 1093 EOF 1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1 100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1094 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1095: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1100 1095 ac_cv_prog_gcc=yes 1101 1096 else … … 1116 1111 CFLAGS= 1117 1112 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 1118 echo "configure:111 9: checking whether ${CC-cc} accepts -g" >&51113 echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5 1119 1114 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 1120 1115 echo $ac_n "(cached) $ac_c" 1>&6
Note: See TracChangeset
for help on using the changeset viewer.