Changeset a7a08713 in rtems
- Timestamp:
- 03/20/98 16:52:10 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 50cf94da
- Parents:
- aa24c61
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
aclocal.m4
raa24c61 ra7a08713 164 164 165 165 AC_DEFUN(RTEMS_GCC_PIPE, 166 [AC_REQUIRE([RTEMS_PROG_CC]) 166 [AC_REQUIRE([RTEMS_PROG_CC]) 167 AC_REQUIRE([AC_CANONICAL_HOST]) 167 168 AC_CACHE_CHECK(whether $CC_FOR_TARGET accepts --pipe,rtems_cv_gcc_pipe, 168 169 [ 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 ])]) 170 case "$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 ;; 183 esac 184 ]) 185 ]) 177 186 178 187 dnl -
aclocal/gcc-pipe.m4
raa24c61 ra7a08713 8 8 9 9 AC_DEFUN(RTEMS_GCC_PIPE, 10 [AC_REQUIRE([RTEMS_PROG_CC]) 10 [AC_REQUIRE([RTEMS_PROG_CC]) 11 AC_REQUIRE([AC_CANONICAL_HOST]) 11 12 AC_CACHE_CHECK(whether $CC_FOR_TARGET accepts --pipe,rtems_cv_gcc_pipe, 12 13 [ 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 ])]) 14 case "$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 ;; 27 esac 28 ]) 29 ]) -
configure
raa24c61 ra7a08713 1551 1551 fi 1552 1552 1553 1553 1554 1554 1555 echo $ac_n "checking whether $CC_FOR_TARGET accepts --pipe""... $ac_c" 1>&6 1555 echo "configure:155 6: checking whether $CC_FOR_TARGET accepts --pipe" >&51556 echo "configure:1557: checking whether $CC_FOR_TARGET accepts --pipe" >&5 1556 1557 if eval "test \"`echo '$''{'rtems_cv_gcc_pipe'+set}'`\" = set"; then 1557 1558 echo $ac_n "(cached) $ac_c" 1>&6 1558 1559 else 1559 1560 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* 1561 case "$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 ;; 1574 esac 1567 1575 1568 1576 fi 1569 1577 1570 1578 echo "$ac_t""$rtems_cv_gcc_pipe" 1>&6 1579 1571 1580 1572 1581 if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then … … 1578 1587 set dummy $ac_prog; ac_word=$2 1579 1588 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1580 echo "configure:15 81: checking for $ac_word" >&51589 echo "configure:1590: checking for $ac_word" >&5 1581 1590 if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then 1582 1591 echo $ac_n "(cached) $ac_c" 1>&6 … … 1609 1618 1610 1619 echo $ac_n "checking whether the target C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1611 echo "configure:16 12: checking whether the target C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&51620 echo "configure:1621: checking whether the target C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5 1612 1621 1613 1622 ac_ext=C … … 1620 1629 1621 1630 cat > conftest.$ac_ext <<EOF 1622 #line 16 23"configure"1631 #line 1632 "configure" 1623 1632 #include "confdefs.h" 1624 1633 main(){return(0);} 1625 1634 EOF 1626 if { (eval echo configure:16 27: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1635 if { (eval echo configure:1636: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 1627 1636 rtems_cv_prog_cxx_works=yes 1628 1637 # If we can't run a trivial program, we are probably using a cross compiler. … … 1640 1649 if test "$rtems_cv_prog_cxx_works" = "no"; then 1641 1650 cat > conftest.$ac_ext <<EOF 1642 #line 16 43"configure"1651 #line 1652 "configure" 1643 1652 #include "confdefs.h" 1644 1653 extern "C" void *malloc(); … … 1646 1655 main(){return(0);} 1647 1656 EOF 1648 if { (eval echo configure:16 49: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1657 if { (eval echo configure:1658: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 1649 1658 rtems_cv_prog_cxx_works=yes 1650 1659 # If we can't run a trivial program, we are probably using a cross compiler. … … 1673 1682 fi 1674 1683 echo $ac_n "checking whether the target C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1675 echo "configure:16 76: checking whether the target C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&51684 echo "configure:1685: checking whether the target C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5 1676 1685 echo "$ac_t""$rtems_cv_prog_cxx_cross" 1>&6 1677 1686 1678 1687 echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6 1679 echo "configure:168 0: checking whether we are using GNU C++" >&51688 echo "configure:1689: checking whether we are using GNU C++" >&5 1680 1689 if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then 1681 1690 echo $ac_n "(cached) $ac_c" 1>&6 … … 1686 1695 #endif 1687 1696 EOF 1688 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:16 89: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1697 if { 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 1689 1698 ac_cv_prog_gxx=yes 1690 1699 else … … 1701 1710 CXXFLAGS= 1702 1711 echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6 1703 echo "configure:17 04: checking whether ${CXX-g++} accepts -g" >&51712 echo "configure:1713: checking whether ${CXX-g++} accepts -g" >&5 1704 1713 if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then 1705 1714 echo $ac_n "(cached) $ac_c" 1>&6 … … 1735 1744 set dummy "$program_prefix"g++; ac_word=$2 1736 1745 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1737 echo "configure:17 38: checking for $ac_word" >&51746 echo "configure:1747: checking for $ac_word" >&5 1738 1747 if eval "test \"`echo '$''{'ac_cv_path_CXX_FOR_TARGET'+set}'`\" = set"; then 1739 1748 echo $ac_n "(cached) $ac_c" 1>&6 … … 1780 1789 set dummy "$program_prefix"gcc; ac_word=$2 1781 1790 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1782 echo "configure:17 83: checking for $ac_word" >&51791 echo "configure:1792: checking for $ac_word" >&5 1783 1792 if eval "test \"`echo '$''{'ac_cv_path_CC_FOR_TARGET'+set}'`\" = set"; then 1784 1793 echo $ac_n "(cached) $ac_c" 1>&6 … … 1813 1822 set dummy "$program_prefix"ar; ac_word=$2 1814 1823 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1815 echo "configure:18 16: checking for $ac_word" >&51824 echo "configure:1825: checking for $ac_word" >&5 1816 1825 if eval "test \"`echo '$''{'ac_cv_path_AR_FOR_TARGET'+set}'`\" = set"; then 1817 1826 echo $ac_n "(cached) $ac_c" 1>&6 … … 1845 1854 set dummy "$program_prefix"as; ac_word=$2 1846 1855 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1847 echo "configure:18 48: checking for $ac_word" >&51856 echo "configure:1857: checking for $ac_word" >&5 1848 1857 if eval "test \"`echo '$''{'ac_cv_path_AS_FOR_TARGET'+set}'`\" = set"; then 1849 1858 echo $ac_n "(cached) $ac_c" 1>&6 … … 1877 1886 set dummy "$program_prefix"nm; ac_word=$2 1878 1887 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1879 echo "configure:188 0: checking for $ac_word" >&51888 echo "configure:1889: checking for $ac_word" >&5 1880 1889 if eval "test \"`echo '$''{'ac_cv_path_NM_FOR_TARGET'+set}'`\" = set"; then 1881 1890 echo $ac_n "(cached) $ac_c" 1>&6 … … 1909 1918 set dummy "$program_prefix"ld; ac_word=$2 1910 1919 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1911 echo "configure:19 12: checking for $ac_word" >&51920 echo "configure:1921: checking for $ac_word" >&5 1912 1921 if eval "test \"`echo '$''{'ac_cv_path_LD_FOR_TARGET'+set}'`\" = set"; then 1913 1922 echo $ac_n "(cached) $ac_c" 1>&6 … … 1942 1951 set dummy "$program_prefix"ranlib; ac_word=$2 1943 1952 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1944 echo "configure:19 45: checking for $ac_word" >&51953 echo "configure:1954: checking for $ac_word" >&5 1945 1954 if eval "test \"`echo '$''{'ac_cv_path_RANLIB_FOR_TARGET'+set}'`\" = set"; then 1946 1955 echo $ac_n "(cached) $ac_c" 1>&6 … … 1975 1984 set dummy "$program_prefix"objcopy; ac_word=$2 1976 1985 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1977 echo "configure:19 78: checking for $ac_word" >&51986 echo "configure:1987: checking for $ac_word" >&5 1978 1987 if eval "test \"`echo '$''{'ac_cv_path_OBJCOPY_FOR_TARGET'+set}'`\" = set"; then 1979 1988 echo $ac_n "(cached) $ac_c" 1>&6 … … 2007 2016 set dummy "$program_prefix"size; ac_word=$2 2008 2017 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2009 echo "configure:201 0: checking for $ac_word" >&52018 echo "configure:2019: checking for $ac_word" >&5 2010 2019 if eval "test \"`echo '$''{'ac_cv_path_SIZE_FOR_TARGET'+set}'`\" = set"; then 2011 2020 echo $ac_n "(cached) $ac_c" 1>&6 … … 2042 2051 set dummy gcc; ac_word=$2 2043 2052 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2044 echo "configure:20 45: checking for $ac_word" >&52053 echo "configure:2054: checking for $ac_word" >&5 2045 2054 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2046 2055 echo $ac_n "(cached) $ac_c" 1>&6 … … 2071 2080 set dummy cc; ac_word=$2 2072 2081 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2073 echo "configure:20 74: checking for $ac_word" >&52082 echo "configure:2083: checking for $ac_word" >&5 2074 2083 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2075 2084 echo $ac_n "(cached) $ac_c" 1>&6 … … 2119 2128 2120 2129 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 2121 echo "configure:21 22: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&52130 echo "configure:2131: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 2122 2131 2123 2132 ac_ext=c … … 2129 2138 2130 2139 cat > conftest.$ac_ext <<EOF 2131 #line 21 32"configure"2140 #line 2141 "configure" 2132 2141 #include "confdefs.h" 2133 2142 main(){return(0);} 2134 2143 EOF 2135 if { (eval echo configure:21 36: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then2144 if { (eval echo configure:2145: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 2136 2145 ac_cv_prog_cc_works=yes 2137 2146 # If we can't run a trivial program, we are probably using a cross compiler. … … 2153 2162 fi 2154 2163 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 2155 echo "configure:21 56: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&52164 echo "configure:2165: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 2156 2165 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 2157 2166 cross_compiling=$ac_cv_prog_cc_cross 2158 2167 2159 2168 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 2160 echo "configure:21 61: checking whether we are using GNU C" >&52169 echo "configure:2170: checking whether we are using GNU C" >&5 2161 2170 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 2162 2171 echo $ac_n "(cached) $ac_c" 1>&6 … … 2167 2176 #endif 2168 2177 EOF 2169 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:217 0: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then2178 if { 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 2170 2179 ac_cv_prog_gcc=yes 2171 2180 else … … 2182 2191 CFLAGS= 2183 2192 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 2184 echo "configure:21 85: checking whether ${CC-cc} accepts -g" >&52193 echo "configure:2194: checking whether ${CC-cc} accepts -g" >&5 2185 2194 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 2186 2195 echo $ac_n "(cached) $ac_c" 1>&6 … … 2213 2222 do 2214 2223 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 2215 echo "configure:22 16: checking for $ac_func" >&52224 echo "configure:2225: checking for $ac_func" >&5 2216 2225 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 2217 2226 echo $ac_n "(cached) $ac_c" 1>&6 2218 2227 else 2219 2228 cat > conftest.$ac_ext <<EOF 2220 #line 22 21"configure"2229 #line 2230 "configure" 2221 2230 #include "confdefs.h" 2222 2231 /* System header to define __stub macros and hopefully few prototypes, … … 2241 2250 ; return 0; } 2242 2251 EOF 2243 if { (eval echo configure:22 44: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then2252 if { (eval echo configure:2253: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 2244 2253 rm -rf conftest* 2245 2254 eval "ac_cv_func_$ac_func=yes" … … 2269 2278 2270 2279 echo $ac_n "checking for Makefile.in in c/src/exec/score/tools/$target_cpu""... $ac_c" 1>&6 2271 echo "configure:22 72: checking for Makefile.in in c/src/exec/score/tools/$target_cpu" >&52280 echo "configure:2281: checking for Makefile.in in c/src/exec/score/tools/$target_cpu" >&5 2272 2281 if test -d $srcdir/c/src/exec/score/tools/$target_cpu; then 2273 2282 rtems_av_save_dir=`pwd`; … … 2284 2293 2285 2294 echo $ac_n "checking for Makefile.in in c/src/exec/rtems""... $ac_c" 1>&6 2286 echo "configure:22 87: checking for Makefile.in in c/src/exec/rtems" >&52295 echo "configure:2296: checking for Makefile.in in c/src/exec/rtems" >&5 2287 2296 if test -d $srcdir/c/src/exec/rtems; then 2288 2297 rtems_av_save_dir=`pwd`; … … 2299 2308 2300 2309 echo $ac_n "checking for Makefile.in in c/src/exec/sapi""... $ac_c" 1>&6 2301 echo "configure:23 02: checking for Makefile.in in c/src/exec/sapi" >&52310 echo "configure:2311: checking for Makefile.in in c/src/exec/sapi" >&5 2302 2311 if test -d $srcdir/c/src/exec/sapi; then 2303 2312 rtems_av_save_dir=`pwd`; … … 2316 2325 2317 2326 echo $ac_n "checking for Makefile.in in c/src/exec/posix""... $ac_c" 1>&6 2318 echo "configure:23 19: checking for Makefile.in in c/src/exec/posix" >&52327 echo "configure:2328: checking for Makefile.in in c/src/exec/posix" >&5 2319 2328 if test -d $srcdir/c/src/exec/posix; then 2320 2329 rtems_av_save_dir=`pwd`; … … 2338 2347 if test -z "$rtems_bsp"; then 2339 2348 echo $ac_n "checking for bsps""... $ac_c" 1>&6 2340 echo "configure:23 41: checking for bsps" >&52349 echo "configure:2350: checking for bsps" >&5 2341 2350 files=`ls $srcdir/c/src/lib/libbsp/$target_cpu` 2342 2351 for file in $files; do … … 2385 2394 2386 2395 echo $ac_n "checking for Makefile.in in c/src/lib/libbsp/$target_cpu/$bspdir""... $ac_c" 1>&6 2387 echo "configure:23 88: checking for Makefile.in in c/src/lib/libbsp/$target_cpu/$bspdir" >&52396 echo "configure:2397: checking for Makefile.in in c/src/lib/libbsp/$target_cpu/$bspdir" >&5 2388 2397 if test -d $srcdir/c/src/lib/libbsp/$target_cpu/$bspdir; then 2389 2398 rtems_av_save_dir=`pwd`; … … 2408 2417 2409 2418 echo $ac_n "checking for Makefile.in in c/src/lib/libcpu/$target_cpu""... $ac_c" 1>&6 2410 echo "configure:24 11: checking for Makefile.in in c/src/lib/libcpu/$target_cpu" >&52419 echo "configure:2420: checking for Makefile.in in c/src/lib/libcpu/$target_cpu" >&5 2411 2420 if test -d $srcdir/c/src/lib/libcpu/$target_cpu; then 2412 2421 rtems_av_save_dir=`pwd`; … … 2425 2434 2426 2435 echo $ac_n "checking for Makefile.in in c/src/lib/start/$target_cpu""... $ac_c" 1>&6 2427 echo "configure:24 28: checking for Makefile.in in c/src/lib/start/$target_cpu" >&52436 echo "configure:2437: checking for Makefile.in in c/src/lib/start/$target_cpu" >&5 2428 2437 if test -d $srcdir/c/src/lib/start/$target_cpu; then 2429 2438 rtems_av_save_dir=`pwd`; … … 2467 2476 # If the tests are enabled, then find all the test suite Makefiles 2468 2477 echo $ac_n "checking Are the test suites enabled? ""... $ac_c" 1>&6 2469 echo "configure:247 0: checking Are the test suites enabled? " >&52478 echo "configure:2479: checking Are the test suites enabled? " >&5 2470 2479 tests_enabled=yes 2471 2480 # Check whether --enable-tests or --disable-tests was given. … … 2486 2495 2487 2496 echo $ac_n "checking for Makefile.in in c/src/tests/tools/$target_cpu""... $ac_c" 1>&6 2488 echo "configure:24 89: checking for Makefile.in in c/src/tests/tools/$target_cpu" >&52497 echo "configure:2498: checking for Makefile.in in c/src/tests/tools/$target_cpu" >&5 2489 2498 if test -d $srcdir/c/src/tests/tools/$target_cpu; then 2490 2499 rtems_av_save_dir=`pwd`; … … 2503 2512 2504 2513 echo $ac_n "checking for Makefile.in in c/src/tests/libtests""... $ac_c" 1>&6 2505 echo "configure:25 06: checking for Makefile.in in c/src/tests/libtests" >&52514 echo "configure:2515: checking for Makefile.in in c/src/tests/libtests" >&5 2506 2515 if test -d $srcdir/c/src/tests/libtests; then 2507 2516 rtems_av_save_dir=`pwd`; … … 2518 2527 2519 2528 echo $ac_n "checking for Makefile.in in c/src/tests/sptests""... $ac_c" 1>&6 2520 echo "configure:25 21: checking for Makefile.in in c/src/tests/sptests" >&52529 echo "configure:2530: checking for Makefile.in in c/src/tests/sptests" >&5 2521 2530 if test -d $srcdir/c/src/tests/sptests; then 2522 2531 rtems_av_save_dir=`pwd`; … … 2533 2542 2534 2543 echo $ac_n "checking for Makefile.in in c/src/tests/tmtests""... $ac_c" 1>&6 2535 echo "configure:25 36: checking for Makefile.in in c/src/tests/tmtests" >&52544 echo "configure:2545: checking for Makefile.in in c/src/tests/tmtests" >&5 2536 2545 if test -d $srcdir/c/src/tests/tmtests; then 2537 2546 rtems_av_save_dir=`pwd`; … … 2548 2557 2549 2558 echo $ac_n "checking for Makefile.in in c/src/tests/mptests""... $ac_c" 1>&6 2550 echo "configure:25 51: checking for Makefile.in in c/src/tests/mptests" >&52559 echo "configure:2560: checking for Makefile.in in c/src/tests/mptests" >&5 2551 2560 if test -d $srcdir/c/src/tests/mptests; then 2552 2561 rtems_av_save_dir=`pwd`; … … 2564 2573 2565 2574 echo $ac_n "checking for Makefile.in in c/src/tests/psxtests""... $ac_c" 1>&6 2566 echo "configure:25 67: checking for Makefile.in in c/src/tests/psxtests" >&52575 echo "configure:2576: checking for Makefile.in in c/src/tests/psxtests" >&5 2567 2576 if test -d $srcdir/c/src/tests/psxtests; then 2568 2577 rtems_av_save_dir=`pwd`; … … 2582 2591 # If the HWAPI is enabled, the find the HWAPI Makefiles 2583 2592 echo $ac_n "checking Is the HWAPI enabled? ""... $ac_c" 1>&6 2584 echo "configure:25 85: checking Is the HWAPI enabled? " >&52593 echo "configure:2594: checking Is the HWAPI enabled? " >&5 2585 2594 # Check whether --enable-hwapi or --disable-hwapi was given. 2586 2595 if test "${enable_hwapi+set}" = set; then … … 2593 2602 2594 2603 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/analog""... $ac_c" 1>&6 2595 echo "configure:2 596: checking for Makefile.in in c/src/lib/libhwapi/analog" >&52604 echo "configure:2605: checking for Makefile.in in c/src/lib/libhwapi/analog" >&5 2596 2605 if test -d $srcdir/c/src/lib/libhwapi/analog; then 2597 2606 rtems_av_save_dir=`pwd`; … … 2608 2617 2609 2618 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/discrete""... $ac_c" 1>&6 2610 echo "configure:26 11: checking for Makefile.in in c/src/lib/libhwapi/discrete" >&52619 echo "configure:2620: checking for Makefile.in in c/src/lib/libhwapi/discrete" >&5 2611 2620 if test -d $srcdir/c/src/lib/libhwapi/discrete; then 2612 2621 rtems_av_save_dir=`pwd`; … … 2623 2632 2624 2633 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/drivers""... $ac_c" 1>&6 2625 echo "configure:26 26: checking for Makefile.in in c/src/lib/libhwapi/drivers" >&52634 echo "configure:2635: checking for Makefile.in in c/src/lib/libhwapi/drivers" >&5 2626 2635 if test -d $srcdir/c/src/lib/libhwapi/drivers; then 2627 2636 rtems_av_save_dir=`pwd`; … … 2638 2647 2639 2648 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory""... $ac_c" 1>&6 2640 echo "configure:26 41: checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory" >&52649 echo "configure:2650: checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory" >&5 2641 2650 if test -d $srcdir/c/src/lib/libhwapi/non_volatile_memory; then 2642 2651 rtems_av_save_dir=`pwd`; … … 2653 2662 2654 2663 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/serial""... $ac_c" 1>&6 2655 echo "configure:26 56: checking for Makefile.in in c/src/lib/libhwapi/serial" >&52664 echo "configure:2665: checking for Makefile.in in c/src/lib/libhwapi/serial" >&5 2656 2665 if test -d $srcdir/c/src/lib/libhwapi/serial; then 2657 2666 rtems_av_save_dir=`pwd`; … … 2668 2677 2669 2678 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/support""... $ac_c" 1>&6 2670 echo "configure:26 71: checking for Makefile.in in c/src/lib/libhwapi/support" >&52679 echo "configure:2680: checking for Makefile.in in c/src/lib/libhwapi/support" >&5 2671 2680 if test -d $srcdir/c/src/lib/libhwapi/support; then 2672 2681 rtems_av_save_dir=`pwd`; … … 2683 2692 2684 2693 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/wrapup""... $ac_c" 1>&6 2685 echo "configure:26 86: checking for Makefile.in in c/src/lib/libhwapi/wrapup" >&52694 echo "configure:2695: checking for Makefile.in in c/src/lib/libhwapi/wrapup" >&5 2686 2695 if test -d $srcdir/c/src/lib/libhwapi/wrapup; then 2687 2696 rtems_av_save_dir=`pwd`; … … 2725 2734 2726 2735 echo $ac_n "checking for Makefile.in in c/build-tools""... $ac_c" 1>&6 2727 echo "configure:27 28: checking for Makefile.in in c/build-tools" >&52736 echo "configure:2737: checking for Makefile.in in c/build-tools" >&5 2728 2737 if test -d $srcdir/c/build-tools; then 2729 2738 rtems_av_save_dir=`pwd`; … … 2740 2749 2741 2750 echo $ac_n "checking for Makefile.in in make""... $ac_c" 1>&6 2742 echo "configure:27 43: checking for Makefile.in in make" >&52751 echo "configure:2752: checking for Makefile.in in make" >&5 2743 2752 if test -d $srcdir/make; then 2744 2753 rtems_av_save_dir=`pwd`; … … 2755 2764 2756 2765 echo $ac_n "checking for Makefile.in in c/src/lib/libmisc""... $ac_c" 1>&6 2757 echo "configure:27 58: checking for Makefile.in in c/src/lib/libmisc" >&52766 echo "configure:2767: checking for Makefile.in in c/src/lib/libmisc" >&5 2758 2767 if test -d $srcdir/c/src/lib/libmisc; then 2759 2768 rtems_av_save_dir=`pwd`; … … 2770 2779 2771 2780 echo $ac_n "checking for Makefile.in in c/src/tests/samples""... $ac_c" 1>&6 2772 echo "configure:27 73: checking for Makefile.in in c/src/tests/samples" >&52781 echo "configure:2782: checking for Makefile.in in c/src/tests/samples" >&5 2773 2782 if test -d $srcdir/c/src/tests/samples; then 2774 2783 rtems_av_save_dir=`pwd`;
Note: See TracChangeset
for help on using the changeset viewer.