Changeset 8c92fa3 in rtems


Ignore:
Timestamp:
06/16/99 14:55:28 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
2691449
Parents:
1407343
Message:

Patcg from Ralf Corsepius <corsepiu@…>:

-- configure now fails to detect the toolchain for linux-posix.

As work-around, I have reverted to the old behavior of RTEMS_TARGET_CPU_NAME,
thus no_cpu/no_bsp will fail badly in configure again.

Files:
33 edited

Legend:

Unmodified
Added
Removed
  • aclocal.m4

    r1407343 r8c92fa3  
    6464AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    6565[
    66 rtems_target=$target;
    67 case "$target" in
    68 no_cpu*) target=$host;;
    69 *) ;;
    70 esac
    7166AC_CANONICAL_SYSTEM
    7267AC_MSG_CHECKING(rtems target cpu)
    7368changequote(,)dnl
    74 case "${rtems_target}" in
     69case "${target}" in
    7570  # hpux unix port should go here
    7671  i[3456]86-go32-rtems*)
     
    9085        ;;
    9186  *)
    92         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     87        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    9388        ;;
    9489esac
  • aclocal/canonical-target-name.m4

    r1407343 r8c92fa3  
    1111AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    1212[
    13 rtems_target=$target;
    14 case "$target" in
    15 no_cpu*) target=$host;;
    16 *) ;;
    17 esac
    1813AC_CANONICAL_SYSTEM
    1914AC_MSG_CHECKING(rtems target cpu)
    2015changequote(,)dnl
    21 case "${rtems_target}" in
     16case "${target}" in
    2217  # hpux unix port should go here
    2318  i[3456]86-go32-rtems*)
     
    3732        ;;
    3833  *)
    39         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     34        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    4035        ;;
    4136esac
  • c/src/exec/score/tools/generic/aclocal.m4

    r1407343 r8c92fa3  
    6464AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    6565[
    66 rtems_target=$target;
    67 case "$target" in
    68 no_cpu*) target=$host;;
    69 *) ;;
    70 esac
    7166AC_CANONICAL_SYSTEM
    7267AC_MSG_CHECKING(rtems target cpu)
    7368changequote(,)dnl
    74 case "${rtems_target}" in
     69case "${target}" in
    7570  # hpux unix port should go here
    7671  i[3456]86-go32-rtems*)
     
    9085        ;;
    9186  *)
    92         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     87        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    9388        ;;
    9489esac
  • c/src/exec/score/tools/generic/configure

    r1407343 r8c92fa3  
    577577
    578578
    579 rtems_target=$target;
    580 case "$target" in
    581 no_cpu*) target=$host;;
    582 *) ;;
    583 esac
    584579
    585580# Do some error checking and defaulting for the host and target type.
     
    610605
    611606echo $ac_n "checking host system type""... $ac_c" 1>&6
    612 echo "configure:613: checking host system type" >&5
     607echo "configure:608: checking host system type" >&5
    613608
    614609host_alias=$host
     
    631626
    632627echo $ac_n "checking target system type""... $ac_c" 1>&6
    633 echo "configure:634: checking target system type" >&5
     628echo "configure:629: checking target system type" >&5
    634629
    635630target_alias=$target
     
    649644
    650645echo $ac_n "checking build system type""... $ac_c" 1>&6
    651 echo "configure:652: checking build system type" >&5
     646echo "configure:647: checking build system type" >&5
    652647
    653648build_alias=$build
     
    672667
    673668echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
    674 echo "configure:675: checking rtems target cpu" >&5
    675 case "${rtems_target}" in
     669echo "configure:670: checking rtems target cpu" >&5
     670case "${target}" in
    676671  # hpux unix port should go here
    677672  i[3456]86-go32-rtems*)
     
    691686        ;;
    692687  *)
    693         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     688        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    694689        ;;
    695690esac
     
    710705# ./install, which can be erroneously created by make from ./install.sh.
    711706echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    712 echo "configure:713: checking for a BSD compatible install" >&5
     707echo "configure:708: checking for a BSD compatible install" >&5
    713708if test -z "$INSTALL"; then
    714709if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     
    763758
    764759echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    765 echo "configure:766: checking whether build environment is sane" >&5
     760echo "configure:761: checking whether build environment is sane" >&5
    766761# Just in case
    767762sleep 1
     
    820815
    821816echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    822 echo "configure:823: checking whether ${MAKE-make} sets \${MAKE}" >&5
     817echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5
    823818set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    824819if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    859854missing_dir=`cd $ac_aux_dir && pwd`
    860855echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    861 echo "configure:862: checking for working aclocal" >&5
     856echo "configure:857: checking for working aclocal" >&5
    862857# Run test in a subshell; some versions of sh will print an error if
    863858# an executable is not found, even if stderr is redirected.
     
    872867
    873868echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    874 echo "configure:875: checking for working autoconf" >&5
     869echo "configure:870: checking for working autoconf" >&5
    875870# Run test in a subshell; some versions of sh will print an error if
    876871# an executable is not found, even if stderr is redirected.
     
    885880
    886881echo $ac_n "checking for working automake""... $ac_c" 1>&6
    887 echo "configure:888: checking for working automake" >&5
     882echo "configure:883: checking for working automake" >&5
    888883# Run test in a subshell; some versions of sh will print an error if
    889884# an executable is not found, even if stderr is redirected.
     
    898893
    899894echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    900 echo "configure:901: checking for working autoheader" >&5
     895echo "configure:896: checking for working autoheader" >&5
    901896# Run test in a subshell; some versions of sh will print an error if
    902897# an executable is not found, even if stderr is redirected.
     
    911906
    912907echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    913 echo "configure:914: checking for working makeinfo" >&5
     908echo "configure:909: checking for working makeinfo" >&5
    914909# Run test in a subshell; some versions of sh will print an error if
    915910# an executable is not found, even if stderr is redirected.
     
    931926set dummy $ac_prog; ac_word=$2
    932927echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    933 echo "configure:934: checking for $ac_word" >&5
     928echo "configure:929: checking for $ac_word" >&5
    934929if eval "test \"`echo '$''{'ac_cv_path_KSH'+set}'`\" = set"; then
    935930  echo $ac_n "(cached) $ac_c" 1>&6
  • c/src/exec/score/tools/hppa1.1/aclocal.m4

    r1407343 r8c92fa3  
    6464AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    6565[
    66 rtems_target=$target;
    67 case "$target" in
    68 no_cpu*) target=$host;;
    69 *) ;;
    70 esac
    7166AC_CANONICAL_SYSTEM
    7267AC_MSG_CHECKING(rtems target cpu)
    7368changequote(,)dnl
    74 case "${rtems_target}" in
     69case "${target}" in
    7570  # hpux unix port should go here
    7671  i[3456]86-go32-rtems*)
     
    9085        ;;
    9186  *)
    92         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     87        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    9388        ;;
    9489esac
  • c/src/exec/score/tools/hppa1.1/configure

    r1407343 r8c92fa3  
    577577
    578578
    579 rtems_target=$target;
    580 case "$target" in
    581 no_cpu*) target=$host;;
    582 *) ;;
    583 esac
    584579
    585580# Do some error checking and defaulting for the host and target type.
     
    610605
    611606echo $ac_n "checking host system type""... $ac_c" 1>&6
    612 echo "configure:613: checking host system type" >&5
     607echo "configure:608: checking host system type" >&5
    613608
    614609host_alias=$host
     
    631626
    632627echo $ac_n "checking target system type""... $ac_c" 1>&6
    633 echo "configure:634: checking target system type" >&5
     628echo "configure:629: checking target system type" >&5
    634629
    635630target_alias=$target
     
    649644
    650645echo $ac_n "checking build system type""... $ac_c" 1>&6
    651 echo "configure:652: checking build system type" >&5
     646echo "configure:647: checking build system type" >&5
    652647
    653648build_alias=$build
     
    672667
    673668echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
    674 echo "configure:675: checking rtems target cpu" >&5
    675 case "${rtems_target}" in
     669echo "configure:670: checking rtems target cpu" >&5
     670case "${target}" in
    676671  # hpux unix port should go here
    677672  i[3456]86-go32-rtems*)
     
    691686        ;;
    692687  *)
    693         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     688        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    694689        ;;
    695690esac
     
    710705# ./install, which can be erroneously created by make from ./install.sh.
    711706echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    712 echo "configure:713: checking for a BSD compatible install" >&5
     707echo "configure:708: checking for a BSD compatible install" >&5
    713708if test -z "$INSTALL"; then
    714709if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     
    763758
    764759echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    765 echo "configure:766: checking whether build environment is sane" >&5
     760echo "configure:761: checking whether build environment is sane" >&5
    766761# Just in case
    767762sleep 1
     
    820815
    821816echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    822 echo "configure:823: checking whether ${MAKE-make} sets \${MAKE}" >&5
     817echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5
    823818set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    824819if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    859854missing_dir=`cd $ac_aux_dir && pwd`
    860855echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    861 echo "configure:862: checking for working aclocal" >&5
     856echo "configure:857: checking for working aclocal" >&5
    862857# Run test in a subshell; some versions of sh will print an error if
    863858# an executable is not found, even if stderr is redirected.
     
    872867
    873868echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    874 echo "configure:875: checking for working autoconf" >&5
     869echo "configure:870: checking for working autoconf" >&5
    875870# Run test in a subshell; some versions of sh will print an error if
    876871# an executable is not found, even if stderr is redirected.
     
    885880
    886881echo $ac_n "checking for working automake""... $ac_c" 1>&6
    887 echo "configure:888: checking for working automake" >&5
     882echo "configure:883: checking for working automake" >&5
    888883# Run test in a subshell; some versions of sh will print an error if
    889884# an executable is not found, even if stderr is redirected.
     
    898893
    899894echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    900 echo "configure:901: checking for working autoheader" >&5
     895echo "configure:896: checking for working autoheader" >&5
    901896# Run test in a subshell; some versions of sh will print an error if
    902897# an executable is not found, even if stderr is redirected.
     
    911906
    912907echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    913 echo "configure:914: checking for working makeinfo" >&5
     908echo "configure:909: checking for working makeinfo" >&5
    914909# Run test in a subshell; some versions of sh will print an error if
    915910# an executable is not found, even if stderr is redirected.
     
    928923set dummy gcc; ac_word=$2
    929924echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    930 echo "configure:931: checking for $ac_word" >&5
     925echo "configure:926: checking for $ac_word" >&5
    931926if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    932927  echo $ac_n "(cached) $ac_c" 1>&6
     
    958953set dummy cc; ac_word=$2
    959954echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    960 echo "configure:961: checking for $ac_word" >&5
     955echo "configure:956: checking for $ac_word" >&5
    961956if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    962957  echo $ac_n "(cached) $ac_c" 1>&6
     
    10091004set dummy cl; ac_word=$2
    10101005echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1011 echo "configure:1012: checking for $ac_word" >&5
     1006echo "configure:1007: checking for $ac_word" >&5
    10121007if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    10131008  echo $ac_n "(cached) $ac_c" 1>&6
     
    10411036
    10421037echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
    1043 echo "configure:1044: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
     1038echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
    10441039
    10451040ac_ext=c
     
    10521047cat > conftest.$ac_ext << EOF
    10531048
    1054 #line 1055 "configure"
     1049#line 1050 "configure"
    10551050#include "confdefs.h"
    10561051
    10571052main(){return(0);}
    10581053EOF
    1059 if { (eval echo configure:1060: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1054if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    10601055  ac_cv_prog_cc_works=yes
    10611056  # If we can't run a trivial program, we are probably using a cross compiler.
     
    10831078fi
    10841079echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
    1085 echo "configure:1086: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
     1080echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
    10861081echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
    10871082cross_compiling=$ac_cv_prog_cc_cross
    10881083
    10891084echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    1090 echo "configure:1091: checking whether we are using GNU C" >&5
     1085echo "configure:1086: checking whether we are using GNU C" >&5
    10911086if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    10921087  echo $ac_n "(cached) $ac_c" 1>&6
     
    10971092#endif
    10981093EOF
    1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1094if { 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
    11001095  ac_cv_prog_gcc=yes
    11011096else
     
    11161111CFLAGS=
    11171112echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    1118 echo "configure:1119: checking whether ${CC-cc} accepts -g" >&5
     1113echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5
    11191114if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    11201115  echo $ac_n "(cached) $ac_c" 1>&6
  • c/src/exec/score/tools/sh/aclocal.m4

    r1407343 r8c92fa3  
    6464AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    6565[
    66 rtems_target=$target;
    67 case "$target" in
    68 no_cpu*) target=$host;;
    69 *) ;;
    70 esac
    7166AC_CANONICAL_SYSTEM
    7267AC_MSG_CHECKING(rtems target cpu)
    7368changequote(,)dnl
    74 case "${rtems_target}" in
     69case "${target}" in
    7570  # hpux unix port should go here
    7671  i[3456]86-go32-rtems*)
     
    9085        ;;
    9186  *)
    92         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     87        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    9388        ;;
    9489esac
  • c/src/exec/score/tools/sh/configure

    r1407343 r8c92fa3  
    577577
    578578
    579 rtems_target=$target;
    580 case "$target" in
    581 no_cpu*) target=$host;;
    582 *) ;;
    583 esac
    584579
    585580# Do some error checking and defaulting for the host and target type.
     
    610605
    611606echo $ac_n "checking host system type""... $ac_c" 1>&6
    612 echo "configure:613: checking host system type" >&5
     607echo "configure:608: checking host system type" >&5
    613608
    614609host_alias=$host
     
    631626
    632627echo $ac_n "checking target system type""... $ac_c" 1>&6
    633 echo "configure:634: checking target system type" >&5
     628echo "configure:629: checking target system type" >&5
    634629
    635630target_alias=$target
     
    649644
    650645echo $ac_n "checking build system type""... $ac_c" 1>&6
    651 echo "configure:652: checking build system type" >&5
     646echo "configure:647: checking build system type" >&5
    652647
    653648build_alias=$build
     
    672667
    673668echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
    674 echo "configure:675: checking rtems target cpu" >&5
    675 case "${rtems_target}" in
     669echo "configure:670: checking rtems target cpu" >&5
     670case "${target}" in
    676671  # hpux unix port should go here
    677672  i[3456]86-go32-rtems*)
     
    691686        ;;
    692687  *)
    693         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     688        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    694689        ;;
    695690esac
     
    710705# ./install, which can be erroneously created by make from ./install.sh.
    711706echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    712 echo "configure:713: checking for a BSD compatible install" >&5
     707echo "configure:708: checking for a BSD compatible install" >&5
    713708if test -z "$INSTALL"; then
    714709if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     
    763758
    764759echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    765 echo "configure:766: checking whether build environment is sane" >&5
     760echo "configure:761: checking whether build environment is sane" >&5
    766761# Just in case
    767762sleep 1
     
    820815
    821816echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    822 echo "configure:823: checking whether ${MAKE-make} sets \${MAKE}" >&5
     817echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5
    823818set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    824819if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    859854missing_dir=`cd $ac_aux_dir && pwd`
    860855echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    861 echo "configure:862: checking for working aclocal" >&5
     856echo "configure:857: checking for working aclocal" >&5
    862857# Run test in a subshell; some versions of sh will print an error if
    863858# an executable is not found, even if stderr is redirected.
     
    872867
    873868echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    874 echo "configure:875: checking for working autoconf" >&5
     869echo "configure:870: checking for working autoconf" >&5
    875870# Run test in a subshell; some versions of sh will print an error if
    876871# an executable is not found, even if stderr is redirected.
     
    885880
    886881echo $ac_n "checking for working automake""... $ac_c" 1>&6
    887 echo "configure:888: checking for working automake" >&5
     882echo "configure:883: checking for working automake" >&5
    888883# Run test in a subshell; some versions of sh will print an error if
    889884# an executable is not found, even if stderr is redirected.
     
    898893
    899894echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    900 echo "configure:901: checking for working autoheader" >&5
     895echo "configure:896: checking for working autoheader" >&5
    901896# Run test in a subshell; some versions of sh will print an error if
    902897# an executable is not found, even if stderr is redirected.
     
    911906
    912907echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    913 echo "configure:914: checking for working makeinfo" >&5
     908echo "configure:909: checking for working makeinfo" >&5
    914909# Run test in a subshell; some versions of sh will print an error if
    915910# an executable is not found, even if stderr is redirected.
     
    928923set dummy gcc; ac_word=$2
    929924echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    930 echo "configure:931: checking for $ac_word" >&5
     925echo "configure:926: checking for $ac_word" >&5
    931926if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    932927  echo $ac_n "(cached) $ac_c" 1>&6
     
    958953set dummy cc; ac_word=$2
    959954echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    960 echo "configure:961: checking for $ac_word" >&5
     955echo "configure:956: checking for $ac_word" >&5
    961956if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    962957  echo $ac_n "(cached) $ac_c" 1>&6
     
    10091004set dummy cl; ac_word=$2
    10101005echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1011 echo "configure:1012: checking for $ac_word" >&5
     1006echo "configure:1007: checking for $ac_word" >&5
    10121007if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    10131008  echo $ac_n "(cached) $ac_c" 1>&6
     
    10411036
    10421037echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
    1043 echo "configure:1044: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
     1038echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
    10441039
    10451040ac_ext=c
     
    10521047cat > conftest.$ac_ext << EOF
    10531048
    1054 #line 1055 "configure"
     1049#line 1050 "configure"
    10551050#include "confdefs.h"
    10561051
    10571052main(){return(0);}
    10581053EOF
    1059 if { (eval echo configure:1060: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1054if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    10601055  ac_cv_prog_cc_works=yes
    10611056  # If we can't run a trivial program, we are probably using a cross compiler.
     
    10831078fi
    10841079echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
    1085 echo "configure:1086: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
     1080echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
    10861081echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
    10871082cross_compiling=$ac_cv_prog_cc_cross
    10881083
    10891084echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    1090 echo "configure:1091: checking whether we are using GNU C" >&5
     1085echo "configure:1086: checking whether we are using GNU C" >&5
    10911086if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    10921087  echo $ac_n "(cached) $ac_c" 1>&6
     
    10971092#endif
    10981093EOF
    1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1094if { 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
    11001095  ac_cv_prog_gcc=yes
    11011096else
     
    11161111CFLAGS=
    11171112echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    1118 echo "configure:1119: checking whether ${CC-cc} accepts -g" >&5
     1113echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5
    11191114if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    11201115  echo $ac_n "(cached) $ac_c" 1>&6
     
    11481143
    11491144echo $ac_n "checking for fabs in -lm""... $ac_c" 1>&6
    1150 echo "configure:1151: checking for fabs in -lm" >&5
     1145echo "configure:1146: checking for fabs in -lm" >&5
    11511146ac_lib_var=`echo m'_'fabs | sed 'y%./+-%__p_%'`
    11521147if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    11561151LIBS="-lm  $LIBS"
    11571152cat > conftest.$ac_ext <<EOF
    1158 #line 1159 "configure"
     1153#line 1154 "configure"
    11591154#include "confdefs.h"
    11601155/* Override any gcc2 internal prototype to avoid an error.  */
     
    11671162; return 0; }
    11681163EOF
    1169 if { (eval echo configure:1170: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1164if { (eval echo configure:1165: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    11701165  rm -rf conftest*
    11711166  eval "ac_cv_lib_$ac_lib_var=yes"
  • c/src/exec/score/tools/unix/aclocal.m4

    r1407343 r8c92fa3  
    6464AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    6565[
    66 rtems_target=$target;
    67 case "$target" in
    68 no_cpu*) target=$host;;
    69 *) ;;
    70 esac
    7166AC_CANONICAL_SYSTEM
    7267AC_MSG_CHECKING(rtems target cpu)
    7368changequote(,)dnl
    74 case "${rtems_target}" in
     69case "${target}" in
    7570  # hpux unix port should go here
    7671  i[3456]86-go32-rtems*)
     
    9085        ;;
    9186  *)
    92         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     87        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    9388        ;;
    9489esac
  • c/src/exec/score/tools/unix/configure

    r1407343 r8c92fa3  
    577577
    578578
    579 rtems_target=$target;
    580 case "$target" in
    581 no_cpu*) target=$host;;
    582 *) ;;
    583 esac
    584579
    585580# Do some error checking and defaulting for the host and target type.
     
    610605
    611606echo $ac_n "checking host system type""... $ac_c" 1>&6
    612 echo "configure:613: checking host system type" >&5
     607echo "configure:608: checking host system type" >&5
    613608
    614609host_alias=$host
     
    631626
    632627echo $ac_n "checking target system type""... $ac_c" 1>&6
    633 echo "configure:634: checking target system type" >&5
     628echo "configure:629: checking target system type" >&5
    634629
    635630target_alias=$target
     
    649644
    650645echo $ac_n "checking build system type""... $ac_c" 1>&6
    651 echo "configure:652: checking build system type" >&5
     646echo "configure:647: checking build system type" >&5
    652647
    653648build_alias=$build
     
    672667
    673668echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
    674 echo "configure:675: checking rtems target cpu" >&5
    675 case "${rtems_target}" in
     669echo "configure:670: checking rtems target cpu" >&5
     670case "${target}" in
    676671  # hpux unix port should go here
    677672  i[3456]86-go32-rtems*)
     
    691686        ;;
    692687  *)
    693         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     688        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    694689        ;;
    695690esac
     
    710705# ./install, which can be erroneously created by make from ./install.sh.
    711706echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    712 echo "configure:713: checking for a BSD compatible install" >&5
     707echo "configure:708: checking for a BSD compatible install" >&5
    713708if test -z "$INSTALL"; then
    714709if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     
    763758
    764759echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    765 echo "configure:766: checking whether build environment is sane" >&5
     760echo "configure:761: checking whether build environment is sane" >&5
    766761# Just in case
    767762sleep 1
     
    820815
    821816echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    822 echo "configure:823: checking whether ${MAKE-make} sets \${MAKE}" >&5
     817echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5
    823818set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    824819if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    859854missing_dir=`cd $ac_aux_dir && pwd`
    860855echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    861 echo "configure:862: checking for working aclocal" >&5
     856echo "configure:857: checking for working aclocal" >&5
    862857# Run test in a subshell; some versions of sh will print an error if
    863858# an executable is not found, even if stderr is redirected.
     
    872867
    873868echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    874 echo "configure:875: checking for working autoconf" >&5
     869echo "configure:870: checking for working autoconf" >&5
    875870# Run test in a subshell; some versions of sh will print an error if
    876871# an executable is not found, even if stderr is redirected.
     
    885880
    886881echo $ac_n "checking for working automake""... $ac_c" 1>&6
    887 echo "configure:888: checking for working automake" >&5
     882echo "configure:883: checking for working automake" >&5
    888883# Run test in a subshell; some versions of sh will print an error if
    889884# an executable is not found, even if stderr is redirected.
     
    898893
    899894echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    900 echo "configure:901: checking for working autoheader" >&5
     895echo "configure:896: checking for working autoheader" >&5
    901896# Run test in a subshell; some versions of sh will print an error if
    902897# an executable is not found, even if stderr is redirected.
     
    911906
    912907echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    913 echo "configure:914: checking for working makeinfo" >&5
     908echo "configure:909: checking for working makeinfo" >&5
    914909# Run test in a subshell; some versions of sh will print an error if
    915910# an executable is not found, even if stderr is redirected.
     
    928923set dummy gcc; ac_word=$2
    929924echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    930 echo "configure:931: checking for $ac_word" >&5
     925echo "configure:926: checking for $ac_word" >&5
    931926if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    932927  echo $ac_n "(cached) $ac_c" 1>&6
     
    958953set dummy cc; ac_word=$2
    959954echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    960 echo "configure:961: checking for $ac_word" >&5
     955echo "configure:956: checking for $ac_word" >&5
    961956if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    962957  echo $ac_n "(cached) $ac_c" 1>&6
     
    10091004set dummy cl; ac_word=$2
    10101005echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1011 echo "configure:1012: checking for $ac_word" >&5
     1006echo "configure:1007: checking for $ac_word" >&5
    10121007if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    10131008  echo $ac_n "(cached) $ac_c" 1>&6
     
    10411036
    10421037echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
    1043 echo "configure:1044: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
     1038echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
    10441039
    10451040ac_ext=c
     
    10521047cat > conftest.$ac_ext << EOF
    10531048
    1054 #line 1055 "configure"
     1049#line 1050 "configure"
    10551050#include "confdefs.h"
    10561051
    10571052main(){return(0);}
    10581053EOF
    1059 if { (eval echo configure:1060: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1054if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    10601055  ac_cv_prog_cc_works=yes
    10611056  # If we can't run a trivial program, we are probably using a cross compiler.
     
    10831078fi
    10841079echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
    1085 echo "configure:1086: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
     1080echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
    10861081echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
    10871082cross_compiling=$ac_cv_prog_cc_cross
    10881083
    10891084echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    1090 echo "configure:1091: checking whether we are using GNU C" >&5
     1085echo "configure:1086: checking whether we are using GNU C" >&5
    10911086if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    10921087  echo $ac_n "(cached) $ac_c" 1>&6
     
    10971092#endif
    10981093EOF
    1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1094if { 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
    11001095  ac_cv_prog_gcc=yes
    11011096else
     
    11161111CFLAGS=
    11171112echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    1118 echo "configure:1119: checking whether ${CC-cc} accepts -g" >&5
     1113echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5
    11191114if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    11201115  echo $ac_n "(cached) $ac_c" 1>&6
  • c/src/lib/libbsp/hppa1.1/simhppa/tools/aclocal.m4

    r1407343 r8c92fa3  
    6464AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    6565[
    66 rtems_target=$target;
    67 case "$target" in
    68 no_cpu*) target=$host;;
    69 *) ;;
    70 esac
    7166AC_CANONICAL_SYSTEM
    7267AC_MSG_CHECKING(rtems target cpu)
    7368changequote(,)dnl
    74 case "${rtems_target}" in
     69case "${target}" in
    7570  # hpux unix port should go here
    7671  i[3456]86-go32-rtems*)
     
    9085        ;;
    9186  *)
    92         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     87        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    9388        ;;
    9489esac
  • c/src/lib/libbsp/hppa1.1/simhppa/tools/configure

    r1407343 r8c92fa3  
    577577
    578578
    579 rtems_target=$target;
    580 case "$target" in
    581 no_cpu*) target=$host;;
    582 *) ;;
    583 esac
    584579
    585580# Do some error checking and defaulting for the host and target type.
     
    610605
    611606echo $ac_n "checking host system type""... $ac_c" 1>&6
    612 echo "configure:613: checking host system type" >&5
     607echo "configure:608: checking host system type" >&5
    613608
    614609host_alias=$host
     
    631626
    632627echo $ac_n "checking target system type""... $ac_c" 1>&6
    633 echo "configure:634: checking target system type" >&5
     628echo "configure:629: checking target system type" >&5
    634629
    635630target_alias=$target
     
    649644
    650645echo $ac_n "checking build system type""... $ac_c" 1>&6
    651 echo "configure:652: checking build system type" >&5
     646echo "configure:647: checking build system type" >&5
    652647
    653648build_alias=$build
     
    672667
    673668echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
    674 echo "configure:675: checking rtems target cpu" >&5
    675 case "${rtems_target}" in
     669echo "configure:670: checking rtems target cpu" >&5
     670case "${target}" in
    676671  # hpux unix port should go here
    677672  i[3456]86-go32-rtems*)
     
    691686        ;;
    692687  *)
    693         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     688        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    694689        ;;
    695690esac
     
    710705# ./install, which can be erroneously created by make from ./install.sh.
    711706echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    712 echo "configure:713: checking for a BSD compatible install" >&5
     707echo "configure:708: checking for a BSD compatible install" >&5
    713708if test -z "$INSTALL"; then
    714709if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     
    763758
    764759echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    765 echo "configure:766: checking whether build environment is sane" >&5
     760echo "configure:761: checking whether build environment is sane" >&5
    766761# Just in case
    767762sleep 1
     
    820815
    821816echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    822 echo "configure:823: checking whether ${MAKE-make} sets \${MAKE}" >&5
     817echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5
    823818set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    824819if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    859854missing_dir=`cd $ac_aux_dir && pwd`
    860855echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    861 echo "configure:862: checking for working aclocal" >&5
     856echo "configure:857: checking for working aclocal" >&5
    862857# Run test in a subshell; some versions of sh will print an error if
    863858# an executable is not found, even if stderr is redirected.
     
    872867
    873868echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    874 echo "configure:875: checking for working autoconf" >&5
     869echo "configure:870: checking for working autoconf" >&5
    875870# Run test in a subshell; some versions of sh will print an error if
    876871# an executable is not found, even if stderr is redirected.
     
    885880
    886881echo $ac_n "checking for working automake""... $ac_c" 1>&6
    887 echo "configure:888: checking for working automake" >&5
     882echo "configure:883: checking for working automake" >&5
    888883# Run test in a subshell; some versions of sh will print an error if
    889884# an executable is not found, even if stderr is redirected.
     
    898893
    899894echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    900 echo "configure:901: checking for working autoheader" >&5
     895echo "configure:896: checking for working autoheader" >&5
    901896# Run test in a subshell; some versions of sh will print an error if
    902897# an executable is not found, even if stderr is redirected.
     
    911906
    912907echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    913 echo "configure:914: checking for working makeinfo" >&5
     908echo "configure:909: checking for working makeinfo" >&5
    914909# Run test in a subshell; some versions of sh will print an error if
    915910# an executable is not found, even if stderr is redirected.
     
    928923set dummy gcc; ac_word=$2
    929924echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    930 echo "configure:931: checking for $ac_word" >&5
     925echo "configure:926: checking for $ac_word" >&5
    931926if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    932927  echo $ac_n "(cached) $ac_c" 1>&6
     
    958953set dummy cc; ac_word=$2
    959954echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    960 echo "configure:961: checking for $ac_word" >&5
     955echo "configure:956: checking for $ac_word" >&5
    961956if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    962957  echo $ac_n "(cached) $ac_c" 1>&6
     
    10091004set dummy cl; ac_word=$2
    10101005echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1011 echo "configure:1012: checking for $ac_word" >&5
     1006echo "configure:1007: checking for $ac_word" >&5
    10121007if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    10131008  echo $ac_n "(cached) $ac_c" 1>&6
     
    10411036
    10421037echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
    1043 echo "configure:1044: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
     1038echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
    10441039
    10451040ac_ext=c
     
    10521047cat > conftest.$ac_ext << EOF
    10531048
    1054 #line 1055 "configure"
     1049#line 1050 "configure"
    10551050#include "confdefs.h"
    10561051
    10571052main(){return(0);}
    10581053EOF
    1059 if { (eval echo configure:1060: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1054if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    10601055  ac_cv_prog_cc_works=yes
    10611056  # If we can't run a trivial program, we are probably using a cross compiler.
     
    10831078fi
    10841079echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
    1085 echo "configure:1086: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
     1080echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
    10861081echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
    10871082cross_compiling=$ac_cv_prog_cc_cross
    10881083
    10891084echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    1090 echo "configure:1091: checking whether we are using GNU C" >&5
     1085echo "configure:1086: checking whether we are using GNU C" >&5
    10911086if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    10921087  echo $ac_n "(cached) $ac_c" 1>&6
     
    10971092#endif
    10981093EOF
    1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1094if { 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
    11001095  ac_cv_prog_gcc=yes
    11011096else
     
    11161111CFLAGS=
    11171112echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    1118 echo "configure:1119: checking whether ${CC-cc} accepts -g" >&5
     1113echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5
    11191114if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    11201115  echo $ac_n "(cached) $ac_c" 1>&6
     
    11511146do
    11521147echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    1153 echo "configure:1154: checking for $ac_func" >&5
     1148echo "configure:1149: checking for $ac_func" >&5
    11541149if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    11551150  echo $ac_n "(cached) $ac_c" 1>&6
    11561151else
    11571152  cat > conftest.$ac_ext <<EOF
    1158 #line 1159 "configure"
     1153#line 1154 "configure"
    11591154#include "confdefs.h"
    11601155/* System header to define __stub macros and hopefully few prototypes,
     
    11791174; return 0; }
    11801175EOF
    1181 if { (eval echo configure:1182: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1176if { (eval echo configure:1177: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    11821177  rm -rf conftest*
    11831178  eval "ac_cv_func_$ac_func=yes"
  • c/src/lib/libbsp/i386/pc386/tools/aclocal.m4

    r1407343 r8c92fa3  
    6464AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    6565[
    66 rtems_target=$target;
    67 case "$target" in
    68 no_cpu*) target=$host;;
    69 *) ;;
    70 esac
    7166AC_CANONICAL_SYSTEM
    7267AC_MSG_CHECKING(rtems target cpu)
    7368changequote(,)dnl
    74 case "${rtems_target}" in
     69case "${target}" in
    7570  # hpux unix port should go here
    7671  i[3456]86-go32-rtems*)
     
    9085        ;;
    9186  *)
    92         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     87        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    9388        ;;
    9489esac
  • c/src/lib/libbsp/i386/pc386/tools/configure

    r1407343 r8c92fa3  
    577577
    578578
    579 rtems_target=$target;
    580 case "$target" in
    581 no_cpu*) target=$host;;
    582 *) ;;
    583 esac
    584579
    585580# Do some error checking and defaulting for the host and target type.
     
    610605
    611606echo $ac_n "checking host system type""... $ac_c" 1>&6
    612 echo "configure:613: checking host system type" >&5
     607echo "configure:608: checking host system type" >&5
    613608
    614609host_alias=$host
     
    631626
    632627echo $ac_n "checking target system type""... $ac_c" 1>&6
    633 echo "configure:634: checking target system type" >&5
     628echo "configure:629: checking target system type" >&5
    634629
    635630target_alias=$target
     
    649644
    650645echo $ac_n "checking build system type""... $ac_c" 1>&6
    651 echo "configure:652: checking build system type" >&5
     646echo "configure:647: checking build system type" >&5
    652647
    653648build_alias=$build
     
    672667
    673668echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
    674 echo "configure:675: checking rtems target cpu" >&5
    675 case "${rtems_target}" in
     669echo "configure:670: checking rtems target cpu" >&5
     670case "${target}" in
    676671  # hpux unix port should go here
    677672  i[3456]86-go32-rtems*)
     
    691686        ;;
    692687  *)
    693         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     688        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    694689        ;;
    695690esac
     
    710705# ./install, which can be erroneously created by make from ./install.sh.
    711706echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    712 echo "configure:713: checking for a BSD compatible install" >&5
     707echo "configure:708: checking for a BSD compatible install" >&5
    713708if test -z "$INSTALL"; then
    714709if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     
    763758
    764759echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    765 echo "configure:766: checking whether build environment is sane" >&5
     760echo "configure:761: checking whether build environment is sane" >&5
    766761# Just in case
    767762sleep 1
     
    820815
    821816echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    822 echo "configure:823: checking whether ${MAKE-make} sets \${MAKE}" >&5
     817echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5
    823818set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    824819if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    859854missing_dir=`cd $ac_aux_dir && pwd`
    860855echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    861 echo "configure:862: checking for working aclocal" >&5
     856echo "configure:857: checking for working aclocal" >&5
    862857# Run test in a subshell; some versions of sh will print an error if
    863858# an executable is not found, even if stderr is redirected.
     
    872867
    873868echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    874 echo "configure:875: checking for working autoconf" >&5
     869echo "configure:870: checking for working autoconf" >&5
    875870# Run test in a subshell; some versions of sh will print an error if
    876871# an executable is not found, even if stderr is redirected.
     
    885880
    886881echo $ac_n "checking for working automake""... $ac_c" 1>&6
    887 echo "configure:888: checking for working automake" >&5
     882echo "configure:883: checking for working automake" >&5
    888883# Run test in a subshell; some versions of sh will print an error if
    889884# an executable is not found, even if stderr is redirected.
     
    898893
    899894echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    900 echo "configure:901: checking for working autoheader" >&5
     895echo "configure:896: checking for working autoheader" >&5
    901896# Run test in a subshell; some versions of sh will print an error if
    902897# an executable is not found, even if stderr is redirected.
     
    911906
    912907echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    913 echo "configure:914: checking for working makeinfo" >&5
     908echo "configure:909: checking for working makeinfo" >&5
    914909# Run test in a subshell; some versions of sh will print an error if
    915910# an executable is not found, even if stderr is redirected.
     
    928923set dummy gcc; ac_word=$2
    929924echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    930 echo "configure:931: checking for $ac_word" >&5
     925echo "configure:926: checking for $ac_word" >&5
    931926if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    932927  echo $ac_n "(cached) $ac_c" 1>&6
     
    958953set dummy cc; ac_word=$2
    959954echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    960 echo "configure:961: checking for $ac_word" >&5
     955echo "configure:956: checking for $ac_word" >&5
    961956if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    962957  echo $ac_n "(cached) $ac_c" 1>&6
     
    10091004set dummy cl; ac_word=$2
    10101005echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1011 echo "configure:1012: checking for $ac_word" >&5
     1006echo "configure:1007: checking for $ac_word" >&5
    10121007if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    10131008  echo $ac_n "(cached) $ac_c" 1>&6
     
    10411036
    10421037echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
    1043 echo "configure:1044: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
     1038echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
    10441039
    10451040ac_ext=c
     
    10521047cat > conftest.$ac_ext << EOF
    10531048
    1054 #line 1055 "configure"
     1049#line 1050 "configure"
    10551050#include "confdefs.h"
    10561051
    10571052main(){return(0);}
    10581053EOF
    1059 if { (eval echo configure:1060: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1054if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    10601055  ac_cv_prog_cc_works=yes
    10611056  # If we can't run a trivial program, we are probably using a cross compiler.
     
    10831078fi
    10841079echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
    1085 echo "configure:1086: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
     1080echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
    10861081echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
    10871082cross_compiling=$ac_cv_prog_cc_cross
    10881083
    10891084echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    1090 echo "configure:1091: checking whether we are using GNU C" >&5
     1085echo "configure:1086: checking whether we are using GNU C" >&5
    10911086if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    10921087  echo $ac_n "(cached) $ac_c" 1>&6
     
    10971092#endif
    10981093EOF
    1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1094if { 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
    11001095  ac_cv_prog_gcc=yes
    11011096else
     
    11161111CFLAGS=
    11171112echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    1118 echo "configure:1119: checking whether ${CC-cc} accepts -g" >&5
     1113echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5
    11191114if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    11201115  echo $ac_n "(cached) $ac_c" 1>&6
     
    11511146do
    11521147echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    1153 echo "configure:1154: checking for $ac_func" >&5
     1148echo "configure:1149: checking for $ac_func" >&5
    11541149if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    11551150  echo $ac_n "(cached) $ac_c" 1>&6
    11561151else
    11571152  cat > conftest.$ac_ext <<EOF
    1158 #line 1159 "configure"
     1153#line 1154 "configure"
    11591154#include "confdefs.h"
    11601155/* System header to define __stub macros and hopefully few prototypes,
     
    11791174; return 0; }
    11801175EOF
    1181 if { (eval echo configure:1182: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1176if { (eval echo configure:1177: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    11821177  rm -rf conftest*
    11831178  eval "ac_cv_func_$ac_func=yes"
  • c/src/lib/libbsp/m68k/mvme162/tools/aclocal.m4

    r1407343 r8c92fa3  
    6464AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    6565[
    66 rtems_target=$target;
    67 case "$target" in
    68 no_cpu*) target=$host;;
    69 *) ;;
    70 esac
    7166AC_CANONICAL_SYSTEM
    7267AC_MSG_CHECKING(rtems target cpu)
    7368changequote(,)dnl
    74 case "${rtems_target}" in
     69case "${target}" in
    7570  # hpux unix port should go here
    7671  i[3456]86-go32-rtems*)
     
    9085        ;;
    9186  *)
    92         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     87        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    9388        ;;
    9489esac
  • c/src/lib/libbsp/m68k/mvme162/tools/configure

    r1407343 r8c92fa3  
    577577
    578578
    579 rtems_target=$target;
    580 case "$target" in
    581 no_cpu*) target=$host;;
    582 *) ;;
    583 esac
    584579
    585580# Do some error checking and defaulting for the host and target type.
     
    610605
    611606echo $ac_n "checking host system type""... $ac_c" 1>&6
    612 echo "configure:613: checking host system type" >&5
     607echo "configure:608: checking host system type" >&5
    613608
    614609host_alias=$host
     
    631626
    632627echo $ac_n "checking target system type""... $ac_c" 1>&6
    633 echo "configure:634: checking target system type" >&5
     628echo "configure:629: checking target system type" >&5
    634629
    635630target_alias=$target
     
    649644
    650645echo $ac_n "checking build system type""... $ac_c" 1>&6
    651 echo "configure:652: checking build system type" >&5
     646echo "configure:647: checking build system type" >&5
    652647
    653648build_alias=$build
     
    672667
    673668echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
    674 echo "configure:675: checking rtems target cpu" >&5
    675 case "${rtems_target}" in
     669echo "configure:670: checking rtems target cpu" >&5
     670case "${target}" in
    676671  # hpux unix port should go here
    677672  i[3456]86-go32-rtems*)
     
    691686        ;;
    692687  *)
    693         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     688        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    694689        ;;
    695690esac
     
    710705# ./install, which can be erroneously created by make from ./install.sh.
    711706echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    712 echo "configure:713: checking for a BSD compatible install" >&5
     707echo "configure:708: checking for a BSD compatible install" >&5
    713708if test -z "$INSTALL"; then
    714709if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     
    763758
    764759echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    765 echo "configure:766: checking whether build environment is sane" >&5
     760echo "configure:761: checking whether build environment is sane" >&5
    766761# Just in case
    767762sleep 1
     
    820815
    821816echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    822 echo "configure:823: checking whether ${MAKE-make} sets \${MAKE}" >&5
     817echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5
    823818set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    824819if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    859854missing_dir=`cd $ac_aux_dir && pwd`
    860855echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    861 echo "configure:862: checking for working aclocal" >&5
     856echo "configure:857: checking for working aclocal" >&5
    862857# Run test in a subshell; some versions of sh will print an error if
    863858# an executable is not found, even if stderr is redirected.
     
    872867
    873868echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    874 echo "configure:875: checking for working autoconf" >&5
     869echo "configure:870: checking for working autoconf" >&5
    875870# Run test in a subshell; some versions of sh will print an error if
    876871# an executable is not found, even if stderr is redirected.
     
    885880
    886881echo $ac_n "checking for working automake""... $ac_c" 1>&6
    887 echo "configure:888: checking for working automake" >&5
     882echo "configure:883: checking for working automake" >&5
    888883# Run test in a subshell; some versions of sh will print an error if
    889884# an executable is not found, even if stderr is redirected.
     
    898893
    899894echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    900 echo "configure:901: checking for working autoheader" >&5
     895echo "configure:896: checking for working autoheader" >&5
    901896# Run test in a subshell; some versions of sh will print an error if
    902897# an executable is not found, even if stderr is redirected.
     
    911906
    912907echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    913 echo "configure:914: checking for working makeinfo" >&5
     908echo "configure:909: checking for working makeinfo" >&5
    914909# Run test in a subshell; some versions of sh will print an error if
    915910# an executable is not found, even if stderr is redirected.
     
    928923set dummy gcc; ac_word=$2
    929924echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    930 echo "configure:931: checking for $ac_word" >&5
     925echo "configure:926: checking for $ac_word" >&5
    931926if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    932927  echo $ac_n "(cached) $ac_c" 1>&6
     
    958953set dummy cc; ac_word=$2
    959954echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    960 echo "configure:961: checking for $ac_word" >&5
     955echo "configure:956: checking for $ac_word" >&5
    961956if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    962957  echo $ac_n "(cached) $ac_c" 1>&6
     
    10091004set dummy cl; ac_word=$2
    10101005echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1011 echo "configure:1012: checking for $ac_word" >&5
     1006echo "configure:1007: checking for $ac_word" >&5
    10121007if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    10131008  echo $ac_n "(cached) $ac_c" 1>&6
     
    10411036
    10421037echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
    1043 echo "configure:1044: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
     1038echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
    10441039
    10451040ac_ext=c
     
    10521047cat > conftest.$ac_ext << EOF
    10531048
    1054 #line 1055 "configure"
     1049#line 1050 "configure"
    10551050#include "confdefs.h"
    10561051
    10571052main(){return(0);}
    10581053EOF
    1059 if { (eval echo configure:1060: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1054if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    10601055  ac_cv_prog_cc_works=yes
    10611056  # If we can't run a trivial program, we are probably using a cross compiler.
     
    10831078fi
    10841079echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
    1085 echo "configure:1086: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
     1080echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
    10861081echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
    10871082cross_compiling=$ac_cv_prog_cc_cross
    10881083
    10891084echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    1090 echo "configure:1091: checking whether we are using GNU C" >&5
     1085echo "configure:1086: checking whether we are using GNU C" >&5
    10911086if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    10921087  echo $ac_n "(cached) $ac_c" 1>&6
     
    10971092#endif
    10981093EOF
    1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1094if { 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
    11001095  ac_cv_prog_gcc=yes
    11011096else
     
    11161111CFLAGS=
    11171112echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    1118 echo "configure:1119: checking whether ${CC-cc} accepts -g" >&5
     1113echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5
    11191114if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    11201115  echo $ac_n "(cached) $ac_c" 1>&6
     
    11491144
    11501145echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
    1151 echo "configure:1152: checking how to run the C preprocessor" >&5
     1146echo "configure:1147: checking how to run the C preprocessor" >&5
    11521147# On Suns, sometimes $CPP names a directory.
    11531148if test -n "$CPP" && test -d "$CPP"; then
     
    11641159  # not just through cpp.
    11651160  cat > conftest.$ac_ext <<EOF
    1166 #line 1167 "configure"
     1161#line 1162 "configure"
    11671162#include "confdefs.h"
    11681163#include <assert.h>
     
    11701165EOF
    11711166ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    1172 { (eval echo configure:1173: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     1167{ (eval echo configure:1168: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    11731168ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    11741169if test -z "$ac_err"; then
     
    11811176  CPP="${CC-cc} -E -traditional-cpp"
    11821177  cat > conftest.$ac_ext <<EOF
    1183 #line 1184 "configure"
     1178#line 1179 "configure"
    11841179#include "confdefs.h"
    11851180#include <assert.h>
     
    11871182EOF
    11881183ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    1189 { (eval echo configure:1190: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     1184{ (eval echo configure:1185: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    11901185ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    11911186if test -z "$ac_err"; then
     
    11981193  CPP="${CC-cc} -nologo -E"
    11991194  cat > conftest.$ac_ext <<EOF
    1200 #line 1201 "configure"
     1195#line 1196 "configure"
    12011196#include "confdefs.h"
    12021197#include <assert.h>
     
    12041199EOF
    12051200ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    1206 { (eval echo configure:1207: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     1201{ (eval echo configure:1202: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    12071202ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    12081203if test -z "$ac_err"; then
     
    12291224
    12301225echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
    1231 echo "configure:1232: checking for ANSI C header files" >&5
     1226echo "configure:1227: checking for ANSI C header files" >&5
    12321227if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
    12331228  echo $ac_n "(cached) $ac_c" 1>&6
    12341229else
    12351230  cat > conftest.$ac_ext <<EOF
    1236 #line 1237 "configure"
     1231#line 1232 "configure"
    12371232#include "confdefs.h"
    12381233#include <stdlib.h>
     
    12421237EOF
    12431238ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    1244 { (eval echo configure:1245: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     1239{ (eval echo configure:1240: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    12451240ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    12461241if test -z "$ac_err"; then
     
    12591254  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
    12601255cat > conftest.$ac_ext <<EOF
    1261 #line 1262 "configure"
     1256#line 1257 "configure"
    12621257#include "confdefs.h"
    12631258#include <string.h>
     
    12771272  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
    12781273cat > conftest.$ac_ext <<EOF
    1279 #line 1280 "configure"
     1274#line 1275 "configure"
    12801275#include "confdefs.h"
    12811276#include <stdlib.h>
     
    12981293else
    12991294  cat > conftest.$ac_ext <<EOF
    1300 #line 1301 "configure"
     1295#line 1296 "configure"
    13011296#include "confdefs.h"
    13021297#include <ctype.h>
     
    13091304
    13101305EOF
    1311 if { (eval echo configure:1312: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     1306if { (eval echo configure:1307: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    13121307then
    13131308  :
     
    13361331ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
    13371332echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
    1338 echo "configure:1339: checking for $ac_hdr" >&5
     1333echo "configure:1334: checking for $ac_hdr" >&5
    13391334if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    13401335  echo $ac_n "(cached) $ac_c" 1>&6
    13411336else
    13421337  cat > conftest.$ac_ext <<EOF
    1343 #line 1344 "configure"
     1338#line 1339 "configure"
    13441339#include "confdefs.h"
    13451340#include <$ac_hdr>
    13461341EOF
    13471342ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    1348 { (eval echo configure:1349: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     1343{ (eval echo configure:1344: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    13491344ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    13501345if test -z "$ac_err"; then
     
    13761371ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
    13771372echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
    1378 echo "configure:1379: checking for $ac_hdr" >&5
     1373echo "configure:1374: checking for $ac_hdr" >&5
    13791374if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    13801375  echo $ac_n "(cached) $ac_c" 1>&6
    13811376else
    13821377  cat > conftest.$ac_ext <<EOF
    1383 #line 1384 "configure"
     1378#line 1379 "configure"
    13841379#include "confdefs.h"
    13851380#include <$ac_hdr>
    13861381EOF
    13871382ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    1388 { (eval echo configure:1389: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     1383{ (eval echo configure:1384: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    13891384ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    13901385if test -z "$ac_err"; then
     
    14151410do
    14161411echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    1417 echo "configure:1418: checking for $ac_func" >&5
     1412echo "configure:1413: checking for $ac_func" >&5
    14181413if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    14191414  echo $ac_n "(cached) $ac_c" 1>&6
    14201415else
    14211416  cat > conftest.$ac_ext <<EOF
    1422 #line 1423 "configure"
     1417#line 1418 "configure"
    14231418#include "confdefs.h"
    14241419/* System header to define __stub macros and hopefully few prototypes,
     
    14431438; return 0; }
    14441439EOF
    1445 if { (eval echo configure:1446: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1440if { (eval echo configure:1441: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    14461441  rm -rf conftest*
    14471442  eval "ac_cv_func_$ac_func=yes"
     
    14681463
    14691464echo $ac_n "checking for working mmap""... $ac_c" 1>&6
    1470 echo "configure:1471: checking for working mmap" >&5
     1465echo "configure:1466: checking for working mmap" >&5
    14711466if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then
    14721467  echo $ac_n "(cached) $ac_c" 1>&6
     
    14761471else
    14771472  cat > conftest.$ac_ext <<EOF
    1478 #line 1479 "configure"
     1473#line 1474 "configure"
    14791474#include "confdefs.h"
    14801475
     
    16161611
    16171612EOF
    1618 if { (eval echo configure:1619: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     1613if { (eval echo configure:1614: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    16191614then
    16201615  ac_cv_func_mmap_fixed_mapped=yes
  • c/src/lib/libbsp/powerpc/psim/tools/aclocal.m4

    r1407343 r8c92fa3  
    6464AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    6565[
    66 rtems_target=$target;
    67 case "$target" in
    68 no_cpu*) target=$host;;
    69 *) ;;
    70 esac
    7166AC_CANONICAL_SYSTEM
    7267AC_MSG_CHECKING(rtems target cpu)
    7368changequote(,)dnl
    74 case "${rtems_target}" in
     69case "${target}" in
    7570  # hpux unix port should go here
    7671  i[3456]86-go32-rtems*)
     
    9085        ;;
    9186  *)
    92         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     87        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    9388        ;;
    9489esac
  • c/src/lib/libbsp/powerpc/psim/tools/configure

    r1407343 r8c92fa3  
    577577
    578578
    579 rtems_target=$target;
    580 case "$target" in
    581 no_cpu*) target=$host;;
    582 *) ;;
    583 esac
    584579
    585580# Do some error checking and defaulting for the host and target type.
     
    610605
    611606echo $ac_n "checking host system type""... $ac_c" 1>&6
    612 echo "configure:613: checking host system type" >&5
     607echo "configure:608: checking host system type" >&5
    613608
    614609host_alias=$host
     
    631626
    632627echo $ac_n "checking target system type""... $ac_c" 1>&6
    633 echo "configure:634: checking target system type" >&5
     628echo "configure:629: checking target system type" >&5
    634629
    635630target_alias=$target
     
    649644
    650645echo $ac_n "checking build system type""... $ac_c" 1>&6
    651 echo "configure:652: checking build system type" >&5
     646echo "configure:647: checking build system type" >&5
    652647
    653648build_alias=$build
     
    672667
    673668echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
    674 echo "configure:675: checking rtems target cpu" >&5
    675 case "${rtems_target}" in
     669echo "configure:670: checking rtems target cpu" >&5
     670case "${target}" in
    676671  # hpux unix port should go here
    677672  i[3456]86-go32-rtems*)
     
    691686        ;;
    692687  *)
    693         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     688        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    694689        ;;
    695690esac
     
    710705# ./install, which can be erroneously created by make from ./install.sh.
    711706echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    712 echo "configure:713: checking for a BSD compatible install" >&5
     707echo "configure:708: checking for a BSD compatible install" >&5
    713708if test -z "$INSTALL"; then
    714709if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     
    763758
    764759echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    765 echo "configure:766: checking whether build environment is sane" >&5
     760echo "configure:761: checking whether build environment is sane" >&5
    766761# Just in case
    767762sleep 1
     
    820815
    821816echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    822 echo "configure:823: checking whether ${MAKE-make} sets \${MAKE}" >&5
     817echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5
    823818set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    824819if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    859854missing_dir=`cd $ac_aux_dir && pwd`
    860855echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    861 echo "configure:862: checking for working aclocal" >&5
     856echo "configure:857: checking for working aclocal" >&5
    862857# Run test in a subshell; some versions of sh will print an error if
    863858# an executable is not found, even if stderr is redirected.
     
    872867
    873868echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    874 echo "configure:875: checking for working autoconf" >&5
     869echo "configure:870: checking for working autoconf" >&5
    875870# Run test in a subshell; some versions of sh will print an error if
    876871# an executable is not found, even if stderr is redirected.
     
    885880
    886881echo $ac_n "checking for working automake""... $ac_c" 1>&6
    887 echo "configure:888: checking for working automake" >&5
     882echo "configure:883: checking for working automake" >&5
    888883# Run test in a subshell; some versions of sh will print an error if
    889884# an executable is not found, even if stderr is redirected.
     
    898893
    899894echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    900 echo "configure:901: checking for working autoheader" >&5
     895echo "configure:896: checking for working autoheader" >&5
    901896# Run test in a subshell; some versions of sh will print an error if
    902897# an executable is not found, even if stderr is redirected.
     
    911906
    912907echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    913 echo "configure:914: checking for working makeinfo" >&5
     908echo "configure:909: checking for working makeinfo" >&5
    914909# Run test in a subshell; some versions of sh will print an error if
    915910# an executable is not found, even if stderr is redirected.
  • c/src/lib/libbsp/sparc/erc32/tools/aclocal.m4

    r1407343 r8c92fa3  
    6464AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    6565[
    66 rtems_target=$target;
    67 case "$target" in
    68 no_cpu*) target=$host;;
    69 *) ;;
    70 esac
    7166AC_CANONICAL_SYSTEM
    7267AC_MSG_CHECKING(rtems target cpu)
    7368changequote(,)dnl
    74 case "${rtems_target}" in
     69case "${target}" in
    7570  # hpux unix port should go here
    7671  i[3456]86-go32-rtems*)
     
    9085        ;;
    9186  *)
    92         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     87        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    9388        ;;
    9489esac
  • c/src/lib/libbsp/sparc/erc32/tools/configure

    r1407343 r8c92fa3  
    577577
    578578
    579 rtems_target=$target;
    580 case "$target" in
    581 no_cpu*) target=$host;;
    582 *) ;;
    583 esac
    584579
    585580# Do some error checking and defaulting for the host and target type.
     
    610605
    611606echo $ac_n "checking host system type""... $ac_c" 1>&6
    612 echo "configure:613: checking host system type" >&5
     607echo "configure:608: checking host system type" >&5
    613608
    614609host_alias=$host
     
    631626
    632627echo $ac_n "checking target system type""... $ac_c" 1>&6
    633 echo "configure:634: checking target system type" >&5
     628echo "configure:629: checking target system type" >&5
    634629
    635630target_alias=$target
     
    649644
    650645echo $ac_n "checking build system type""... $ac_c" 1>&6
    651 echo "configure:652: checking build system type" >&5
     646echo "configure:647: checking build system type" >&5
    652647
    653648build_alias=$build
     
    672667
    673668echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
    674 echo "configure:675: checking rtems target cpu" >&5
    675 case "${rtems_target}" in
     669echo "configure:670: checking rtems target cpu" >&5
     670case "${target}" in
    676671  # hpux unix port should go here
    677672  i[3456]86-go32-rtems*)
     
    691686        ;;
    692687  *)
    693         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     688        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    694689        ;;
    695690esac
     
    710705# ./install, which can be erroneously created by make from ./install.sh.
    711706echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    712 echo "configure:713: checking for a BSD compatible install" >&5
     707echo "configure:708: checking for a BSD compatible install" >&5
    713708if test -z "$INSTALL"; then
    714709if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     
    763758
    764759echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    765 echo "configure:766: checking whether build environment is sane" >&5
     760echo "configure:761: checking whether build environment is sane" >&5
    766761# Just in case
    767762sleep 1
     
    820815
    821816echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    822 echo "configure:823: checking whether ${MAKE-make} sets \${MAKE}" >&5
     817echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5
    823818set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    824819if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    859854missing_dir=`cd $ac_aux_dir && pwd`
    860855echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    861 echo "configure:862: checking for working aclocal" >&5
     856echo "configure:857: checking for working aclocal" >&5
    862857# Run test in a subshell; some versions of sh will print an error if
    863858# an executable is not found, even if stderr is redirected.
     
    872867
    873868echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    874 echo "configure:875: checking for working autoconf" >&5
     869echo "configure:870: checking for working autoconf" >&5
    875870# Run test in a subshell; some versions of sh will print an error if
    876871# an executable is not found, even if stderr is redirected.
     
    885880
    886881echo $ac_n "checking for working automake""... $ac_c" 1>&6
    887 echo "configure:888: checking for working automake" >&5
     882echo "configure:883: checking for working automake" >&5
    888883# Run test in a subshell; some versions of sh will print an error if
    889884# an executable is not found, even if stderr is redirected.
     
    898893
    899894echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    900 echo "configure:901: checking for working autoheader" >&5
     895echo "configure:896: checking for working autoheader" >&5
    901896# Run test in a subshell; some versions of sh will print an error if
    902897# an executable is not found, even if stderr is redirected.
     
    911906
    912907echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    913 echo "configure:914: checking for working makeinfo" >&5
     908echo "configure:909: checking for working makeinfo" >&5
    914909# Run test in a subshell; some versions of sh will print an error if
    915910# an executable is not found, even if stderr is redirected.
     
    931926set dummy $ac_prog; ac_word=$2
    932927echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    933 echo "configure:934: checking for $ac_word" >&5
     928echo "configure:929: checking for $ac_word" >&5
    934929if eval "test \"`echo '$''{'ac_cv_path_KSH'+set}'`\" = set"; then
    935930  echo $ac_n "(cached) $ac_c" 1>&6
  • c/src/lib/libbsp/unix/posix/tools/aclocal.m4

    r1407343 r8c92fa3  
    6464AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    6565[
    66 rtems_target=$target;
    67 case "$target" in
    68 no_cpu*) target=$host;;
    69 *) ;;
    70 esac
    7166AC_CANONICAL_SYSTEM
    7267AC_MSG_CHECKING(rtems target cpu)
    7368changequote(,)dnl
    74 case "${rtems_target}" in
     69case "${target}" in
    7570  # hpux unix port should go here
    7671  i[3456]86-go32-rtems*)
     
    9085        ;;
    9186  *)
    92         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     87        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    9388        ;;
    9489esac
  • c/src/lib/libbsp/unix/posix/tools/configure

    r1407343 r8c92fa3  
    577577
    578578
    579 rtems_target=$target;
    580 case "$target" in
    581 no_cpu*) target=$host;;
    582 *) ;;
    583 esac
    584579
    585580# Do some error checking and defaulting for the host and target type.
     
    610605
    611606echo $ac_n "checking host system type""... $ac_c" 1>&6
    612 echo "configure:613: checking host system type" >&5
     607echo "configure:608: checking host system type" >&5
    613608
    614609host_alias=$host
     
    631626
    632627echo $ac_n "checking target system type""... $ac_c" 1>&6
    633 echo "configure:634: checking target system type" >&5
     628echo "configure:629: checking target system type" >&5
    634629
    635630target_alias=$target
     
    649644
    650645echo $ac_n "checking build system type""... $ac_c" 1>&6
    651 echo "configure:652: checking build system type" >&5
     646echo "configure:647: checking build system type" >&5
    652647
    653648build_alias=$build
     
    672667
    673668echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
    674 echo "configure:675: checking rtems target cpu" >&5
    675 case "${rtems_target}" in
     669echo "configure:670: checking rtems target cpu" >&5
     670case "${target}" in
    676671  # hpux unix port should go here
    677672  i[3456]86-go32-rtems*)
     
    691686        ;;
    692687  *)
    693         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     688        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    694689        ;;
    695690esac
     
    710705# ./install, which can be erroneously created by make from ./install.sh.
    711706echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    712 echo "configure:713: checking for a BSD compatible install" >&5
     707echo "configure:708: checking for a BSD compatible install" >&5
    713708if test -z "$INSTALL"; then
    714709if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     
    763758
    764759echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    765 echo "configure:766: checking whether build environment is sane" >&5
     760echo "configure:761: checking whether build environment is sane" >&5
    766761# Just in case
    767762sleep 1
     
    820815
    821816echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    822 echo "configure:823: checking whether ${MAKE-make} sets \${MAKE}" >&5
     817echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5
    823818set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    824819if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    859854missing_dir=`cd $ac_aux_dir && pwd`
    860855echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    861 echo "configure:862: checking for working aclocal" >&5
     856echo "configure:857: checking for working aclocal" >&5
    862857# Run test in a subshell; some versions of sh will print an error if
    863858# an executable is not found, even if stderr is redirected.
     
    872867
    873868echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    874 echo "configure:875: checking for working autoconf" >&5
     869echo "configure:870: checking for working autoconf" >&5
    875870# Run test in a subshell; some versions of sh will print an error if
    876871# an executable is not found, even if stderr is redirected.
     
    885880
    886881echo $ac_n "checking for working automake""... $ac_c" 1>&6
    887 echo "configure:888: checking for working automake" >&5
     882echo "configure:883: checking for working automake" >&5
    888883# Run test in a subshell; some versions of sh will print an error if
    889884# an executable is not found, even if stderr is redirected.
     
    898893
    899894echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    900 echo "configure:901: checking for working autoheader" >&5
     895echo "configure:896: checking for working autoheader" >&5
    901896# Run test in a subshell; some versions of sh will print an error if
    902897# an executable is not found, even if stderr is redirected.
     
    911906
    912907echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    913 echo "configure:914: checking for working makeinfo" >&5
     908echo "configure:909: checking for working makeinfo" >&5
    914909# Run test in a subshell; some versions of sh will print an error if
    915910# an executable is not found, even if stderr is redirected.
     
    931926set dummy $ac_prog; ac_word=$2
    932927echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    933 echo "configure:934: checking for $ac_word" >&5
     928echo "configure:929: checking for $ac_word" >&5
    934929if eval "test \"`echo '$''{'ac_cv_path_KSH'+set}'`\" = set"; then
    935930  echo $ac_n "(cached) $ac_c" 1>&6
     
    976971set dummy perl; ac_word=$2
    977972echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    978 echo "configure:979: checking for $ac_word" >&5
     973echo "configure:974: checking for $ac_word" >&5
    979974if eval "test \"`echo '$''{'ac_cv_path_PERL'+set}'`\" = set"; then
    980975  echo $ac_n "(cached) $ac_c" 1>&6
  • c/src/tests/tools/generic/aclocal.m4

    r1407343 r8c92fa3  
    6464AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    6565[
    66 rtems_target=$target;
    67 case "$target" in
    68 no_cpu*) target=$host;;
    69 *) ;;
    70 esac
    7166AC_CANONICAL_SYSTEM
    7267AC_MSG_CHECKING(rtems target cpu)
    7368changequote(,)dnl
    74 case "${rtems_target}" in
     69case "${target}" in
    7570  # hpux unix port should go here
    7671  i[3456]86-go32-rtems*)
     
    9085        ;;
    9186  *)
    92         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     87        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    9388        ;;
    9489esac
  • c/src/tests/tools/generic/configure

    r1407343 r8c92fa3  
    577577
    578578
    579 rtems_target=$target;
    580 case "$target" in
    581 no_cpu*) target=$host;;
    582 *) ;;
    583 esac
    584579
    585580# Do some error checking and defaulting for the host and target type.
     
    610605
    611606echo $ac_n "checking host system type""... $ac_c" 1>&6
    612 echo "configure:613: checking host system type" >&5
     607echo "configure:608: checking host system type" >&5
    613608
    614609host_alias=$host
     
    631626
    632627echo $ac_n "checking target system type""... $ac_c" 1>&6
    633 echo "configure:634: checking target system type" >&5
     628echo "configure:629: checking target system type" >&5
    634629
    635630target_alias=$target
     
    649644
    650645echo $ac_n "checking build system type""... $ac_c" 1>&6
    651 echo "configure:652: checking build system type" >&5
     646echo "configure:647: checking build system type" >&5
    652647
    653648build_alias=$build
     
    672667
    673668echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
    674 echo "configure:675: checking rtems target cpu" >&5
    675 case "${rtems_target}" in
     669echo "configure:670: checking rtems target cpu" >&5
     670case "${target}" in
    676671  # hpux unix port should go here
    677672  i[3456]86-go32-rtems*)
     
    691686        ;;
    692687  *)
    693         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     688        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    694689        ;;
    695690esac
     
    710705# ./install, which can be erroneously created by make from ./install.sh.
    711706echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    712 echo "configure:713: checking for a BSD compatible install" >&5
     707echo "configure:708: checking for a BSD compatible install" >&5
    713708if test -z "$INSTALL"; then
    714709if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     
    763758
    764759echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    765 echo "configure:766: checking whether build environment is sane" >&5
     760echo "configure:761: checking whether build environment is sane" >&5
    766761# Just in case
    767762sleep 1
     
    820815
    821816echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    822 echo "configure:823: checking whether ${MAKE-make} sets \${MAKE}" >&5
     817echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5
    823818set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    824819if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    859854missing_dir=`cd $ac_aux_dir && pwd`
    860855echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    861 echo "configure:862: checking for working aclocal" >&5
     856echo "configure:857: checking for working aclocal" >&5
    862857# Run test in a subshell; some versions of sh will print an error if
    863858# an executable is not found, even if stderr is redirected.
     
    872867
    873868echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    874 echo "configure:875: checking for working autoconf" >&5
     869echo "configure:870: checking for working autoconf" >&5
    875870# Run test in a subshell; some versions of sh will print an error if
    876871# an executable is not found, even if stderr is redirected.
     
    885880
    886881echo $ac_n "checking for working automake""... $ac_c" 1>&6
    887 echo "configure:888: checking for working automake" >&5
     882echo "configure:883: checking for working automake" >&5
    888883# Run test in a subshell; some versions of sh will print an error if
    889884# an executable is not found, even if stderr is redirected.
     
    898893
    899894echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    900 echo "configure:901: checking for working autoheader" >&5
     895echo "configure:896: checking for working autoheader" >&5
    901896# Run test in a subshell; some versions of sh will print an error if
    902897# an executable is not found, even if stderr is redirected.
     
    911906
    912907echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    913 echo "configure:914: checking for working makeinfo" >&5
     908echo "configure:909: checking for working makeinfo" >&5
    914909# Run test in a subshell; some versions of sh will print an error if
    915910# an executable is not found, even if stderr is redirected.
     
    931926set dummy $ac_prog; ac_word=$2
    932927echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    933 echo "configure:934: checking for $ac_word" >&5
     928echo "configure:929: checking for $ac_word" >&5
    934929if eval "test \"`echo '$''{'ac_cv_path_KSH'+set}'`\" = set"; then
    935930  echo $ac_n "(cached) $ac_c" 1>&6
  • configure

    r1407343 r8c92fa3  
    647647
    648648
    649 rtems_target=$target;
    650 case "$target" in
    651 no_cpu*) target=$host;;
    652 *) ;;
    653 esac
    654649
    655650# Do some error checking and defaulting for the host and target type.
     
    680675
    681676echo $ac_n "checking host system type""... $ac_c" 1>&6
    682 echo "configure:683: checking host system type" >&5
     677echo "configure:678: checking host system type" >&5
    683678
    684679host_alias=$host
     
    701696
    702697echo $ac_n "checking target system type""... $ac_c" 1>&6
    703 echo "configure:704: checking target system type" >&5
     698echo "configure:699: checking target system type" >&5
    704699
    705700target_alias=$target
     
    719714
    720715echo $ac_n "checking build system type""... $ac_c" 1>&6
    721 echo "configure:722: checking build system type" >&5
     716echo "configure:717: checking build system type" >&5
    722717
    723718build_alias=$build
     
    742737
    743738echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
    744 echo "configure:745: checking rtems target cpu" >&5
    745 case "${rtems_target}" in
     739echo "configure:740: checking rtems target cpu" >&5
     740case "${target}" in
    746741  # hpux unix port should go here
    747742  i[3456]86-go32-rtems*)
     
    761756        ;;
    762757  *)
    763         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     758        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    764759        ;;
    765760esac
     
    928923set dummy cat; ac_word=$2
    929924echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    930 echo "configure:931: checking for $ac_word" >&5
     925echo "configure:926: checking for $ac_word" >&5
    931926if eval "test \"`echo '$''{'ac_cv_path_CAT'+set}'`\" = set"; then
    932927  echo $ac_n "(cached) $ac_c" 1>&6
     
    963958set dummy rm; ac_word=$2
    964959echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    965 echo "configure:966: checking for $ac_word" >&5
     960echo "configure:961: checking for $ac_word" >&5
    966961if eval "test \"`echo '$''{'ac_cv_path_RM'+set}'`\" = set"; then
    967962  echo $ac_n "(cached) $ac_c" 1>&6
     
    998993set dummy cp; ac_word=$2
    999994echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1000 echo "configure:1001: checking for $ac_word" >&5
     995echo "configure:996: checking for $ac_word" >&5
    1001996if eval "test \"`echo '$''{'ac_cv_path_CP'+set}'`\" = set"; then
    1002997  echo $ac_n "(cached) $ac_c" 1>&6
     
    10331028set dummy mv; ac_word=$2
    10341029echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1035 echo "configure:1036: checking for $ac_word" >&5
     1030echo "configure:1031: checking for $ac_word" >&5
    10361031if eval "test \"`echo '$''{'ac_cv_path_MV'+set}'`\" = set"; then
    10371032  echo $ac_n "(cached) $ac_c" 1>&6
     
    10681063set dummy ln; ac_word=$2
    10691064echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1070 echo "configure:1071: checking for $ac_word" >&5
     1065echo "configure:1066: checking for $ac_word" >&5
    10711066if eval "test \"`echo '$''{'ac_cv_path_LN'+set}'`\" = set"; then
    10721067  echo $ac_n "(cached) $ac_c" 1>&6
     
    11011096
    11021097echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
    1103 echo "configure:1104: checking whether ln -s works" >&5
     1098echo "configure:1099: checking whether ln -s works" >&5
    11041099if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
    11051100  echo $ac_n "(cached) $ac_c" 1>&6
     
    11241119set dummy chmod; ac_word=$2
    11251120echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1126 echo "configure:1127: checking for $ac_word" >&5
     1121echo "configure:1122: checking for $ac_word" >&5
    11271122if eval "test \"`echo '$''{'ac_cv_path_CHMOD'+set}'`\" = set"; then
    11281123  echo $ac_n "(cached) $ac_c" 1>&6
     
    11591154set dummy sort; ac_word=$2
    11601155echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1161 echo "configure:1162: checking for $ac_word" >&5
     1156echo "configure:1157: checking for $ac_word" >&5
    11621157if eval "test \"`echo '$''{'ac_cv_path_SORT'+set}'`\" = set"; then
    11631158  echo $ac_n "(cached) $ac_c" 1>&6
     
    12031198# ./install, which can be erroneously created by make from ./install.sh.
    12041199echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    1205 echo "configure:1206: checking for a BSD compatible install" >&5
     1200echo "configure:1201: checking for a BSD compatible install" >&5
    12061201if test -z "$INSTALL"; then
    12071202if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     
    12591254set dummy perl; ac_word=$2
    12601255echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1261 echo "configure:1262: checking for $ac_word" >&5
     1256echo "configure:1257: checking for $ac_word" >&5
    12621257if eval "test \"`echo '$''{'ac_cv_path_PERL'+set}'`\" = set"; then
    12631258  echo $ac_n "(cached) $ac_c" 1>&6
     
    13011296set dummy touch; ac_word=$2
    13021297echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1303 echo "configure:1304: checking for $ac_word" >&5
     1298echo "configure:1299: checking for $ac_word" >&5
    13041299if eval "test \"`echo '$''{'ac_cv_path_TOUCH'+set}'`\" = set"; then
    13051300  echo $ac_n "(cached) $ac_c" 1>&6
     
    13361331set dummy cmp; ac_word=$2
    13371332echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1338 echo "configure:1339: checking for $ac_word" >&5
     1333echo "configure:1334: checking for $ac_word" >&5
    13391334if eval "test \"`echo '$''{'ac_cv_path_CMP'+set}'`\" = set"; then
    13401335  echo $ac_n "(cached) $ac_c" 1>&6
     
    13721367set dummy sed; ac_word=$2
    13731368echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1374 echo "configure:1375: checking for $ac_word" >&5
     1369echo "configure:1370: checking for $ac_word" >&5
    13751370if eval "test \"`echo '$''{'ac_cv_path_SED'+set}'`\" = set"; then
    13761371  echo $ac_n "(cached) $ac_c" 1>&6
     
    14091404set dummy $ac_prog; ac_word=$2
    14101405echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1411 echo "configure:1412: checking for $ac_word" >&5
     1406echo "configure:1407: checking for $ac_word" >&5
    14121407if eval "test \"`echo '$''{'ac_cv_path_M4'+set}'`\" = set"; then
    14131408  echo $ac_n "(cached) $ac_c" 1>&6
     
    14511446set dummy $ac_prog; ac_word=$2
    14521447echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1453 echo "configure:1454: checking for $ac_word" >&5
     1448echo "configure:1449: checking for $ac_word" >&5
    14541449if eval "test \"`echo '$''{'ac_cv_path_KSH'+set}'`\" = set"; then
    14551450  echo $ac_n "(cached) $ac_c" 1>&6
     
    15011496# Is this a supported CPU?
    15021497echo $ac_n "checking if cpu $RTEMS_CPU is supported""... $ac_c" 1>&6
    1503 echo "configure:1504: checking if cpu $RTEMS_CPU is supported" >&5
     1498echo "configure:1499: checking if cpu $RTEMS_CPU is supported" >&5
    15041499if test -d "$srcdir/$RTEMS_TOPdir/c/src/exec/score/cpu/$RTEMS_CPU"; then
    15051500  echo "$ac_t""yes" 1>&6
     
    15631558set dummy $ac_prog; ac_word=$2
    15641559echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1565 echo "configure:1566: checking for $ac_word" >&5
     1560echo "configure:1561: checking for $ac_word" >&5
    15661561if eval "test \"`echo '$''{'ac_cv_path_CC_FOR_TARGET'+set}'`\" = set"; then
    15671562  echo $ac_n "(cached) $ac_c" 1>&6
     
    16071602
    16081603echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
    1609 echo "configure:1610: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
     1604echo "configure:1605: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
    16101605
    16111606ac_ext=c
     
    16181613cat > conftest.$ac_ext << EOF
    16191614
    1620 #line 1621 "configure"
     1615#line 1616 "configure"
    16211616#include "confdefs.h"
    16221617
    16231618main(){return(0);}
    16241619EOF
    1625 if { (eval echo configure:1626: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1620if { (eval echo configure:1621: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    16261621  ac_cv_prog_cc_works=yes
    16271622  # If we can't run a trivial program, we are probably using a cross compiler.
     
    16491644fi
    16501645echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
    1651 echo "configure:1652: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
     1646echo "configure:1647: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
    16521647echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
    16531648cross_compiling=$ac_cv_prog_cc_cross
    16541649
    16551650echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    1656 echo "configure:1657: checking whether we are using GNU C" >&5
     1651echo "configure:1652: checking whether we are using GNU C" >&5
    16571652if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    16581653  echo $ac_n "(cached) $ac_c" 1>&6
     
    16631658#endif
    16641659EOF
    1665 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1666: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1660if { 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
    16661661  ac_cv_prog_gcc=yes
    16671662else
     
    16781673  CFLAGS=
    16791674  echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    1680 echo "configure:1681: checking whether ${CC-cc} accepts -g" >&5
     1675echo "configure:1676: checking whether ${CC-cc} accepts -g" >&5
    16811676if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    16821677  echo $ac_n "(cached) $ac_c" 1>&6
     
    17201715
    17211716echo $ac_n "checking whether $CC_FOR_TARGET accepts -specs""... $ac_c" 1>&6
    1722 echo "configure:1723: checking whether $CC_FOR_TARGET accepts -specs" >&5
     1717echo "configure:1718: checking whether $CC_FOR_TARGET accepts -specs" >&5
    17231718if eval "test \"`echo '$''{'rtems_cv_gcc_specs'+set}'`\" = set"; then
    17241719  echo $ac_n "(cached) $ac_c" 1>&6
     
    17411736
    17421737echo $ac_n "checking whether $CC_FOR_TARGET accepts --pipe""... $ac_c" 1>&6
    1743 echo "configure:1744: checking whether $CC_FOR_TARGET accepts --pipe" >&5
     1738echo "configure:1739: checking whether $CC_FOR_TARGET accepts --pipe" >&5
    17441739if eval "test \"`echo '$''{'rtems_cv_gcc_pipe'+set}'`\" = set"; then
    17451740  echo $ac_n "(cached) $ac_c" 1>&6
     
    17821777set dummy $ac_prog; ac_word=$2
    17831778echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1784 echo "configure:1785: checking for $ac_word" >&5
     1779echo "configure:1780: checking for $ac_word" >&5
    17851780if eval "test \"`echo '$''{'ac_cv_path_CXX_FOR_TARGET'+set}'`\" = set"; then
    17861781  echo $ac_n "(cached) $ac_c" 1>&6
     
    18261821
    18271822echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works""... $ac_c" 1>&6
    1828 echo "configure:1829: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5
     1823echo "configure:1824: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5
    18291824
    18301825ac_ext=C
     
    18371832cat > conftest.$ac_ext << EOF
    18381833
    1839 #line 1840 "configure"
     1834#line 1835 "configure"
    18401835#include "confdefs.h"
    18411836
    18421837int main(){return(0);}
    18431838EOF
    1844 if { (eval echo configure:1845: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1839if { (eval echo configure:1840: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    18451840  ac_cv_prog_cxx_works=yes
    18461841  # If we can't run a trivial program, we are probably using a cross compiler.
     
    18681863fi
    18691864echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
    1870 echo "configure:1871: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5
     1865echo "configure:1866: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5
    18711866echo "$ac_t""$ac_cv_prog_cxx_cross" 1>&6
    18721867cross_compiling=$ac_cv_prog_cxx_cross
    18731868
    18741869echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6
    1875 echo "configure:1876: checking whether we are using GNU C++" >&5
     1870echo "configure:1871: checking whether we are using GNU C++" >&5
    18761871if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then
    18771872  echo $ac_n "(cached) $ac_c" 1>&6
     
    18821877#endif
    18831878EOF
    1884 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1885: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1879if { 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
    18851880  ac_cv_prog_gxx=yes
    18861881else
     
    18971892  CXXFLAGS=
    18981893  echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6
    1899 echo "configure:1900: checking whether ${CXX-g++} accepts -g" >&5
     1894echo "configure:1895: checking whether ${CXX-g++} accepts -g" >&5
    19001895if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then
    19011896  echo $ac_n "(cached) $ac_c" 1>&6
     
    19511946 
    19521947echo $ac_n "checking target's ar""... $ac_c" 1>&6
    1953 echo "configure:1954: checking target's ar" >&5
     1948echo "configure:1949: checking target's ar" >&5
    19541949if eval "test \"`echo '$''{'ac_cv_path_AR_FOR_TARGET'+set}'`\" = set"; then
    19551950  echo $ac_n "(cached) $ac_c" 1>&6
     
    19841979    # intends
    19851980    echo $ac_n "checking whether environment variable AR_FOR_TARGET is an absolute path""... $ac_c" 1>&6
    1986 echo "configure:1987: checking whether environment variable AR_FOR_TARGET is an absolute path" >&5
     1981echo "configure:1982: checking whether environment variable AR_FOR_TARGET is an absolute path" >&5
    19871982    case "$AR_FOR_TARGET" in
    19881983    /*) # valid
     
    20011996set dummy "$program_prefix"ar; ac_word=$2
    20021997echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2003 echo "configure:2004: checking for $ac_word" >&5
     1998echo "configure:1999: checking for $ac_word" >&5
    20041999if eval "test \"`echo '$''{'ac_cv_path_AR_FOR_TARGET'+set}'`\" = set"; then
    20052000  echo $ac_n "(cached) $ac_c" 1>&6
     
    20382033 
    20392034echo $ac_n "checking target's as""... $ac_c" 1>&6
    2040 echo "configure:2041: checking target's as" >&5
     2035echo "configure:2036: checking target's as" >&5
    20412036if eval "test \"`echo '$''{'ac_cv_path_AS_FOR_TARGET'+set}'`\" = set"; then
    20422037  echo $ac_n "(cached) $ac_c" 1>&6
     
    20712066    # intends
    20722067    echo $ac_n "checking whether environment variable AS_FOR_TARGET is an absolute path""... $ac_c" 1>&6
    2073 echo "configure:2074: checking whether environment variable AS_FOR_TARGET is an absolute path" >&5
     2068echo "configure:2069: checking whether environment variable AS_FOR_TARGET is an absolute path" >&5
    20742069    case "$AS_FOR_TARGET" in
    20752070    /*) # valid
     
    20882083set dummy "$program_prefix"as; ac_word=$2
    20892084echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2090 echo "configure:2091: checking for $ac_word" >&5
     2085echo "configure:2086: checking for $ac_word" >&5
    20912086if eval "test \"`echo '$''{'ac_cv_path_AS_FOR_TARGET'+set}'`\" = set"; then
    20922087  echo $ac_n "(cached) $ac_c" 1>&6
     
    21252120 
    21262121echo $ac_n "checking target's ld""... $ac_c" 1>&6
    2127 echo "configure:2128: checking target's ld" >&5
     2122echo "configure:2123: checking target's ld" >&5
    21282123if eval "test \"`echo '$''{'ac_cv_path_LD_FOR_TARGET'+set}'`\" = set"; then
    21292124  echo $ac_n "(cached) $ac_c" 1>&6
     
    21582153    # intends
    21592154    echo $ac_n "checking whether environment variable LD_FOR_TARGET is an absolute path""... $ac_c" 1>&6
    2160 echo "configure:2161: checking whether environment variable LD_FOR_TARGET is an absolute path" >&5
     2155echo "configure:2156: checking whether environment variable LD_FOR_TARGET is an absolute path" >&5
    21612156    case "$LD_FOR_TARGET" in
    21622157    /*) # valid
     
    21752170set dummy "$program_prefix"ld; ac_word=$2
    21762171echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2177 echo "configure:2178: checking for $ac_word" >&5
     2172echo "configure:2173: checking for $ac_word" >&5
    21782173if eval "test \"`echo '$''{'ac_cv_path_LD_FOR_TARGET'+set}'`\" = set"; then
    21792174  echo $ac_n "(cached) $ac_c" 1>&6
     
    22122207 
    22132208echo $ac_n "checking target's nm""... $ac_c" 1>&6
    2214 echo "configure:2215: checking target's nm" >&5
     2209echo "configure:2210: checking target's nm" >&5
    22152210if eval "test \"`echo '$''{'ac_cv_path_NM_FOR_TARGET'+set}'`\" = set"; then
    22162211  echo $ac_n "(cached) $ac_c" 1>&6
     
    22452240    # intends
    22462241    echo $ac_n "checking whether environment variable NM_FOR_TARGET is an absolute path""... $ac_c" 1>&6
    2247 echo "configure:2248: checking whether environment variable NM_FOR_TARGET is an absolute path" >&5
     2242echo "configure:2243: checking whether environment variable NM_FOR_TARGET is an absolute path" >&5
    22482243    case "$NM_FOR_TARGET" in
    22492244    /*) # valid
     
    22622257set dummy "$program_prefix"nm; ac_word=$2
    22632258echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2264 echo "configure:2265: checking for $ac_word" >&5
     2259echo "configure:2260: checking for $ac_word" >&5
    22652260if eval "test \"`echo '$''{'ac_cv_path_NM_FOR_TARGET'+set}'`\" = set"; then
    22662261  echo $ac_n "(cached) $ac_c" 1>&6
     
    23002295 
    23012296echo $ac_n "checking target's ranlib""... $ac_c" 1>&6
    2302 echo "configure:2303: checking target's ranlib" >&5
     2297echo "configure:2298: checking target's ranlib" >&5
    23032298if eval "test \"`echo '$''{'ac_cv_path_RANLIB_FOR_TARGET'+set}'`\" = set"; then
    23042299  echo $ac_n "(cached) $ac_c" 1>&6
     
    23332328    # intends
    23342329    echo $ac_n "checking whether environment variable RANLIB_FOR_TARGET is an absolute path""... $ac_c" 1>&6
    2335 echo "configure:2336: checking whether environment variable RANLIB_FOR_TARGET is an absolute path" >&5
     2330echo "configure:2331: checking whether environment variable RANLIB_FOR_TARGET is an absolute path" >&5
    23362331    case "$RANLIB_FOR_TARGET" in
    23372332    /*) # valid
     
    23502345set dummy "$program_prefix"ranlib; ac_word=$2
    23512346echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2352 echo "configure:2353: checking for $ac_word" >&5
     2347echo "configure:2348: checking for $ac_word" >&5
    23532348if eval "test \"`echo '$''{'ac_cv_path_RANLIB_FOR_TARGET'+set}'`\" = set"; then
    23542349  echo $ac_n "(cached) $ac_c" 1>&6
     
    23892384   
    23902385echo $ac_n "checking whether $AR_FOR_TARGET -s works""... $ac_c" 1>&6
    2391 echo "configure:2392: checking whether $AR_FOR_TARGET -s works" >&5
     2386echo "configure:2387: checking whether $AR_FOR_TARGET -s works" >&5
    23922387if eval "test \"`echo '$''{'rtems_cv_AR_FOR_TARGET_S'+set}'`\" = set"; then
    23932388  echo $ac_n "(cached) $ac_c" 1>&6
     
    23982393{ return b; }
    23992394EOF
    2400 if { ac_try='$CC_FOR_TARGET -o conftest.o -c conftest.$ac_ext'; { (eval echo configure:2401: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } \
    2401   && { ac_try='$AR_FOR_TARGET -sr conftest.a conftest.o'; { (eval echo configure:2402: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } \
     2395if { 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; }; } \
    24022397  && test -s conftest.a ; \
    24032398then
     
    24242419 
    24252420echo $ac_n "checking target's objcopy""... $ac_c" 1>&6
    2426 echo "configure:2427: checking target's objcopy" >&5
     2421echo "configure:2422: checking target's objcopy" >&5
    24272422if eval "test \"`echo '$''{'ac_cv_path_OBJCOPY_FOR_TARGET'+set}'`\" = set"; then
    24282423  echo $ac_n "(cached) $ac_c" 1>&6
     
    24572452    # intends
    24582453    echo $ac_n "checking whether environment variable OBJCOPY_FOR_TARGET is an absolute path""... $ac_c" 1>&6
    2459 echo "configure:2460: checking whether environment variable OBJCOPY_FOR_TARGET is an absolute path" >&5
     2454echo "configure:2455: checking whether environment variable OBJCOPY_FOR_TARGET is an absolute path" >&5
    24602455    case "$OBJCOPY_FOR_TARGET" in
    24612456    /*) # valid
     
    24742469set dummy "$program_prefix"objcopy; ac_word=$2
    24752470echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2476 echo "configure:2477: checking for $ac_word" >&5
     2471echo "configure:2472: checking for $ac_word" >&5
    24772472if eval "test \"`echo '$''{'ac_cv_path_OBJCOPY_FOR_TARGET'+set}'`\" = set"; then
    24782473  echo $ac_n "(cached) $ac_c" 1>&6
     
    25112506 
    25122507echo $ac_n "checking target's size""... $ac_c" 1>&6
    2513 echo "configure:2514: checking target's size" >&5
     2508echo "configure:2509: checking target's size" >&5
    25142509if eval "test \"`echo '$''{'ac_cv_path_SIZE_FOR_TARGET'+set}'`\" = set"; then
    25152510  echo $ac_n "(cached) $ac_c" 1>&6
     
    25442539    # intends
    25452540    echo $ac_n "checking whether environment variable SIZE_FOR_TARGET is an absolute path""... $ac_c" 1>&6
    2546 echo "configure:2547: checking whether environment variable SIZE_FOR_TARGET is an absolute path" >&5
     2541echo "configure:2542: checking whether environment variable SIZE_FOR_TARGET is an absolute path" >&5
    25472542    case "$SIZE_FOR_TARGET" in
    25482543    /*) # valid
     
    25612556set dummy "$program_prefix"size; ac_word=$2
    25622557echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2563 echo "configure:2564: checking for $ac_word" >&5
     2558echo "configure:2559: checking for $ac_word" >&5
    25642559if eval "test \"`echo '$''{'ac_cv_path_SIZE_FOR_TARGET'+set}'`\" = set"; then
    25652560  echo $ac_n "(cached) $ac_c" 1>&6
     
    25982593 
    25992594echo $ac_n "checking target's strip""... $ac_c" 1>&6
    2600 echo "configure:2601: checking target's strip" >&5
     2595echo "configure:2596: checking target's strip" >&5
    26012596if eval "test \"`echo '$''{'ac_cv_path_STRIP_FOR_TARGET'+set}'`\" = set"; then
    26022597  echo $ac_n "(cached) $ac_c" 1>&6
     
    26312626    # intends
    26322627    echo $ac_n "checking whether environment variable STRIP_FOR_TARGET is an absolute path""... $ac_c" 1>&6
    2633 echo "configure:2634: checking whether environment variable STRIP_FOR_TARGET is an absolute path" >&5
     2628echo "configure:2629: checking whether environment variable STRIP_FOR_TARGET is an absolute path" >&5
    26342629    case "$STRIP_FOR_TARGET" in
    26352630    /*) # valid
     
    26482643set dummy "$program_prefix"strip; ac_word=$2
    26492644echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2650 echo "configure:2651: checking for $ac_word" >&5
     2645echo "configure:2646: checking for $ac_word" >&5
    26512646if eval "test \"`echo '$''{'ac_cv_path_STRIP_FOR_TARGET'+set}'`\" = set"; then
    26522647  echo $ac_n "(cached) $ac_c" 1>&6
     
    26872682 if test "${target_cpu}" = "i386"; then
    26882683    echo $ac_n "checking for 16 bit mode assembler support""... $ac_c" 1>&6
    2689 echo "configure:2690: checking for 16 bit mode assembler support" >&5
     2684echo "configure:2685: checking for 16 bit mode assembler support" >&5
    26902685if eval "test \"`echo '$''{'rtems_cv_prog_gas_code16'+set}'`\" = set"; then
    26912686  echo $ac_n "(cached) $ac_c" 1>&6
     
    26972692         lgdt 0
    26982693EOF
    2699       if { ac_try='$AS_FOR_TARGET -o conftest.o conftest.s'; { (eval echo configure:2700: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then
     2694      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
    27002695        rtems_cv_prog_gas_code16=yes
    27012696      else
     
    27132708set dummy gcc; ac_word=$2
    27142709echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2715 echo "configure:2716: checking for $ac_word" >&5
     2710echo "configure:2711: checking for $ac_word" >&5
    27162711if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    27172712  echo $ac_n "(cached) $ac_c" 1>&6
     
    27432738set dummy cc; ac_word=$2
    27442739echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2745 echo "configure:2746: checking for $ac_word" >&5
     2740echo "configure:2741: checking for $ac_word" >&5
    27462741if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    27472742  echo $ac_n "(cached) $ac_c" 1>&6
     
    27942789set dummy cl; ac_word=$2
    27952790echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2796 echo "configure:2797: checking for $ac_word" >&5
     2791echo "configure:2792: checking for $ac_word" >&5
    27972792if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    27982793  echo $ac_n "(cached) $ac_c" 1>&6
     
    28262821
    28272822echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
    2828 echo "configure:2829: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
     2823echo "configure:2824: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
    28292824
    28302825ac_ext=c
     
    28372832cat > conftest.$ac_ext << EOF
    28382833
    2839 #line 2840 "configure"
     2834#line 2835 "configure"
    28402835#include "confdefs.h"
    28412836
    28422837main(){return(0);}
    28432838EOF
    2844 if { (eval echo configure:2845: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     2839if { (eval echo configure:2840: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    28452840  ac_cv_prog_cc_works=yes
    28462841  # If we can't run a trivial program, we are probably using a cross compiler.
     
    28682863fi
    28692864echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
    2870 echo "configure:2871: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
     2865echo "configure:2866: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
    28712866echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
    28722867cross_compiling=$ac_cv_prog_cc_cross
    28732868
    28742869echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    2875 echo "configure:2876: checking whether we are using GNU C" >&5
     2870echo "configure:2871: checking whether we are using GNU C" >&5
    28762871if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    28772872  echo $ac_n "(cached) $ac_c" 1>&6
     
    28822877#endif
    28832878EOF
    2884 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2885: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     2879if { 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
    28852880  ac_cv_prog_gcc=yes
    28862881else
     
    29012896CFLAGS=
    29022897echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    2903 echo "configure:2904: checking whether ${CC-cc} accepts -g" >&5
     2898echo "configure:2899: checking whether ${CC-cc} accepts -g" >&5
    29042899if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    29052900  echo $ac_n "(cached) $ac_c" 1>&6
     
    29332928
    29342929echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6
    2935 echo "configure:2936: checking for Cygwin environment" >&5
     2930echo "configure:2931: checking for Cygwin environment" >&5
    29362931if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then
    29372932  echo $ac_n "(cached) $ac_c" 1>&6
    29382933else
    29392934  cat > conftest.$ac_ext <<EOF
    2940 #line 2941 "configure"
     2935#line 2936 "configure"
    29412936#include "confdefs.h"
    29422937
     
    29492944; return 0; }
    29502945EOF
    2951 if { (eval echo configure:2952: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     2946if { (eval echo configure:2947: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    29522947  rm -rf conftest*
    29532948  ac_cv_cygwin=yes
     
    29662961test "$ac_cv_cygwin" = yes && CYGWIN=yes
    29672962echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6
    2968 echo "configure:2969: checking for mingw32 environment" >&5
     2963echo "configure:2964: checking for mingw32 environment" >&5
    29692964if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then
    29702965  echo $ac_n "(cached) $ac_c" 1>&6
    29712966else
    29722967  cat > conftest.$ac_ext <<EOF
    2973 #line 2974 "configure"
     2968#line 2969 "configure"
    29742969#include "confdefs.h"
    29752970
     
    29782973; return 0; }
    29792974EOF
    2980 if { (eval echo configure:2981: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     2975if { (eval echo configure:2976: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    29812976  rm -rf conftest*
    29822977  ac_cv_mingw32=yes
     
    29972992
    29982993echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
    2999 echo "configure:3000: checking for executable suffix" >&5
     2994echo "configure:2995: checking for executable suffix" >&5
    30002995if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then
    30012996  echo $ac_n "(cached) $ac_c" 1>&6
     
    30073002  echo 'int main () { return 0; }' > conftest.$ac_ext
    30083003  ac_cv_exeext=
    3009   if { (eval echo configure:3010: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
     3004  if { (eval echo configure:3005: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
    30103005    for file in conftest.*; do
    30113006      case $file in
     
    30463041
    30473042echo $ac_n "checking whether $RTEMS_HOST supports System V semaphores""... $ac_c" 1>&6
    3048 echo "configure:3049: checking whether $RTEMS_HOST supports System V semaphores" >&5
     3043echo "configure:3044: checking whether $RTEMS_HOST supports System V semaphores" >&5
    30493044if eval "test \"`echo '$''{'rtems_cv_sysv_sem'+set}'`\" = set"; then
    30503045  echo $ac_n "(cached) $ac_c" 1>&6
     
    30553050else
    30563051  cat > conftest.$ac_ext <<EOF
    3057 #line 3058 "configure"
     3052#line 3053 "configure"
    30583053#include "confdefs.h"
    30593054
     
    30813076
    30823077EOF
    3083 if { (eval echo configure:3084: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     3078if { (eval echo configure:3079: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    30843079then
    30853080  rtems_cv_sysv_sem="yes"
     
    31043099
    31053100echo $ac_n "checking whether $RTEMS_HOST supports System V shared memory""... $ac_c" 1>&6
    3106 echo "configure:3107: checking whether $RTEMS_HOST supports System V shared memory" >&5
     3101echo "configure:3102: checking whether $RTEMS_HOST supports System V shared memory" >&5
    31073102if eval "test \"`echo '$''{'rtems_cv_sysv_shm'+set}'`\" = set"; then
    31083103  echo $ac_n "(cached) $ac_c" 1>&6
     
    31133108else
    31143109  cat > conftest.$ac_ext <<EOF
    3115 #line 3116 "configure"
     3110#line 3111 "configure"
    31163111#include "confdefs.h"
    31173112
     
    31293124
    31303125EOF
    3131 if { (eval echo configure:3132: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     3126if { (eval echo configure:3127: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    31323127then
    31333128  rtems_cv_sysv_shm="yes"
     
    31523147
    31533148echo $ac_n "checking whether $RTEMS_HOST supports System V messages""... $ac_c" 1>&6
    3154 echo "configure:3155: checking whether $RTEMS_HOST supports System V messages" >&5
     3149echo "configure:3150: checking whether $RTEMS_HOST supports System V messages" >&5
    31553150if eval "test \"`echo '$''{'rtems_cv_sysv_msg'+set}'`\" = set"; then
    31563151  echo $ac_n "(cached) $ac_c" 1>&6
     
    31613156else
    31623157  cat > conftest.$ac_ext <<EOF
    3163 #line 3164 "configure"
     3158#line 3159 "configure"
    31643159#include "confdefs.h"
    31653160
     
    31773172
    31783173EOF
    3179 if { (eval echo configure:3180: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
     3174if { (eval echo configure:3175: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
    31803175then
    31813176  rtems_cv_sysv_msg="yes"
     
    32093204
    32103205echo $ac_n "checking for Makefile.in in c/src/exec/rtems""... $ac_c" 1>&6
    3211 echo "configure:3212: checking for Makefile.in in c/src/exec/rtems" >&5
     3206echo "configure:3207: checking for Makefile.in in c/src/exec/rtems" >&5
    32123207if test -d $srcdir/c/src/exec/rtems; then
    32133208  rtems_av_save_dir=`pwd`;
     
    32243219
    32253220echo $ac_n "checking for Makefile.in in c/src/exec/sapi""... $ac_c" 1>&6
    3226 echo "configure:3227: checking for Makefile.in in c/src/exec/sapi" >&5
     3221echo "configure:3222: checking for Makefile.in in c/src/exec/sapi" >&5
    32273222if test -d $srcdir/c/src/exec/sapi; then
    32283223  rtems_av_save_dir=`pwd`;
     
    32393234
    32403235echo $ac_n "checking for Makefile.in in c/src/exec/score/cpu/$RTEMS_CPU""... $ac_c" 1>&6
    3241 echo "configure:3242: checking for Makefile.in in c/src/exec/score/cpu/$RTEMS_CPU" >&5
     3236echo "configure:3237: checking for Makefile.in in c/src/exec/score/cpu/$RTEMS_CPU" >&5
    32423237if test -d $srcdir/c/src/exec/score/cpu/$RTEMS_CPU; then
    32433238  rtems_av_save_dir=`pwd`;
     
    32563251 
    32573252echo $ac_n "checking for Makefile.in in c/src/exec/posix""... $ac_c" 1>&6
    3258 echo "configure:3259: checking for Makefile.in in c/src/exec/posix" >&5
     3253echo "configure:3254: checking for Makefile.in in c/src/exec/posix" >&5
    32593254if test -d $srcdir/c/src/exec/posix; then
    32603255  rtems_av_save_dir=`pwd`;
     
    32783273  if test -z "$rtems_bsp"; then
    32793274    echo $ac_n "checking for bsps""... $ac_c" 1>&6
    3280 echo "configure:3281: checking for bsps" >&5
     3275echo "configure:3276: checking for bsps" >&5
    32813276    files=`ls $srcdir/c/src/lib/libbsp/$RTEMS_CPU`
    32823277    for file in $files; do
     
    33433338       
    33443339echo $ac_n "checking for Makefile.in in c/src/lib/libbsp/$bspcpudir$bspdir""... $ac_c" 1>&6
    3345 echo "configure:3346: checking for Makefile.in in c/src/lib/libbsp/$bspcpudir$bspdir" >&5
     3340echo "configure:3341: checking for Makefile.in in c/src/lib/libbsp/$bspcpudir$bspdir" >&5
    33463341if test -d $srcdir/c/src/lib/libbsp/$bspcpudir$bspdir; then
    33473342  rtems_av_save_dir=`pwd`;
     
    33583353       
    33593354echo $ac_n "checking for Makefile.in in c/src/lib/libbsp/${bspcpudir}shared""... $ac_c" 1>&6
    3360 echo "configure:3361: checking for Makefile.in in c/src/lib/libbsp/${bspcpudir}shared" >&5
     3355echo "configure:3356: checking for Makefile.in in c/src/lib/libbsp/${bspcpudir}shared" >&5
    33613356if test -d $srcdir/c/src/lib/libbsp/${bspcpudir}shared; then
    33623357  rtems_av_save_dir=`pwd`;
     
    33883383
    33893384echo $ac_n "checking for Makefile.in in c/src/lib/libcpu/$RTEMS_CPU""... $ac_c" 1>&6
    3390 echo "configure:3391: checking for Makefile.in in c/src/lib/libcpu/$RTEMS_CPU" >&5
     3385echo "configure:3386: checking for Makefile.in in c/src/lib/libcpu/$RTEMS_CPU" >&5
    33913386if test -d $srcdir/c/src/lib/libcpu/$RTEMS_CPU; then
    33923387  rtems_av_save_dir=`pwd`;
     
    34053400 
    34063401echo $ac_n "checking for Makefile.in in c/src/lib/start/$RTEMS_CPU""... $ac_c" 1>&6
    3407 echo "configure:3408: checking for Makefile.in in c/src/lib/start/$RTEMS_CPU" >&5
     3402echo "configure:3403: checking for Makefile.in in c/src/lib/start/$RTEMS_CPU" >&5
    34083403if test -d $srcdir/c/src/lib/start/$RTEMS_CPU; then
    34093404  rtems_av_save_dir=`pwd`;
     
    34343429# If the TCP/IP stack is enabled, then find all TCP/IP Makefiles
    34353430echo $ac_n "checking if networking is enabled? ""... $ac_c" 1>&6
    3436 echo "configure:3437: checking if networking is enabled? " >&5
     3431echo "configure:3432: checking if networking is enabled? " >&5
    34373432echo "$ac_t""$RTEMS_HAS_NETWORKING" 1>&6
    34383433if test "$RTEMS_HAS_NETWORKING" = "yes"; then
    34393434 
    34403435echo $ac_n "checking for Makefile.in in c/src/lib/libnetworking""... $ac_c" 1>&6
    3441 echo "configure:3442: checking for Makefile.in in c/src/lib/libnetworking" >&5
     3436echo "configure:3437: checking for Makefile.in in c/src/lib/libnetworking" >&5
    34423437if test -d $srcdir/c/src/lib/libnetworking; then
    34433438  rtems_av_save_dir=`pwd`;
     
    34543449 
    34553450echo $ac_n "checking for Makefile.in in c/src/lib/librpc""... $ac_c" 1>&6
    3456 echo "configure:3457: checking for Makefile.in in c/src/lib/librpc" >&5
     3451echo "configure:3452: checking for Makefile.in in c/src/lib/librpc" >&5
    34573452if test -d $srcdir/c/src/lib/librpc; then
    34583453  rtems_av_save_dir=`pwd`;
     
    34693464  if test "$RTEMS_HAS_RDBG" = "yes"; then
    34703465    echo $ac_n "checking whether cpu supports rdbg? ""... $ac_c" 1>&6
    3471 echo "configure:3472: checking whether cpu supports rdbg? " >&5
     3466echo "configure:3467: checking whether cpu supports rdbg? " >&5
    34723467    test ! -d "$srcdir/c/src/lib/librdbg/$RTEMS_CPU" && RTEMS_HAS_RDBG="no" ;
    34733468    echo "$ac_t""$RTEMS_HAS_RDBG" 1>&6
     
    34763471set dummy rpcgen; ac_word=$2
    34773472echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    3478 echo "configure:3479: checking for $ac_word" >&5
     3473echo "configure:3474: checking for $ac_word" >&5
    34793474if eval "test \"`echo '$''{'ac_cv_path_RPCGEN'+set}'`\" = set"; then
    34803475  echo $ac_n "(cached) $ac_c" 1>&6
     
    35163511set dummy $ac_prog; ac_word=$2
    35173512echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    3518 echo "configure:3519: checking for $ac_word" >&5
     3513echo "configure:3514: checking for $ac_word" >&5
    35193514if eval "test \"`echo '$''{'ac_cv_prog_AWK'+set}'`\" = set"; then
    35203515  echo $ac_n "(cached) $ac_c" 1>&6
     
    35503545     
    35513546echo $ac_n "checking for Makefile.in in c/src/lib/librdbg""... $ac_c" 1>&6
    3552 echo "configure:3553: checking for Makefile.in in c/src/lib/librdbg" >&5
     3547echo "configure:3548: checking for Makefile.in in c/src/lib/librdbg" >&5
    35533548if test -d $srcdir/c/src/lib/librdbg; then
    35543549  rtems_av_save_dir=`pwd`;
     
    35773572# If the tests are enabled, then find all the test suite Makefiles
    35783573echo $ac_n "checking if the test suites are enabled? ""... $ac_c" 1>&6
    3579 echo "configure:3580: checking if the test suites are enabled? " >&5
     3574echo "configure:3575: checking if the test suites are enabled? " >&5
    35803575# Check whether --enable-tests or --disable-tests was given.
    35813576if test "${enable_tests+set}" = set; then
     
    35983593   
    35993594echo $ac_n "checking for Makefile.in in c/src/tests/libtests""... $ac_c" 1>&6
    3600 echo "configure:3601: checking for Makefile.in in c/src/tests/libtests" >&5
     3595echo "configure:3596: checking for Makefile.in in c/src/tests/libtests" >&5
    36013596if test -d $srcdir/c/src/tests/libtests; then
    36023597  rtems_av_save_dir=`pwd`;
     
    36133608   
    36143609echo $ac_n "checking for Makefile.in in c/src/tests/sptests""... $ac_c" 1>&6
    3615 echo "configure:3616: checking for Makefile.in in c/src/tests/sptests" >&5
     3610echo "configure:3611: checking for Makefile.in in c/src/tests/sptests" >&5
    36163611if test -d $srcdir/c/src/tests/sptests; then
    36173612  rtems_av_save_dir=`pwd`;
     
    36283623   
    36293624echo $ac_n "checking for Makefile.in in c/src/tests/tmtests""... $ac_c" 1>&6
    3630 echo "configure:3631: checking for Makefile.in in c/src/tests/tmtests" >&5
     3625echo "configure:3626: checking for Makefile.in in c/src/tests/tmtests" >&5
    36313626if test -d $srcdir/c/src/tests/tmtests; then
    36323627  rtems_av_save_dir=`pwd`;
     
    36443639       
    36453640echo $ac_n "checking for Makefile.in in c/src/tests/mptests""... $ac_c" 1>&6
    3646 echo "configure:3647: checking for Makefile.in in c/src/tests/mptests" >&5
     3641echo "configure:3642: checking for Makefile.in in c/src/tests/mptests" >&5
    36473642if test -d $srcdir/c/src/tests/mptests; then
    36483643  rtems_av_save_dir=`pwd`;
     
    36613656     
    36623657echo $ac_n "checking for Makefile.in in c/src/tests/psxtests""... $ac_c" 1>&6
    3663 echo "configure:3664: checking for Makefile.in in c/src/tests/psxtests" >&5
     3658echo "configure:3659: checking for Makefile.in in c/src/tests/psxtests" >&5
    36643659if test -d $srcdir/c/src/tests/psxtests; then
    36653660  rtems_av_save_dir=`pwd`;
     
    36963691if test "$RTEMS_HAS_HWAPI" = "yes"; then
    36973692  echo $ac_n "checking whether libwapi is present""... $ac_c" 1>&6
    3698 echo "configure:3699: checking whether libwapi is present" >&5
     3693echo "configure:3694: checking whether libwapi is present" >&5
    36993694  if test -f ${srcdir}/c/src/lib/libhwapi/Makefile.in ; then
    37003695    echo "$ac_t""yes" 1>&6
     
    37023697   
    37033698echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/analog""... $ac_c" 1>&6
    3704 echo "configure:3705: checking for Makefile.in in c/src/lib/libhwapi/analog" >&5
     3699echo "configure:3700: checking for Makefile.in in c/src/lib/libhwapi/analog" >&5
    37053700if test -d $srcdir/c/src/lib/libhwapi/analog; then
    37063701  rtems_av_save_dir=`pwd`;
     
    37173712   
    37183713echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/discrete""... $ac_c" 1>&6
    3719 echo "configure:3720: checking for Makefile.in in c/src/lib/libhwapi/discrete" >&5
     3714echo "configure:3715: checking for Makefile.in in c/src/lib/libhwapi/discrete" >&5
    37203715if test -d $srcdir/c/src/lib/libhwapi/discrete; then
    37213716  rtems_av_save_dir=`pwd`;
     
    37323727   
    37333728echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/drivers""... $ac_c" 1>&6
    3734 echo "configure:3735: checking for Makefile.in in c/src/lib/libhwapi/drivers" >&5
     3729echo "configure:3730: checking for Makefile.in in c/src/lib/libhwapi/drivers" >&5
    37353730if test -d $srcdir/c/src/lib/libhwapi/drivers; then
    37363731  rtems_av_save_dir=`pwd`;
     
    37473742   
    37483743echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory""... $ac_c" 1>&6
    3749 echo "configure:3750: checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory" >&5
     3744echo "configure:3745: checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory" >&5
    37503745if test -d $srcdir/c/src/lib/libhwapi/non_volatile_memory; then
    37513746  rtems_av_save_dir=`pwd`;
     
    37623757   
    37633758echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/serial""... $ac_c" 1>&6
    3764 echo "configure:3765: checking for Makefile.in in c/src/lib/libhwapi/serial" >&5
     3759echo "configure:3760: checking for Makefile.in in c/src/lib/libhwapi/serial" >&5
    37653760if test -d $srcdir/c/src/lib/libhwapi/serial; then
    37663761  rtems_av_save_dir=`pwd`;
     
    37773772   
    37783773echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/support""... $ac_c" 1>&6
    3779 echo "configure:3780: checking for Makefile.in in c/src/lib/libhwapi/support" >&5
     3774echo "configure:3775: checking for Makefile.in in c/src/lib/libhwapi/support" >&5
    37803775if test -d $srcdir/c/src/lib/libhwapi/support; then
    37813776  rtems_av_save_dir=`pwd`;
     
    37923787   
    37933788echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/wrapup""... $ac_c" 1>&6
    3794 echo "configure:3795: checking for Makefile.in in c/src/lib/libhwapi/wrapup" >&5
     3789echo "configure:3790: checking for Makefile.in in c/src/lib/libhwapi/wrapup" >&5
    37953790if test -d $srcdir/c/src/lib/libhwapi/wrapup; then
    37963791  rtems_av_save_dir=`pwd`;
     
    38253820
    38263821echo $ac_n "checking for Makefile.in in make""... $ac_c" 1>&6
    3827 echo "configure:3828: checking for Makefile.in in make" >&5
     3822echo "configure:3823: checking for Makefile.in in make" >&5
    38283823if test -d $srcdir/make; then
    38293824  rtems_av_save_dir=`pwd`;
     
    38403835
    38413836echo $ac_n "checking for Makefile.in in c/src/lib/libchip""... $ac_c" 1>&6
    3842 echo "configure:3843: checking for Makefile.in in c/src/lib/libchip" >&5
     3837echo "configure:3838: checking for Makefile.in in c/src/lib/libchip" >&5
    38433838if test -d $srcdir/c/src/lib/libchip; then
    38443839  rtems_av_save_dir=`pwd`;
     
    38553850
    38563851echo $ac_n "checking for Makefile.in in c/src/lib/libmisc""... $ac_c" 1>&6
    3857 echo "configure:3858: checking for Makefile.in in c/src/lib/libmisc" >&5
     3852echo "configure:3853: checking for Makefile.in in c/src/lib/libmisc" >&5
    38583853if test -d $srcdir/c/src/lib/libmisc; then
    38593854  rtems_av_save_dir=`pwd`;
     
    38703865
    38713866echo $ac_n "checking for Makefile.in in c/src/tests/samples""... $ac_c" 1>&6
    3872 echo "configure:3873: checking for Makefile.in in c/src/tests/samples" >&5
     3867echo "configure:3868: checking for Makefile.in in c/src/tests/samples" >&5
    38733868if test -d $srcdir/c/src/tests/samples; then
    38743869  rtems_av_save_dir=`pwd`;
  • tools/cpu/generic/aclocal.m4

    r1407343 r8c92fa3  
    6464AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    6565[
    66 rtems_target=$target;
    67 case "$target" in
    68 no_cpu*) target=$host;;
    69 *) ;;
    70 esac
    7166AC_CANONICAL_SYSTEM
    7267AC_MSG_CHECKING(rtems target cpu)
    7368changequote(,)dnl
    74 case "${rtems_target}" in
     69case "${target}" in
    7570  # hpux unix port should go here
    7671  i[3456]86-go32-rtems*)
     
    9085        ;;
    9186  *)
    92         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     87        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    9388        ;;
    9489esac
  • tools/cpu/generic/configure

    r1407343 r8c92fa3  
    577577
    578578
    579 rtems_target=$target;
    580 case "$target" in
    581 no_cpu*) target=$host;;
    582 *) ;;
    583 esac
    584579
    585580# Do some error checking and defaulting for the host and target type.
     
    610605
    611606echo $ac_n "checking host system type""... $ac_c" 1>&6
    612 echo "configure:613: checking host system type" >&5
     607echo "configure:608: checking host system type" >&5
    613608
    614609host_alias=$host
     
    631626
    632627echo $ac_n "checking target system type""... $ac_c" 1>&6
    633 echo "configure:634: checking target system type" >&5
     628echo "configure:629: checking target system type" >&5
    634629
    635630target_alias=$target
     
    649644
    650645echo $ac_n "checking build system type""... $ac_c" 1>&6
    651 echo "configure:652: checking build system type" >&5
     646echo "configure:647: checking build system type" >&5
    652647
    653648build_alias=$build
     
    672667
    673668echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
    674 echo "configure:675: checking rtems target cpu" >&5
    675 case "${rtems_target}" in
     669echo "configure:670: checking rtems target cpu" >&5
     670case "${target}" in
    676671  # hpux unix port should go here
    677672  i[3456]86-go32-rtems*)
     
    691686        ;;
    692687  *)
    693         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     688        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    694689        ;;
    695690esac
     
    710705# ./install, which can be erroneously created by make from ./install.sh.
    711706echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    712 echo "configure:713: checking for a BSD compatible install" >&5
     707echo "configure:708: checking for a BSD compatible install" >&5
    713708if test -z "$INSTALL"; then
    714709if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     
    763758
    764759echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    765 echo "configure:766: checking whether build environment is sane" >&5
     760echo "configure:761: checking whether build environment is sane" >&5
    766761# Just in case
    767762sleep 1
     
    820815
    821816echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    822 echo "configure:823: checking whether ${MAKE-make} sets \${MAKE}" >&5
     817echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5
    823818set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    824819if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    859854missing_dir=`cd $ac_aux_dir && pwd`
    860855echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    861 echo "configure:862: checking for working aclocal" >&5
     856echo "configure:857: checking for working aclocal" >&5
    862857# Run test in a subshell; some versions of sh will print an error if
    863858# an executable is not found, even if stderr is redirected.
     
    872867
    873868echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    874 echo "configure:875: checking for working autoconf" >&5
     869echo "configure:870: checking for working autoconf" >&5
    875870# Run test in a subshell; some versions of sh will print an error if
    876871# an executable is not found, even if stderr is redirected.
     
    885880
    886881echo $ac_n "checking for working automake""... $ac_c" 1>&6
    887 echo "configure:888: checking for working automake" >&5
     882echo "configure:883: checking for working automake" >&5
    888883# Run test in a subshell; some versions of sh will print an error if
    889884# an executable is not found, even if stderr is redirected.
     
    898893
    899894echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    900 echo "configure:901: checking for working autoheader" >&5
     895echo "configure:896: checking for working autoheader" >&5
    901896# Run test in a subshell; some versions of sh will print an error if
    902897# an executable is not found, even if stderr is redirected.
     
    911906
    912907echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    913 echo "configure:914: checking for working makeinfo" >&5
     908echo "configure:909: checking for working makeinfo" >&5
    914909# Run test in a subshell; some versions of sh will print an error if
    915910# an executable is not found, even if stderr is redirected.
     
    931926set dummy $ac_prog; ac_word=$2
    932927echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    933 echo "configure:934: checking for $ac_word" >&5
     928echo "configure:929: checking for $ac_word" >&5
    934929if eval "test \"`echo '$''{'ac_cv_path_KSH'+set}'`\" = set"; then
    935930  echo $ac_n "(cached) $ac_c" 1>&6
  • tools/cpu/hppa1.1/aclocal.m4

    r1407343 r8c92fa3  
    6464AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    6565[
    66 rtems_target=$target;
    67 case "$target" in
    68 no_cpu*) target=$host;;
    69 *) ;;
    70 esac
    7166AC_CANONICAL_SYSTEM
    7267AC_MSG_CHECKING(rtems target cpu)
    7368changequote(,)dnl
    74 case "${rtems_target}" in
     69case "${target}" in
    7570  # hpux unix port should go here
    7671  i[3456]86-go32-rtems*)
     
    9085        ;;
    9186  *)
    92         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     87        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    9388        ;;
    9489esac
  • tools/cpu/hppa1.1/configure

    r1407343 r8c92fa3  
    577577
    578578
    579 rtems_target=$target;
    580 case "$target" in
    581 no_cpu*) target=$host;;
    582 *) ;;
    583 esac
    584579
    585580# Do some error checking and defaulting for the host and target type.
     
    610605
    611606echo $ac_n "checking host system type""... $ac_c" 1>&6
    612 echo "configure:613: checking host system type" >&5
     607echo "configure:608: checking host system type" >&5
    613608
    614609host_alias=$host
     
    631626
    632627echo $ac_n "checking target system type""... $ac_c" 1>&6
    633 echo "configure:634: checking target system type" >&5
     628echo "configure:629: checking target system type" >&5
    634629
    635630target_alias=$target
     
    649644
    650645echo $ac_n "checking build system type""... $ac_c" 1>&6
    651 echo "configure:652: checking build system type" >&5
     646echo "configure:647: checking build system type" >&5
    652647
    653648build_alias=$build
     
    672667
    673668echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
    674 echo "configure:675: checking rtems target cpu" >&5
    675 case "${rtems_target}" in
     669echo "configure:670: checking rtems target cpu" >&5
     670case "${target}" in
    676671  # hpux unix port should go here
    677672  i[3456]86-go32-rtems*)
     
    691686        ;;
    692687  *)
    693         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     688        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    694689        ;;
    695690esac
     
    710705# ./install, which can be erroneously created by make from ./install.sh.
    711706echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    712 echo "configure:713: checking for a BSD compatible install" >&5
     707echo "configure:708: checking for a BSD compatible install" >&5
    713708if test -z "$INSTALL"; then
    714709if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     
    763758
    764759echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    765 echo "configure:766: checking whether build environment is sane" >&5
     760echo "configure:761: checking whether build environment is sane" >&5
    766761# Just in case
    767762sleep 1
     
    820815
    821816echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    822 echo "configure:823: checking whether ${MAKE-make} sets \${MAKE}" >&5
     817echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5
    823818set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    824819if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    859854missing_dir=`cd $ac_aux_dir && pwd`
    860855echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    861 echo "configure:862: checking for working aclocal" >&5
     856echo "configure:857: checking for working aclocal" >&5
    862857# Run test in a subshell; some versions of sh will print an error if
    863858# an executable is not found, even if stderr is redirected.
     
    872867
    873868echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    874 echo "configure:875: checking for working autoconf" >&5
     869echo "configure:870: checking for working autoconf" >&5
    875870# Run test in a subshell; some versions of sh will print an error if
    876871# an executable is not found, even if stderr is redirected.
     
    885880
    886881echo $ac_n "checking for working automake""... $ac_c" 1>&6
    887 echo "configure:888: checking for working automake" >&5
     882echo "configure:883: checking for working automake" >&5
    888883# Run test in a subshell; some versions of sh will print an error if
    889884# an executable is not found, even if stderr is redirected.
     
    898893
    899894echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    900 echo "configure:901: checking for working autoheader" >&5
     895echo "configure:896: checking for working autoheader" >&5
    901896# Run test in a subshell; some versions of sh will print an error if
    902897# an executable is not found, even if stderr is redirected.
     
    911906
    912907echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    913 echo "configure:914: checking for working makeinfo" >&5
     908echo "configure:909: checking for working makeinfo" >&5
    914909# Run test in a subshell; some versions of sh will print an error if
    915910# an executable is not found, even if stderr is redirected.
     
    928923set dummy gcc; ac_word=$2
    929924echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    930 echo "configure:931: checking for $ac_word" >&5
     925echo "configure:926: checking for $ac_word" >&5
    931926if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    932927  echo $ac_n "(cached) $ac_c" 1>&6
     
    958953set dummy cc; ac_word=$2
    959954echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    960 echo "configure:961: checking for $ac_word" >&5
     955echo "configure:956: checking for $ac_word" >&5
    961956if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    962957  echo $ac_n "(cached) $ac_c" 1>&6
     
    10091004set dummy cl; ac_word=$2
    10101005echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1011 echo "configure:1012: checking for $ac_word" >&5
     1006echo "configure:1007: checking for $ac_word" >&5
    10121007if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    10131008  echo $ac_n "(cached) $ac_c" 1>&6
     
    10411036
    10421037echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
    1043 echo "configure:1044: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
     1038echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
    10441039
    10451040ac_ext=c
     
    10521047cat > conftest.$ac_ext << EOF
    10531048
    1054 #line 1055 "configure"
     1049#line 1050 "configure"
    10551050#include "confdefs.h"
    10561051
    10571052main(){return(0);}
    10581053EOF
    1059 if { (eval echo configure:1060: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1054if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    10601055  ac_cv_prog_cc_works=yes
    10611056  # If we can't run a trivial program, we are probably using a cross compiler.
     
    10831078fi
    10841079echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
    1085 echo "configure:1086: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
     1080echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
    10861081echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
    10871082cross_compiling=$ac_cv_prog_cc_cross
    10881083
    10891084echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    1090 echo "configure:1091: checking whether we are using GNU C" >&5
     1085echo "configure:1086: checking whether we are using GNU C" >&5
    10911086if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    10921087  echo $ac_n "(cached) $ac_c" 1>&6
     
    10971092#endif
    10981093EOF
    1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1094if { 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
    11001095  ac_cv_prog_gcc=yes
    11011096else
     
    11161111CFLAGS=
    11171112echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    1118 echo "configure:1119: checking whether ${CC-cc} accepts -g" >&5
     1113echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5
    11191114if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    11201115  echo $ac_n "(cached) $ac_c" 1>&6
  • tools/cpu/sh/aclocal.m4

    r1407343 r8c92fa3  
    6464AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    6565[
    66 rtems_target=$target;
    67 case "$target" in
    68 no_cpu*) target=$host;;
    69 *) ;;
    70 esac
    7166AC_CANONICAL_SYSTEM
    7267AC_MSG_CHECKING(rtems target cpu)
    7368changequote(,)dnl
    74 case "${rtems_target}" in
     69case "${target}" in
    7570  # hpux unix port should go here
    7671  i[3456]86-go32-rtems*)
     
    9085        ;;
    9186  *)
    92         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     87        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    9388        ;;
    9489esac
  • tools/cpu/sh/configure

    r1407343 r8c92fa3  
    577577
    578578
    579 rtems_target=$target;
    580 case "$target" in
    581 no_cpu*) target=$host;;
    582 *) ;;
    583 esac
    584579
    585580# Do some error checking and defaulting for the host and target type.
     
    610605
    611606echo $ac_n "checking host system type""... $ac_c" 1>&6
    612 echo "configure:613: checking host system type" >&5
     607echo "configure:608: checking host system type" >&5
    613608
    614609host_alias=$host
     
    631626
    632627echo $ac_n "checking target system type""... $ac_c" 1>&6
    633 echo "configure:634: checking target system type" >&5
     628echo "configure:629: checking target system type" >&5
    634629
    635630target_alias=$target
     
    649644
    650645echo $ac_n "checking build system type""... $ac_c" 1>&6
    651 echo "configure:652: checking build system type" >&5
     646echo "configure:647: checking build system type" >&5
    652647
    653648build_alias=$build
     
    672667
    673668echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
    674 echo "configure:675: checking rtems target cpu" >&5
    675 case "${rtems_target}" in
     669echo "configure:670: checking rtems target cpu" >&5
     670case "${target}" in
    676671  # hpux unix port should go here
    677672  i[3456]86-go32-rtems*)
     
    691686        ;;
    692687  *)
    693         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     688        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    694689        ;;
    695690esac
     
    710705# ./install, which can be erroneously created by make from ./install.sh.
    711706echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    712 echo "configure:713: checking for a BSD compatible install" >&5
     707echo "configure:708: checking for a BSD compatible install" >&5
    713708if test -z "$INSTALL"; then
    714709if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     
    763758
    764759echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    765 echo "configure:766: checking whether build environment is sane" >&5
     760echo "configure:761: checking whether build environment is sane" >&5
    766761# Just in case
    767762sleep 1
     
    820815
    821816echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    822 echo "configure:823: checking whether ${MAKE-make} sets \${MAKE}" >&5
     817echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5
    823818set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    824819if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    859854missing_dir=`cd $ac_aux_dir && pwd`
    860855echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    861 echo "configure:862: checking for working aclocal" >&5
     856echo "configure:857: checking for working aclocal" >&5
    862857# Run test in a subshell; some versions of sh will print an error if
    863858# an executable is not found, even if stderr is redirected.
     
    872867
    873868echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    874 echo "configure:875: checking for working autoconf" >&5
     869echo "configure:870: checking for working autoconf" >&5
    875870# Run test in a subshell; some versions of sh will print an error if
    876871# an executable is not found, even if stderr is redirected.
     
    885880
    886881echo $ac_n "checking for working automake""... $ac_c" 1>&6
    887 echo "configure:888: checking for working automake" >&5
     882echo "configure:883: checking for working automake" >&5
    888883# Run test in a subshell; some versions of sh will print an error if
    889884# an executable is not found, even if stderr is redirected.
     
    898893
    899894echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    900 echo "configure:901: checking for working autoheader" >&5
     895echo "configure:896: checking for working autoheader" >&5
    901896# Run test in a subshell; some versions of sh will print an error if
    902897# an executable is not found, even if stderr is redirected.
     
    911906
    912907echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    913 echo "configure:914: checking for working makeinfo" >&5
     908echo "configure:909: checking for working makeinfo" >&5
    914909# Run test in a subshell; some versions of sh will print an error if
    915910# an executable is not found, even if stderr is redirected.
     
    928923set dummy gcc; ac_word=$2
    929924echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    930 echo "configure:931: checking for $ac_word" >&5
     925echo "configure:926: checking for $ac_word" >&5
    931926if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    932927  echo $ac_n "(cached) $ac_c" 1>&6
     
    958953set dummy cc; ac_word=$2
    959954echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    960 echo "configure:961: checking for $ac_word" >&5
     955echo "configure:956: checking for $ac_word" >&5
    961956if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    962957  echo $ac_n "(cached) $ac_c" 1>&6
     
    10091004set dummy cl; ac_word=$2
    10101005echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1011 echo "configure:1012: checking for $ac_word" >&5
     1006echo "configure:1007: checking for $ac_word" >&5
    10121007if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    10131008  echo $ac_n "(cached) $ac_c" 1>&6
     
    10411036
    10421037echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
    1043 echo "configure:1044: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
     1038echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
    10441039
    10451040ac_ext=c
     
    10521047cat > conftest.$ac_ext << EOF
    10531048
    1054 #line 1055 "configure"
     1049#line 1050 "configure"
    10551050#include "confdefs.h"
    10561051
    10571052main(){return(0);}
    10581053EOF
    1059 if { (eval echo configure:1060: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1054if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    10601055  ac_cv_prog_cc_works=yes
    10611056  # If we can't run a trivial program, we are probably using a cross compiler.
     
    10831078fi
    10841079echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
    1085 echo "configure:1086: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
     1080echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
    10861081echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
    10871082cross_compiling=$ac_cv_prog_cc_cross
    10881083
    10891084echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    1090 echo "configure:1091: checking whether we are using GNU C" >&5
     1085echo "configure:1086: checking whether we are using GNU C" >&5
    10911086if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    10921087  echo $ac_n "(cached) $ac_c" 1>&6
     
    10971092#endif
    10981093EOF
    1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1094if { 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
    11001095  ac_cv_prog_gcc=yes
    11011096else
     
    11161111CFLAGS=
    11171112echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    1118 echo "configure:1119: checking whether ${CC-cc} accepts -g" >&5
     1113echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5
    11191114if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    11201115  echo $ac_n "(cached) $ac_c" 1>&6
     
    11481143
    11491144echo $ac_n "checking for fabs in -lm""... $ac_c" 1>&6
    1150 echo "configure:1151: checking for fabs in -lm" >&5
     1145echo "configure:1146: checking for fabs in -lm" >&5
    11511146ac_lib_var=`echo m'_'fabs | sed 'y%./+-%__p_%'`
    11521147if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    11561151LIBS="-lm  $LIBS"
    11571152cat > conftest.$ac_ext <<EOF
    1158 #line 1159 "configure"
     1153#line 1154 "configure"
    11591154#include "confdefs.h"
    11601155/* Override any gcc2 internal prototype to avoid an error.  */
     
    11671162; return 0; }
    11681163EOF
    1169 if { (eval echo configure:1170: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1164if { (eval echo configure:1165: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    11701165  rm -rf conftest*
    11711166  eval "ac_cv_lib_$ac_lib_var=yes"
  • tools/cpu/unix/aclocal.m4

    r1407343 r8c92fa3  
    6464AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
    6565[
    66 rtems_target=$target;
    67 case "$target" in
    68 no_cpu*) target=$host;;
    69 *) ;;
    70 esac
    7166AC_CANONICAL_SYSTEM
    7267AC_MSG_CHECKING(rtems target cpu)
    7368changequote(,)dnl
    74 case "${rtems_target}" in
     69case "${target}" in
    7570  # hpux unix port should go here
    7671  i[3456]86-go32-rtems*)
     
    9085        ;;
    9186  *)
    92         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     87        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    9388        ;;
    9489esac
  • tools/cpu/unix/configure

    r1407343 r8c92fa3  
    577577
    578578
    579 rtems_target=$target;
    580 case "$target" in
    581 no_cpu*) target=$host;;
    582 *) ;;
    583 esac
    584579
    585580# Do some error checking and defaulting for the host and target type.
     
    610605
    611606echo $ac_n "checking host system type""... $ac_c" 1>&6
    612 echo "configure:613: checking host system type" >&5
     607echo "configure:608: checking host system type" >&5
    613608
    614609host_alias=$host
     
    631626
    632627echo $ac_n "checking target system type""... $ac_c" 1>&6
    633 echo "configure:634: checking target system type" >&5
     628echo "configure:629: checking target system type" >&5
    634629
    635630target_alias=$target
     
    649644
    650645echo $ac_n "checking build system type""... $ac_c" 1>&6
    651 echo "configure:652: checking build system type" >&5
     646echo "configure:647: checking build system type" >&5
    652647
    653648build_alias=$build
     
    672667
    673668echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
    674 echo "configure:675: checking rtems target cpu" >&5
    675 case "${rtems_target}" in
     669echo "configure:670: checking rtems target cpu" >&5
     670case "${target}" in
    676671  # hpux unix port should go here
    677672  i[3456]86-go32-rtems*)
     
    691686        ;;
    692687  *)
    693         RTEMS_CPU=`echo $rtems_target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     688        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
    694689        ;;
    695690esac
     
    710705# ./install, which can be erroneously created by make from ./install.sh.
    711706echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
    712 echo "configure:713: checking for a BSD compatible install" >&5
     707echo "configure:708: checking for a BSD compatible install" >&5
    713708if test -z "$INSTALL"; then
    714709if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     
    763758
    764759echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
    765 echo "configure:766: checking whether build environment is sane" >&5
     760echo "configure:761: checking whether build environment is sane" >&5
    766761# Just in case
    767762sleep 1
     
    820815
    821816echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    822 echo "configure:823: checking whether ${MAKE-make} sets \${MAKE}" >&5
     817echo "configure:818: checking whether ${MAKE-make} sets \${MAKE}" >&5
    823818set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    824819if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    859854missing_dir=`cd $ac_aux_dir && pwd`
    860855echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
    861 echo "configure:862: checking for working aclocal" >&5
     856echo "configure:857: checking for working aclocal" >&5
    862857# Run test in a subshell; some versions of sh will print an error if
    863858# an executable is not found, even if stderr is redirected.
     
    872867
    873868echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
    874 echo "configure:875: checking for working autoconf" >&5
     869echo "configure:870: checking for working autoconf" >&5
    875870# Run test in a subshell; some versions of sh will print an error if
    876871# an executable is not found, even if stderr is redirected.
     
    885880
    886881echo $ac_n "checking for working automake""... $ac_c" 1>&6
    887 echo "configure:888: checking for working automake" >&5
     882echo "configure:883: checking for working automake" >&5
    888883# Run test in a subshell; some versions of sh will print an error if
    889884# an executable is not found, even if stderr is redirected.
     
    898893
    899894echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
    900 echo "configure:901: checking for working autoheader" >&5
     895echo "configure:896: checking for working autoheader" >&5
    901896# Run test in a subshell; some versions of sh will print an error if
    902897# an executable is not found, even if stderr is redirected.
     
    911906
    912907echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
    913 echo "configure:914: checking for working makeinfo" >&5
     908echo "configure:909: checking for working makeinfo" >&5
    914909# Run test in a subshell; some versions of sh will print an error if
    915910# an executable is not found, even if stderr is redirected.
     
    928923set dummy gcc; ac_word=$2
    929924echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    930 echo "configure:931: checking for $ac_word" >&5
     925echo "configure:926: checking for $ac_word" >&5
    931926if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    932927  echo $ac_n "(cached) $ac_c" 1>&6
     
    958953set dummy cc; ac_word=$2
    959954echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    960 echo "configure:961: checking for $ac_word" >&5
     955echo "configure:956: checking for $ac_word" >&5
    961956if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    962957  echo $ac_n "(cached) $ac_c" 1>&6
     
    10091004set dummy cl; ac_word=$2
    10101005echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1011 echo "configure:1012: checking for $ac_word" >&5
     1006echo "configure:1007: checking for $ac_word" >&5
    10121007if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    10131008  echo $ac_n "(cached) $ac_c" 1>&6
     
    10411036
    10421037echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
    1043 echo "configure:1044: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
     1038echo "configure:1039: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
    10441039
    10451040ac_ext=c
     
    10521047cat > conftest.$ac_ext << EOF
    10531048
    1054 #line 1055 "configure"
     1049#line 1050 "configure"
    10551050#include "confdefs.h"
    10561051
    10571052main(){return(0);}
    10581053EOF
    1059 if { (eval echo configure:1060: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1054if { (eval echo configure:1055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    10601055  ac_cv_prog_cc_works=yes
    10611056  # If we can't run a trivial program, we are probably using a cross compiler.
     
    10831078fi
    10841079echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
    1085 echo "configure:1086: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
     1080echo "configure:1081: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
    10861081echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
    10871082cross_compiling=$ac_cv_prog_cc_cross
    10881083
    10891084echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    1090 echo "configure:1091: checking whether we are using GNU C" >&5
     1085echo "configure:1086: checking whether we are using GNU C" >&5
    10911086if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    10921087  echo $ac_n "(cached) $ac_c" 1>&6
     
    10971092#endif
    10981093EOF
    1099 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1094if { 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
    11001095  ac_cv_prog_gcc=yes
    11011096else
     
    11161111CFLAGS=
    11171112echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    1118 echo "configure:1119: checking whether ${CC-cc} accepts -g" >&5
     1113echo "configure:1114: checking whether ${CC-cc} accepts -g" >&5
    11191114if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    11201115  echo $ac_n "(cached) $ac_c" 1>&6
Note: See TracChangeset for help on using the changeset viewer.