Changeset a7a08713 in rtems


Ignore:
Timestamp:
03/20/98 16:52:10 (26 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
50cf94da
Parents:
aa24c61
Message:

Patch from Ralf Corsepius to properly detect that Cygwin32 does not
support the -pipe option on the compiler.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • aclocal.m4

    raa24c61 ra7a08713  
    164164
    165165AC_DEFUN(RTEMS_GCC_PIPE,
    166 [AC_REQUIRE([RTEMS_PROG_CC])
     166[AC_REQUIRE([RTEMS_PROG_CC])
     167AC_REQUIRE([AC_CANONICAL_HOST])
    167168AC_CACHE_CHECK(whether $CC_FOR_TARGET accepts --pipe,rtems_cv_gcc_pipe,
    168169[
    169 echo 'void f(){}' >conftest.c
    170 if test -z "`${CC_FOR_TARGET} --pipe -c conftest.c 2>&1`";then
    171   rtems_cv_gcc_pipe=yes
    172 else
    173   rtems_cv_gcc_pipe=no
    174 fi
    175 rm -f conftest*
    176 ])])
     170case "$host_os" in
     171  cygwin32*)
     172    rtems_cv_gcc_pipe=no
     173    ;;
     174  *)
     175    echo 'void f(){}' >conftest.c
     176    if test -z "`${CC_FOR_TARGET} --pipe -c conftest.c 2>&1`";then
     177      rtems_cv_gcc_pipe=yes
     178    else
     179      rtems_cv_gcc_pipe=no
     180    fi
     181    rm -f conftest*
     182    ;;
     183esac
     184])
     185])
    177186
    178187dnl
  • aclocal/gcc-pipe.m4

    raa24c61 ra7a08713  
    88
    99AC_DEFUN(RTEMS_GCC_PIPE,
    10 [AC_REQUIRE([RTEMS_PROG_CC])
     10[AC_REQUIRE([RTEMS_PROG_CC])
     11AC_REQUIRE([AC_CANONICAL_HOST])
    1112AC_CACHE_CHECK(whether $CC_FOR_TARGET accepts --pipe,rtems_cv_gcc_pipe,
    1213[
    13 echo 'void f(){}' >conftest.c
    14 if test -z "`${CC_FOR_TARGET} --pipe -c conftest.c 2>&1`";then
    15   rtems_cv_gcc_pipe=yes
    16 else
    17   rtems_cv_gcc_pipe=no
    18 fi
    19 rm -f conftest*
    20 ])])
     14case "$host_os" in
     15  cygwin32*)
     16    rtems_cv_gcc_pipe=no
     17    ;;
     18  *)
     19    echo 'void f(){}' >conftest.c
     20    if test -z "`${CC_FOR_TARGET} --pipe -c conftest.c 2>&1`";then
     21      rtems_cv_gcc_pipe=yes
     22    else
     23      rtems_cv_gcc_pipe=no
     24    fi
     25    rm -f conftest*
     26    ;;
     27esac
     28])
     29])
  • configure

    raa24c61 ra7a08713  
    15511551fi
    15521552
     1553 
    15531554
    15541555echo $ac_n "checking whether $CC_FOR_TARGET accepts --pipe""... $ac_c" 1>&6
    1555 echo "configure:1556: checking whether $CC_FOR_TARGET accepts --pipe" >&5
     1556echo "configure:1557: checking whether $CC_FOR_TARGET accepts --pipe" >&5
    15561557if eval "test \"`echo '$''{'rtems_cv_gcc_pipe'+set}'`\" = set"; then
    15571558  echo $ac_n "(cached) $ac_c" 1>&6
    15581559else
    15591560 
    1560 echo 'void f(){}' >conftest.c
    1561 if test -z "`${CC_FOR_TARGET} --pipe -c conftest.c 2>&1`";then
    1562   rtems_cv_gcc_pipe=yes
    1563 else
    1564   rtems_cv_gcc_pipe=no
    1565 fi
    1566 rm -f conftest*
     1561case "$host_os" in
     1562  cygwin32*)
     1563    rtems_cv_gcc_pipe=no
     1564    ;;
     1565  *)
     1566    echo 'void f(){}' >conftest.c
     1567    if test -z "`${CC_FOR_TARGET} --pipe -c conftest.c 2>&1`";then
     1568      rtems_cv_gcc_pipe=yes
     1569    else
     1570      rtems_cv_gcc_pipe=no
     1571    fi
     1572    rm -f conftest*
     1573    ;;
     1574esac
    15671575
    15681576fi
    15691577
    15701578echo "$ac_t""$rtems_cv_gcc_pipe" 1>&6
     1579
    15711580
    15721581if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then
     
    15781587set dummy $ac_prog; ac_word=$2
    15791588echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1580 echo "configure:1581: checking for $ac_word" >&5
     1589echo "configure:1590: checking for $ac_word" >&5
    15811590if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then
    15821591  echo $ac_n "(cached) $ac_c" 1>&6
     
    16091618
    16101619echo $ac_n "checking whether the target C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works""... $ac_c" 1>&6
    1611 echo "configure:1612: checking whether the target C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5
     1620echo "configure:1621: checking whether the target C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5
    16121621
    16131622ac_ext=C
     
    16201629
    16211630cat > conftest.$ac_ext <<EOF
    1622 #line 1623 "configure"
     1631#line 1632 "configure"
    16231632#include "confdefs.h"
    16241633main(){return(0);}
    16251634EOF
    1626 if { (eval echo configure:1627: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
     1635if { (eval echo configure:1636: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
    16271636  rtems_cv_prog_cxx_works=yes
    16281637  # If we can't run a trivial program, we are probably using a cross compiler.
     
    16401649if test "$rtems_cv_prog_cxx_works" = "no"; then
    16411650    cat > conftest.$ac_ext <<EOF
    1642 #line 1643 "configure"
     1651#line 1652 "configure"
    16431652#include "confdefs.h"
    16441653extern "C" void *malloc();
     
    16461655     main(){return(0);}
    16471656EOF
    1648 if { (eval echo configure:1649: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
     1657if { (eval echo configure:1658: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
    16491658  rtems_cv_prog_cxx_works=yes
    16501659  # If we can't run a trivial program, we are probably using a cross compiler.
     
    16731682fi
    16741683echo $ac_n "checking whether the target C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
    1675 echo "configure:1676: checking whether the target C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5
     1684echo "configure:1685: checking whether the target C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5
    16761685echo "$ac_t""$rtems_cv_prog_cxx_cross" 1>&6
    16771686
    16781687echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6
    1679 echo "configure:1680: checking whether we are using GNU C++" >&5
     1688echo "configure:1689: checking whether we are using GNU C++" >&5
    16801689if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then
    16811690  echo $ac_n "(cached) $ac_c" 1>&6
     
    16861695#endif
    16871696EOF
    1688 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1689: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1697if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1698: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
    16891698  ac_cv_prog_gxx=yes
    16901699else
     
    17011710  CXXFLAGS=
    17021711  echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6
    1703 echo "configure:1704: checking whether ${CXX-g++} accepts -g" >&5
     1712echo "configure:1713: checking whether ${CXX-g++} accepts -g" >&5
    17041713if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then
    17051714  echo $ac_n "(cached) $ac_c" 1>&6
     
    17351744set dummy "$program_prefix"g++; ac_word=$2
    17361745echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1737 echo "configure:1738: checking for $ac_word" >&5
     1746echo "configure:1747: checking for $ac_word" >&5
    17381747if eval "test \"`echo '$''{'ac_cv_path_CXX_FOR_TARGET'+set}'`\" = set"; then
    17391748  echo $ac_n "(cached) $ac_c" 1>&6
     
    17801789set dummy "$program_prefix"gcc; ac_word=$2
    17811790echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1782 echo "configure:1783: checking for $ac_word" >&5
     1791echo "configure:1792: checking for $ac_word" >&5
    17831792if eval "test \"`echo '$''{'ac_cv_path_CC_FOR_TARGET'+set}'`\" = set"; then
    17841793  echo $ac_n "(cached) $ac_c" 1>&6
     
    18131822set dummy "$program_prefix"ar; ac_word=$2
    18141823echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1815 echo "configure:1816: checking for $ac_word" >&5
     1824echo "configure:1825: checking for $ac_word" >&5
    18161825if eval "test \"`echo '$''{'ac_cv_path_AR_FOR_TARGET'+set}'`\" = set"; then
    18171826  echo $ac_n "(cached) $ac_c" 1>&6
     
    18451854set dummy "$program_prefix"as; ac_word=$2
    18461855echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1847 echo "configure:1848: checking for $ac_word" >&5
     1856echo "configure:1857: checking for $ac_word" >&5
    18481857if eval "test \"`echo '$''{'ac_cv_path_AS_FOR_TARGET'+set}'`\" = set"; then
    18491858  echo $ac_n "(cached) $ac_c" 1>&6
     
    18771886set dummy "$program_prefix"nm; ac_word=$2
    18781887echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1879 echo "configure:1880: checking for $ac_word" >&5
     1888echo "configure:1889: checking for $ac_word" >&5
    18801889if eval "test \"`echo '$''{'ac_cv_path_NM_FOR_TARGET'+set}'`\" = set"; then
    18811890  echo $ac_n "(cached) $ac_c" 1>&6
     
    19091918set dummy "$program_prefix"ld; ac_word=$2
    19101919echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1911 echo "configure:1912: checking for $ac_word" >&5
     1920echo "configure:1921: checking for $ac_word" >&5
    19121921if eval "test \"`echo '$''{'ac_cv_path_LD_FOR_TARGET'+set}'`\" = set"; then
    19131922  echo $ac_n "(cached) $ac_c" 1>&6
     
    19421951set dummy "$program_prefix"ranlib; ac_word=$2
    19431952echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1944 echo "configure:1945: checking for $ac_word" >&5
     1953echo "configure:1954: checking for $ac_word" >&5
    19451954if eval "test \"`echo '$''{'ac_cv_path_RANLIB_FOR_TARGET'+set}'`\" = set"; then
    19461955  echo $ac_n "(cached) $ac_c" 1>&6
     
    19751984set dummy "$program_prefix"objcopy; ac_word=$2
    19761985echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1977 echo "configure:1978: checking for $ac_word" >&5
     1986echo "configure:1987: checking for $ac_word" >&5
    19781987if eval "test \"`echo '$''{'ac_cv_path_OBJCOPY_FOR_TARGET'+set}'`\" = set"; then
    19791988  echo $ac_n "(cached) $ac_c" 1>&6
     
    20072016set dummy "$program_prefix"size; ac_word=$2
    20082017echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2009 echo "configure:2010: checking for $ac_word" >&5
     2018echo "configure:2019: checking for $ac_word" >&5
    20102019if eval "test \"`echo '$''{'ac_cv_path_SIZE_FOR_TARGET'+set}'`\" = set"; then
    20112020  echo $ac_n "(cached) $ac_c" 1>&6
     
    20422051set dummy gcc; ac_word=$2
    20432052echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2044 echo "configure:2045: checking for $ac_word" >&5
     2053echo "configure:2054: checking for $ac_word" >&5
    20452054if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    20462055  echo $ac_n "(cached) $ac_c" 1>&6
     
    20712080set dummy cc; ac_word=$2
    20722081echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2073 echo "configure:2074: checking for $ac_word" >&5
     2082echo "configure:2083: checking for $ac_word" >&5
    20742083if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    20752084  echo $ac_n "(cached) $ac_c" 1>&6
     
    21192128
    21202129echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
    2121 echo "configure:2122: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
     2130echo "configure:2131: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
    21222131
    21232132ac_ext=c
     
    21292138
    21302139cat > conftest.$ac_ext <<EOF
    2131 #line 2132 "configure"
     2140#line 2141 "configure"
    21322141#include "confdefs.h"
    21332142main(){return(0);}
    21342143EOF
    2135 if { (eval echo configure:2136: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
     2144if { (eval echo configure:2145: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
    21362145  ac_cv_prog_cc_works=yes
    21372146  # If we can't run a trivial program, we are probably using a cross compiler.
     
    21532162fi
    21542163echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
    2155 echo "configure:2156: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
     2164echo "configure:2165: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
    21562165echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
    21572166cross_compiling=$ac_cv_prog_cc_cross
    21582167
    21592168echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    2160 echo "configure:2161: checking whether we are using GNU C" >&5
     2169echo "configure:2170: checking whether we are using GNU C" >&5
    21612170if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    21622171  echo $ac_n "(cached) $ac_c" 1>&6
     
    21672176#endif
    21682177EOF
    2169 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2170: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     2178if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2179: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
    21702179  ac_cv_prog_gcc=yes
    21712180else
     
    21822191  CFLAGS=
    21832192  echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    2184 echo "configure:2185: checking whether ${CC-cc} accepts -g" >&5
     2193echo "configure:2194: checking whether ${CC-cc} accepts -g" >&5
    21852194if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    21862195  echo $ac_n "(cached) $ac_c" 1>&6
     
    22132222do
    22142223echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    2215 echo "configure:2216: checking for $ac_func" >&5
     2224echo "configure:2225: checking for $ac_func" >&5
    22162225if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    22172226  echo $ac_n "(cached) $ac_c" 1>&6
    22182227else
    22192228  cat > conftest.$ac_ext <<EOF
    2220 #line 2221 "configure"
     2229#line 2230 "configure"
    22212230#include "confdefs.h"
    22222231/* System header to define __stub macros and hopefully few prototypes,
     
    22412250; return 0; }
    22422251EOF
    2243 if { (eval echo configure:2244: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
     2252if { (eval echo configure:2253: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
    22442253  rm -rf conftest*
    22452254  eval "ac_cv_func_$ac_func=yes"
     
    22692278
    22702279echo $ac_n "checking for Makefile.in in c/src/exec/score/tools/$target_cpu""... $ac_c" 1>&6
    2271 echo "configure:2272: checking for Makefile.in in c/src/exec/score/tools/$target_cpu" >&5
     2280echo "configure:2281: checking for Makefile.in in c/src/exec/score/tools/$target_cpu" >&5
    22722281if test -d $srcdir/c/src/exec/score/tools/$target_cpu; then
    22732282  rtems_av_save_dir=`pwd`;
     
    22842293
    22852294echo $ac_n "checking for Makefile.in in c/src/exec/rtems""... $ac_c" 1>&6
    2286 echo "configure:2287: checking for Makefile.in in c/src/exec/rtems" >&5
     2295echo "configure:2296: checking for Makefile.in in c/src/exec/rtems" >&5
    22872296if test -d $srcdir/c/src/exec/rtems; then
    22882297  rtems_av_save_dir=`pwd`;
     
    22992308
    23002309echo $ac_n "checking for Makefile.in in c/src/exec/sapi""... $ac_c" 1>&6
    2301 echo "configure:2302: checking for Makefile.in in c/src/exec/sapi" >&5
     2310echo "configure:2311: checking for Makefile.in in c/src/exec/sapi" >&5
    23022311if test -d $srcdir/c/src/exec/sapi; then
    23032312  rtems_av_save_dir=`pwd`;
     
    23162325 
    23172326echo $ac_n "checking for Makefile.in in c/src/exec/posix""... $ac_c" 1>&6
    2318 echo "configure:2319: checking for Makefile.in in c/src/exec/posix" >&5
     2327echo "configure:2328: checking for Makefile.in in c/src/exec/posix" >&5
    23192328if test -d $srcdir/c/src/exec/posix; then
    23202329  rtems_av_save_dir=`pwd`;
     
    23382347  if test -z "$rtems_bsp"; then
    23392348    echo $ac_n "checking for bsps""... $ac_c" 1>&6
    2340 echo "configure:2341: checking for bsps" >&5
     2349echo "configure:2350: checking for bsps" >&5
    23412350    files=`ls $srcdir/c/src/lib/libbsp/$target_cpu`
    23422351    for file in $files; do
     
    23852394       
    23862395echo $ac_n "checking for Makefile.in in c/src/lib/libbsp/$target_cpu/$bspdir""... $ac_c" 1>&6
    2387 echo "configure:2388: checking for Makefile.in in c/src/lib/libbsp/$target_cpu/$bspdir" >&5
     2396echo "configure:2397: checking for Makefile.in in c/src/lib/libbsp/$target_cpu/$bspdir" >&5
    23882397if test -d $srcdir/c/src/lib/libbsp/$target_cpu/$bspdir; then
    23892398  rtems_av_save_dir=`pwd`;
     
    24082417
    24092418echo $ac_n "checking for Makefile.in in c/src/lib/libcpu/$target_cpu""... $ac_c" 1>&6
    2410 echo "configure:2411: checking for Makefile.in in c/src/lib/libcpu/$target_cpu" >&5
     2419echo "configure:2420: checking for Makefile.in in c/src/lib/libcpu/$target_cpu" >&5
    24112420if test -d $srcdir/c/src/lib/libcpu/$target_cpu; then
    24122421  rtems_av_save_dir=`pwd`;
     
    24252434 
    24262435echo $ac_n "checking for Makefile.in in c/src/lib/start/$target_cpu""... $ac_c" 1>&6
    2427 echo "configure:2428: checking for Makefile.in in c/src/lib/start/$target_cpu" >&5
     2436echo "configure:2437: checking for Makefile.in in c/src/lib/start/$target_cpu" >&5
    24282437if test -d $srcdir/c/src/lib/start/$target_cpu; then
    24292438  rtems_av_save_dir=`pwd`;
     
    24672476# If the tests are enabled, then find all the test suite Makefiles
    24682477echo $ac_n "checking Are the test suites enabled? ""... $ac_c" 1>&6
    2469 echo "configure:2470: checking Are the test suites enabled? " >&5
     2478echo "configure:2479: checking Are the test suites enabled? " >&5
    24702479tests_enabled=yes
    24712480# Check whether --enable-tests or --disable-tests was given.
     
    24862495
    24872496echo $ac_n "checking for Makefile.in in c/src/tests/tools/$target_cpu""... $ac_c" 1>&6
    2488 echo "configure:2489: checking for Makefile.in in c/src/tests/tools/$target_cpu" >&5
     2497echo "configure:2498: checking for Makefile.in in c/src/tests/tools/$target_cpu" >&5
    24892498if test -d $srcdir/c/src/tests/tools/$target_cpu; then
    24902499  rtems_av_save_dir=`pwd`;
     
    25032512   
    25042513echo $ac_n "checking for Makefile.in in c/src/tests/libtests""... $ac_c" 1>&6
    2505 echo "configure:2506: checking for Makefile.in in c/src/tests/libtests" >&5
     2514echo "configure:2515: checking for Makefile.in in c/src/tests/libtests" >&5
    25062515if test -d $srcdir/c/src/tests/libtests; then
    25072516  rtems_av_save_dir=`pwd`;
     
    25182527   
    25192528echo $ac_n "checking for Makefile.in in c/src/tests/sptests""... $ac_c" 1>&6
    2520 echo "configure:2521: checking for Makefile.in in c/src/tests/sptests" >&5
     2529echo "configure:2530: checking for Makefile.in in c/src/tests/sptests" >&5
    25212530if test -d $srcdir/c/src/tests/sptests; then
    25222531  rtems_av_save_dir=`pwd`;
     
    25332542   
    25342543echo $ac_n "checking for Makefile.in in c/src/tests/tmtests""... $ac_c" 1>&6
    2535 echo "configure:2536: checking for Makefile.in in c/src/tests/tmtests" >&5
     2544echo "configure:2545: checking for Makefile.in in c/src/tests/tmtests" >&5
    25362545if test -d $srcdir/c/src/tests/tmtests; then
    25372546  rtems_av_save_dir=`pwd`;
     
    25482557   
    25492558echo $ac_n "checking for Makefile.in in c/src/tests/mptests""... $ac_c" 1>&6
    2550 echo "configure:2551: checking for Makefile.in in c/src/tests/mptests" >&5
     2559echo "configure:2560: checking for Makefile.in in c/src/tests/mptests" >&5
    25512560if test -d $srcdir/c/src/tests/mptests; then
    25522561  rtems_av_save_dir=`pwd`;
     
    25642573     
    25652574echo $ac_n "checking for Makefile.in in c/src/tests/psxtests""... $ac_c" 1>&6
    2566 echo "configure:2567: checking for Makefile.in in c/src/tests/psxtests" >&5
     2575echo "configure:2576: checking for Makefile.in in c/src/tests/psxtests" >&5
    25672576if test -d $srcdir/c/src/tests/psxtests; then
    25682577  rtems_av_save_dir=`pwd`;
     
    25822591# If the HWAPI is enabled, the find the HWAPI Makefiles
    25832592echo $ac_n "checking Is the HWAPI enabled? ""... $ac_c" 1>&6
    2584 echo "configure:2585: checking Is the HWAPI enabled? " >&5
     2593echo "configure:2594: checking Is the HWAPI enabled? " >&5
    25852594# Check whether --enable-hwapi or --disable-hwapi was given.
    25862595if test "${enable_hwapi+set}" = set; then
     
    25932602           
    25942603echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/analog""... $ac_c" 1>&6
    2595 echo "configure:2596: checking for Makefile.in in c/src/lib/libhwapi/analog" >&5
     2604echo "configure:2605: checking for Makefile.in in c/src/lib/libhwapi/analog" >&5
    25962605if test -d $srcdir/c/src/lib/libhwapi/analog; then
    25972606  rtems_av_save_dir=`pwd`;
     
    26082617           
    26092618echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/discrete""... $ac_c" 1>&6
    2610 echo "configure:2611: checking for Makefile.in in c/src/lib/libhwapi/discrete" >&5
     2619echo "configure:2620: checking for Makefile.in in c/src/lib/libhwapi/discrete" >&5
    26112620if test -d $srcdir/c/src/lib/libhwapi/discrete; then
    26122621  rtems_av_save_dir=`pwd`;
     
    26232632           
    26242633echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/drivers""... $ac_c" 1>&6
    2625 echo "configure:2626: checking for Makefile.in in c/src/lib/libhwapi/drivers" >&5
     2634echo "configure:2635: checking for Makefile.in in c/src/lib/libhwapi/drivers" >&5
    26262635if test -d $srcdir/c/src/lib/libhwapi/drivers; then
    26272636  rtems_av_save_dir=`pwd`;
     
    26382647           
    26392648echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory""... $ac_c" 1>&6
    2640 echo "configure:2641: checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory" >&5
     2649echo "configure:2650: checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory" >&5
    26412650if test -d $srcdir/c/src/lib/libhwapi/non_volatile_memory; then
    26422651  rtems_av_save_dir=`pwd`;
     
    26532662           
    26542663echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/serial""... $ac_c" 1>&6
    2655 echo "configure:2656: checking for Makefile.in in c/src/lib/libhwapi/serial" >&5
     2664echo "configure:2665: checking for Makefile.in in c/src/lib/libhwapi/serial" >&5
    26562665if test -d $srcdir/c/src/lib/libhwapi/serial; then
    26572666  rtems_av_save_dir=`pwd`;
     
    26682677           
    26692678echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/support""... $ac_c" 1>&6
    2670 echo "configure:2671: checking for Makefile.in in c/src/lib/libhwapi/support" >&5
     2679echo "configure:2680: checking for Makefile.in in c/src/lib/libhwapi/support" >&5
    26712680if test -d $srcdir/c/src/lib/libhwapi/support; then
    26722681  rtems_av_save_dir=`pwd`;
     
    26832692           
    26842693echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/wrapup""... $ac_c" 1>&6
    2685 echo "configure:2686: checking for Makefile.in in c/src/lib/libhwapi/wrapup" >&5
     2694echo "configure:2695: checking for Makefile.in in c/src/lib/libhwapi/wrapup" >&5
    26862695if test -d $srcdir/c/src/lib/libhwapi/wrapup; then
    26872696  rtems_av_save_dir=`pwd`;
     
    27252734
    27262735echo $ac_n "checking for Makefile.in in c/build-tools""... $ac_c" 1>&6
    2727 echo "configure:2728: checking for Makefile.in in c/build-tools" >&5
     2736echo "configure:2737: checking for Makefile.in in c/build-tools" >&5
    27282737if test -d $srcdir/c/build-tools; then
    27292738  rtems_av_save_dir=`pwd`;
     
    27402749
    27412750echo $ac_n "checking for Makefile.in in make""... $ac_c" 1>&6
    2742 echo "configure:2743: checking for Makefile.in in make" >&5
     2751echo "configure:2752: checking for Makefile.in in make" >&5
    27432752if test -d $srcdir/make; then
    27442753  rtems_av_save_dir=`pwd`;
     
    27552764
    27562765echo $ac_n "checking for Makefile.in in c/src/lib/libmisc""... $ac_c" 1>&6
    2757 echo "configure:2758: checking for Makefile.in in c/src/lib/libmisc" >&5
     2766echo "configure:2767: checking for Makefile.in in c/src/lib/libmisc" >&5
    27582767if test -d $srcdir/c/src/lib/libmisc; then
    27592768  rtems_av_save_dir=`pwd`;
     
    27702779
    27712780echo $ac_n "checking for Makefile.in in c/src/tests/samples""... $ac_c" 1>&6
    2772 echo "configure:2773: checking for Makefile.in in c/src/tests/samples" >&5
     2781echo "configure:2782: checking for Makefile.in in c/src/tests/samples" >&5
    27732782if test -d $srcdir/c/src/tests/samples; then
    27742783  rtems_av_save_dir=`pwd`;
Note: See TracChangeset for help on using the changeset viewer.